Posts by gamefreak202

Welcome to our brand new Clickteam Community Hub! We hope you will enjoy using the new features, which we will be further expanding in the coming months.

A few features including Passport are unavailable initially whilst we monitor stability of the new platform, we hope to bring these online very soon. Small issues will crop up following the import from our old system, including some message formatting, translation accuracy and other things.

Thank you for your patience whilst we've worked on this and we look forward to more exciting community developments soon!

Clickteam.

    I cannot get this to work either. I have installed both the Java SDK and Android Studio. At first I was getting build errors, which seems to have been fixed when I finally installed the API #14 package. Now when I select build and run with my tablet (Nvidia Shield) connected to my PC, it seems to build okay then just lock up - The green loading bar fills up and just sits there, with nothing happening on my tablet.

    I have enabled developer on the tablet, and enabled installation from unknown sources. Any ideas?

    Windows 7, Fusion 2.5 and android exporter purchased from Steam, Android version 5.0.1

    Fixed it!

    Didn't see your post until now, but it would of helped.

    I was trying to upload something to mediafire on Firefox, and it refused to upload. So I tried a few other hosting services and nothing worked. I figured I'd try to upload with IE, but IE wouldn't connect to anything! So I googled something about IE not connecting and FF not uploading and fixed it.

    Although, FF still wont upload :(

    EDIT:
    does after a restart :D
    Probably was the virus

    I would assume yes, but I haven't touched anything with it. It just stopped working. (get object, that is, not the firewall)

    If that is the problem, My only guess would be that something happened with it a couple weeks ago when I had a pretty nasty virus. What specific settings should the firewall be set to?

    OS: Win 7
    I have avast, and disabled it and it still didn't work.

    Not what I need..

    Right$(Hex$(byte( "Binary object", 12723396+(6*List Select( "List" )))), 2)

    Is what Im using. Works great, but when I have a single digit value such as 1 it returns "x1". So I tried doing:

    Right$(Hex$(byte( "Binary object", 12723396+(6*List Select( "List" )))), Len(Hex$(byte( "Binary object", 12723396+(6*List Select( "List" )))))-2)

    which works great but it returns it in Qword (whatever that is) which means I get FFFFFFFFFFFFFF8E for that value.

    EDIT: Didnt see above post. That was directed to jamie. Reading it now..

    EDIT2: Ok, so Id do Hex((value + 256) mod 256) ?

    EDIT3: Ah, dude. thanks so much. Got it to work with

    Right$(Hex$((byte( "Binary object", 12723396+(6*List Select( "List" )))+256) mod 256), Len(Hex$((byte( "Binary object", 12723396+(6*List Select( "List" )))+256) mod 256))-2)

    Whenever I try to encode to hex with the binary object it just crashes. I have no idea why. And the help file for the object doesnt help at all, it just says what it does, not how to use it.

    Should I be encoding before I load my file or something?!?

    Im trying to do this because Hex$() doesnt work right for some reason. The byte reads 8E in a regular hex editor but Hex$() spits it out as FFFFFFFFFFFFFF8E and its starting to really tick me off. I thin kits because Hex$() is in Qword or something (got this from playing with hex calculator) and I need it to just be in byte.

    This has probably been said before, but I'd also like to see object grouping.

    As in, You would say select 4 or so active objects and select "group". Now the 4 objects act as one in the frame editor. This way you could align something to the horz center of multiple items, align, ect. Also useful because you could type coordinates for it and it would go there. If you tried that in MMF now it doens't work.

    I'm trying to click and drag my app with window control object. I have when flag 0 is on set winxpos to (WinXPos( "Window Control" )+FrameWinXPos( "Window Control" )+XMouse)-XMouse which mathematically works but apparently mmf doesn't like it because when I drag nothing happens.

    Any help?

    It be cool if there was a mate feature, under align objects.

    Lets say you have 2 boxes:

    Code
    _      _
    |_|    |_|

    and you want the two inner edges to meet (useful for things such as tiling..) Theres currently no easy way to do that, you'd have to get the x of the first box, add the width of the first box to it, and then move the 2nd box to that location. But if theres a mate feature its as easy as select and click mate and boom:

    Code
    _ _
    |_|_|

    Hope you'll consider it :D