Jump to content

Salvatore Sorice

Members
  • Posts

    543
  • Joined

  • Last visited

Reputation

378 Excellent

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Not usually my type of music either but I really appreciate the musicianship and enjoyed the song. Bravo!
  2. Really cool! I’m a keyboard player but found it fascinating. Guess we don’t need anymore violins, violas and celllos? 😛
  3. Mark - can you cross-post this on the other thread on same subject?
  4. I agree @sjoens - I went with the Auto Hotkey approach because I don't see the option that you posted: Hope it (and other missing ones) get brought back!
  5. Thanks @msmcleod - will have to keep those points in mind when using Auto Hotkey. Just curious why the Screenset Lock/Unlock shortcut would be deprecated, as it is so useful. Does it conflict with something in the new (paid) Sonar?
  6. Thanks @Max Arwood - the fact that you (and likely many others) have way more knowledge than me regarding Auto Hotkey, I think it would be great if we could have a dedicated forum area/topic on it (unless one already exists and I didn't know). @sjoens and @Promidi - thanks for your insights as well. I'll let support know about the key binding weirdness. Seems like it should be more standardized / consistent? I'm pinging @msmcleod and @Noel Borthwick - maybe they could shed some light on this!
  7. I started a support ticket. It seems like they expect the bindings to be there... I think the Bakers might have to take a look at this?
  8. @Promidi, ALT+SHIFT+L does not work for me (latest paid Sonar build). Also, I had checked, and the lock/unlock screenset command does not show in the Global Bindings list at all. No idea why it works for you. Could it be some type of script/macro you are using?
  9. I'm no Auto Hotkey expert by any means and the scripts I've found (or compiled by trial and error) are real timesavers. I think it would be great to have a dedicated section of the Forum where users can post/share Auto Hotkey scripts - it seems like there are several knowledgeable Auto Hotkey folks on the Forum. I've got several and will post them. Example: Here's one that will Toggle the current Screenset between Locked and Unlocked - great timesaver! Script syntax: #SingleInstance Force #Requires AutoHotkey v1 ; Desgnate Hotkey Toggle Screenset Lock between On and Off (CTRL+ALT+L) ^!l:: ;Run as Administrator ;NO ERROR checking included #z:: IfWinActive ahk_class Sonar { Sleep 300 Send !V Sleep 300 send s Sleep 300 send s send {Enter} Sleep 300 send l Sleep 300 Send r Return } While Sonar is in focus pressing CTRL+ALT+L (or whatever combination you prefer) will toggle the screenset between locked and unlocked. You can put the script into your Windows startup folder so that it loads upon start and is always available. Here is it in action:
  10. This was also a pain for me as well. Fortunately, I was able to cobble together an Auto HotKey script that toggles the active screenset between locked and unlocked. I'm no Auto Hotkey expert by any means and this was the result of trial and error. You'll also have to familiarize yourself with the program and the great things it can do! Here's the Script syntax: #SingleInstance Force #Requires AutoHotkey v1 ; Desgnate Hotkey Toggle Screenset Lock between On and Off (CTRL+ALT+L) ^!l:: ;Run as Administrator ;NO ERROR checking included #z:: IfWinActive ahk_class Sonar { Sleep 300 Send !V Sleep 300 send s Sleep 300 send s send {Enter} Sleep 300 send l Sleep 300 Send r Return } While Sonar is in focus pressing CTRL+ALT+L (or whatever combination you prefer) will toggle the screenset between locked and unlocked. You can put the script into your Windows startup folder so that it loads upon start and is always available. Here is it in action:
×
×
  • Create New...