Page 1 of 1

MouseWheelScroll

PostPosted: Tue Aug 16, 2011 4:35 pm
by HiTemp
Hello. If anyone can help me - MouseWheelScroll - how to initiate in the program :?: or some code

Re: MouseWheelScroll

PostPosted: Tue Aug 16, 2011 10:40 pm
by skydereign
Well, the scroll wheel is oddly supported. To initiate it, you need to add a mouse button down event. What you need to do, is scroll the direction you want it to support. It won't say what type of click/scroll it is, but now it will let you add an event. Anyway, up and down scroll need to be different events, and I'd suggest putting in a comment at the beginning telling you the direction of the scroll, as for some reason gE doesn't want to print it.

Re: MouseWheelScroll

PostPosted: Wed Aug 17, 2011 2:11 pm
by Jagmaster
I didn't know that! Can the same be done with MouseButtonUp? And if I am using a touchscreen will it support two finger gestures?

Edit: I just tested it with my laptop's touchpad and it works! Will the same be supported with Iphone/Ipad?

Re: MouseWheelScroll

PostPosted: Wed Aug 17, 2011 3:33 pm
by schnellboot
Jagmaster wrote:MouseButtonUp
lol
Jagmaster wrote:Will the same be supported with Iphone/Ipad?
no because the two finger gesture is already programmed in the touchpad so that it will output the mouseswheelscroll and ge takes theses scroll inputs not the gestures

Re: MouseWheelScroll

PostPosted: Wed Aug 17, 2011 3:48 pm
by Jagmaster
Well, I guess the scrolling of the mouse wheel counts as multiple clicks. The MousebuttonUp did work, but it's not very useful unless you want the action to initiate 20 times per scroll. :P

@Schnellboot: Thanks for the info, I never knew how those things work. Still, it would be nice if it supported that.

Re: MouseWheelScroll

PostPosted: Wed Aug 17, 2011 3:56 pm
by schnellboot
if real multitouch is supported it could be done easily using a filled region

Re: MouseWheelScroll

PostPosted: Wed Aug 17, 2011 8:36 pm
by lcl
WOW, I didn't know that GE supports mouse wheel scrolling!!
That's great! :D

Re: MouseWheelScroll

PostPosted: Fri Aug 19, 2011 3:22 pm
by HiTemp
ok thenx for answers