View Single Post
<UPDATE> I've created the following thread in the Developper section which contains the same question:
http://forums.omnigroup.com/showthread.php?t=23131


Hi,

I just wrote a piece of AppleScript which moves some rows to a subsection.
I wanted to write minimum stuff, using the move command, but it appears that if I use it, the rows are only deleted, and not copied to where I want.
So, as a workaround, I had to first duplicate them, and then delete them.

Here's an example of what I've done:

Code:
duplicate (every child of theRow whose state is checked) to end of children of oDoneSection
delete (every child of theRow whose state is checked)
Here's what I wanted to write (which should basically do the same):
Code:
move (every child of theRow whose state is checked) to end of children of oDoneSection
Has anyone experienced trouble with the move command??

Thanks,
Bertrand

Last edited by bholveck; 2012-01-05 at 02:08 AM.. Reason: Found the AppleScript section in the forum!