| Re: I cannot get Fitatrak to function -- prm | |||
| Posted by JudH ® , 03/13/2006, 01:07:49 | Post Reply | Top of Thread | Forum |
Sounds like Fitatrak isn't seeing the TIP. Does the TIP icon come up okay? When you tap it does the full TIP keyboard come up? Does Fitaly come up okay? Does Fitaly come back okay if you right click the Fitatrak icon and exit?
Start windowinfo.ahk (assuming you installed ahk--code below if not. That will create a floating window that follows the cursor showing the id and class of the window. Click on an input field so the TIP icon comes up--point the cursor at it and make sure the class is "IPTip_Main_Window". The TC1100 is running Tablet PC Edition SP2 right?
Right click the tray icon to exit.
That'll start :-)
Jud
------------Windowinfo------------:
;MouseGetPos, xpos, ypos
;Msgbox, The cursor is at X%xpos% Y%ypos%.
; This example allows you to move the mouse around to see
; the title of the window currently under the cursor:
#Persistent
SetTimer, WatchCursor, 100
return
WatchCursor:
MouseGetPos, , , id, control
WinGetTitle, title, ahk_id %id%
WinGetClass, class, ahk_id %id%
ToolTip, ahk_id %id%`nahk_class %class%`n%title%`nControl: %control%
return
| Edit | Post Reply | Where am I? | | Original Message | Top of Thread | Current page | Author Profile |
|