Sunday, July 1, 2012

[Action Script] Protect swf from decompilation July,2012

Hi,

I have a game that i now want to sell in the market, its a simple games yet i have worked hard and see that every thing is good and find a good buyer for it, just today i came across a software that claims to decompile any flash file, how do i protect my game from being decompiled and remain safe, what is it that you guys do to protect your swf, please suggest me ways and tools to do so that no one can hack my game and copy it or atleast protect my actionscript code.....

Thanks

Jin
Protect swf from decompilation

[Action Script] Converting from AS 2.0 to AS 3.0 July,2012

I am trying to position a MovieClip from XML file, in my project i'm using ActionScript 3.0 and i have got a code from the ActionScript 2.0 forum which is working perfectly fine, so i want to convert the below code to ActionScript 3.0

Can somebody help me in converting the below code from ActionScript 2.0 to ActionScript 3.0 ?

Thanks

Code:
myXML = new XML();
myXML.ignoreWhite = true;
myXML.load('xml.xml');

var map:Array = new Array();

myXML.onLoad = function() {
aNode = this.firstChild.childNodes;
len = aNode.length;
for (var i=0; i<len; i++) {
obj = {}
obj.xpos = aNode[i].attributes.xpos;
obj.ypos = aNode[i].attributes.ypos;
map.push(obj);
dups(i);
}
};

function dups(i){
duplicateMovieClip(_root.button, "knop"+i, i+1000);
ref = _root["knop"+i];
ref._x = map[i].xpos;
ref._y = map[i].ypos;
trace(map[i].xpos);
trace(map[i].xpos);
};
Attached Files File Type: zip Flash-XML.zip (10.0 KB)
Converting from AS 2.0 to AS 3.0

[Action Script] 3rd party software for flash(CyanBlue) July,2012

yeah some one(CyanBlue) told me that i can store my video source inside my exe file , package all file with just one exe file and it work but problem is once i publish it out my project wont work ,do any know what is the problem ? the software (northcode).

do any one know any kind of software can store video source inside exe ,same like northcode , and thank CyanBlue , i wanted to pm you but you your forum say don't pm you ,thank again that all you guys trying to help me , i really appreciate it.:p

i just wanted my file to keep it simple , i dont wanted a extra folder for video source.
3rd party software for flash(CyanBlue)