User Tag List

Results 1 to 9 of 9

Thread: MMF as PPT

  1. #1
    No Products Registered

    Join Date
    Mar 2009
    Location
    London
    Posts
    20
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    MMF as PPT

    Hi board,

    Just wondering whether there is a way to use MMF to present something, like a powerpoint presentation. For example when the enter key is pressed, I need a line of text to appear, and then when the enter key is pressed again I need the initial line of text to disappear, and the next line to appear and so forth.

    Any help would be great.

  2. #2
    Clicker Multimedia Fusion 2SWF Export Module

    Join Date
    Sep 2006
    Posts
    1,544
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF as PPT

    You could design each 'level' frame to appear like the corresponding frame in powerpoint. Then in each frame's event editor, put a condition like "Upon Pressing Enter: Next Frame". For having things like lines of text appearing and disappearing, you can alter this by having instead a counter inside the level. Each time you press Enter, you add 1 to the counter. Then, put in events like this:

    *Upon Pressing Enter
    =Set Counter + 1

    *While Counter = 0
    Text 1 = visible
    Text 2 = invisible
    Text 3 = invisible

    *While Counter = 1
    Text 1 = invisible
    Text 2 = visible
    Text 3 = invisible

    *While Counter = 2
    Text 1 = invisible
    Text 2 = invisible
    Text 3 = visible

    *While Counter = 3
    Next Frame

  3. #3
    No Products Registered

    Join Date
    Mar 2009
    Location
    London
    Posts
    20
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF as PPT

    Ah thanks alot, I knew there had to be a simple solution like that.

  4. #4
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module

    Join Date
    Jul 2006
    Location
    Pittsburgh, PA, USA
    Posts
    777
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF as PPT

    Or alternatively, you could store all of your information in a string object, with each new point in a new paragraph. Then in the events editor:

    *Paragraph(String)=npara(String)
    *Upon pressing Enter
    -Next Frame
    *Upon pressing Enter
    -Sting: Next paragraph

  5. #5
    No Products Registered

    Join Date
    Mar 2009
    Location
    London
    Posts
    20
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF as PPT

    Ooo that method sounds too complicated for a meathead like me, lol....An additional question, is there a way to perhaps reverse a command (in case the user missed the last point?).

  6. #6
    Clicker Multimedia Fusion 2 Developer

    Join Date
    Jun 2006
    Location
    Darlington, UK
    Posts
    3,298
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF as PPT

    You'd just have to put in the opposite of what you did.

    So if you had:
    User presses "enter"
    -Next frame

    You would also add:
    User presses "backspace"
    -Previous frame

  7. #7
    No Products Registered

    Join Date
    Mar 2009
    Location
    London
    Posts
    20
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF as PPT

    I was aiming to keep all the presentation on one frame...?

  8. #8
    Clicker Multimedia Fusion 2 Developer

    Join Date
    Jun 2006
    Location
    Darlington, UK
    Posts
    3,298
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF as PPT

    Then reverse whatever you ARE doing.

    For the "add 1 to counter" example above, you'd just subtract from the counter instead.
    For the "next paragraph" example, you'd use "previous paragraph".

    If you hide one thing and show another when you go forward, show that thing and hide the other when you go backwards.

  9. #9
    No Products Registered

    Join Date
    Mar 2009
    Location
    London
    Posts
    20
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF as PPT

    Cool I understand now, thanks for your help!

Posting Permissions

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