Search found 6 matches

by nsrev
Thu Apr 07, 2011 8:29 pm
Forum: Animation Engine
Topic: Tutorial requests
Replies: 28
Views: 57744

Re: Tutorial requests

I would like some examples showing how to use callbacks as I do not really understand how to use them. I would also like to see more examples using the different functions and commands. The more different ideas the better to show how animationengine can be used. I have upgraded twice and have the la...
by nsrev
Sun Feb 27, 2011 11:11 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Math Help - Teardrop Shaped Figure 8
Replies: 1
Views: 2945

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...
by nsrev
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: 2147

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...
by nsrev
Thu Oct 28, 2010 4:08 pm
Forum: Animation Engine
Topic: Request for list of ae3 commands as a textfile
Replies: 3
Views: 3978

Re: Request for list of ae3 commands as a textfile

I am requesting a textfile listing the functions etc for animation engine 3.0
by nsrev
Thu Oct 28, 2010 1:53 pm
Forum: Animation Engine
Topic: Request for list of ae3 commands as a textfile
Replies: 3
Views: 3978

Request for list of ae3 commands as a textfile

Could a list of ae3 commands be made available as a textfile so a command can be copied into a script rather than typed in each time?
I copy blocks of code this way and I would like to do this with animationengine.
by nsrev
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: 5708

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

Go to advanced search