I've come across a couple of sample scripts that use "pBtnNum" in the script. I have force variable declaring on, and the script runs fine, leading me to conclude this is NOT a user variable.
Example script:
What does this refer to?on mouseUp pBtnNum
global theChosenColor
if pBtnNum is 1 then
## Prompt user for color using current color as default
answer color with the effective backgroundcolor of me
## If user didn't cancel then assign background color
## to chosen color
if the result is not "cancel" then
put it into theChosenColor
set the backgroundcolor of me to theChosenColor
end if
end if
answer theChosenColor
end mouseUp
Thanks