Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8504055
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T01:55:18+00:00 2026-06-11T01:55:18+00:00

I have a .swf animation that I created in Flash Professional. To use it

  • 0

I have a .swf animation that I created in Flash Professional. To use it in my actionscript project, I embed it as follows:

[Embed(source="../lib/fetching.swf")]
public var Fetching:Class;

I then create an instance and add it to the stage as follows:

//class variable
var mc:MovieClip;

mc = new Fetching();
this.addChild(mc);

This causes my animation to appear on the screen and loop indefinitely. However, when calling mc.stop(), the animation does not stop. I’ve tried removing the movieclip from the stage by calling removeChild(mc) but adding a listener on the ENTER_FRAME event told me the movieclip is still playing over and over.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T01:55:20+00:00Added an answer on June 11, 2026 at 1:55 am

    you should set a Embed source mimeType, and you convert to ByteArray. and loaded. because you can’t Direct Type Casting Fetching Class to MovieClip. If you define explicitly mimeType and convert by force, you’ll get about TypeError #1034: Type Coercion failed: cannot convert YourProject_Fetching@108b780d1 to flash.display.MovieClip

    refer a following code.

    package
    {
        import flash.display.Loader;
        import flash.display.MovieClip;
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.utils.ByteArray;
    
        public class TestProject extends Sprite
        {
            [Embed(source="../lib/fetching.swf", mimeType="application/octet-stream")]
            public var Fetching:Class;
    
            public var loader:Loader = new Loader();
    
            private var mc:MovieClip;
    
            public function TestProject()
            {
                loader.loadBytes( new Fetching() as ByteArray );
                loader.contentLoaderInfo.addEventListener(Event.INIT, onSwfLoaded);
                this.addChild(loader);
            }
    
            private function onSwfLoaded(e:Event):void 
            {
                mc = loader.content as MovieClip;
                mc.stop();
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've created a Flash Animation (CS5, ActionScript 3) and converted it to SWF. The
I have an .swf file (a flash animation) that is too big and unfortunately
I have an animation that is created in flash, I have used the 3d
I have a swf animation that I will like to use in a wpf
I have a SWF file that connects to a remote flash server and receives
I have a swf that requires flash 9, and I'm trying to show content
I have this swf (flash) file that provides the json that needs to be
I have this flash animation (flash lite 1.1) and the problem is that on
I have flash animation (swf) in my HTML Page. Now, I like to have
I am trying to take an animation I made in flash professional, and use

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.