Search found 3 matches
- Sun Feb 27, 2011 11:11 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Math Help - Teardrop Shaped Figure 8
- Replies: 1
- Views: 3516
Re: Math Help - Teardrop Shaped Figure 8
This is a way of drawing a Lissajous Curve. I modified some code that I used to draw a spiral. First draw a freehand graphic called "curve" (the default name!) Put the following code into a button and see what happens. on mouseUp put round(2.1*pi) into ttop -- angles are measured in radians; this go...
- Tue Dec 07, 2010 11:14 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Stand Alone Blocked by Norton 360 File Insight
- Replies: 1
- Views: 2615
Stand Alone Blocked by Norton 360 File Insight
I wrote a small app on my macbook using my Enterprise program and AnimationEngine 3.0 When I tried to download a standalone version on a Windows 7 machine at home, Nortons 360 (File Insight) listed it as have many untrustworthy features and removed it from the computer. When I temporarily changed th...
- Sun Oct 03, 2010 9:32 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Hiding more than one object in one command?
- Replies: 9
- Views: 7313
Re: Hiding more than one object in one command?
Name the buttons as Button1, Button2, Button3 then use a loop such the following:
on mouseUp
repeat with i = 1 to 3
hide button ("button" & i)
end repeat
end mouseUp
on mouseUp
repeat with i = 1 to 3
hide button ("button" & i)
end repeat
end mouseUp