HelpAutomatically set quality to low when opening Flash Player?

Posts 1–9 of 9 · Page 1 of 1
Automatically set quality to low when opening Flash Player?
Do any of you guys know a way to automatically set the quality to low when you open Flash Player? I'd assume you could MAYBE do it with AutoHotKey, but I can't code. I would REALLY appreciate it if one of you guys could whip up a script for me.

I already tried looking on Google, but that wasn't helpful.
The Windows hotkey would be Alt, then VQL. You could very easily set up an AHK script set to a hotkey (such as F1) to set it to low quality. Of course, that's not exactly what you're looking for, but it would be the simplest to set up. Just look up autohotkey Send/SendInput.
Quote Originally Posted by dwdude View Post
The Windows hotkey would be Alt, then VQL. You could very easily set up an AHK script set to a hotkey (such as F1) to set it to low quality. Of course, that's not exactly what you're looking for, but it would be the simplest to set up. Just look up autohotkey Send/SendInput.
Correct, so for AHK it would be like

{
Send {Alt}
SendInput {raw}VQL
}
I got an idea. Take some time (2 seconds) to right click and put low quality.
Quote Originally Posted by MPG Vortex View Post
I got an idea. Take some time (2 seconds) to right click and put low quality.

or u could do what twont said heres the code if your adding it to another script
Code:
;;quality
F9::
Send {Alt}
SendInput {raw}VQL
Return
heres it if your making a new one:
Code:
#NoEnv
#SingleInstance force
SendMode Input
SetWorkingDir %A_ScriptDir%

SetKeyDelay 0
SetMouseDelay 0
SetTitleMatchMode 2

Suspend on
GroupAdd rotmg, Adobe Flash Player 11
GroupAdd rotmg, Realm of the Mad God
WinNotActive()

WinActive()
{
	Suspend Off
	WinWaitNotActive ahk_group rotmg
	{
		WinNotActive()
	}
}
WinNotActive()
{
	Suspend on
	WinWaitActive ahk_group rotmg
	{
		WinActive()
	}
}

F9::
Send {Alt}
SendInput {raw}VQL
Return
Quote Originally Posted by MPG Vortex View Post
I got an idea. Take some time (2 seconds) to right click and put low quality.
I got an idea, how about you fuck off.
Quote Originally Posted by OnLevel View Post
I got an idea, how about you fuck off.
You're such as lazy asshole that you need a script to do something that takes 2 seconds?
Why don't you pick up that fatass hand, and actually move the mouse.
Dont tell other people to fuck off when your lazy ass cannot do something that takes 2 seconds.
That's my idea.
Quote Originally Posted by MasterFart View Post
You're such as lazy asshole that you need a script to do something that takes 2 seconds?
Why don't you pick up that fatass hand, and actually move the mouse.
Dont tell other people to fuck off when your lazy ass cannot do something that takes 2 seconds.
That's my idea.
Actually it might be useful in certain cases (like multiboxing).
Quote Originally Posted by nilly View Post
Actually it might be useful in certain cases (like multiboxing).
But still, it wouldn't take that long to do it manually on each client.
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?