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

Views: 326

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: Example For Pootis-Man
Rating: 5
Filesize: 10.14 kB
Downloads: 446
Comments: 6
Ratings: 1
Date added: 2017/06/14 22:10:48
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Mouse over object
Rating: 5
Filesize: 14.36 kB
Downloads: 506
Comments: 0
Ratings: 1
Date added: 2023/06/18 14:04:06
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Mouse Follow Tech Demo
Rating: 5
Filesize: 14.3 kB
Downloads: 764
Comments: 3
Ratings: 1
Date added: 2013/11/16 04:03:58
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Mouse Controlled Sniper Game
Rating: 5
Filesize: 149.36 kB
Downloads: 1424
Comments: 13
Ratings: 1
Date added: 2010/12/16 17:43:06
Made with: Phun
Rating: rated 5
download
Title: Mouse following Device
Rating: 6.3
Filesize: 18.44 kB
Downloads: 1153
Comments: 6
Ratings: 4
Date added: 2009/04/15 20:18:37
Made with: Phun
Rating: rated 6.3
download
Title: Need Help
Rating: 5
Filesize: 5.26 kB
Downloads: 335
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 (+ -).