Stop(); is not working in Flash CS4 AS 3.0

I know it must be a real simple soution.
I do not uderstand why the stop on the attached file does not work. If i change the profile to AS 2.0. it works but not using in AS 3.0. See attached file.
Thnx in advance.
krmswl

there is a similar case here but no solution yet. http://forums.adobe.com/message/2199175#2199175
I tried the following.
I started from the beginning.
I created a new AS 3 doc.
Created a similar animation like the attached one on my orig post.
I added the stop on frame 1 on a separate layer name 'actions'.
I previewed the animation [ctrl + enter]
Swf plays as it should [no looping]
I now save the file to root of c:
Preview again [ctrl + enter]
Now animation loops
stop(); doesn't not work.

Similar Messages

  • Help - Simple mask not working in Flash CS4

    Hi everyone,
    Thanks for taking a minute to read my post.
    I am creating a very simple mask using motion tweening. I created some text on a layer and made it a masked layer. Then I created a mask layer which consists of a circle that will span across the text. When I play the movie the circle does not show up at all in the frames the mask layer spans (it's purple on a black background) and the circle does not move across the text like I told it to with the motion tweening. I don't know why it's not working. For some reason the circle isn't showing on the stage at all and it's not moving across the text. I don't know if I have it set up wrong on the timeline or what. Here's the steps I followed to create the mask:
    1.insert a new layer in which I named it mask and click frame 1 on this layer
    2. select the oval tools on the tools panel and set the stroke to none
    3. set the fill color to purple
    4. draw a circle and click the selection tool and drag a marquee around the circle to select it.
    5. click insert on the menu bar, click motion tween then click ok in dialog box about converting it to a symbol to be tweened
    6. click the last frame in the mask layer and drag the circle to the end of the line of text
    7.click mask on the timeline to select the mask layer, click modify on the menu bar, point to timeline then click layer properties
    8. verify the show check box is selected in the name section, click the lock check box to select it, click the mask option button in he type section, then click ok.
    9. play the movie in which the circle object covers the text on the masked layer as it moves across the stage
    Thanks for your help!
    ashmic19

    Update 8-2-10: In play mode the text was still visible when it shouldn't be but once I tested the movie the mask worked correctly with the text. So problem solved
    -ashmic19
    Thanks for all who viewed this. I finally figured out why it wasn't working. I had the mask layer locked. But now the circle is moving across the text but the text is viewable when it shouldn't be until the circle moves across it. How come it's doing this?
    ashmic19
    Message was edited by: ashmic19
    Message was edited by: ashmic19

  • Kular not working in Flash cs4

    I am having trouble getting Kuler to load up when i start up
    in flash and my color connection,it keeps saying i need to activate
    Flash but i already have,i even deactivated Flash etc.,and still
    the same thing.It is saying my preferences don allow Kuler to
    connect i checked the Flash preverences and i found nothing to
    allow me to connect Kuler,can anyone help????????

    look for case mismatches and check for security sandbox issues.

  • Captivate 4 AS2 Text Entry Box not working with Flash Player 11

    I am having issues with text entry boxes not working at all in flash 11. I am using Captivate 4 and exporting an AS2 swf. When you get to the slide you can type but you cannot see anything nor does the button or keystroke to move on. Also there is no cursor. Any ideas?

    You said it is not working with Flash 11, so does that mean you tested with previous version and that worked?
    While publishing choose Flash player as 9 and publish that, verify if that plays in a compatible web browser.
    AS 2 is a legacy scripting, it has been said not too be supported with even Flash Player 10 --
    http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=Part2_AS2_LangRef_1.html
    I believe if you switch back to version 9 while publish your project, it should work.
    Thanks,
    Anjaneai

  • NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug

    Title
    NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug or feature
    Description
    Problem Description:
    NetStream.send can not send data to peerstreams when using with cirrus. Conflict with documents.
    Sorry for tag the build as 11.0.1.3 while the bug is actually on 11.2 beta since the bug report system didn't have 11.2 beta yet.
    If you are not responsible for 11.2 beta bug fix, please help a hand to handle this bug to 11.2 team.
    This bug is "killing" to your application, so we really appreciate your help. Thanks.
    ==Publisher==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, NetStream.DIRECT_CONNECTIONS);
    ns.publish("sendtest");
    ...//after connection success.
    ns.send("clientfunction", "ok"); // this line cannot reach subscribers. even if subscribers have client object correctly.
    ==Subscriber==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, cirrusid);
    var client:Object = new Object();
    client.clientfunction = clientfunction; // target function
    ns.client = client;
    ns.play("sendtest");
    Steps to Reproduce:
    1. compile the code in the attachment to SendTestExample.swf (not be able to paste it here)
    2. run it under flash player 11.2.202.19 beta
    3. run it under flash player 11
    Actual Result:
    HeartBeat is:
    Start HeartBeat:
    send hello
    send hello
    send hello
    which means NetStream.send was not able to call "clientfunction" as expected.
    Expected Result:
    Start HeartBeat:
    send hello
    in client function: hello
    send hello
    in client function: hello
    send hello
    in client function: hello
    which can call into the clientfunction as flash player 11 did.
    Any Workarounds:
    I can not find it out since it's an api level bug. But this can be very important for lots of applications which rely on send to do rpc.
    Test Configuration
    IE8, Firefox under Windows 7
    Also have problem under Windows XP (but not well tested on this platform)
    App Language(s)
    ALL
    OS Language(s)
    ALL
    Platform(s)
    Windows 7
    Browser(s)
    Internet Explorer 8.0
    ==Attachment==
    package {
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.NetStatusEvent;
        import flash.events.TimerEvent;
        import flash.media.Video;
        import flash.net.NetConnection;
        import flash.net.NetStream;
        import flash.text.TextField;
        import flash.utils.Timer;
        import flash.utils.setTimeout;
        public class SendTestExample extends Sprite
            public static var statusArea:TextField;
            var ncServer:NetConnection = new NetConnection();
            var nsServer:NetStream;
            var ncClient:NetConnection = new NetConnection();
            var nsClient:NetStream;
            var timer:Timer = new Timer(1000);
            public function SendTestExample() {
                ncServer.addEventListener("netStatus", onNCStatusServer);
                ncServer.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                statusArea = new TextField();
                status("status");
                statusArea.x = 0;
                statusArea.y = 0;
                statusArea.border = true;
                statusArea.width = 200;
                statusArea.height = 350;
                addChild(statusArea);
            function onNCStatusServer(event:NetStatusEvent):void {
                status("Step 1:");
                status("server: " + event.info.code);
                status("id: " + ncServer.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsServer = new NetStream(ncServer, NetStream.DIRECT_CONNECTIONS);
                        nsServer.addEventListener(NetStatusEvent.NET_STATUS, onNSStatusServer);
                        nsServer.publish("sendtest");
                        ncServer.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusServer);
                        ncClient.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                        ncClient.addEventListener("netStatus", onNCStatusClient);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            function onNCStatusClient(event:NetStatusEvent):void {
                status("Step 2:");
                status("client: " + event.info.code);
                status("id: " + ncClient.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsClient = new NetStream(ncClient, ncServer.nearID);
                        var c:Object = new Object();
                        c["clientfunction"] = clientfunction;
                        nsClient.client = c;
                        nsClient.play("sendtest");
                        ncClient.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusClient);
                        //setTimeout(sendHello, 5000);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            protected function onNSStatusServer(event:NetStatusEvent):void {
                status("nsserver: " + event.info.code);
                if (event.info.code == "NetStream.Play.Start") {
                    status("Start HeartBeat:");
                    this.timer.addEventListener(TimerEvent.TIMER, function (e:Event):void {
                        sendHello();
                    this.timer.start();
            protected function sendHello():void {
                status("send hello");
                nsServer.send("clientfunction", "hello");
            protected function status(msg:String):void
                statusArea.appendText(msg + "\n");
                trace("ScriptDebug: " + msg);
            protected function clientfunction(event:Object):void {
                status("in client function: " + event);

    Thanks for reporting. I can reproduce the bug in house. We will investigate.
    Calise

  • GETURL  is not working in flash player 9.0.124.0.

    Dear Friends,
    My swf and my html are in different domain so i got a issue
    in GETURL function , It is not working in flash player 9.0.124.0.
    in IE browser so that i add one parameter like allowScriptAccess
    =always then its working fine.but my question is what will happed
    if they will introduce any new flash version in future please tell
    me what is the permanent solution for this issue.
    Thanks

    There is no way to know what will change in the future. This
    is the solution that works now. It will probably remain in place
    for the reasonable future.

  • AIR SDK 17 (BETA) is not working with Flash CS6

    Hi,
    The latest AIR SDK 17 is not working with Flash CS6.
    I tried to publish and install an iOS app to my connected device via USB but I always get an error "Check if iTunes is installed".
    The latest stable AIR SDK 16 is working fine, and yes, iTunes is installed on my PC.
    DETAILS:
    - Flash CS6
    - AIR SDK 17
    - System: Windows 8,1
    - iPodTouch with iOS 8.1
    REPRODUCE:
    Open new AIR iOS template and publish/install it to a USB connected iOS 8.1 device.
    Anyone else got that error?

    I was getting this intermittently.   Not a super problem.   A remove and install in iTunes gets it loaded (after you tell ITunes where it is).

  • Embedfont = true; Japanese font is not working in Flash CC

    Hi,
    embedfont = true; was working in Flash CS6 (window XP, 32bit, Air SDK 15.0)
    But I moved same project to new system. Then, it's not working. (Flash CC, window 7 pro, 64bit, SDK 17.0).
    textfield shows nothing. But if I remove this code (embedfont = true;). Textfield shows texts applied default fonts.
    Funny part is English and Korean(My language) Embedfont is working perfectly.
    Only japanese font is not working.
    I've tried several japanese font, but all of them were not working.
    Any Idea would be appreciate.

    Amy~ Yep the lasso tool was what I verified with another user. 'L' seems to be bound indefinitely to loop through different types of lasso tools and it was annoying them because they just wanted L to be the regular freehand lasso. I removed 'L' from being an option on the polygon lasso and even set it explicitly to SHIFT+L as well as set the lasso tool to a completely different keyboard combo. 'L' still cycled through lassos haha. It needs some fixes.
    fertolg~ At least you have a workaround for now. I'd go nuts if I couldn't use keyboard text selection writing code, oy! You're welcome and if you're all set please mark correct so we can filter unanswered. Good luck!

  • Inbuilt FaceTime HD camera not working in flash media live encoder

    inbuilt FaceTime HD camera not working in flash media live encoder

    So you have libconnect.dll placed in modules/access folder of your FMS?

  • Functions (back & stop ) are not working in production environment

    Hi All ...
    Some functions (back and stop) are not working in production environment, where as those functions are working in QA testing environement..please answer.. what could be the reasons for not working some functions
    in production environement.
    Regards,,
    Krishna

    Hi,
    Based on the error message, it is related to the item in your production environment, then the workflow will occur exception.
    As your workflow worked perfectly in your other environments, I suggest you can check if some item has is valid in the document library.
    You can try to use Fiddler to track the web request and find in which item the workflow occurs exception.
    Here are some detailed articles for your reference:
    https://msdn.microsoft.com/en-us/library/vstudio/ee231573(v=vs.100).aspx
    http://www.andrewconnell.com/blog/SP2013-Workflow-Advanced-Workflow-Debugging-with-Fiddler
    Thanks
    Best Regards
    Jerry Guo
    TechNet Community Support

  • I am getting frustrated with Apple not working with Flash player on some of my favorite web sites. Is there any alternative that will work on I-pad instead of flash?

    I am getting frustrated with Apple not working with Flash Player on some of my favorite web sites! Is there another alternative to watching these site options on my I-pad?

    Flash is not, and probably never will be, supported on the iPad : http://www.apple.com/hotnews/thoughts-on-flash/ . Plus it would be up to Adobe to make a version of their flash player that works on iOS devices - something which they have never managed to do and which they have now given up on trying to do.
    Browser apps such as Skyfire, iSwifter and Puffin 'work' on some sites, but judging by their reviews not all sites. Also some websites, especially news sites, have their own apps in the App Store, so your could try checking there for your sites (and there is the built-in YouTube app).

  • Why "send sms" not work in flash lite3 ???

    hello
    i write this code for send sms in device :
    on(release) {
    if(_capSMS)
    getURL("sms:" add myNumber add "?body=" add myText);
    it work fine in flash lite1.1 & 2.x
    but not work in flash lite 3 !!!!!
    what shall i do ? please help me
    can i make the command geturl to work on flashlite 3?
    or how can i open an url from flash lite 3?
    please help me

    Hi,
    It appears that the problem is with the security sandbox. To
    be able to send an SMS, it looks like you have to publish for Flash
    Lite 3, and in the Publish Settings, set 'Local playback security'
    to 'Access network only'. I used the following code:
    on (release) {
    if (System.capabilities.hasSMS) {
    getURL("sms:" + myNumber + "?body=" + myText);
    And it would only work when the publish settings were set as
    above. This was testing on a Nokia E65 with the developer edition
    of FL3 installed.
    Hope this helps!
    Darren

  • Sound not working in flash

    just today the sound in flash on websites stopped working for me. i updated to flash 8 a few days ago, but sound was still working up until yesterday or so. i've repaired permissions and rebooted a couple times but to no avail. i'm out of ideas, and any help would be awesome.

    welp, glad I saw this. I have been wondering why flash sound quit working, and why sound in my video games quit working. I did NOT upgrade my flash player or anything, it just quit. I opened garage band, and it started working.
    what the **** is that about?

  • Captivate 4 not exporting to Flash CS4 correctly

    When I export from Captivate 4 to Flash CS4 it doesn't place the imported objects on their own timeline. Instead, it places each object into a movie symbol, which has its own timeline. The problem is that when I save it as a .swf in Flash and then I open it in After Effects none of the highlight boxes are visible.
    As you know, After Effects does not see Flash symbols that are buried below the main timeline.
    I opened up a project I worked on a year ago (with a different computer) and the Flash files had the exported Captivate items on the main timeline with the object on its own layer. Those files work fine in After Effects.
    Can anyone tell me if they are having the same export issue with Captivate 4 not exporting its elements in Flash on the main timeline (as seen in the help file: http://help.adobe.com/en_US/Captivate/4.0/Using/WS5b3ccc516d4fbf351e63e3d119e9582981-7fff. html)?
    Thanks!

    I found the solution here (http://labnol.blogspot.com/2004/09/export-captivate-movie-to-macromedia.html). I'll reprint the steps here:
    1. Close Flash CS4 if it is open.
    2. Open Windows Explorer.
    3. Navigate to:
    C:\Program Files\Adobe\Captivate
    4. Copy the RDMFISTUB.dll file.
    5. Navigate to:
    C:\Documents and Settings\username\Local Settings\Application Data\Macromedia\Flash CS4\en\Configuration
    Note: The 'Local Settings' folder by default is hidden. If you are unable to locate the 'Local Settings' folder you can unhide it by opening Windows Explorer, select Tools > Folder Options > View, and select the option to 'Show hidden files and folders'.
    6. Create a new folder called Importers. Your final path should look like this:
    C:\Documents and Settings\username\Local Settings\Application Data\Macromedia\Flash 8\en\Configuration\Importers
    7. Paste the RDMFISTUB.dll into the Importers folder.
    8. Open Flash CS4.
    9. Create a New Flash Document. Save the document (or Flash may freeze when importing)
    10. Select File > Import > Import to Stage.
    11. Browse to and select the CP file.
    12. Click OK.
    Here is a comparison picture of the results. Without the steps above the imported Captivate assets will reside inside of a movie symbol (one for each slide). This is labeled "incorrect" in the image. I want each asset on a new layer in the root timeline. This is labeled "correct" in the image.
    I want to go from Captivate to Flash to After Effects (because Captivate generated Flash files are unreadable in After Effects). For full disclosure, I used Captivate 3 in the steps above, but I hope this is a solution for Captivate 4 as well (I decided to stick with Captivate 3 because it worked in a project I used a year ago).
    Message was edited by: EliteEraser

  • How can Image sliding work in flash cs4 on mac using mx.controls.loader

    Hi i started working in flash after a long time. i am creating a virtual catalogue DVD for my client. to work on it quickly, i used mx.controls.loader component to call jpg images in my movie.i just gave contect path in component inspector. my working OS platform is windows xp. and everything is working perfectly fine. i used actionscripting on buttons to slide images left and right. when my client opened it in mac everything else was fine but images were not loading. although the directory path everything is right and working here but not in mac.

    Hi Mate - I'm using CS4 Extended Ps v11.0.2, according to the Adobe site photoshop instals a 32 bit version only. How can I find out exactly by checking out preferences etc? I'll have to go hunt out the box.
    Thanks for the reply.

Maybe you are looking for

  • How to debug a RFC function module remotely from another R/3 system?

    Hi experts,    I have RFC function module in one R/3 system. I am calling this from another R/3 system that is cross apps (Xapps).    This function module is Synchronous.   Is it possible to debug this function module from cross apps?   Can somebody

  • Mac Still Crashing After Fresh Install of 10.8.

    Hey everyone I have been struggling to determine the issue with my 21.5-inch, Late 2009 iMac.  It has been crashing frequently so I decided to install the OS from scratch and port over the user files but the system is still crashing and I am not sure

  • About blob handling - how to display document type and document name?

    Hi, I am developing an APEX application, and I need a report region with a blob column(document) in it, and I want it to display like this : with an image on the left side(different images for different type of docs such as word, pdf, txt) , and the

  • [vmware] Best way to share files between host and client

    Good afternoon! I have successfully installed VMware server on my machine and set up a virtual machine, powering Windows XP for study issues (emulation via wine does not do the trick for me). The virtual machine runs fast and stable but does not meet

  • System recovery fails with C++ runtime error

    My Compaq CQ610-410US running Windows 7  is unusable. When using system recovery, either from CD's or Recovery drive, it fails with C++ runtime library program not found Contact HP Support. EIther way, Windows is loaded and system recovery screens ap