Ttoday I have not been able to log in. It says I have bene logged in but the interface does not change form the login page. ANyone else with these isssues?-Nightfall
|
Ttoday I have not been able to log in. It says I have bene logged in but the interface does not change form the login page. ANyone else with these isssues?-Nightfall
For me it crashes on startup. Works in a VM though, so that's a workaround.
Hi Nightfall,
I had a similar problem at one time. For me, it was because Raidcall was still running in my system tray. I believe the default action for Raidcall is to minimize to the system tray on closing the main window. You have to right click the system tray icon and choose exit to completely close out the program. I was logged in for about a day and a half straight while I was away from my computer before I figured it out when I got back to it(whoops!). I hope this helps.
I'm not sure what to do about it crashing on startup, sorry SAI.
Good hunting
» Edited on: 2012-09-03 08:48:18
Well, as I said it works in a VM. So I just use that, easy enough.
Push to talk working. For anyone else who needs to run it in Virtualbox, here's the autohotkey script I wrote. This assumes the default install location for VirtualBox.
#UseHook
#InstallKeybdHook
; !=Alt, ^=Ctrl, +=Shift, and #=Windows
;PTT To VM
;Set the name of your VirtualBox VM here.
vmname = "Win7"
;For keycodes, do not include the 0x notation. List of scancodes at: http://www.win.tue.nl/~aeb/linux/kbd/scancodes-1.html
keydown = "3c" ; 3c = F2 Key Down
keyup = "bc" ; F2 key Up, Keycode UP = Keycode DOWN + 0x80
; for combined key insert multiple keycodes
;eg keydown = "01 02" ; Esc and 1 down.
F2:: ; F2 for default hotkey, http://www.autohotkey.com/docs/KeyList.htm is the key list.
Run, c:\program files\oracle\virtualbox\vboxmanage.exe controlvm %vmname% keyboardputscancode %keydown% , c:\program files\oracle\virtualbox\, hide
KeyWait F2
Run, c:\program files\oracle\virtualbox\vboxmanage.exe controlvm %vmname% keyboardputscancode %keyup% , c:\program files\oracle\virtualbox\, hide
return
» Edited on: 2012-09-03 20:10:41