User Tag List

Results 1 to 5 of 5

Thread: Extern swfs in MMF2

  1. #1
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleMac Export ModuleSWF Export ModuleUnicode Add-on
    Pharanygitis's Avatar
    Join Date
    Aug 2006
    Location
    Germany
    Posts
    1,037
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Extern swfs in MMF2

    Is it possible to load a with MMF2 created application with swf? That would be extremely important to me for flashgamelicences.


    EDIT: DONE, i have write in the chat the problem...

  2. #2
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleSWF Export Module
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)

    Join Date
    Apr 2007
    Location
    Australia
    Posts
    1,152
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Extern swfs in MMF2

    can you explain how you managed to load the mmf created swf with a premade swf loader? I assume that's what you are talking about in your post?

  3. #3
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module
    RickyRombo's Avatar
    Join Date
    Mar 2008
    Location
    Somewhere between here and there
    Posts
    3,167
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Extern swfs in MMF2

    Yes please share your solution! It may be handy to others (like me )

  4. #4
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleMac Export ModuleSWF Export ModuleUnicode Add-on
    Pharanygitis's Avatar
    Join Date
    Aug 2006
    Location
    Germany
    Posts
    1,037
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Extern swfs in MMF2

    [color:#660000]At the moment, you can NOT start a swf in the mmf-application..

    ..but you can start a own swf (sponsor swf) before your mmf-flashgame is starting...

    here my code (actionscript 3) [/color]

    Code:
    var laden:Loader = new Loader(); // Create a new loader
    
    // where the flash is created.. x and y coordinates..
    laden.x = 0;
    laden.y = 0;
    laden.contentLoaderInfo.addEventListener(Event.COMPLETE, geladen);
    
    // create a child - laden
    addChild(laden);
    var url:URLRequest = new URLRequest();
    
    // Is the swf finaly loaded.. start this function..
    function geladen(evt:Event) {
    	trace("Movie successful loaded!");
    }
    
    // This is the loading swf-script
    function loadgame() {
    	url.url = "http://www.MYURL.com/MyFlash.swf"; // The flash-url was load
    	laden.load(url); // load the flash
    }
    
    // Here start the loadgame-function
    loadgame();

  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: Extern swfs in MMF2

    Does this "embed" your SWF in the preloader, or does it "point" to an external SWF?

    I think it is the latter looking at the code. If so, do you know how to embed the MMF SWF in a preloader so that it is all in a single SWF file?

    Thanks.

Similar Threads

  1. Replies: 3
    Last Post: 7th January 2013, 12:35 PM
  2. MMF2 Developer and MMF2 editing the same game
    By kenan in forum Multimedia Fusion 2 - Technical Support
    Replies: 11
    Last Post: 14th April 2011, 08:00 PM
  3. SOLVED: MMf2 Standard to MMf2 Developer Error
    By iamjot in forum Multimedia Fusion 2 - Technical Support
    Replies: 5
    Last Post: 21st January 2011, 06:03 PM
  4. passage d'appli MMF2 anglais à MMF2 français
    By mig3 in forum Multimedia Fusion 2 - Technical Support
    Replies: 3
    Last Post: 15th February 2008, 04:51 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
  •