Re: Print only substack

2011-12-01 Thread Peter M. Brigham, MD
The other way of doing this is to keep the visible = true but set the location of the stack to somewhere off-screen before opening it: set the loc of stack "printStack" to -1000,-1000 go stack "printStack" print card into 54,28,558,756 -- or whatever -- Peter Peter M. Brigham pmb...

Re: Print only substack

2011-12-01 Thread Charles Szasz
Peter, Thanks for you suggestion! Your suggestion is better than mine, which is longer: open stack "print" set the invisible of stack "print" to true print stack "print" Thanks! Charles Szasz csz...@mac.com ___ use-livecode mailing list use-liveco

Re: Print only substack

2011-11-30 Thread Peter M. Brigham, MD
go invisible stack "printStack" then print -- Peter Peter M. Brigham pmb...@gmail.com http://home.comcast.net/~pmbrig On Nov 30, 2011, at 9:05 AM, Charles Szasz wrote: > I have main stack and I am using for the first time a print substack with one > card. I found that when I call to either a c

Print only substack

2011-11-30 Thread Charles Szasz
I have main stack and I am using for the first time a print substack with one card. I found that when I call to either a card or print the stack I get a message that the card or stack has to be open. I tried open card and go stack commands which works but it shows the print card/print stack. Ho