realbasic-nug
[Top] [All Lists]

Keyboard.AsyncShiftKey under XP Parallels

To: List Realsoftware <realbasic-nug@lists.realsoftware.com>
Subject: Keyboard.AsyncShiftKey under XP Parallels
From: jim_meyer <jim_meyer@chartermi.net>
Date: Fri, 30 Jan 2009 14:30:48 -0500
Authentication-results: mx.google.com; spf=neutral (google.com: 74.124.194.228 is neither permitted nor denied by best guess record for domain of realbasic-nug-bounces@lists.realsoftware.com) smtp.mail=realbasic-nug-bounces@lists.realsoftware.com
Delivered-to: listarchive@realsoftware.com
Reply-to: REALbasic NUG <realbasic-nug@lists.realsoftware.com>
Sender: realbasic-nug-bounces@lists.realsoftware.com
Hi.....

It seems that Keyboard.Async..... keys do not work when running XP under Parallels..... and I do not have an XP machine to test without Parallels.

Has anyone else seen this and can confirm?

Here is what I did to test this directly:

In a new project I put StaticText1 field on Window1.... then I added a multiple mode Timer on the window with this code in the Action event.

  StaticText1.text = "None"
  if Keyboard.AsyncShiftKey then
    StaticText1.text = "Shift Key"
  end if
  if Keyboard.AsyncAltKey then
    StaticText1.text = "Alt Key"
  end if
  if Keyboard.AsyncCommandKey then
    StaticText1.text = "Command Key"
  end if
  if Keyboard.AsyncControlKey then
    StaticText1.text = "Control Key"
  end if
  if Keyboard.AsyncOptionKey then
    StaticText1.text = "Option Key"
  end if
  if Keyboard.AsyncOSKey then
    StaticText1.text = "OS Key"
  end if

Under OSX the text changes as expected as I press and hold each of those keys..... under XP it does not change.

I also played around with the Parallels keyboard Preferences but that did not seem to help.

I am running Parallels 4.0.3810 under OSX 10.5.6.

Jim



_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>


<Prev in Thread] Current Thread [Next in Thread>