glad it worked for you.
For file reading/writing you have the URL option, which does it in one command and the
open file
read from file
close file
sequence which gives you more control over what portion of the file you want.
Re dictionary. Which I often find very helpful in the dictionary is the See also section. It often leads to related topics. And then a dictionary is, well a dictionary. You somehow need to know the words you want to look up.
Since you apparently like Markers in graphics here are some more I did for the heck of it (I especially like the Questionmark for questionable data

Code: Select all
on mouseUp
--set the markerpoints of grc "adjusted close" to makeCross()
set the markerpoints of grc "adjusted close" to makeQuestionMark()
set the markerfillcolor of grc "adjusted close" to "" --red -- sets the fill of the marker
set the hiliteColor of grc "adjusted close" to blue -- sets the 'line color of the marker
set the markerLIneSize of grc "adjusted close" to 1 -- adjust the linesize of the marker
set the linesize of grc "adjusted close" to 0 -- make the lines invisible
set the markerfilled of grc "adjusted close" to false -- makes the fill of markers visible or invisible
end mouseUp
function makeSquareBox
-- you can change the form of the markerpoints here
return \
"-2,-2" & cr &\
"2,-2" & cr &\
"2,2" & cr &\
"-2,2" & cr &\
"-2,-2"
end makeSquareBox
function makeQuestionMark
return -3,1 & cr & -2,-2 & cr & -1,-3 & cr & 0,-3 & cr & 1,-2 & cr & 2,-2 & cr & 3,0 & cr & 3,2 & cr & 2,2 & cr & 1,3 & cr & 0, 3 & cr & 0,4 & cr & 0, 7 & cr & cr &\
0,9 & cr & -1,10 & cr & 0,11 & cr & 1,10 & cr & 0,9
end makeQuestionMark
--function makeAQuestion
-- return 0,-3 & cr & 0,3 & cr & cr & 3,0 & cr & -3,0
--end makeAQuestion
function makeDiamond
return \
"-3,0" & cr &\
"0,-3" & cr & \
"+3,0" & cr &\
"0,+3" & cr & \
"-3,0"
end makeDiamond
function makeCross
return \
"0,-3" & cr &\
"0,3" & cr & cr &\
"3,0" & cr &\
"-3,0"
end makeCross
function makeX
return \
"-3,-3" & cr &\
"+3,+3" & cr & cr &\
"+3,-3" & cr &\
"-3,+3"
end makeX
regards
Bernd