Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Actionscript Tutorial Issue ?



I was reading Eddie Carrol's (sp?) tutorial on operators......well to get to the point, in one part he discusses the NOT operator...and give some lines of code:

On (Release)
If ( not on = 0)
Set Variable: "output" = "not on"
Else
Set Variable: "output" = "on"
End If
End On

I seem to have a problem with line 2..when i type it inside flash's actions, it tells me: The operator 'not' must be followed by an operand.
I am using flash 5, is Eddie's code outdated? If so what is the current way to use the NOT operator?



FlashKit > Flash Help > Flash ActionScript
Posted on: 01-12-2002, 10:33 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

First Tutorial Issue
Sorry if I posted this in the wrong place. I followed the tutorial Video Basics Part 1 as best as I could. I got my "action" and "video" script in the right order and both were locked. But I'm using Flash 8 so it's different for me.

So, lemme get this straight... What I do is I add the code that Lee adds (which I've done), but how do I add the video exactly? When I click that "New Video" thing in the library it asks me to import the .flv video file right then and there, but Lee's Flash MX 2004 doesn't do that. So what I did is I opened up a different new flash document and saved out my video in a .flv file with that. Then went back to the first file (with my actionscript and all) and imported my .flv in the Library's "New Video" choice. Then I dragged out the video and it worked. But I really feel I did something wrong, my actionscript of course has the file ("MoNht1.flv") in the last line which is my file instead of Lee's file ("vegas.flv"). When I test it out, the sound in my video sounds like crap and I don't know if I did it all 100% correct. Any help?

Remoting Tutorial Issue
home / tutorials/ Flash MX (PHP) Remoting

Following along with the above tutorial running locally on MAC OS 10.2.8:
localhost/~username/test_services, current dir structure.


Reached the trace portion, but the only strings returned to the output window are:

Calling returnString
Calling returnNumber
Calling returnArray

I searched but was unable to find anything.

Carousel 2 Tutorial Issue.
Hello everyone and Merry Christmas!(Yeah I know, I'm late)

Well. In order to train and familiarize myself to flash (Macromedia flash professionnal 8 version), I decided to follow and put in application the Carousel 2 tutorial.

Everything worked fine since my last carousel swf build. My main problem is that the text is not displayed in the tooltip box. And I don't know why. My code seems to be nearly the exact copy of the one's which is given in the tutorial, but the tooltip box remains empty. A notice: When I put the text to "static", it is shown, not the case when I check "dynamic". Here is my actionscript code:

Code:

import mx.utils.Delegate;

var numOfItems:Number;
var radiusX:Number = 280;
var radiusY:Number = 75;
var centerX:Number = Stage.width/2;
var centerY:Number = Stage.height/2;
var speed:Number = 0.05;
var perspective:Number = 100;
var home:MovieClip = this;


var tooltip:MovieClip = this.attachMovie("tooltip","tooltip",10000);
tooltip._alpha = 0;

var xml:XML = new XML();
xml.ignoreWhite = true;
xml.load("icons.xml");

xml.onLoad = function()
{
  var nodes = this.firstChild.childNodes;
  numOfItems = nodes.length;
  for(var i=0;i<numOfItems;i++)
   {
     var t = home.attachMovie("item","item"+i,i+1);
     t.angle= i* ((Math.PI*2)/numOfItems);
     t.onEnterFrame = mover;
    t.toolText = nodes[i].attributes.tooltip;
    t.icon.inner.loadMovie(nodes[i].attributes.image);
    t.ref.inner.loadMovie(nodes[i].attributes.image);
    t.icon.onRollOver = over;
    t.icon.onRollOut = out;
   }
}

function over()
{
   home.tooltip.tipText.text = this._parent.toolText;
   home.tooltip._x = this._parent._x;
   home.tooltip._y = this._parent._y - this._parent._height/2;
   home.tooltip.onEnterFrame = Delegate.create(this,moveTip);
   home.tooltip._alpha = 100;
}

function out()
{
   delete home.tooltip.onEnterFrame;
   home.tooltip._alpha = 0;
}

function moveTip()
{
   home.tooltip._x= this._parent._x;
   home.tooltip._y= this._parent._y - this._parent._height/2;
}

function mover()
{
   this._x = Math.cos(this.angle)* radiusX + centerX;
   this._y = Math.sin(this.angle)* radiusY + centerY;
   var s:Number = (this._y - perspective) / (centerY+radiusY - perspective);
   this._xscale = this._yscale = s * 100;
   this.angle += this._parent.speed;
   this.swapDepths(Math.round(this._xscale) + 100);
}

this.onMouseMove = function()
{
   speed = (this._xmouse-centerX)/2500;
}


Here is my xml code:

Code:

<icons>

<icon image="earth.png"   tooltip="Reseau" />
<icon image="add.png"     tooltip="Ajouter" />
<icon image="del.png"     tooltip="Supprimer" />
<icon image="members.png" tooltip="Membres" />
<icon image="seek.png"    tooltip="Rechercher" />
<icon image="help.png"    tooltip="Aide" />
<icon image="email.png"   tooltip="Email" />
<icon image="home.png"    tooltip="Accueil" />

</icons>


Can someone help me find the "bug" please? Thanks in advance and sorry if the problem have already been posed (I made a search but find nothing related to my issue...).

Edit: I searched more and I downloaded the carousel2 version of the tutorial. Seems that the issue was bound to my tooltip movie clip. The way I made it was obviously wrong. I need to train myself more. Sorry to have bothered.

P.S: M.Lee, Thank you very much for your effort. I know this is not so simple to make such tutorials. Hope there were more people like you on the net.

Help With Crash Issue/actionscript Issue
Hello all,
My name is Josh and I want to say thanks for even reading my post, I appreciate any help I can get. I am here at work trying to edit a flash intro I bought from templatemonster (no im not a newbie, but this is the one my boss really liked, so what he wants he gets). Im trying to edit it here and i first opened it in Flash 8 which is what i normally use. So, im editing it and usually after I edit a few things I would like to get a glimpse so i test the movie real quick. Well, everytime the "export movie" dialog box came up, it stops at about a little more than half way and the box goes away and NOTHING comes up. IT doesnt freeze, but my test movie doesnt show like something usually would. So i tried installing/uninstalling it to no avail. Finally my boss went out and purchased flash cs3 and we installed that. So im editing it again, and went to test movie, and this time it gets 3/4 way done and "flash has unexpectedly quit" etc etc. So im starting to think its something with the actionscripting maybe?? i dont know but im really frustrated and need some help here. And also, even if I tried to just plain export the movie to swf, crashes too!
Thanks everyone!
-Josh

Photo Gallery Tutorial Issue
I finished the photo gallery tutorial, and I'm having an issue with it. When you play the photo gallery, the pictures coming up in the lower right hand corner. I found this issue posted on the forum, to be honest with you, i have no idea what the fix was ... could someone do me the favor of looking at my files and let me know what i need to do to fix it?

Z



(it keeps telling me that my file is too big (and it's not) so i'm going to have to break them up into about 3 differnt postings

Transitions Between External Swf Tutorial Issue
Hi,
This is my first post...so let me know if I should be doing something different!
I have been working with this tutorial ¨Transitions between external swfs¨ from kirupa.com. I downloaded the zip and then tried to modify it with my own external swfs...worked fine as long as the swfs I swapped in were simple. But when I tried it with swfs that included galleries or any other kind of interactivity it seemed to break down. Made me wonder if I need to modify something additional when working with these kinds of slightly more complex swfs...
Does anyone have an answer for this? I can post what I am doing if that helps...
M

Photo Gallery Tutorial Issue
I finished the photo gallery tutorial, and I'm having an issue with it. When you play the photo gallery, the pictures coming up in the lower right hand corner. I found this issue posted on the forum, to be honest with you, i have no idea what the fix was ... could someone do me the favor of looking at my files and let me know what i need to do to fix it?

Z



(it keeps telling me that my file is too big (and it's not) so i'm going to have to break them up into about 3 differnt postings

Issue With Double Helix Tutorial...
Ok I got the double helix to work fine in the main stage but I want to put it into a movie clip. So basically i'll have the base pair movieclip inside another movieclip which will be put onto the main stage. The problem is that it won't work when I try to do it this way. Someone suggested that I read about paths but I couldn't find anything on it. So if someone could help me I would be greatful, thankyou.

Flash Mp3 Player - Tutorial 1 Issue
Hi all.

I have followed the tutorial and found it very useful. However, after finishing the tutorial and testing my movie, I found that the tracks didnt play and I also got the following message in flash Cs3

Error opening URL 'file:///F|/mp3/undefined'

I figured that it was because of where everything was on my computer so uploaded it to my server and im still having the same problem. Could anyone shed some light on this for me ?

Cheers


Ash

Mail With PHP Tutorial - Small Issue
Hello my fellow Flash enthousiasts!

I'm relative newcomer to the Flash scene and over the course of time have learned many of my 'basic skills' through tutorials on the web. Amasingly, not until recently I encountered this great site, which offers really comprehensible video's and actually has a forum where people tend to post AND solve problems in a gently manner

So let's put aside the cheering and come down to my issue.

I've followed the tutorial "Mail with PHP" step by step and thus coded my php en flash files like the Japanese copied the transistor radio, that is to say, I did it thoroughly
But some problems surfaced and my email would receive blank emails. I researched your forum a bit, and a nice guy named Thomas already posted the solution after running into the same problem. Now I get the emails correctly, with the fields filled in and I can reply to the sender.

I still have two issues left though and I think it has got to do with my flash file.
FIrst of, when I hit 'Test Movie', fill in all of the fields, I do get an email, but my flash movie displays the portion designed to say: "Your message was not sent". Odd, isn't it? It should say "Message has been sent ", because indeed it did arrive. Yes, the right text is written in the appropiate keyframes.
Secondly, my flash movie won't load in my test browser when I put it in my site in dreamweaver. Yes, I have ignored all of the security warnings the browser tends to trow upon you these days. It must be something with my flash file itself.

Here's my code as well:
Flash
Code:

stop();

var senderLoad:LoadVars = new LoadVars();
var receiveLoad:LoadVars = new LoadVars();

sender.onRelease = function() {
   senderLoad.theName = theName.text;
   senderLoad.theEmail = theEmail.text;
   senderLoad.theMessage = theMessage.text;
   senderLoad.sendAndLoad("http://www.***********.com/contactform.php",receiveLoad,"POST");
}

receiveLoad.onLoad = function() {
   if(this.SentOk) {
      _root.gotoAndStop("success");
   }
   else {
      _root.gotoAndStop("failed");
   }
}


My PHP bit in Dreamweaver
Code:

<?PHP
$theName = $_POST['theName'];
$theEmail = $_POST['theEmail'];
$theMessage = $_POST['theMessage'];
$to = "******@gmail.com";
$subject = "Contact form entry";
$message = "Name: " . $theName;
$message .= "
Email: " . $theEmail;
$message .= "

Message: " . $theMessage;
$headers = "From: $theEmail";
$headers .= "
Reply-To: $theEmail";
$sentOk = mail ($to,$subject,$message,$headers);
echo "sentOk=" . $sentOk;

?>

I know I'm a giddy goat to reveal my utter noobishness...but we all have to go through that Trial and Error phase I guess. Hope someone can help me out! And thanks in advance! Cheers.

Os-x Style Dockbar Tutorial In Webdesigner Issue 86
Does any one who has followed the tutorial mentioned tell me how to make the buttons more usable and navigate to ie: other swf files.

i have included the code, so check it out and please get back to me.

chris

SMOOTH TRANSITION TUTORIAL - PATH ISSUE - HELP
Hi there
I'm using the tutorial found here to transition smoothly between my external swfs. This method calls the swfs into a container, called location, on stage. However, I have 2 problems:

1. The method in the tutorial only shows how to to do it from the mainline, which I am not doing.

2. My navigation is already in a container, called container, which I am unsure of how this will affect the path.

Quickly, home.swf is loading image1.swf into a container (called location) on stage. Image1.swf contains my menu. The menu will not call the relevant swf's when clicked. I know it's a path issue, but I am fairly code illiterate and could desperately use someone else's eyes on this for 3 minutes to let me know what and where the path needs to change to...

PLEASE DOWNLOAD THE FILES (3 MEGS) FROM MY SERVER... too large for upload here. Download them at http://www.moggey.com/help.zip

I've included the two fla's I am using, plus the relevant swf's that would be called were the navigation working properly.



If someone would be kind enough to take a quick look at my button A/S it would be soo appreciated!

THANK YOU IN ADVANCE!
Wade

Scroller Based On Kirupa Tutorial Issue...help.
Hello,
I have been playing with the Kirupa scroller tutorial (http://www.kirupa.com/developer/flash8/scrollbar.htm ). I have been able to get it to work as a separate independent movie and swf file, but when I try to use the same steps and embed it within another movie it stops working.

What I have been trying: while in the main timeline of the main movie, I build a new movie clip using the tutorial. When I place an instance of the scroller movie clip on the main timeline, it will not function.

Should I be making some adjustments to the actionscript to get the scroller to work?

I hope I have given enough information for someone to give me a suggestion.
Thanks for your help in advance.

Ray

Issue With Kirupa.com Flash/PHP Form Tutorial
I've scoured the web high and low and cannot find a tutorial for this that actually works despite my efforts at checking and rechecking it. I never receive any email. Any help would be appreciated. I'll try and lay everything out.

Three input fields: Name, Message and Email Address. All have assigned var names as name, message and email. Fields are within a mc called "form".

Submit button has this code:

on (release) {
form.loadVariables("emailForm.php", "POST");
gotoAndStop(2);
}


The Form mc has this code:

onClipEvent(data){
nextFrame();
}


My PHP file has this code:

<?php
$sendTo = "name@domain.com"; I inserted my actual email here, I deleted it because I don't want the world knowing it from here
$subject = "From My Web Site";
$headers = "From: " . $_POST["name"];
$headers .= "<" . $_POST["email"] . ">
";
$headers .= "Reply-To: " . $_POST["email"] . "
";
$headers .= "Return-Path: " . $_POST["email"];
$message = $_POST["message"];
mail($sendTo, $subject, $message, $headers);
?>


Does anyone happen to know why this doesn't work? I also tried creating the PHP form using my ISP's web hosting tools (AT&T Yahoo). If anyone happens to know if there is something specific I need to do to get it to work with AT&T Yahoo that would be great. I'll also need to know if there's anything specific to Network Solutions.

I appreciate any and all help very much!

Os-x Style Dockbar Tutorial In Webdesigner Issue 86
Does any one who has followed the tutorial mentioned tell me how to make the buttons more usable and navigate to ie: other swf files.

i have included the code, so check it out and please get back to me.

chris

Hasans' Web Services Tutorial: Small Issue
Hey guys, I am having a problem with this code.
Code:

import mx.services.WebService;
import mx.services.PendingCall;
var earl:String = "http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl";
var ws:WebService = new WebService(earl);
var pc:PendingCall;
function getRates():Void {
   pc = ws.getRate("United States","Canada");
   pc.onResult = onResponse;
}
function onResponse(rate:Number) {
   xRate_txt.text = "The current exchange rate is: " +rate;
}
pc.onFault = function():Void  {
   xRate_txt.text = "Error with request";
};


The problem is that I just want the rate to be displayed in a dynamic text field called"xRate_txt.text" I know it is something tiny I am overlooking. Thanks in advance!

Fixing The Flash/Embed Issue Kirupa Tutorial, Not Working For Me In IE
Hey all

Have just run through the flashobject fix for this issue. It works fine in Firefox but when I run the webpage in IE no flash movie shows up. Am i doing anything wrong?

(Im on XPPro SP2, but not many hotfixes installed, (as it crashed my PC))


<script type="text/javascript" src= "flashobject.js"></script>

<div id="flashcontent" style="width: 785px; height: 330px"></div>

<script type="text/javascript">
var fo = new FlashObject("/images/final_portfolio.swf?<%response.write qs%>", "final_portfolio.swf", "785", "330", "8", "#FFFFFF");
fo.addParam("allowScriptAccess", "sameDomain");
fo.addParam("quality", "high");
fo.addParam("scale", "noscale");
fo.addParam("loop", "false");
fo.write("flashcontent");
</script>

Have tried without the ?ASP. Any suggestions?

Actionscript Tutorial
I know you've probaly heard this a thousand times,
But can someone please tell me of a great actionscript tutorial. Thanks.

ActionScript Tutorial Help
Can somone please give me a link to a ActionScript 2.0 tutorial
Thanks

Actionscript Tutorial?
Hey Guys!

I'm New in flash and just bought myself and package of studio MX...So what i reallly neeed is an actionscript tutorial that can help me to be a genius in your world of graphix?

Identity: Black and South African!

Heita!

Need An Actionscript Tutorial
Anybody got a good TUTORIAL for Actionscript?
if so post here, any help apprecieated

[F8] Need Actionscript Tutorial
Hello guys , I am new to this forum and also new to flash. I really need some flash actionscript tutorials but have not found anything easy to use for a beginner like me, If you recommend something to start with please let me know Thank you

CS4 Actionscript 3 3D Tutorial
Hi

I'm trying to work with 3D space in Actionscript and am finding it more problematic than expected.

When I set the .z value onto a movieclip the movieclip disappears. At present I'm simply trying to move a movieclip backwards and forwards in z space.

Does anyone know what I'm doing wrong and if there are any good tutorials that focusses on the Actionscript 3 3D control rather than the authoring environment.

Thanks in advance

D

Actionscript Tutorial
how do i link to a different properties frame? different frame lable on the timeline? in this tutorial?

http://www.actionscript.org/tutorial...us/index.shtml

any help would be great!!! please!! reallt stuck!

ActionScript Tutorial Help
Can somone please give me a link to a ActionScript 2.0 tutorial
Thanks

Actionscript Tutorial
Help. i dont know anything about actionscript but stop(); Do you know of other sites or references for a beginner like me to learn actionscript? Pls help

ActionScript Tutorial
Hello,

I have been playing with Flash for about a year now and I am starting to get serious about ActionScript. Does anybody know of any tutorials that will help me improve my skills. Thanks in advance!

ActionScript Tutorial Help
Can somone please give me a link to a ActionScript 2.0 tutorial
Thanks

Actionscript Tutorial
Help. i dont know anything about actionscript but stop(); Do you know of other sites or references for a beginner like me to learn actionscript? Pls help

ActionScript Tutorial
Hello. Is there a tutorial on ActionScript that reviews every angle of that language. I tried to read the help of flash mx but i'm kinda stupid and i couldn't get much. Is there a tutorial which explains AS thoroughly ( i have a little knowledge in AS- very little).

Actionscript - Tutorial
I have been searching a while for a decent actionscript tutorial, can anyone give a reccomendation? I want a straightforward how to actionscipt tutorial, not just a page with 'Beginner tutorials' and then a lot of random tutorials. That doesn't really help, I don't particularly want to do every tutorial and make every program, I just want to know how to script...

Actionscript Tutorial
Does anyone know of a good basic actionscript tutorial? Any help would be appreciated.

Flash MX Actionscript Tutorial
Anyone know of any good tutorials for people wanting to learn actionscript in Flash MX?

thanks

General Actionscript Tutorial
i need to find a tutorial of actionscript, but not specific of one topic. i need a general one and for beginers.

if anyone know where i can get one, please contact me...

thanks in advancel....

Tutorial Help Actionscript Conflict
Hey guys I have one problem The syntax of the Actionscript does not match with the actionscript of Flash that I have now. So... I was wondering if you guys could help a noobie out here... I'm stuck with this...

(BTW this is from the tutorial from this page which is found here http://www.flashkit.com/tutorials/In...t-43/index.php )

On (Release)
Play
Begin Tell Target (_level0)
Go to and Play (Home)
End Tell Target
End On

I think I got it mostly worked out with this... I'm not sure though.

on (release) {
play();
loadMovieNum(_level0); {
gotoAndPlay(Home);
}
}

I dunno if that is right though. So any help would be appresiated greatly ^__^

Sincerely,
Nightwolf

I Need A Good Tutorial On Actionscript 2.0
There is nothing here worth a darn on Flashkit about

: movieCliploader
: onEnterFrame
: onClipEvent


Not much on Macromedia either that I understand.

I need to be spoon feed on this one.

Best regards
Toby

[F8] Actionscript Calendar Tutorial Anyone?
Anyone know of a tutorial for making a calendar in actionscript? The only thing I could find is multiple links to a tutorial on 'thecodebehind' website, which appears to be dead.

General Actionscript Tutorial
i need to find a tutorial of actionscript, but not specific of one topic. i need a general one and for beginers.

if anyone know where i can get one, please contact me...

thanks in advancel....

Easing Tutorial On Actionscript.org
http://www.actionscript.org/tutorial...em/index.shtml

So i've read the tutorial through several times, tried to do my own but it doesn't work.

So then ive tried looking at the .fla source file and there are some differences in presentation but for some very odd reason i cannot find where the author placed its actionscript, its not anywhere

can anyone help me make understand the easing system and tell me where the actionscript should be?

at the moment when I click on the buttons of my own system it doens't work and an error msg appears:

Symbol=content, Layer=actions, Frame=1: Line 1: Clip events are permitted only for movie clip instances
onClipEvent (load) {

Symbol=content, Layer=actions, Frame=1: Line 7: Clip events are permitted only for movie clip instances
onClipEvent (enterFrame) {

thx

Tutorial For Scaling W/actionscript
Could someone help me to point to a tutorial? I'd like to have 2 mc's that scale up or down depending on which one the pointer is over. When th epointer is over mc1 it increases and the mc2 decreases equally. I have tried searching "scaling with actionscript but I don't find anything remotely close, at least not on the first 140 topics found (or so).
Would be grateful for help

ActionScript Tutorial Sites?
Hi I want to learn ActionScript for Flash MX, is there any tutorial sites that take you from the very basics and teach you how to create something as complicated as a game. I know thee are a few examples on this site but I really need help with the very basics like where to type the ActionScript into and the like, I really am a complete begginer. Thanks in advance for your help.

@senocular, Actionscript 3.0 Tutorial?
Hi Senocular,

Are you planning to write an ActionScript 3.0 overview just like you did with:
http://www.kirupa.com/developer/oop2/AS2OOPindex.htm

I am really wondering what the differences is with 2.0.

regards

Most Awesome Use Of Actionscript Ever...need A Tutorial On This
My hats off to the geniuses over at www.levitated.net for their awesome display of Actionscript skills. One effect in particular grabbed my attention and I would really love to see how it could be adapted to different uses. Chek the effect and then read on...

http://www.levitated.net/daily/levTextSpace.html

Now the most wonderful thing here is that this is a very convincing 3d effect, I mean let's face it until now most of the actionScript based 3d effect I saw were rather simple and if one wanted to achieve a 3d world he needed a third party program such as Swift3d therefore sacrificing file size.

Now My question is this, could one use the Levitated.net effect and make it into an Intro animation ? Could it be possible for instance that instead of words flying in a 3d space, could it be Geometric shapes ( drawing API ?? ) But most importatly, can this be "Timed" to say a soundtrack. It's all about control !

Whatever we can come up with, I think it would be a wonderful challenge to pick apart this concept and break down the actionScript in order to build more customized versions and hand up with more cool stuff ! For example, a 3d interface based solely on actionScript ! Now wouldn't that be great or what.

To all of you actionScript Jedis out there Let there be light !

You gotta love OpenSource

Tutorial For Scaling W/actionscript
Could someone help me to point to a tutorial? I'd like to have 2 mc's that scale up or down depending on which one the pointer is over. When th epointer is over mc1 it increases and the mc2 decreases equally. I have tried searching "scaling with actionscript but I don't find anything remotely close, at least not on the first 140 topics found (or so).
Would be grateful for help

ActionScript Tutorial Sites?
Hi I want to learn ActionScript for Flash MX, is there any tutorial sites that take you from the very basics and teach you how to create something as complicated as a game. I know thee are a few examples on this site but I really need help with the very basics like where to type the ActionScript into and the like, I really am a complete begginer. Thanks in advance for your help.

Flash/Actionscript Tutorial In The UK
Hi all, can anyone advise on some good places that do courses/training for flash and for actionscript with flash. 1 day or upto 5 day courses?

THanks
Bruce.

Help, Please? Actionscript Issue. Thanks
THis is a three d rotating menu. What I want to do with it is simple.

When the user rolls over each portfolio icon, I want it to tell target a specific movie clip and have it do a simple go to and stop command. So that a picture will appear for each time one of the icons is rolled over.

Check it out.

http://www.apgroup.la/devon/help.fla

thanks.

Actionscript Issue
I have on a timeline 2 different areas where I have labels. Say the labels are "Play1" and "Play2". And I have a button and in the script it says when released go to and play "Play1" and then go to and play "Play2". The problem is though when the button is clicked you can only see "Play2" happening and so I want it to start playing "Play1" and when it is finished THEN go to "Play2".

Actionscript Issue
I have on a timeline 2 different areas where I have labels. Say the labels are "Play1" and "Play2". And I have a button and in the script it says when released go to and play "Play1" and then go to and play "Play2". The problem is though when the button is clicked you can only see "Play2" happening and so I want it to start playing "Play1" and when it is finished THEN go to "Play2".

Copyright © 2005-08 www.BigResource.com, All rights reserved