how to hide the frame before...

sharkdim

Member
hello everyone,

i want to hide a frame before running a .p program

in this .p program ,it has 2 frames ,one is frame a ,another is frame a1,

i want to hide frame a1 before running the .p program.

by the way , .p file is xcode file , i cannot modify it ...

could you tell me a way to do this ?
 

Cringer

ProgressTalk.com Moderator
Staff member
Just before the RUN command put this.

Code:
ASSIGN FRAME a1:HIDDEN = TRUE.

Or am I missing something?
 

Casper

ProgressTalk.com Moderator
Staff member
in this .p program ,it has 2 frames ,one is frame a ,another is frame a1,

i want to hide frame a1 before running the .p program.

by the way , .p file is xcode file , i cannot modify it ...

It is imposible to hide a frame when it is not yet defined. If it isn't there then you can't act on it. If the source file is xcoded and you can't modify it then it is rather difficult to change its behavior.

Casper.
 

RealHeavyDude

Well-Known Member
The only thing which comes to my mind - but it's not nice:

After the frame has been realized (so it's already there) you could try a widget-tree walk on the session to get a hold on it and then hide it.

Again, it's not nice ...

HTH, RealHeavyDude.
 
Top