runrev:
Code: Select all
put "def" into field "t1"
put "abc" before field "t1"
put "xyz" after field "t1"
Code: Select all
t1.text = "def"
t1.text = "abc" + t1.text
t1.text = t1.text + "xyz"
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
put "def" into field "t1"
put "abc" before field "t1"
put "xyz" after field "t1"
Code: Select all
t1.text = "def"
t1.text = "abc" + t1.text
t1.text = t1.text + "xyz"
Code: Select all
on mouseUp
put 1 into container
put 3 after container
put e after container
put 3+1 after container
put "dan" before container
put "XZ" after char 5 in container
put 4*5 after container
put " " after char 6 in container
put container into fld "l1"
end mouseUp
Output: dan13X Ze420
Code: Select all
replace "Ze" with the quote & short name of me & quote in container