Search found 7 matches
- Sat May 25, 2013 8:50 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: MouseEnter
- Replies: 14
- Views: 9011
Re: MouseEnter
Also why does it only work if you move the mouse slowly? Is there a way to make sure works when it moves quickly too?
- Sat May 25, 2013 8:42 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: MouseEnter
- Replies: 14
- Views: 9011
Re: MouseEnter
Hey, What I did do was to alter some of the co-ordinates where the original code was: case x > 100 and x < 110 I put: case x > 100 and x < 102 and: case x < 200 and x > 190 I put: case x < 200 and x > 198 Etc. I was more accurate that way. How would you suggest making the code so the size and positi...
- Sat May 25, 2013 7:03 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: MouseEnter
- Replies: 14
- Views: 9011
Re: MouseEnter
Hey Craig,
That worked great. I examined the code and got the notes playing as I wanted on each side of the button, then got several buttons in a row by copy and pasting altering the co-ordinates.
Cheers,
Mark
That worked great. I examined the code and got the notes playing as I wanted on each side of the button, then got several buttons in a row by copy and pasting altering the co-ordinates.
Cheers,
Mark
- Fri May 24, 2013 12:16 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: MouseEnter
- Replies: 14
- Views: 9011
Re: MouseEnter
Thanks Craig. Much appreciated!
- Thu May 23, 2013 6:48 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: MouseEnter
- Replies: 14
- Views: 9011
Re: MouseEnter
Craig, I tried-out your code and saw the results - I want to turn that now into a practical effect. What I'm trying to do is musical. I was able to assign sounds (piano) to mouse commands - mouseDown, mouseUp, mouseEnter, mouseLeave, - 4 commands, producing 4 different notes on one button. How do I ...
- Thu May 23, 2013 4:58 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: MouseEnter
- Replies: 14
- Views: 9011
Re: MouseEnter
Thanks for the tips Craig - I'll try them out. Never programmed in any other languages. I'll let you know how I get on.
- Thu May 23, 2013 4:30 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: MouseEnter
- Replies: 14
- Views: 9011
MouseEnter
Hello, I'm a complete beginner. When using the "MouseEnter" code, is it possible to specify how/where the mouse enters? For example "mouseEnterLeft", "mouseEnterTop". I tried those, but they didn't work. If the object I'm coding is a square, I would each side to have a different action. I would also...