User Tag List

Page 12 of 13 FirstFirst ... 2 10 11 12 13 LastLast
Results 111 to 120 of 121

Thread: MMF2 Build #249 - Beta #4

  1. #111
    Clickteam Clickteam

    Join Date
    Jun 2006
    Location
    France
    Posts
    14,022
    Mentioned
    279 Post(s)
    Tagged
    3 Thread(s)

    Re: MMF2 Build #249 - Beta #4

    Hmm... I cannot reproduce it in a fresh application, I must have missed something... Thanks anyway!

  2. #112
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleUnicode Add-onInstall Creator

    Join Date
    Jul 2006
    Posts
    1,018
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF2 Build #249 - Beta #4

    I found a small unhandy issue in the File object, maybe you want to fix it.


    Say there is only a folder (no file) named C:\folder on our system:

    Name exists > C:\folder > [color:#009900]true[/color]
    Name exists > C:\folder\ > [color:#009900]true[/color]
    Name is a file > C:\folder > [color:#009900]false[/color]
    Name is a file > C:\folder\ > [color:#009900]false[/color]
    Name is a directory > C:\folder > [color:#009900]true[/color]
    Name is a directory > C:\folder\ > [color:#990000]false[/color]

    That means the conditions tested with the string "C:\folder\" returns:
    the name exists (correct) but it's no file (correct) nor directory (but it is!).
    So it exists but is nothing of both. That makes no sense. Please fix this.

  3. #113
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleUnicode Add-onInstall Creator

    Join Date
    Jul 2006
    Posts
    1,018
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF2 Build #249 - Beta #4

    Here is another small issue in the Expression Calculator:

    Retrieve a global value / string > Use a calculation will replace the whole text in the Expression Calculator.
    That's unlike the other expressions will be inserted.

  4. #114
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module

    Join Date
    Aug 2006
    Posts
    2,335
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF2 Build #249 - Beta #4

    I found a few bugs/errors working in MMF recently -

    When typing in a string it deactivates/greys the Workspace Toolbar etc for some reason. Im not sure why it does that but instead it should just go out of edit mode for the string and on to whatever you clicked instead.

    In the event editor if you Ctrl+Drag then drop on to a new condition to copy if you are in a group it will not copy to inside the group but make it below the new condition slot to the next non group slot.

    In the events editor if you use the save as command it will clear your undo/redo history. For me this is unwanted behaviour and it seems to not happen in the level editor which keep them. It should only clear them after closing MMF and loading that project again in my opinion.

    Edit -

    Also not sure if you have seen these but here is various simple ideas that would enhance the app/workflow a lot -

    http://www.clickteam.com/epicenter/ubbthreads.php?ubb=showflat&Number=151514#Post1515 14

  5. #115
    Clickteam Clickteam

    Join Date
    Jun 2006
    Location
    France
    Posts
    14,022
    Mentioned
    279 Post(s)
    Tagged
    3 Thread(s)

    Re: MMF2 Build #249 - Beta #4

    Quote Originally Posted by Gustav
    I found a small unhandy issue in the File object, maybe you want to fix it.


    Say there is only a folder (no file) named C:\folder on our system:

    Name exists > C:\folder > [color:#009900]true[/color]
    Name exists > C:\folder\ > [color:#009900]true[/color]
    Name is a file > C:\folder > [color:#009900]false[/color]
    Name is a file > C:\folder\ > [color:#009900]false[/color]
    Name is a directory > C:\folder > [color:#009900]true[/color]
    Name is a directory > C:\folder\ > [color:#990000]false[/color]

    That means the conditions tested with the string "C:\folder\" returns:
    the name exists (correct) but it's no file (correct) nor directory (but it is!).
    So it exists but is nothing of both. That makes no sense. Please fix this.
    OK, we'll fix it, but you should not have a '\' at the end of your filenames if possible, Windows functions don't like it (as you can see with these conditions), so even if we fix it in these conditions there could be other issues in your application.

  6. #116
    Clickteam Clickteam
    LB's Avatar
    Join Date
    Jun 2007
    Location
    Richardson, Texas, North America
    Posts
    8,937
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF2 Build #249 - Beta #4

    I noticed some Windows functions require the \ at the end, and other require it NOT to be there, and yet some allow for either. I always test before I really attemt to do anything that could mess up my game/application.
    Working as fast as I can on Fusion 3

  7. #117
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module

    Join Date
    Aug 2006
    Posts
    2,335
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF2 Build #249 - Beta #4

    For the File object thing you could maybe add a extra condition maybe something like 'Name ends with \' that way you could just check although you could do this with string parsing also.

  8. #118
    Clickteam Clickteam
    LB's Avatar
    Join Date
    Jun 2007
    Location
    Richardson, Texas, North America
    Posts
    8,937
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF2 Build #249 - Beta #4

    Right$( FilePath, 1 ) = "\"
    Working as fast as I can on Fusion 3

  9. #119
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleUnicode Add-onInstall Creator

    Join Date
    Jul 2006
    Posts
    1,018
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF2 Build #249 - Beta #4

    Quote Originally Posted by Yves
    Quote Originally Posted by Gustav
    I found a small unhandy issue in the File object, maybe you want to fix it.


    Say there is only a folder (no file) named C:\folder on our system:

    Name exists > C:\folder > [color:#009900]true[/color]
    Name exists > C:\folder\ > [color:#009900]true[/color]
    Name is a file > C:\folder > [color:#009900]false[/color]
    Name is a file > C:\folder\ > [color:#009900]false[/color]
    Name is a directory > C:\folder > [color:#009900]true[/color]
    Name is a directory > C:\folder\ > [color:#990000]false[/color]

    That means the conditions tested with the string "C:\folder\" returns:
    the name exists (correct) but it's no file (correct) nor directory (but it is!).
    So it exists but is nothing of both. That makes no sense. Please fix this.
    OK, we'll fix it, but you should not have a '\' at the end of your filenames if possible, Windows functions don't like it (as you can see with these conditions), so even if we fix it in these conditions there could be other issues in your application.
    Thanks, you're right.

    Maybe it's the better way to make the condition Name exists > C:\folder\ > false.
    Because C:\folder\ isn't a valid folder(?).

    But the first way I suggested would make our lives easier I think. ^^
    It would be good if MMF were able to handle this. Like it does in other conditions.

    I only wanted to say that all the conditions should work in the same way (need or allow "\" or not).



    @LB
    Yes, me too. It's very confusing all the time...

  10. #120
    Clickteam Clickteam
    LB's Avatar
    Join Date
    Jun 2007
    Location
    Richardson, Texas, North America
    Posts
    8,937
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)

    Re: MMF2 Build #248

    [Bug]When there is one more action left after when it says more actions in event list editor, it says 0 instead of 1! Not a major issue but a bug at that.
    Working as fast as I can on Fusion 3

Page 12 of 13 FirstFirst ... 2 10 11 12 13 LastLast

Similar Threads

  1. MMF2 Build 249 - Beta 8
    By Yves in forum Multimedia Fusion 2 - Technical Support
    Replies: 22
    Last Post: 7th November 2009, 01:07 PM
  2. MMF2 Build #248 (BETA 6)
    By Yves in forum Multimedia Fusion 2 - Technical Support
    Replies: 7
    Last Post: 1st July 2008, 12:41 PM
  3. MMF2 Build #248 (BETA 5)
    By Yves in forum Multimedia Fusion 2 - Technical Support
    Replies: 0
    Last Post: 25th June 2008, 03:07 PM
  4. MMF2 Build #248 (BETA 4b)
    By Yves in forum Multimedia Fusion 2 - Technical Support
    Replies: 15
    Last Post: 24th June 2008, 05:51 PM
  5. MMF2 Build 248 (BETA 4b)
    By Yves in forum Multimedia Fusion 2 - Technical Support
    Replies: 14
    Last Post: 24th June 2008, 12:45 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
  •