Text selection system
-
This is a simple text selection program that I made please use it any way you'd like!
ID: 5HG63MNDSG -
thanks for that, I am looking for basic code like the one you created, so that I can learn how to use FUZE.
-
@mikeb109 The tutorials are pretty great to get started. Click the forum menu bar, click ’help’, and a new page will open with loads of stuff to read through and tutorials for all sorts. A high recommend from me, who only discovered how good they were after a couple of months of getting by. 90% of the things I got stuck on or had to ask about were right there and I hadn’t even looked! Lol
-
Also, check out the video tutorials if you haven't already:
-
Thanks. I have bin going over the doc and the tutorials/examples. I find the tutorials dont address small things. Like buttons interacting with each other in some way.
for example, I want button 1 when screen touched to affect button 2 by changing it's color or change a map/image on screen. -
That’ll be done with if/then stuff.
If button1 == touched then
Button2colour = red
Endif
If button1 != touched then
Button2colour = blue
EndifObviously that’s not real code, but it’ll end up being something like that..