blog.gbala.com
gbala - Tricks in FLASH: Print a movie clip in flash
http://blog.gbala.com/2009/04/print-movie-clip-in-flash.html
Gbala - Tricks in FLASH. Tricks in flash found by me. Friday, April 17, 2009. Print a movie clip in flash. In this i like to tell about how to print a movie clip from flash AS2.0. For this just create a movie clip what it has to print. name it as your wish. And copy the below code and past it in the frame. Function print page() {. Var my pj = new PrintJob();. Var myResult = my pj.start();. MyResult = my pj.addPage("img mc2", null, {printAsBitmap:true}, 1);. Delete my pj;. In the button put the code as.
blog.gbala.com
gbala - Tricks in FLASH: Add a movie clip from library in AS3.0
http://blog.gbala.com/2010/08/add-movie-clip-from-library-in-as30.html
Gbala - Tricks in FLASH. Tricks in flash found by me. Tuesday, August 3, 2010. Add a movie clip from library in AS3.0. Hi Guys ,. In this post i am going to tell a basic way to load a movie clip from library. Step 1: Add a movie Clip in stage so that it will get added to your library. Step 2: Delete from the stage so it will be available in the library. Step 3: Now open the library (ctr l) right click the movie clip and give Export for Action script and give a name. Step 6:Now in the as file.
blog.gbala.com
gbala - Tricks in FLASH: August 2010
http://blog.gbala.com/2010_08_01_archive.html
Gbala - Tricks in FLASH. Tricks in flash found by me. Tuesday, August 3, 2010. Add a movie clip from library in AS3.0. Hi Guys ,. In this post i am going to tell a basic way to load a movie clip from library. Step 1: Add a movie Clip in stage so that it will get added to your library. Step 2: Delete from the stage so it will be available in the library. Step 3: Now open the library (ctr l) right click the movie clip and give Export for Action script and give a name. Step 6:Now in the as file.
blog.gbala.com
gbala - Tricks in FLASH: July 2008
http://blog.gbala.com/2008_07_01_archive.html
Gbala - Tricks in FLASH. Tricks in flash found by me. Wednesday, July 30, 2008. Some jokes i liked. Teacher :What happened in 1869? Student:Gandhi ji was born. Teacher :What happened in 1873? Student:Gandhiji was four years old. Question:What is the fullform of maths. Anwser:Mentaly affected teachers harrasing students. Teacher :Because of Gandhiji's hard work what do we get on 15th August. Teacher :Tomorrow there will be a lecture on Sun.Everyone must attend it. I will not be able to attend it. This can...
blog.gbala.com
gbala - Tricks in FLASH: June 2008
http://blog.gbala.com/2008_06_01_archive.html
Gbala - Tricks in FLASH. Tricks in flash found by me. Friday, June 20, 2008. In this i like to tell a function called. This is a function used to find out how much of bytes loaded in the system. This is a function used to find what is the total size of the flash file which is getting loaded. This are the two function used to create a preloader. In my next tutorial i will explain the preloader with example. Links to this post. Wednesday, June 18, 2008. Setting different style in a single text box. User = ...
blog.gbala.com
gbala - Tricks in FLASH: AS3.0 button event
http://blog.gbala.com/2009/04/as30-button-event.html
Gbala - Tricks in FLASH. Tricks in flash found by me. Tuesday, April 14, 2009. In this i like to specify a simple button example in AS3.0. Most people says we cant wright code in frame That is FALSE. We can. In this example i has written the code in the frame. Create a button and place it in the stage. Give the instance name for it In my example i has specified as b1. Go to the frame Now and add a event listener for that button. Button .addEventListener( eventname , function name );. Code for the function.
blog.gbala.com
gbala - Tricks in FLASH: August 2008
http://blog.gbala.com/2008_08_01_archive.html
Gbala - Tricks in FLASH. Tricks in flash found by me. Wednesday, August 20, 2008. In this i like to say how to change a single movie clip to other. Some time we might need to change a particular item in a movie clip we can do that with the option called swap. It can be done in the way of. Select the movie clip what you want to change. Select the properties window(ctr F3 to open the properties). Click the button swap and select the movie clip to change. It will get replaced. Links to this post.
blog.gbala.com
gbala - Tricks in FLASH: December 2008
http://blog.gbala.com/2008_12_01_archive.html
Gbala - Tricks in FLASH. Tricks in flash found by me. Sunday, December 21, 2008. Common library for your Flash application. In this i like to tell a simple way how to use the same movie clip in all your files with out any searching. By using Common library. First create a file consider your logo so that in what ever file you like to put the corresponding logo can be placed with easy way. Create a Flash file with a library containing the logos and all your movie clip you want to use. Enjoy the cool stuff.
blog.gbala.com
gbala - Tricks in FLASH: Link a url in AS3.0
http://blog.gbala.com/2009/04/link-url-in-as30.html
Gbala - Tricks in FLASH. Tricks in flash found by me. Tuesday, April 14, 2009. Link a url in AS3.0. Extension of the old post if you have not read the old one follow the link. Button event in AS3.0. In this one i like to explain how to link a url in AS3.0. Create a button with the event and the function. if you are not aware plz read the previous post button event in AS3.0. Inside the function write the code to link the URL. You need to create a URLRequest object in the Syntax. Once it is done. After I d...