
Brian
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
on mouseUp
set the dgText of group "plan from google" to empty -- initialize
put empty into fld output -- initialize
put fld"input" into tinput -- initialize
put quote & "c" & quote & ":" into delimiter -- i.e. "c":
replace delimiter with return in tinput -- seperate input into records
put quote & "v" & quote & ":" into delimiter -- i.e. "v":
replace delimiter with tab in tinput -- seperate records into fields
put tinput into fld"output" -- lets have a look at it
end mouseUp