When installing Windows 7 in VMWare Fusion or Parallels, if you get the following error:
The unattend answer file contains an invalid product key"
simply open the VMWare Settings or in Parallels, select Virtual Machine > Configure and disconnect the floppy drive.
I find the new debugging tools in Safari almost as useful as Firebug. There's a Web Inspector that lets you see exactly how the HTML is formed, a Javascript console that lets you see errors and debugging messages written into the code and much more.
But to use them you must enable the Debug menu in Safari. Open Safari preferences in the Safari Menu, click Advanced, and select Show Develop menu in menu bar.
What can you do with the new menu?
By far the most important item for me is Show Error Console. When this is selected, you can view the underlying HTML for the page, Javascripts and a FireBug-style error console with syntax errors and warnings. The error console also displays other messages from console.log, console.error, console.warn, console.assert, and console.info functions inserted into code.
Other selections include:
Sometimes a web app hits it square on target for me, and for once, Google Docs has done that with its new Drag to list to upload functionality. It's as direct as dragging something to a folder with no intermediate step. Nice!
Just drag a document to the documents list as shown.

If you have Confirm settings before each upload checked, you'll see this screen. If not, you won't.

Et voila! It now shows up in the documents list.

In Adobe Captivate, if you check Allow User to Review Quiz in the quiz settings in Preferences, a button should appear on the Score page that allows the user to go back and see what they answered and any available feedback for each question slide. Sometimes this button doesn't display, even if this setting is checked.
To fix, try unchecking Allow User To Review Quiz, then hit OK to save the setting and close the Preferences window.
Then re-open the Preferences window, check Allow User To Review Quiz and hit OK again!
If clicking on a link containing a javascript results in a white page contining nothing but the word "true" or "false", check the link to see if it is written in the form:
<a href="javascript:yourfunction();">link text</a>
If so, try rewriting it in the form:
<a href="#" onclick="yourfunction();">link text</a>
Certain browsers, particularly IE, will show the return value of the function rather than executing it under certain conditions. I've found this issue when using swfObject to write a Captivate swf to the page like this:
<a href="javascript:so.write("CaptivateContent")">Click to show movie</a>
results in blank page containing "true" in IE7. Using the onclick statement fixes the problem.
I've worked on a few projects where a CSS style on some page element has been specified as "!important" and it interferes with the way the page functions. Ordinarily, I would just change the original style, but sometimes I don't have control over the stylesheet or script that is generating the style. One example is a recent project where an embedded Captivate player is written to a custom HTML wrapper at by the javascript SWFObject.js. SWFObject writes style attributes to the page dynamically to hide the Captivate player as required until it is fully loaded:
object, embed {
visibility:hidden !important;
}
We don't really have control over the content of the SWFObject script itself, so when we want to override the visibility attribute for a custom function, it is necessary to programmatically tell the Captivate to "show itself" after being written to the page.
However, the !important attribute prevents the normal method of overriding the visibility style . For instance, a statement like this will not change the style of an element marked "visibility:hidden !important;":
document.getElementByID('player').style.visibility = visible;
Thanks to Premasagar on Stackoverflow, I've found a working method for overriding the visibilty style: use the cssText property:
document.getElementById("player").style.cssText = 'visibility:visible !important'