Browse Search Popular Register Upload Rules User list Login:
Search:
Mouse over script

Image:
screenshot of the scene

Author: homieeee

Group: Default

Filesize: 67.01 kB

Date added: 2013-07-19

Rating: 5

Downloads: 363

Views: 288

Comments: 3

Ratings: 1

Times favored: 0

Made with: Algodoo before v1.8.5

Tags:

Scene tag

script for mouse over
Please log in to rate this scene
edit
Similar scenes
Title: Porsche Spyder track
Rating: 5.625
Filesize: 464.1 kB
Downloads: 903
Comments: 0
Ratings: 2
Date added: 2013/12/18 04:54:57
Made with: Algodoo before v1.8.5
Rating: rated 5.6
download
Title: Mouse Follow Tech Demo
Rating: 5
Filesize: 14.3 kB
Downloads: 730
Comments: 3
Ratings: 1
Date added: 2013/11/16 04:03:58
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Mouse following Device
Rating: 6.3
Filesize: 18.44 kB
Downloads: 1109
Comments: 6
Ratings: 4
Date added: 2009/04/15 20:18:37
Made with: Phun
Rating: rated 6.3
download
Title: Mouse aiming attraction laser
Rating: 5
Filesize: 71.32 kB
Downloads: 715
Comments: 6
Ratings: 1
Date added: 2014/06/19 16:22:41
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Super shoot-out (script-intensive)
Rating: 7.7177
Filesize: 122.48 kB
Downloads: 1422
Comments: 8
Ratings: 11
Date added: 2009/03/24 08:20:50
Made with: Phun
Rating: rated 7.7
download
Title: ARRAY COLOR FOLLOWS MOUSE
Rating: 6
Filesize: 67.34 kB
Downloads: 1478
Comments: 3
Ratings: 3
Date added: 2012/10/06 06:11:35
Made with: Algodoo v2.0.2
Rating: rated 6
download
Good tutorial! Have you considered writing about it in the Algodoo forum in the "Tutorials" section? There you can write much more detail and give other examples and sample scenes.

:tup:
Thank you! no I did not consider that but I will look in to it!:)
Programmable version whithout scene.my.* variables:

{
P = Set here the it's position or other position;
S = Set here it's size o just put another;
DX = (P(0) - app.mousepos(0)) > 0 ? P(0) - app.mousepos(0) : math.negate(P(0) - app.mousepos(0));
DY = (P(1) - app.mousepos(1)) > 0 ? P(1) - app.mousepos(1) : math.negate(P(1) - app.mousepos(1));
DY < S(1) / 2 && DX < S(0) / 2
}

If the mouse is in the correct area itwill run whatever script! :tup:
Yours do the same thing but i use math.negate instead of use sings (+ -).