Answered
problem with the touch screen
Hi, I have a problem with the touch screen. I made a simple animate application containing 5 buttons switching to a given frame. When I use the mouse, everything is ok - but I know from the client that the buttons on the touch screen do not work. Unfortunately, the client is 180 km away from me - and I don't have access to the touch screen connected to windows.
The code on the buttons looks like this:
"button_6.addEventListener (TouchEvent.TOUCH_TAP, fl_TapHandler_6);
function fl_TapHandler_6 (event: TouchEvent): void {
gotoAndPlay (6);
}
button_6.addEventListener (MouseEvent.CLICK, f5_ClickToGoToAndPlayFromFrame);
function f5_ClickToGoToAndPlayFromFrame (event: MouseEvent): void {
gotoAndPlay (6);
}
"
I am begging you for help, in 2 days I must have everything working.
greetings
Eve
The code on the buttons looks like this:
"button_6.addEventListener (TouchEvent.TOUCH_TAP, fl_TapHandler_6);
function fl_TapHandler_6 (event: TouchEvent): void {
gotoAndPlay (6);
}
button_6.addEventListener (MouseEvent.CLICK, f5_ClickToGoToAndPlayFromFrame);
function f5_ClickToGoToAndPlayFromFrame (event: MouseEvent): void {
gotoAndPlay (6);
}
"
I am begging you for help, in 2 days I must have everything working.
greetings
Eve