Welcome, Guest. Please login or register.


Author Topic: BASIC: How to hide a video channel without closing it? (Read 1384 times)

Offline SlashNet

  • EP addict
  • *
  • Posts: 1208
  • Country: ua
  • Enterprise 128K | Cubietruck
    • My old site about Enterprise
BASIC: How to hide a video channel without closing it?
« 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?

Offline endi

  • EP addict
  • *
  • Posts: 7298
  • Country: hu
  • grafikus, játékfejlesztõ, programozás, scifi, tudományok, vallás
    • Honlapom
Re: BASIC: How to hide a video channel without closing it?
« Reply #1 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
Vigyázat! Szektás vagyok! :)

Offline Zozosoft

  • Global Moderator
  • EP addict
  • *
  • Posts: 14732
  • Country: hu
    • http://enterprise.iko.hu/
Re: BASIC: How to hide a video channel without closing it?
« Reply #2 on: 2015.December.08. 12:56:39 »

Offline szipucsu

  • Global Moderator
  • EP addict
  • *
  • Posts: 9926
  • Country: hu
    • Támogató Támogató
    • Webnyelv.hu - Tanuljunk nyelveket!
Re: BASIC: How to hide a video channel without closing it?
« Reply #3 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.
100 SOUND SOURCE 2,STYLE 128,PITCH 25.2,SYNC 1
110 SOUND PITCH 25,SYNC 1
120 ! Videos

Offline SlashNet

  • EP addict
  • *
  • Posts: 1208
  • Country: ua
  • Enterprise 128K | Cubietruck
    • My old site about Enterprise
Re: BASIC: How to hide a video channel without closing it?
« Reply #4 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!

Offline Zozosoft

  • Global Moderator
  • EP addict
  • *
  • Posts: 14732
  • Country: hu
    • http://enterprise.iko.hu/
Re: BASIC: How to hide a video channel without closing it?
« Reply #5 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
« Last Edit: 2015.December.08. 14:00:19 by szipucsu »

Offline endi

  • EP addict
  • *
  • Posts: 7298
  • Country: hu
  • grafikus, játékfejlesztõ, programozás, scifi, tudományok, vallás
    • Honlapom
Vigyázat! Szektás vagyok! :)

Offline SlashNet

  • EP addict
  • *
  • Posts: 1208
  • Country: ua
  • Enterprise 128K | Cubietruck
    • My old site about Enterprise
Re: BASIC: How to hide a video channel without closing it?
« Reply #7 on: 2015.December.08. 14:13:21 »
Not closed, just hidden.
Yes, hidden. My mistake.:oops: