Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by 0gani

  1. 0gani

    accessing variables

    how do I access a variable that was created in a function? For example <code> function create() { var myvariable:string='hello world'; } trace myvariable </code> does anyone have a solution for this?
  2. 0gani

    swfobj

    yes it seems it has..... but i was asking if there is a way to go around that
  3. 0gani

    swfobj

    I am using the swfobject with actionscript to automatically update users who have old versions of flash. The problem is, when the user's flash player has been updated to flash 9, the page closes and opens in a new window. Does any one know how i can make it refresh the existing window?
  4. 0gani

    localconnection dropped

    so you mean that one can not have AS2 and AS3 communicating?
  5. 0gani

    localconnection dropped

    I have 2 swf movies. They communicate using LocalConnection. They are on one page. One swf is AS2 and the other AS3. They work fine when it is just the one window open. But when i open another window with a different swf, my 2 swf files stop communicating. Any idea why?
  6. 0gani

    Can no body do it?

    Can no body demonstrate how two swf files (one AS2 and the other AS3) can have two-way communication? I have seen countless examples of one way communication but in most cases two-way is required. Especially with the introduction of AS3.
  7. 0gani

    localconnection

    anyone have any idea how to do this for two-way communication?
  8. 0gani

    localconnection

    it worked for me in both...
  9. 0gani

    localconnection

    Thanks how would this work if i wanted two-way communication?
  10. 0gani

    localconnection

    What's wrong with this code? AS3 import flash.external.ExternalInterface; import flash.net.*; var AVM_lc:LocalConnection = new LocalConnection(); AVM_lc.connect("thisconnection"); AVM_lc.showalert= function() { ExternalInterface.call("alert", "hey it worked"); } AS2 var...
  11. 0gani

    ie problems

    This AS2 works great in both IE and firefox import flash.external.ExternalInterface; var cookieValue = ExternalInterface.call("myGetCookie", "yumyum"); hello_txt.text = cookieValue; This AS3 works great only in firefox but not IE import flash.external.ExternalInterface; var...
  12. 0gani

    AS2 to AS3 migration problems

    here is the fla file here .. http://myoperators.com/useless/helloworld.fla you can download it and try to see where i am going wrong. Thanks in advance
  13. 0gani

    AS2 to AS3 migration problems

    import flash.external.ExternalInterface; if(ExternalInterface.available){ trace(ExternalInterface.call("myGetCookie", "yumyum")); }else{ trace("ExternalInterface is not available"); } this code gives me nothing. The flashdoes not seem to fully load. Here is the result...
  14. 0gani

    AS2 to AS3 migration problems

    import flash.external.ExternalInterface; var cookieValue: = ExternalInterface.call("myGetCookie", "yumyum"); if (cookieValue==1) {this.gotoandplay(15)} This worked perfectly in AS2. But these people have compeletly changed everything with AS3. I get all kinds of errors in AS3. Any help on how...

Part and Inventory Search

Back
Top