
As you can see, this is made up of a number of graphic circles, then on top of each circle is a button(blend level is at 100) that draws a line from the location of the circle below it to a the location of a random circle.
I would like to make it a bit more interesting by animating the location of the circles/buttons (the buttons need to remain on top of the circles to i'm guessing I would group them?)
I want the dots to look like they are floating, so I want to add some random, slow movement but I don't want them to overlap.
Any thoughts on the best way to go about doing this?
Thanks
EDIT:
I've started experimenting and I have come across a few issues using this code:
Code: Select all
on mouseUp
put 100,110 & return & 150,200 & return & 20,400 & return & 200,20 & return & 250,300 into PList
set the moveSpeed to 20
move group "testgroup" to Plist
end mouseUp
2. I still can't figure out how to get random floating motion
I thought about moving each of the dots/buttons along a path, I don't know if it is possible to generate a random curve (a closed shape so that it can loop).