Enterprise Forever

:UK => Programming => BASIC => Topic started by: SlashNet on 2015.December.08. 12:48:49

Title: BASIC: How to hide a video channel without closing it?
Post by: SlashNet on 2015.December.08. 12:48:49
Who can prompt me how to hide video channel from the screen (without closing)?

To show channel: DISPLAY....
But how to hide?
Title: Re: BASIC: How to hide a video channel without closing it?
Post by: endi on 2015.December.08. 12:50:28
Who can prompt me how to hide video channel from the screen (without closing)?

To show channel: DISPLAY....
But how to hide?

as i know it is not possible. you must make an other empty channel and display it
Title: Re: BASIC: How to hide a video channel without closing it?
Post by: Zozosoft on 2015.December.08. 12:56:39
But how to hide?
DISPLAY #x:FROM 0
Title: Re: BASIC: How to hide a video channel without closing it?
Post by: szipucsu on 2015.December.08. 13:02:00
But how to hide?
You can display another video channel at the same position, that overlies the screen you do not want to show.
Title: Re: BASIC: How to hide a video channel without closing it?
Post by: SlashNet on 2015.December.08. 13:14:03
DISPLAY #x:FROM 0
That line has interesting effect: all open videochannels was closed. Useful, but not in my case...

You can display another video channel at the same position, that overlies the screen you do not want to show.
Now I use that method, but I thought it can be done in more native way.


Thanks!
Title: Re: BASIC: How to hide a video channel without closing it?
Post by: Zozosoft on 2015.December.08. 13:20:36
That line has interesting effect: all open videochannels was closed.
Not closed, just hidden.

Quote
Useful, but not in my case...
Enter more parameters, for example:
DISPLAY #101:AT 5 FROM 0 TO 2
Title: Re: BASIC: How to hide a video channel without closing it?
Post by: endi on 2015.December.08. 13:43:47
DISPLAY #x:FROM 0

wow :)
Title: Re: BASIC: How to hide a video channel without closing it?
Post by: SlashNet on 2015.December.08. 14:13:21
Not closed, just hidden.
Yes, hidden. My mistake.:oops: