Don't have an account yet? Then register once and completely free of charge and use our wide range of topics, features and great options. As a registered member on our site, you can use all functions to actively participate in community life. Write posts, open topics, upload your pictures, put your videos online, talk to other members and help us to constantly improve our project and grow together! So, what are you waiting for? Become a part of us today!
To get support for a technical issue such as installing the software, to query a purchase that you've made/would like to make, or anything other than using our software, please visit our Customer Service Desk:
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!
Please login to see this picture.Please login to see this picture. Please login to see this link.
Ba-Bomb!: the most explosive puzzle game ever created! Tap bombs and watch them explode, chain react and fire up connecting bombs to create huge explosive combos. Fill up your punch cards for extra matches and boosts to your score. Go for a high score or ignore the scoreboard and simply blow up bombs as long as you like. Ba-Bomb! includes 5 game modes: Normal, Timed, Twitch, Aqua, and the exciting Puzzle/RPG hybrid Quest mode.
You can get Ba-Bomb! from the Clickstore for a special discounted price of only $0.99! Please login to see this link.
If I remember correctly, you can't create an object and use spread value in the same condition. If you do, Fusion's object selection will select only the one object you just created.
There was a facebook extension, but I don't know if it still works. I have heard that social media extensions are being worked on, so maybe we'll see a new one soon.
button clicked + object's flag 1 is off + pick one of object: set object's flag 1 on Objects flag 1 is on: play animation Animation finished: destroy object
in the frame editor, click the edit box and go to the properties window. In the properties window, click Text Options (the "A"). Down at the bottom is the text alignment settings.
To explain it: Your basic equation is (Eighth+0.22)/0.655 Eighth+0.22 is in brackets so that you can be sure that they are added together before being divided by 0.655
After that, you multiply your equation by 1000: ((Eighth+0.22)/0.655)*1000 notice that again it has been wrapped in brackets, so that you can be sure the multiplication happens after the main value has been calculated.
Next, you stick that equation inside of Round(). Round will convert your floating point number into the closest whole number (in the case of your equation, 10560)
You then divide the rounded number by 1000.0 to reconvert it to a floating point value: Round(((Eighth+0.22)/0.655)*1000)/1000.0
And then stick the whole equation inside of the Str$() function to convert it into a string: Str$(Round(((Eighth+0.22)/0.655)*1000)/1000.0)