*NOTE: I found this workaround on the web and it worked for
me
In all versions of Macromedia's Flash Player prior to version
7.0.14.0, once typing focus was established (by clicking on the
Flash movie), pressing the Tab key would move you between fields or
objects in the movie - maintaining focus in the movie itself. As of
version 7.0.14.0, the Flash Player switched to a behavior called
"seamless tabbing". In this version, pressing the Tab key moved the
focus right out of the movie and on to fields in the web page, the
browser address bar, etc.
Needless to say, this has caused some difficulty to authors
using Flash (or RoboDemo) to create simulations where the learner
needs to tab. So, as of version 7.0.19.0 of the player, seamless
tabbing is now an html parameter. Here's the official scoop from
Adobe's release notes of that version of the player:
Disabling seamless tabbing
This release of ActiveX Flash Player supports a new HTML
parameter called SeamlessTabbing. The default value is true; set
this parameter to false to disable "seamless tabbing", which allows
users to use the Tab key to move keyboard focus out of a Flash
movie and into the surrounding HTML (or the browser, if there is
nothing focusable in the HTML following the Flash movie). ActiveX
Flash Player has supported seamless tabbing since version 7.0.14.0.
Disabling seamless tabbing restores the tabbing behavior of Flash
Player 6, in which tabbing from the end of the tab order inside a
Flash movie wraps the focus back to the first focusable object in
the Flash movie. Here is an example of disabling seamless tabbing:
<object ... >
...
<param name="SeamlessTabbing" value="false">
...
</object>
NOTE: In version 7.0.14.0 there is no way to disable seamless
tabbing. Meaning that your simulation might just never work with
this version. Fortunately it only took Adobe one 'sub-release' to
realize and correct this problem.
So, if you're encountering this problem you'll want to:
Publish the project with html checked
Edit the HTML field for any media types which display Flash
movies (including flash output from other programs like RoboDemo)
and
Add the line
<param name="SeamlessTabbing" value="false">
somewhere in between the <object... .../object>
save the Html File.
I know this is a lot to take in, but it's really a simple
fix.