//AS3
//EYEBLASTER
import flash.events.MouseEvent;
import flash.system.fscommand;
click_btn.addEventListener(MouseEvent.CLICK,funcionClick);
function funcionClick(e:Event):void{
fscommand("ebInteraction");
};
//AS3
//EYEBLASTER
import flash.events.MouseEvent;
click_btn.addEventListener(MouseEvent.CLICK,funcionClick);
function funcionClick(e:Event):void{
EB.Clickthrough();
};
//AS3
//MSN
import flash.events.MouseEvent;
var tag:URLRequest = new URLRequest();
tag.url = clickTAG;
click_btn.addEventListener(MouseEvent.CLICK,funcionClick);
function funcionClick(e:Event):void{
navigateToURL(new URLRequest(tag),”_blank”);
};
//AS3
//MSN
import flash.events.MouseEvent;
import flash.system.fscommand;
click_btn.addEventListener(MouseEvent.CLICK,funcionClick);
function funcionClick(e:Event):void{
fscommand("URL1");
};
//AS3
//YAHOO
import flash.events.MouseEvent;
var tag:URLRequest = new URLRequest();
tag.url = clickTAG;
click_btn.addEventListener(MouseEvent.CLICK,funcionClick);
function funcionClick(e:Event):void{
navigateToURL(new URLRequest(tag),”_blank”);
};
http://www.flashkode.es
making a 64 bit captive runtime for air SWF
-
I'm using FlashDevelop and been having a huge problem using the ADT to
create a captive runtime exe for an as3 air application. After having a few
issues w...
1 week ago
0 comments:
Post a Comment