Grouping question

2013-03-21 Thread Peter Haworth
I want to use the import command in a script to import an image from a file of the user's choice. The catch is that I want the resulting image to end up in a group and, unlike the create command, the import command doesn't have a way to specify a group. In the past when I've run into this, I get

Re: Grouping question

2013-03-21 Thread Monte Goulding
On 22/03/2013, at 7:52 AM, Peter Haworth p...@lcsql.com wrote: Both those methods seem somewhat clumsy so I'm wondering if there's a more elegant way to do this. Hmm.. setting the relayerGroupedControls to true and setting the layer of the image to somewhere inside the group is an option...

Re: Grouping question

2013-03-21 Thread Marty Knapp
Hey Pete, Why not create an image in the group you want, then use the put URL method: create image in group GroupName of stack StackName put it into tImageID --long id of image put URL (binfile: tPathToImage) into image tImageID of group GroupName of stack StackName Marty Knapp I want to

Re: Grouping question

2013-03-21 Thread Peter Haworth
Well I guess neither of the methods I mentioned will work since the import command does not give me the id of the image it creates, at least not in the it variable or the result. So I guess I'm back to using the create command which solves the issue of getting the image into the correct place,

Re: Grouping question

2013-03-21 Thread Klaus on-rev
Hi Pete, Am 21.03.2013 um 22:03 schrieb Peter Haworth p...@lcsql.com: Well I guess neither of the methods I mentioned will work since the import command does not give me the id of the image it creates, at least not in the it variable or the result. So I guess I'm back to using the create

Re: Grouping question

2013-03-21 Thread Monte Goulding
On 22/03/2013, at 8:03 AM, Peter Haworth p...@lcsql.com wrote: Well I guess neither of the methods I mentioned will work since the import command does not give me the id of the image it creates, at least not in the it variable or the result. get the long id of the last image So I guess

Re: Grouping question

2013-03-21 Thread Peter Haworth
Perfect,thanks Marty. Pete lcSQL Software http://www.lcsql.com On Thu, Mar 21, 2013 at 2:01 PM, Marty Knapp martyknapps...@gmail.comwrote: Hey Pete, Why not create an image in the group you want, then use the put URL method: create image in group GroupName of stack StackName put it into