Revolution is producing errors on the variable "working", e.g.,
put field "name" into working
This produces an error. If I change "working" to "workingX" all is well.
Two questions:
1) When I look in the dictionary the word "working" does not appear there. So what is its purpose?
2) Is there a list of reserved words which are other than those found in the Dictionary?
The use of the term "working"
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: The use of the term "working"
A common naming scheme is tWorking, tCost, tChar, etc.; helps to avoid current and future conflicts with reserved words. One-letter variables such as x are also safe.
Best wishes,
Curry Kenworthy
LiveCode Development, Training & Consulting
http://livecodeconsulting.com/
WordLib: Conquer MS Word & OpenOffice
SpreadLib: "Excel-lent" spreadsheet import/export
http://livecodeaddons.com/
Curry Kenworthy
LiveCode Development, Training & Consulting
http://livecodeconsulting.com/
WordLib: Conquer MS Word & OpenOffice
SpreadLib: "Excel-lent" spreadsheet import/export
http://livecodeaddons.com/
Re: The use of the term "working"
Hi all,
"working" is an addition to "the screenrect" and therefore a reserved word.
See "screenrect" in the docs (Rev dictionary).
Best
Klaus
"working" is an addition to "the screenrect" and therefore a reserved word.
See "screenrect" in the docs (Rev dictionary).
Best
Klaus
Re: The use of the term "working"
Thank you Klaus!