ok, i have sony ericsson clicker for my t68i, and i want to be able to control the SYSTEM volume, nut just iTunes' volume.
so... here is my script:
tell application "Finder"
set realVolume to volume
tell application "SEC Helper"
enter slider mode title "Master Volume" steps 10 value realVolume
end tell
end tell
on value_was_changed(newValue)
tell application "Finder"
set volume newValue
my showOSDMessage("Volume = " & newValue & " %")
end tell
end value_was_changed
on showOSDMessage(txt)
tell application "SEC Helper"
show screen message txt
end tell
end showOSDMessage
....
so- my problem is that the script is seeting the volume in
set realVolume to volume
as a variable instead of the finder's volume. any ideas how i can get it to set my variable, realVolume, to the system's volume level so that I may adjust the master volume via my bluetooth phone?
btw- can someone send me all their applescript os x apps? i guess i must have deleted them... no clue why, but they are gone... bnau@iwu.edu
so... here is my script:
tell application "Finder"
set realVolume to volume
tell application "SEC Helper"
enter slider mode title "Master Volume" steps 10 value realVolume
end tell
end tell
on value_was_changed(newValue)
tell application "Finder"
set volume newValue
my showOSDMessage("Volume = " & newValue & " %")
end tell
end value_was_changed
on showOSDMessage(txt)
tell application "SEC Helper"
show screen message txt
end tell
end showOSDMessage
....
so- my problem is that the script is seeting the volume in
set realVolume to volume
as a variable instead of the finder's volume. any ideas how i can get it to set my variable, realVolume, to the system's volume level so that I may adjust the master volume via my bluetooth phone?
btw- can someone send me all their applescript os x apps? i guess i must have deleted them... no clue why, but they are gone... bnau@iwu.edu