User Tag List

Page 1 of 2 1 2 LastLast
Results 1 to 10 of 13

Thread: asking again... still struggerling! Alterables...

  1. #1
    Clicker Fusion 2.5 DeveloperFusion 2.5 DeveloperFusion 2.5+ DLCAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleMac Export ModuleSWF Export Module

    Join Date
    Sep 2006
    Location
    UK
    Posts
    842
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    asking again... still struggerling! Alterables...

    ill explain again, all i am trying to achive is to allways check a list to see if any of the lines are "1" if so, and say it is line 3 then object with an alterable value 3 should move or anything!that bit is irrelevant at the mo, it just cant work out, the problem is, i need it to happen all the time, so like i could do it so it simly checks line 1, if it is 1 then object with AV1 do something, but the number objects at runtime changes eveytime time, so that means i cant code it to do that everytime! AND then when it goes to the next line, so its checking line 2, that means its not checking line 1 no more... so it will stop that action from line 1?

    Firstly does anyone understand me?
    Secondy does anyone know how to help me?
    Cheers
    Gib

  2. #2
    Forum Moderator Fusion 2.5 DeveloperAndroid Export ModuleiOS Export ModuleSWF Export ModuleInstall Creator Pro
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Fusion 2.5+ DLC (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)

    Join Date
    Jun 2006
    Location
    England
    Posts
    3,546
    Mentioned
    4 Post(s)
    Tagged
    1 Thread(s)

    Re: asking again... still struggerling! Alterables

    I nearly understand you. I think you should use fast loops.

    Tell it to always run the loop, and when it asks you how many times it should run then you should say the number of items in the list box. When the loop is triggered you can compare the object's alterable value against the value of the list box at the list index's position.
    .:::.Joshtek.:::.

  3. #3
    Clicker Fusion 2.5 DeveloperFusion 2.5 DeveloperFusion 2.5+ DLCAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleMac Export ModuleSWF Export Module

    Join Date
    Sep 2006
    Location
    UK
    Posts
    842
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: asking again... still struggerling! Alterables

    yea, that does sound promising, but (and this maybe down to my lack of knowledge about alterables) isnt hat just checking to see if alterable value A = line number at loop index? in which case it would be either "" or 1, so any actions will only be made to objcts with AV = 1?

    It sounds correct only i need it so does that it checks the list like that and if the list line = 1, then does actions for alterables number of the lines that are 1?

    cheers
    gib

  4. #4
    Forum Moderator Fusion 2.5 DeveloperAndroid Export ModuleiOS Export ModuleSWF Export ModuleInstall Creator Pro
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Fusion 2.5+ DLC (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)

    Join Date
    Jun 2006
    Location
    England
    Posts
    3,546
    Mentioned
    4 Post(s)
    Tagged
    1 Thread(s)

    Re: asking again... still struggerling! Alterables

    Your not checking against the line number, your checking against the contents of the relevant line. The "relevant line" being the one which corresponds to the loop index.

    Edit: Heh, my postcount is "1337".
    .:::.Joshtek.:::.

  5. #5
    Clicker Fusion 2.5 DeveloperFusion 2.5 DeveloperFusion 2.5+ DLCAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleMac Export ModuleSWF Export Module

    Join Date
    Sep 2006
    Location
    UK
    Posts
    842
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: asking again... still struggerling! Alterables

    yes but the contents then would ither be 1 or "" and therefore the actions would only be set for objects with an olterable val of 1? or am i wrong?
    Gib

  6. #6
    Forum Moderator Fusion 2.5 DeveloperAndroid Export ModuleiOS Export ModuleSWF Export ModuleInstall Creator Pro
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Fusion 2.5+ DLC (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)

    Join Date
    Jun 2006
    Location
    England
    Posts
    3,546
    Mentioned
    4 Post(s)
    Tagged
    1 Thread(s)

    Re: asking again... still struggerling! Alterables

    The 1 or "" stuff would depend on the contents if your list box.
    .:::.Joshtek.:::.

  7. #7
    Clicker Fusion 2.5 DeveloperFusion 2.5 DeveloperFusion 2.5+ DLCAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleMac Export ModuleSWF Export Module

    Join Date
    Sep 2006
    Location
    UK
    Posts
    842
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: asking again... still struggerling! Alterables

    i know...and they will be either 1 or "" like a flag.. so..basically, EXAMPLE: it checks if there is 4 alterble objects, there should be 4 lines in the list, it then checks that list to see if any are 1 or "" if any of the lines are 1 then it does an action to the object with the alterable value of the line number that is 1.

    Gib

  8. #8
    Forum Moderator Fusion 2.5 DeveloperAndroid Export ModuleiOS Export ModuleSWF Export ModuleInstall Creator Pro
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Fusion 2.5+ DLC (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)

    Join Date
    Jun 2006
    Location
    England
    Posts
    3,546
    Mentioned
    4 Post(s)
    Tagged
    1 Thread(s)

    Re: asking again... still struggerling! Alterables

    So you want to treat the list box as an array?
    .:::.Joshtek.:::.

  9. #9
    Clicker Fusion 2.5 DeveloperFusion 2.5 DeveloperFusion 2.5+ DLCAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleMac Export ModuleSWF Export Module

    Join Date
    Sep 2006
    Location
    UK
    Posts
    842
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: asking again... still struggerling! Alterables

    yea sorry thats what i mean, i want it to check if the contents of the line number is 1, if it is, do action to object with alterable val of line number which contains 1.. but also bareing in mind, i need this action happeneing all the time... and there is never a set amount of objects at runtime.
    i am sure theres a way... im determind there is!
    Gib

  10. #10
    Clicker Multimedia Fusion 2 Developer

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

    Re: asking again... still struggerling! Alterables

    [events]
    *Always
    -Start Loop for number of items in list box times
    *On Loop
    +Text of Line (loop index) of list box = "1"
    +Alterable value A of "object" = loop index
    -Do whatever
    [/events]

Page 1 of 2 1 2 LastLast

Similar Threads

  1. alterables
    By dray in forum Multimedia Fusion 2 - Technical Support
    Replies: 4
    Last Post: 2nd September 2008, 06:34 PM
  2. Question about alterables?
    By Gibbon in forum Multimedia Fusion 2 - Technical Support
    Replies: 5
    Last Post: 25th January 2007, 10:23 PM
  3. How can i do this? counter.. alterables?
    By Gibbon in forum Multimedia Fusion 2 - Technical Support
    Replies: 3
    Last Post: 23rd January 2007, 06:13 PM
  4. Alterables and "new picture from selector"
    By Gibbon in forum Multimedia Fusion 2 - Technical Support
    Replies: 0
    Last Post: 17th December 2006, 10:21 PM
  5. asking again... how can i find alterables??
    By Gibbon in forum Multimedia Fusion 2 - Technical Support
    Replies: 11
    Last Post: 15th December 2006, 04:29 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
  •