Re: Background Group Question

2005-10-13 Thread David Burgun
Hi I solved the problem like this: repeat with myCardIndex = 1 to the number of cards in stack myStackLongName go to card myCardIndex of myStackLongName --** repeat with myControl index = 1 to the number of controls in card myCardIndex of stack myStackLongName

Background Group Question

2005-10-12 Thread David Burgun
Hi, I have a stack with two cards. There are 4 Common Background Groups and one Group that is unique in each card. At startup I build a look-up table (array) which uses the long name of each control as a key. Once the stack is running the code looks up values for certain fields and menu's

Re: Background Group Question

2005-10-12 Thread Jim Ault
The key point may be scope issues. -1- Where is the script located? in one of the groups, the card, the stack -2- You could use stack custom properties to do this and be available to all cards and groups -3- You could use a global variable and be available to all stacks and cards How can I add