Forum Moderators: open
Una
You will need to use the fsCommand to run some Javascript from inside your Flash movie. In this case you may want to call a function that sets the focus to a specific field. So, you would create a JS function for your page that does this, something like:
Don't forget to add the swLiveConnect="true" parameter!
Macromedia Flash TechNote: [macromedia.com ]
A JS function to do this would look like:
function setFocus(elementID) {
document.getElementById(elementID).focus();
}
HTH
Oddly enough, when I removed the wmode transparent parameter from my object tag i had no problems tabbing from html through flash and on to the rest of html in explorer.
Mozilla though, is still causing some problems.
As I have no embed tag (for validation purposes - using the Flash Javay method) I suspect that this is where the problem lies and will be fiddling around with this inbetween times.
In the meantime thanks for your help,
any more suggestions as to where the problem might lie are very welcome!
Una