Skip to content
LeeOnell edited this page Mar 8, 2016 · 1 revision

Hello,

A little trick for users from other countries, if you want the script SteamBulkKeyActivator.ahk working
with another language change some words at line 212-214, 337, 343-345.
Ex: English(Original file) to French:

steam_activate_window(){ ;activate the steam activation window
WinWait, Product Activation, ;wait for the activation window to pop up
IfWinNotActive, Product Activation, , WinActivate, Product Activation, ;if not active make active
WinWaitActive, Product Activation, ;wait until active
========================
steam_activate_window(){ ;activate the steam activation window
WinWait, Activation de produit, ;wait for the activation window to pop up
IfWinNotActive, Activation de produit, , WinActivate, Activation de produit, ;if not active make active
WinWaitActive, Activation de produit, ;wait until active

####

is_print_window(){ ;way to check if we have a new product or a duplicate
applog(“waiting 5 seconds for the print window to pop up”)
WinWait, Print,,5 ;wait 5 seconds.

IfWinNotActive, Print, WinActivate, Print,
WinWaitActive, Print,
WinKill,Print,
========================
is_print_window(){ ;way to check if we have a new product or a duplicate
applog(“waiting 5 seconds for the print window to pop up”)
WinWait, Imprimer,,5 ;wait 5 seconds.

IfWinNotActive, Imprimer, WinActivate, Imprimer,
WinWaitActive, Imprimer,
WinKill,Imprimer,

You must write the same words as displayed in the windows title of the Steam key windows and the print windows

Clone this wiki locally