User Tag List

Results 1 to 5 of 5

Thread: Active over a list box

  1. #1
    Clicker Multimedia Fusion 2

    Join Date
    Mar 2007
    Location
    I'm right here!!
    Posts
    305
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Active over a list box

    Is it possible to have an active go over a list (box) object instead of behind? I'm using an active as a custom cursor and I'd like to select things from a list box but it goes behind.

  2. #2
    No Products Registered

    Join Date
    Jul 2006
    Location
    Umeå, Sweden
    Posts
    1,090
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Active over a list box

    Nope, the listbox is a windows control.. Use the cursor object to change the cursor instead!

  3. #3
    Clicker Multimedia Fusion 2

    Join Date
    Mar 2007
    Location
    I'm right here!!
    Posts
    305
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Active over a list box

    Ahh, thank you.

    A couple of questions...

    1/. How do I have an custom animated cursor.
    2/. How can I change it when the left mouse button's pressed? (it's a pointing hand which i'd like to 'press' down.. I think I've got this one.

  4. #4
    Clicker Fusion 2.5 DeveloperFusion 2.5+ DLCAndroid Export ModuleSWF Export ModuleUnicode Add-on
    Looki's Avatar
    Join Date
    Aug 2006
    Location
    Karlsruhe, Germany
    Posts
    3,741
    Mentioned
    5 Post(s)
    Tagged
    1 Thread(s)

    Re: Active over a list box

    Well, double-click on the Cursor Object in Frame Editor
    Insert your frames...
    example:
    frames 0-5 = "not-clicking" anim
    frames 6-8 = clicking anim


    Now, we need to create some events that animates the cursor!
    We need the operator "mod".
    Repeat while mouse key is NOT pressed
    - (timer/100) mod 6

    Repeat while mouse key is pressed
    - 6+((timer/100) mod 3)


    timer/100 is just a hundreth of the mmf timer. (so the animation isn't as fast as without /100, you can change the 100, of course. You could use a counter, too)

    mod (modulo) is a mathematic operator. It's for "looping" a numeral in an interval.
    Imagine: An object moves to the right, till the right corner of the frame. Then it get's warped back to x = 0. That can be done with the "mod" operator. The formula for the object's x pos could be something like X("Active")+10 mod 640.
    More information at wikipedia, if you don't know it.

    Hope you understood it.


    Looki


  5. #5
    Clicker Multimedia Fusion 2

    Join Date
    Mar 2007
    Location
    I'm right here!!
    Posts
    305
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Active over a list box

    Thank you! I now have an animated cursor!

Similar Threads

  1. List object simply doesn't load a list file...
    By Pedro Almeida in forum iOS Export Module Version 2.0
    Replies: 6
    Last Post: 10th February 2012, 12:46 AM
  2. select active to a list?
    By DJ_Wild in forum Multimedia Fusion 2 - Technical Support
    Replies: 4
    Last Post: 6th July 2011, 08:09 PM
  3. Layers - Active object vs list
    By Nathan in forum Multimedia Fusion 2 - Technical Support
    Replies: 4
    Last Post: 8th March 2008, 11:02 PM
  4. Cannot "Load File List" for List & Combo Objects
    By Annie in forum Multimedia Fusion 2 - Technical Support
    Replies: 2
    Last Post: 1st February 2007, 02:34 PM
  5. bug: List object doesnt show list of files ...
    By Rushino in forum Multimedia Fusion 2 - Technical Support
    Replies: 2
    Last Post: 1st November 2006, 11:46 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
  •