For last few years i was searching for a method to set a cookie that cannot deleted by the user. it will be use full when we need to track a user activity. for example we only want a user to register one time from a PC in our web site it is not possible through native cookie.
following is the working demo
http://www.actionscript.co.in/uploads/cookie-example/
Source file download
http://www.actionscript.co.in/uploads/cookie-example/cookie.zip
Please post the suggestions and bugs
Labels: javascript
I just made a multiple file uploaded in actionscript. I think it is useful for some one so i'm just posting the first version of the multiple file uploaded here. there is no detailed documentation available if any one need help using file uploader just send me a mail.
How to use the multiple file uploader.
1 . Just embed the swf file to your html documnet
2. following java script function get the file progress including current file total bytes loaded, total bytes
function onProgress(name,loaded,total){
alert(loaded)
}
3. Following javascript function trigger an event when the user select the file
function onSelect(){
var s=thisMovie('main').getFiles();// get the seklected file names
}
4. following java script function triggers when the all file upload finish
function onComplete(){
alert("Done")
}
sorry for the low description. i will be back with more details on the.
Labels: ActionScript 3.0
Hi friends,
i just stared my domain registration service. i think this is a low price options for you all please send me any suggestions if you have my domain registration service url is domains.keralawebhosting.biz . Here you can also purchase web hosting for just 2000 Rs for one year with unlimited web space unlimited Bandwidth unlimited database unlimited sub domains. if any one have custom requirements just send me an email. selected sites can get free web hosting also.
10 Mb web hosting 200.00 Rs
20 Mb web hosting 350.00 Rs
50 Mb web Hosting 550.00 Rs
1 Gb Windows Hosting 1000.00 Rs
Unlimited windows Hosting 2500.00 Rs
Unlimited Linux Hosting 2500.00 Rs
Unlimited Email Hosting 1500.00 Rs
for more details call 09746010990
Or visit www.keralawebhosting.biz
Labels: kerala web hosting
Any one interested to study actionscript 2.0,3.0 server side actionscript Contact Me at 9746010990
Labels: Actionscript Training
Hello friends,
If any one of you need web hosting for free . please contact me at 9746010990. Only personal and noncommercial web sites will get this offer. commercial hosting available for a small fee.interested peoples can contact.Only verified people can get this offer.People from cochin or kerala only call.
Labels: web hosting
how to access maintimeline functions and variables from a nested movieclip in as3
Posted by Anil MathewThis is the biggest problem for actionscript coders those who migrate from actionscript 2.0 and actionscript 1.0 to actionscript 3.0. In as1,as2 we can access the main timeline functions and variables from a nested movieclips just using _root.varName or _root.functionName, But in as3 we cant access the maintimline variables and functions this way.following is a sample code to access the maintimeline variable and functions from a nested movieclip.
MovieClip(root).functionName();
Or
MovieClip(root).varName