Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Micros Simphony 2 - Touch Bug 1

Status
Not open for further replies.

nvak

Programmer
May 25, 2015
60
GR
Hello,

I have he following problem in my custom application on Micros.

I have a window opened on Micros and a User types a room to search for a reservation.
When user presses ok a call is made and micros gets an answer and displays a window with reservation details asking for an input to proceed.

The problem is that when the user presses the ok button in the right side the touch event goes deeper and presses the next button in the same location which happend to be the clear/cancel button.

So the window disappers.

When User presses the ok button in the left side nothing happens because the next button in the same location is the backspace button which do nothing.

Here is the video:
There are a lot of workarounds I can do but i just want to fix the touch bug. I have already unistall and install all the available drivers.

The workstation details are:

WS6D
Windows 8.1
Industry Pro
Atom CPU E3827 1.74 GZ
4GB DDR3 1,333

Thank you very much
 
Did you forget to put a WaitForXXXX in the script?

Options
waitforconfirm
waitforclear
waitforenter
waitforrxmsg
 
No i did not.

As you can see on video the interface works fine i you touch the button on the left side.
 
Does the same fall through happen if you use a mouse to click the button?
You will need to enable the mouse cursor in the workstation display settings.

Do you want some custom SIM scripts developed. Contact me via my website
 
No if you click it with a mouse it works fine.

Only if you use touch there is the above problem.
 
I think that it is already enabled.

Untitled_lg1zu3.png
 
I wonder if your screen is "double clicking" rather than the click falling through the window.
Can you minimise the servicehost and see if folders or files open with a single tap?

Do you want some custom SIM scripts developed. Contact me via my website
 
no it is not "double clicking"!
 
Its not an ideal solution but you can design your own Alpha numeric touchscreen in the EMC -> Setup tab -> Custom Content -> Alpha-Numeric Keyboard.
Set this for the Language and enable as default.

It doesnt stop it happening but you can design the screen so there is nothing behind to click.

Do you want some custom SIM scripts developed. Contact me via my website
 
Thank you Cathal.

I have already did that but yes this is not a solution at all. It is just a workaround.

I need to find the solution for the touch bug because it causes a lot of problems.
 
I cant replicate this on my device.
Can you post a minimal SIM script that can be used to replicate this on your system.

Do you want some custom SIM scripts developed. Contact me via my website
 
Code:
EVENT inq : 1
        VAR Version : A30 = "v2.16.174.0"
	VAR Info : a40
	VAR DetailsRow : N1
	VAR AdultsNumber : N5 = 0
        VAR ChildrenNumber : N5 = 0
	
	INPUT Info, "ENTER ROOM ", Version

	WINDOW 8, 75, Version 
	DetailsRow = 1
	DISPLAY DetailsRow, 1, "Room Number: ", Info
	DISPLAY DetailsRow, 20, "Customer Name: Test Customer"
	DetailsRow = DetailsRow + 1
	DISPLAY DetailsRow, 1, "Reservation: 123456789"
	DISPLAY DetailsRow, 22, "Adults: 2"
	DISPLAY DetailsRow, 34, "Children: 3"
	
	FOREVER
		INPUT AdultsNumber, "ENTER ADULTS "
		IF AdultsNumber <= 2 AND AdultsNumber >= 0
			BREAK
		ENDIF
	ENDFOR    
	
	FOREVER
		INPUT ChildrenNumber, "ENTER CHILDREN "
		IF ChildrenNumber <= 3 AND ChildrenNumber >= 0
			BREAK
		ENDIF
	ENDFOR    
	
	INFOMESSAGE "END OF SCRIPT"
ENDEVENT
 
It is the Starwood Version in DataCenter.

IMG_20160628_134459_mpphok.jpg
 
You have to touch the first OK button in a way that the cancel button on the next screen be exactly under your finger.
 
Seems there was another fix in the hotfixes.

"7c. PORT | PMS, MPG | sim scripts | win 8.1 devices | workstation or tablet will register a second touch in the same spot after a sim dialogue is closed regardless of where actually touched."

You can download the latest hotfix from under "Patches & Updates"

Do you want some custom SIM scripts developed. Contact me via my website
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top