<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>strottrot.com &#187; adobe</title>
	<atom:link href="http://strottrot.com/topics/adobe/feed/" rel="self" type="application/rss+xml" />
	<link>http://strottrot.com</link>
	<description>on user experience, usability, and access</description>
	<lastBuildDate>Wed, 09 May 2012 17:04:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Efficiency Scores in Dreamweaver CS4 Beta</title>
		<link>http://strottrot.com/2008/05/31/efficiency-scores-in-dreamweaver-cs4-beta/</link>
		<comments>http://strottrot.com/2008/05/31/efficiency-scores-in-dreamweaver-cs4-beta/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 00:49:14 +0000</pubDate>
		<dc:creator>strottrot</dc:creator>
				<category><![CDATA[adobe]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://strottrot.com/?p=24</guid>
		<description><![CDATA[Adobe released the Dreamweaver (DW) CS4 beta on labs.adobe.com last week (along with betas for Fireworks and Soundbooth). The beta is available until final release for anyone with a CS3 serial number. If you use DW regularly, go get the beta! You can run the beta while still running CS3. This is a huge release, [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe released the Dreamweaver (DW) CS4 beta on labs.adobe.com last week (along with betas for Fireworks and Soundbooth). The beta is available until final release for anyone with a CS3 serial number. If you use DW regularly, <strong>go <a href="http://labs.adobe.com/technologies/dreamweavercs4/">get the beta</a></strong>! You can run the beta while still running CS3. This is a huge release, especially in terms of workflow efficiencies, with strong attention to standards.<br />
My workflow to date generally involves efficiency-garbling tool-switching. Here’s a breakdown:</p>
<ol>
<li>Dreamweaver (Find/Replace, FTP, Split View—seeing Design View while working in Code View, working on sites with DW templates/Contribute)</li>
<li>Eclipse (JSEclipse, CFEclipse, PHP, synching with CVS)</li>
<li>Firefox/ Firebug/ WebDev Toolbar (debugging &amp; tweaking styles, testing standards &amp; accessibility, debugging javascript)</li>
</ol>
<p>Find-and-replace and ftp are hardly the main things for which DW is designed. That these are primary tasks for me in DW perhaps reflects the software&#8217;s (previous) focus on designers. CS4 represents strong attention to developer needs and workflow. It will be some time before I know if I can be as fast/effective with the new built-in tools for my tasks. I think it is likely that new features will reduce but not eliminate the need for round-tripping to more robust debugging tools. Nevertheless, it feels like someone was watching us work when they decided on a lot of the new functionality: hooray!<span id="more-24"></span></p>
<h3>My Fave Efficiency Improvement Features</h3>
<h4>JavaScript Code Hints</h4>
<p><img title="screenshot of javascript hinting" src="http://strottrot.com/wp-content/uploads/2008/05/dw_js_hints21.gif" alt="screenshot of javascript hints" width="751" height="226" /><br />
The javascript code-hinting is far more robust than in the past, dynamically generating hints based on user-defined functions and classes. It offers hints for primitive and DOM objects and identifies syntax errors with the error line number. I love that includes deprecation indicators. The error information is not nearly as robust as JSEclipse (Adobe&#8217;s free Eclipse plugin) or the Firefox Firebug extension, which describe likely syntax errors, undefined objects, etc. I hope the team will add JSEclipse code-highlighting such as highlighting every instance of an object or method when you select one instance, or marking the opening bracket when you click next to the closing bracket.</p>
<h4>Subversion</h4>
<p>CS4 does not claim to offer a replacement for command line or 3rd party SVN tools, but it will certainly reduce the frequency of tool-switching. After establishing a site-wide connection to an SVN project, you can update, check in, revert, and mark conflicts resolved. Check in gives options to add, commit (with comments) and ignore. The revision history is available. You can compare to local, but you still need a 3rd party diff tool. There is an offline setting and you can do SSH connections (w?3rd party tool).</p>
<h4>Live View, Live Code View, Split Code View</h4>
<p>Live view rocks and is a leader on the tool-switching reducer train. Live View shows a browser-based (standards-based WebKit!) rendering of the code, including javascript events. You can alter the state of the page (e.g. click on a js-activating link), and see the resulting code changes. You can then make CSS changes to the state, watching the results as you go. Firebug has made this possible for a while, but still involves heading back to your editor to make the change you tested while in the browser. CS4 offers a vertical split view, which seems far more efficient and pleasing to use than the stacked horizontal split. Live view will also display results of server-side behaviors if the site is connected to a test server. The split code view is another gem: view different parts of the same document with the ability to scroll each part separately. (Changes can be made in either section.)</p>
<h4>Related Files and Code Navigator</h4>
<p>The related files feature and the code navigator each assist in navigating directly to relevant code in an external file.<br />
<img title="screenshot of code navigator" src="http://strottrot.com/wp-content/uploads/2008/05/cs4codenav.gif" alt="screenshot of code navigator and related files in Dreamweaver" width="660" height="229" /><br />
DW offers links to the external files (#1 in screenshot) it has determined to be related to the open file. While it will show links to some server side include (SSI) files, I don’t think it will recognize SSI files included via a dynamically generated path. The code navigator (#2) offers a display of the files and styles affecting a line of code, including CSS files &amp; styles, js files, server-side include files, and DW template and library files. The navigator is a quick way to get to the right spot in a related file. With the cursor in a line of code or clicked in the area in question in Live View, invoke the code navigator (through keys, contextual click or the navigation wheel (#3). The code navigator will list the files and styles affecting the given area of the document. Hovering over a style will display the definition of the style. Clicking on a style (#4) will bring you right to that line in the external file: a clear time-reducer where it works. (So far it seems there are gaps in recognition of the full cascade. I have yet to fully investigate this: it may be styles linked through @import.)</p>
<h4>Photoshop Integration</h4>
<p>There are fun Photoshop integration improvements over the copy &amp; paste from Photoshop to Dreamweaver introduced in CS3 (though copy &amp; paste is still available). You can do insert › image and point to a psd document. An image preview dialog gives file format options and a crop tool. Save the image to your site files and DW will treat it as a “smart object:” one that maintains a connection to the PSD file (but not in the HTML code). In DW, you can resize the image and maintain the connection to the PSD file, without altering the original. In PS, you can change the file, e.g. altering layers, colors, filters, etc. then update the file in DW, maintaining the file format and size you previously set in DW. You can maintain a connection with multiple instances of the original— even in different sizes and crop areas.</p>
<h4>Try It Out</h4>
<p>If you have CS3, I strongly recommend downloading the beta. What are your favorite efficiency changes? Do you like the grayscale icons implemented to quiet the interface?</p>
]]></content:encoded>
			<wfw:commentRss>http://strottrot.com/2008/05/31/efficiency-scores-in-dreamweaver-cs4-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kuler: Extract Colors from Photo</title>
		<link>http://strottrot.com/2008/05/20/kuler-extract-colors-from-photo/</link>
		<comments>http://strottrot.com/2008/05/20/kuler-extract-colors-from-photo/#comments</comments>
		<pubDate>Tue, 20 May 2008 22:06:10 +0000</pubDate>
		<dc:creator>strottrot</dc:creator>
				<category><![CDATA[adobe]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[color picker]]></category>
		<category><![CDATA[kuler]]></category>

		<guid isPermaLink="false">http://strottrot.com/?p=20</guid>
		<description><![CDATA[I use a variety of color picker sites for inspiration, but I most frequently use Adobe’s Kuler (pronounced ‘cooler’). Like others, it has a variety of displays from which you can pick and adjust colors, a social aspect providing a means to benefit from the more artistic eyes of others, and the ability to export [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://strottrot.com/wp-content/uploads/2008/05/picture-2-h250-300x177.jpg" alt="kuler screenshot" title="kuler screenshot" width="300" height="177"/>I use a variety of color picker sites for inspiration, but I most frequently use Adobe’s Kuler (pronounced ‘cooler’). Like others, it has a variety of displays from which you can pick and adjust colors, a social aspect providing a means to benefit from the more artistic eyes of others, and the ability to export a set of swatches. I especially like the recently added ability to upload photos and have Kuler extract colors from the photo. You can influence which colors get extracted, selecting a ‘mood:’ colorful, bright, muted, deep, or dark. Of course, you can adjust which colors are picked as you wish. Watch a <a href='http://www.screencast.com/t/7stFkKy7NvW'>screencast of using the kuler image uploader/extracter</a>.<br /><span id="more-20"></span></p>
<p>Last week at the Adobe Summit, I encouraged the Kuler team include a tool for testing out color combinations for accessible contrast in brightness and hue so we don’t have to go back and forth between kuler and a validator, adjusting and copy/pasting values until we have a usable combination.</p>
<p>Kuler’s API is available and there have been some interesting results. There are a few blogs dynamically changing background colors using kuler themes. There are panel extensions available for Dreamweaver, Fireworks, and Flash. The <a href="http://labs.adobe.com/wiki/index.php/Talk:Kuler">Adobe Labs Kuler page</a> has links to these and others. Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://strottrot.com/2008/05/20/kuler-extract-colors-from-photo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Buzzword Features &amp; Accessibility</title>
		<link>http://strottrot.com/2008/03/16/adobe-buzzword-accessibility-plea/</link>
		<comments>http://strottrot.com/2008/03/16/adobe-buzzword-accessibility-plea/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 04:00:02 +0000</pubDate>
		<dc:creator>strottrot</dc:creator>
				<category><![CDATA[adobe]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[adobe "online collaboration" accessibility]]></category>

		<guid isPermaLink="false">http://strottrot.com/2008/03/16/adobe-buzzword-accessibility-plea/</guid>
		<description><![CDATA[I&#8217;m intrigued by Adobe&#8217;s web-based word processor, Buzzword. (Adobe announced the purchase of the creator Virtual Ubiquity September 30th, 2007.) Buzzword is inviting to use, creates beautiful documents, has innovative file management and file sharing options. It&#8217;s built in Flex, using Flash (on the web) and AIR (on the desktop) so you can work online [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m intrigued by Adobe&#8217;s web-based word processor, Buzzword. (Adobe announced the purchase of the creator Virtual Ubiquity September 30th, 2007.) Buzzword is inviting to use, creates beautiful documents, has innovative file management and file sharing options. It&#8217;s built in Flex, using Flash (on the web) and AIR (on the desktop) so you can work online and offline. There are definitely areas where it has a ways to go in terms of features and accessibility.</p>
<p>During a demo, Rick Treitman, of Virtual Ubiquity, said &#8220;We don&#8217;t qualify as an accessible product, but Adobe has accessibility experts and I&#8217;m sure they&#8217;ll be crawling all over it.&#8221; Here&#8217;s hoping. He described Buzzword as an &#8220;ideal tool for students&#8221; and sees &#8220;students and educators as the bulk of early adopters.&#8221; Treitman indicated that they will be looking to Adobe to implement internationalization: &#8220;We&#8217;ve architected it properly to make that happen.&#8221; Documents can currently be saved as an MSWord doc, rich text file, html, or plain text. Encryption is not currently available.</p>
<p><img src="http://farm3.static.flickr.com/2414/2071970241_a517132aeb.jpg?v=0" alt="screen shot of buzzword file list sorted by author" width="500" height="130" />Like other web-based word processing platforms (e.g. Google Docs), you can share a document by entering someone&#8217;s email address. You can assign levels of access (co-author, reviewer, editor).   You can sort your document list: alphabetically, by author, by your own roles, by last time you viewed the docs, by last time you modified them, and by file size.<span id="more-10"></span></p>
<p><img src="http://farm3.static.flickr.com/2090/2072763104_1f0ff0557c.jpg?v=0" alt="screen shot of buzzword file list sorted by number of pages" width="500" height="100" />A nice innovation is that the sort by file size is based on number of pages, rather than kbs. Still, I wonder what the file list is going to look like in two years when I&#8217;ve got tons of files and I want to see a list of what I&#8217;ve got shared with Joe? Can I filter more narrowly? It&#8217;s like my gmail problem with not being able to archive labels. You can&#8217;t remove a label from your list of labels _and_ keep old items labeled with the now-defunct label. So far, folders still provide the best archiving option I&#8217;ve used.</p>
<p>There are some strong features that would be winners if the app could be standards-based. Virtual Ubiquity picked up on how users fight with lists and offer some nice affordances (a button to skip a paragraph within a list, start a new/continue a list). (Especially useful since your context menu doesn&#8217;t exist in the Flash environment.) Working with images in Buzzword is a pleasure compared to MSWord. Tables are easy to adjust, but options are limited. The tables default to having some padding in the cells (unlike MSWord), but you cannot adjust how much. Selecting, adding, and deleting rows and columns is downright delightful.</p>
<p>The interactions are peppy. I work over satellite internet, and do not experience any latency. The interface design is minimalist and, at first hammering, enjoyable (if you have hands, good fine motor skills, and excellent eyesight). You won&#8217;t find complex dialog boxes with an overload of choices.</p>
<p>Some keyboard shortcuts work such as basic formatting and increasing of text size. However, you can not currently insert special characters. There&#8217;s no option for alternate text for images. I asked Treitman about heading levels and styles. He said, &#8220;In doing our research when you ask people if they&#8217;re using styles, 80% of them don&#8217;t use styles. They&#8217;re just too hard to use.&#8221; I did not get the impression of awareness of the importance or utility of the semantic information behind a document.</p>
<p><img src="http://farm3.static.flickr.com/2310/2071969773_e8d6d03046.jpg?v=0" alt="screen shot of buzzword color picker" width="500" height="135" />The color picker gives a sense of how small the target size is of many of the elements in Buzzword. If fine motor coordination poses problems for you, Buzzword will not be easy to maneuver.</p>
<p><img src="http://farm3.static.flickr.com/2284/2072762932_86a645a630.jpg?v=0" alt="screen shot of buzzword comment box" width="261" height="152" />Comments can have images in them and can be dragged into the body of the document. The comment balloon is available in the right margin wherever the cursor is. (No need to make the &#8216;reviewing toolbar&#8217; visible, select text, and then insert a comment.)</p>
<p>I haven&#8217;t tried editing a Buzzword doc synchronously with someone else. I love being able to do that in Google docs. &#8220;See what you think of this.&#8221; &#8220;OK, I changed a couple of words&#8211;do those look all right?&#8221; Buzzword does keep a &#8220;few&#8221; versions of docs. This will probably come in handy through the early bumps of multiple people working offline and then connecting. I haven&#8217;t heard whether they will offer merge options.</p>
<p>Buzzword is a good example of the tension between ensuring that accessibility be incorporated from the beginning of design and the need to encourage development of innovation and creativity tools. While I know the latter is important, it&#8217;s difficult to imagine the decision to go back and start from scratch to create an accessible version of the same application.</p>
]]></content:encoded>
			<wfw:commentRss>http://strottrot.com/2008/03/16/adobe-buzzword-accessibility-plea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

