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: 361

Views: 287

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: 900
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: Example For Pootis-Man
Rating: 5
Filesize: 10.14 kB
Downloads: 422
Comments: 6
Ratings: 1
Date added: 2017/06/14 22:10:48
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: mouse script
Rating: 5
Filesize: 57.34 kB
Downloads: 758
Comments: 0
Ratings: 1
Date added: 2009/05/08 19:44:47
Made with: Phun
Rating: rated 5
download
Title: Mouse following Device
Rating: 6.3
Filesize: 18.44 kB
Downloads: 1107
Comments: 6
Ratings: 4
Date added: 2009/04/15 20:18:37
Made with: Phun
Rating: rated 6.3
download
Title: M4A1 Carbine (Phun) Mouse Operated Rifle
Rating: 8.2
Filesize: 332.19 kB
Downloads: 7485
Comments: 31
Ratings: 14
Date added: 2010/03/05 23:11:45
Made with: Algodoo before v1.8.5
Rating: rated 8.2
download
Title: Need Help
Rating: 5
Filesize: 5.26 kB
Downloads: 298
Comments: 0
Ratings: 1
Date added: 2016/05/15 21:58:46
Made with: Algodoo v2.1.0
Rating: rated 5
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 (+ -).