User Tag List

Results 1 to 5 of 5

Thread: Embed exported MMF2 SWF in FLA using CS4

  1. #1
    Clicker Fusion 2.5 Mac
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)iOS Export Module (Steam)

    Join Date
    Sep 2008
    Location
    Western Australia
    Posts
    256
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Embed exported MMF2 SWF in FLA using CS4

    I am sure I read a message somewhere, in which someone stated that they had embedded an MMF2 exported SWF into a FLA by using Flash CS4.

    Can someone point me in the right direction, or even better, produce a dummy's guide to to it?

    I have Flash CS4 but rarely use it; I have been hand coding Actionscript 3.0 in FlashDevelop for some time now.

    Thanks

  2. #2
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleiOS Export ModuleSWF Export Module

    Join Date
    Jul 2006
    Location
    England
    Posts
    820
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Embed exported MMF2 SWF in FLA using CS4

    Evilized did it Link

  3. #3
    Clicker Fusion 2.5 Mac
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)iOS Export Module (Steam)

    Join Date
    Sep 2008
    Location
    Western Australia
    Posts
    256
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Embed exported MMF2 SWF in FLA using CS4

    That's the one; thanks for the link Steven.

    Unfortunately, there is not enough information there. UrbanMonk gave a response...

    It's easy to do if you have flash, just embed the mmf generated swf iinto the preloader.
    ...but that doesn't help me unfortunately.

    Currently searching the web for solutions. Preloading seems to be one of those strange things that is not as easy to achieve as it should be!

  4. #4
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleiOS Export ModuleSWF Export Module

    Join Date
    Jul 2006
    Location
    England
    Posts
    820
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Embed exported MMF2 SWF in FLA using CS4

    PM Evilized. He's pretty friendly

    Steve

  5. #5
    Clicker Fusion 2.5 Mac
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)iOS Export Module (Steam)

    Join Date
    Sep 2008
    Location
    Western Australia
    Posts
    256
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Embed exported MMF2 SWF in FLA using CS4

    I have the solution (at least, the solution that I need for the moment)! I did not use Flash, but instead used my preferred AS3 development platform which is Flash Develop (it's totally free) and helps me to keep my code nice and clean.

    As ever, it's easy when you know the answer! The code below does not take into account window size, etc, so you can see objects outside the MMF frame. I'll try to find time to tidy it up and make it more useful, but as it is it's a start, and should enable MMF users to package their MMF-created SWFs into AS3 code quite easily. I envisage that it could be used for such processes as implementing more advanced preloaders, advertising, etc.

    Code:
    package {
        import flash.display.*;
    
        public class Main extends Sprite {
            [Embed(source='MyMMF.swf')]
            private var MyMFF:Class;
    
            public function Main() {            
                var mmfSWF:Sprite=new MyMMF();
                addChild(mmfSWF);
            }
        }
    }
    Pleas note that I have only carried out very limited testing with the above code in Flash Develop; I just wanted to post it here ASAP just in case it could save someone else some time.

Similar Threads

  1. Integrate Chartboost in exported Apk?
    By iamjot in forum Android Export Module Version 2.0
    Replies: 15
    Last Post: 1st July 2013, 01:17 AM
  2. X overlapping Y problems once exported to iOS
    By Diablohead in forum iOS Export Module Version 2.0
    Replies: 3
    Last Post: 2nd July 2012, 11:41 AM
  3. Exported to swf, terrible peformence?
    By Outcast in forum SWF/Flash Export Module Version 2.0
    Replies: 2
    Last Post: 8th March 2011, 05:16 PM
  4. How to embed a MMF2 file into a website
    By csj1 in forum Multimedia Fusion 2 - Technical Support
    Replies: 1
    Last Post: 21st February 2009, 08:00 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •