Messages - lanux128 [ switch to compact view ]

Pages: prev1 ... 16 17 18 19 20 [21] 22 23 24 25 26 ... 1251next
101
if you have an On the go (OTG) host cable, you can plug the receiver into your Android phone and listen to music and audio books. basic functions like play/pause and volume works.

OTG host cable



102
I can't figure out how the 'Split' function works. I tried to split the text using the default comma separator but nothing happens. What am I doing wrong here? Thanks.

Text Inspection & Manipulation Utility_2015-05-28_000331.png

103
This is because it probably registers it's hook at a higher level than you are.
yup, that's what i thought too. so in the end i had to pick one of the two.


Ah, many thanks @lanux128. That's very helpful of you.
I shall see if I can get the AHK approach and the control panel display to work nicely together, but from what you say you have already established that they probably can't. Bother.
Time to experiment, methinks.
Time to experiment, indeed. ;)

104
That's really interesting. I presume you're quite satisfied with the result, so far? Any niggles?

Could we have a copy of the AHK code you used for that, please? I'd like to learn from it.
Not sure whether I'd use it though, unless it defeated the Logitech software for the same functionality.
As I said above, "One of the things I need is the control panel display for the headphones". Your approach presumably means you don't/can't use the control panel display (which includes mixer, testing, voice simulation control and battery meter). Do you use something else instead?

I didn't find myself using the control panel display that much to warrant the additional software even though they were nice to have.


the AHK code requires some testing on your side as explained here and you should get something like this:
Key history
VK  SC   Type   Up/Dn   Elapsed   Key      Window
-------------------------------------------------------------------------------------------------------------
B0  119   a   d   7.25   Media_Next        
B0  119   a   u   0.25   Media_Next        
B3  122   a   d   1.33   Media_Play_Pause   
B3  122   a   u   0.34   Media_Play_Pause   
B1  110   a   d   1.04   Media_Prev        
B1  110   a   u   0.26   Media_Prev        
74  03F       d   5.09   F5                
Press [F5] to refresh.



that is for the keys G1-G3, so the code is as follows:

AHK code
Code: Autohotkey [Select]
  1.  
  2. SC119:: ;Media_Next            
  3. ToolTip, %A_ThisHotkey% pressed (Media_Next).
  4. Send, {Media_Next}
  5. SetTimer, RemoveToolTip, 5000
  6. Return
  7.  
  8. SC122:: ;Media_Play_Pause      
  9. ToolTip, %A_ThisHotkey% pressed (Media_Play_Pause).
  10. Send, {Media_Play_Pause}
  11. SetTimer, RemoveToolTip, 5000
  12. Return
  13.  
  14. SC110:: ;Media_Prev            
  15. ToolTip, %A_ThisHotkey% pressed (Media_Prev).
  16. Send, {Media_Prev}
  17. SetTimer, RemoveToolTip, 5000
  18. Return
  19.  
  20. RemoveToolTip:
  21. SetTimer, RemoveToolTip, Off
  22. Return


as I mentioned elsewhere, the mute button and volume rocker works out of the box. another thing to note is that on my PC, the AHK code doesn't work if Logitech's software is running.


105
Why did you ditch the software?  Just curious...

there was nothing wrong with the software. I am just more comfortable with default features and the enhanceability that Autohotkey provides. I also have a Logitech K800 keyboard, whose Fn keys are configurable via AHK without the need for Setpoint software.

Pages: prev1 ... 16 17 18 19 20 [21] 22 23 24 25 26 ... 1251next
Go to full version