Bullets on Windows...
Posted: Sat Aug 08, 2009 10:33 am
Good morning...
I have a script that puts bullets into a field I am using to hide the charecters of a password that is typed in by a user. Under Mac OS the bullet is produced by the shift-option-8 key combination... this works well under Windows too... until, I make the stack a standalone and then I get vertical straight lines not bullets...
If someone could tell me which font to use, I would appreciate it.
I have a script that puts bullets into a field I am using to hide the charecters of a password that is typed in by a user. Under Mac OS the bullet is produced by the shift-option-8 key combination... this works well under Windows too... until, I make the stack a standalone and then I get vertical straight lines not bullets...
If someone could tell me which font to use, I would appreciate it.
Code: Select all
on keyDown theKey
put empty into fld "passresponse"
put "•" after fld 2
put theKey after fld 3
end keyDown
on backSpaceKey
if the selection of me is not empty then
delete the selection
put the text of me into fld 3
exit backSpaceKey
end if
delete the last char of fld 2
delete the last char of fld 3
end backSpaceKey
on returnInField
send "mouseUp" to button "signIn"
end returnInField