See if your browser's popup blocker is interfering.
{
WindowObjectReference = window.open(strUrl,null,
"resizable=yes,scrollbars=yes,status=yes");
if (WindowObjectReference == null) alert("Popup blocked!");
} else {
--- In [email protected], "wi1df1ower" <[EMAIL PROTECTED]> wrote:
>
> Can anyone tell me why the following is not working?
> --in the actionscript:
>
> public function openWindow():void {
> var strFunction:String = "openWindow";
> var strURL:String = "http://www.yahoo.com";
> var strCall:String =
> ExternalInterface.call(strFunction,strURL);
> }
>
> --called from my linkbutton:
> <mx:LinkButton label="Homework" enabled="true" click="openWindow()"/>
>
> --in my .html wrapper. I have the "generate html" functionality
> turned off.
>
> <script type="text/javascript">
> var WindowObjectReference = null; // global variable
>
> function openWindow(strUrl)
> {
> if (WindowObjectReference == null || WindowObjectReference.closed)
> {
> WindowObjectReference = window.open(strUrl,null,
> "resizable=yes,scrollbars=yes,status=yes");
> } else {
> WindowObjectReference.focus();
> };
> }
> </script>
>
> I am using this from a tip used on CFLEX...its just about verbatim,
> but it wont work.
>
> i feel silly....please tell me if you see anything please.
>
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/
<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/