On 8/23/05 8:21 AM, "Eric Chatonet" <[EMAIL PROTECTED]>
wrote:

> Hi Dave,
> 
> repeat with myIndex = 1 to number of controls in card 1 of stack
> "StackPath/StackName.rev"
>    if word 1 of the owner of control myIndex of card 1 of stack
> "StackPath/StackName.rev" = "group" then
>      put the long ID of control myIndex of card 1 of stack "StackPath/
> StackName.rev & cr after tGroupedControlsList
>    end if
> end repeat

Actually, Eric, he was asking for those controls *not* in a group, but your
code works with one minor adjustment (and a name change):

repeat with myIndex = 1 to number of controls in card 1 of stack
"StackPath/StackName.rev"
   if word 1 of the owner of control myIndex of card 1 of stack
"StackPath/StackName.rev" <> "group" then
     put the long ID of control myIndex of card 1 of stack "StackPath/
StackName.rev & cr after tUnGroupedControlsList
   end if
end repeat

:-)

Ken Ray
Sons of Thunder Software
Web site: http://www.sonsothunder.com/
Email: [EMAIL PROTECTED]


_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to