Hi everyone,
I'm creating a website that allows kids to designs a tshirt. I will have four section, colour, graphic, text and print.
I have created these sections on demos and they are all working.
I now need to properly create them all on one movie clip.
I'm having problems with it, when i select the chosen tshirt colour and move o...
Hi lads,
I have an issue generating multiple text fields in AS2.
My AS2 Flash application calls database (via PHP) and then receives XML file that contains a few objects. All I want to do is to loop throught this XML objects and then create a TextField (actually a Component that contains graphics and TextField, but this will come later) ...
Hello,
I have a basic for loop to loop through buttons and set some stuff and onPress handlers:
for (i=1;i<=20;i++){
//do some stuff
_root["button"+i].onPress = function(){ someMC.gotoAndStop(i+1); }
}
However, as I noticed, all buttonsthen link to one and same frame - all point to last i + 1 - Is there any possibility to call go...
I recently made a website, and the buttons look like this:
On(release)
{
gotoAndPlay ("title", 1);
}
My problem is, when you click the button the first time, it goes to the correct frame. but when you click it again, it goes to the next frame, or to the next scene. How do I remedy this? thanks!
...
I wanted to make a guestbook for my flash website but I also need to have it sent to my email. Is there a way I can do this without using PHP or my sql? what would be the as2 for it? thanks!
...
hello, i've a MovieClip and i would like to change the transparency of this movieclip how can i do?
Thx.
...
Hey guys, I've been trying to build something simple in Flash 8, and I stumbled across something weird I cannot explain:
I have an object, and at some point of the program, I want it to be visible (it is invisible at first), so I write:
_root.myObj._visible = true;
_root.gameOver.swapDepths(_root.getNextHighestDepth()); //so it will be...
I am loading a MovieClip using MovieClipLoader. When the MovieClip starts playing, it changes the alignment of my stage to LT, which incorrectly repositions all the other objects on my stage.
Is there anyway for me to:
Prevent the MovieClip from changing the alignment of my stage?
Adding an event handler to an appro...
I've got various flash files stored on my server.
For this exmaple - here is the directory structure:
Files > Example >
-> example.swf
-> example.xml
So then on a separate webpage stored in the root of my server.. i'm embeding the flash.
...
<param name="movie" value="http://www.example.com/Files/Example/example.swf">
...
N...
I have some AS2 code that opens a SWF file through an HttpHandler.
I'm trying to get the program to recognize when a requested file is missing.
My first attempt involved using LoadVars and "load", and only calling loadMovie if the file successfully loaded (found the technique somewhere out here). However, I found that the ProcessRequ...
I have a large project built in as3. Part of its main functionality is to load and unload various as2 swfs. The problem is that the memory ins't free up once they are unloaded.
I have access to the as2 swfs code base and destroyed all objects, stopped and killed timers, listeners, removed from stage, destroyed all the MovieClip.protoyp...
var myXML:XML = new XML();
myXML.ignoreWhite=true;
myXML.load("tekst.xml");
myXML.onLoad = function(success){
var yC:Number = 65;
if (success){
var myTxt:Array = Array(0);
var myNode = this.firstChild.childNodes;
for (i=0; i<myNode.length; i++) {
myTxt[i] = "text"+i+"content";
createTextField(myTxt[i],i,25,yC,167,myNode[i].childNodes...
Hi all, how can I draw arc in randomize created triangle's angle with flash actionscript 2.0.
Thanks all.
I would like to draw red arc at every triangle's angle. Note: The triangle will be created randomly.
...
How can I write mathematics formula in actionscipt2.0? As following:
Thanks all!
...
How to draw a triangle in a math graph which displays X and Y axis.
...
Hi All,
I am a .NET programmer working with a Flash designer on a project. The design is that they will create a flash UI (implemented with AS2) to present a questionnaire. After it is completed by an end user, the will send me (a .net web service of some form) the answers to the questionnaire, I will perform a calculation, and I will...
Hi
I wanna generate a random triangle with coordinates, which shows the arcs of each corner in actionscript 2.0 with flash 8.0.
Thanks in advance
...
I have some problem in check two textfield.text comparison. One TextField.text value is come from calculation and the other textField is from user input. When I check those two text, the TextField.text value didn't show and I can't compare those two. How can I compare in actionscript 2.0. Please Help me! Thanks in advance!
...
Hi
how i display the coordinates of a random triangle in a graph which ranges from -10 to +10 in XY axis with the points like A(2,1) etc with arcs in each corner, in actionscript 2.0
...
var spw:MovieClip = contentsLayer.attachMovie("ScrollPaneWrapper", "ScrollPaneWrapper123",
contentsLayer.getNextHighestDepth());
var sp_:ScrollPane = spw.sp;
Here typeof(sp_) == "movieclip" and I can't set any content to it. I've tried exporting it for ActionScript, exporting the wrapper movieclip "ScrollPaneWrapper" and "E...