JAVASCRIPT in FLASH not work in IE

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • pixelsoftorg
    New Member
    • Dec 2008
    • 2

    JAVASCRIPT in FLASH not work in IE

    i used javascript code in Actionscript and create a button in in flash and use these code on button, this button worked in GoogleChrom and FireFox, but not work in Microsoft Internet Explorer

    this is my code :

    Code:
    on(release){
    	getURL("javascript:window.open('http://www.pixelsoft.org/download/javacenter/mobile/alone.html','PixelSoft.ORG', 'toolbar=no,menubar=no,width=260,height=400,resizable=no')","_blank");
    }

    Please help me

    this is my mail : [edit]
    Last edited by gits; Dec 30 '08, 01:00 PM. Reason: - drop email-address and use code tags
  • gits
    Recognized Expert Moderator Expert
    • May 2007
    • 5390

    #2
    there could be two issues:

    1. replace the window_name: 'PixelSoft.ORG' with a name without a . may be just use 'PixelSoftORG'

    2. IE's popupblocker could block the popup then ... you cannot control that but you may use an iframe or another method to display the page

    both of it was an issue with this for my test in IE 6 here.

    kind regards

    Comment

    • pixelsoftorg
      New Member
      • Dec 2008
      • 2

      #3
      thank you very much GITS!

      Comment

      • gits
        Recognized Expert Moderator Expert
        • May 2007
        • 5390

        #4
        no problem ... you're welcome ... post back to the forum in case you have more questions ..

        kind regards

        Comment

        Working...