Hi Ice
Saw your post over in the touch control forums about coding button feedback scripts. Have you tried this thread
change background image dynamicly I posted some code there to update the button images, after however many times you push a button.
In the ahk script area copy this script in
send, a
return, "1"
I just have the 'Send a' as an example so you can change this to any command you want.
Then check the feedback script box and place this script
var a=_feedback;
var b=_value;
var c=a+b;
if (c=='1'){return 'button^[@]plastic/greencircle_40x40.png[&]1';}
var c =parseInt(a);
var d=parseInt(b);
var e=c+d;
if (e=='1'){return 'button^[@]plastic/greencircle_40x40.png[&]1';}
if (e=='2'){return 'button^[@]plastic/redcircle_40x40.png[&]2';}
if(e=='3'){return 'button^[@]plastic/yellowcircle_40x40.png[&]0';}
else{return 'button^no';}
Also note to make sure your button pack is zipped properly with the zip format (not rar), are .png files and are zipped to a folder called the name of your button pack in the zip file.