Force focus

closed…

ok so according to the adobe documentation…I can do this through javascript…


<body bgcolor="#FFFFFF" onLoad="window.document.movieID.focus();">

where the movie id is the mame given to the object:


<object classid="..." codebase="...."
    width=550 
    height=400     name="movieID">

however, I am using swf object and therefore do not have an object name…how can I refer to the swf object so that it gets focus?

please help

here is the adobe documentation…
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15586&sliceId=2

The ID is the second argument when you create the SWFObject, in your case it’s “EXPOCAD FX 1.0” which may not work with the spaces and period. I’d suggest making it something like “EXPOCADFX_1_0”

cool thanks a lot man…that helped!