04/04 - More Fours For Monday!

Status
Not open for further replies.

sudilly

Bubble Hell Avenger
Contributor
Joined
Jan 18, 2016
Messages
1,694
Reaction score
3,115
Points
588
Location
Central CA
Are there any scripts to turn off the chimes from OCMP75? I need my sound on but all this chiming for nothing is driving me nuts.
 

Lepi

Some Kind of Sneaky Witch Thief
Contributor
Joined
Jan 12, 2016
Messages
12,892
Reaction score
8,050
Points
1,213
Gender
Female
Are there any scripts to turn off the chimes from OCMP75? I need my sound on but all this chiming for nothing is driving me nuts.
Are you getting the chimes from Turkmaster?
 

cdegg

New Member
Joined
Jan 22, 2016
Messages
16
Reaction score
39
Points
263
Age
38
Gender
Male
Are there any scripts to turn off the chimes from OCMP75? I need my sound on but all this chiming for nothing is driving me nuts.
Here's what I do:

Installed this: https://chrome.google.com/webstore/detail/mute-tab-shortcuts/opcjanmpjbdbdpnjfjbboacibokblbhl?hl=en

And use this bit of AHK to make it even simpler

Code:
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

Numpad2::
send ^{tab}
return

Numpad1::
send +^{tab}
return

`::
send !+m
return
Numpad 1+2 moves tab forwards/backwards, tilde (`) mutes the tab. There's probably a simpler way of doing it but this works

All assuming you're using Chrome of course
 

Vanyanka

Thoroughbred of Sin
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 11, 2016
Messages
34,905
Reaction score
81,247
Points
2,338
Location
The Jungle
Gender
Female
Are you planning on giving any of those extra cats away? I've been wanting a new cat for a while.
Sure, but you have to bury the furballs in the ground on a half moon and sprinkle your blood on the gravesite. Then you'll have a super happy, normal cat. I promise.
 

sudilly

Bubble Hell Avenger
Contributor
Joined
Jan 18, 2016
Messages
1,694
Reaction score
3,115
Points
588
Location
Central CA
Amazon hates me tonight. The captchas are all screwy. I had one after 2 hits and another after 7. Then it didn't like the captchas so in desperation I opened a brelig and somehow the captcha had cleared itself. I think it's time to give up for the day.
 
  • Like
Reactions: <Gucci>

sudilly

Bubble Hell Avenger
Contributor
Joined
Jan 18, 2016
Messages
1,694
Reaction score
3,115
Points
588
Location
Central CA
Here's what I do:

Installed this: https://chrome.google.com/webstore/detail/mute-tab-shortcuts/opcjanmpjbdbdpnjfjbboacibokblbhl?hl=en

And use this bit of AHK to make it even simpler

Code:
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

Numpad2::
send ^{tab}
return

Numpad1::
send +^{tab}
return

`::
send !+m
return
Numpad 1+2 moves tab forwards/backwards, tilde (`) mutes the tab. There's probably a simpler way of doing it but this works

All assuming you're using Chrome of course
Wow there really is a script for everything! Thanks
 

sudilly

Bubble Hell Avenger
Contributor
Joined
Jan 18, 2016
Messages
1,694
Reaction score
3,115
Points
588
Location
Central CA
Are you getting the chimes from Turkmaster?
Turkmaster is different sound that I like to hear. OCMP's are supposed to be a response but 99% of the time I am still waiting.
 
Status
Not open for further replies.