View Single Post
Quote:
Originally Posted by MB_UST View Post
Do you know if going the opposite direction is also a problem?
There is certainly at least one problem if you distribute Leopard-compiled (.scpt) scripts rather than text (.applescript) scripts - Tiger tends to choke on some special characters like ≠ and ¬ if the scripts was compiled on Leopard.

In addition there may be some residual fragility and non-portability surrounding scripts which refer to selected trees of content, even though the a previous thread ended on an optimistic note.

A script which worked on Leopard with:

Code:
tell application "Omnifocus"
tell front window
			set lstTrees to selected trees of content
			if (count of lstTrees) = 0 then
had to be rewritten (for at least one Tiger system) to:

Code:
tell application "Omnifocus"
tell document window 1 of front document
			set lstTrees to selected trees of content
			if (count of lstTrees) = 0 then