[00:00:00] SCRN 1980 1050
[00:00:60] DELA 0
[00:05:05] COLF 255 255 255
[00:06:07] FONT Bkant.ttf 55
[00:06:10] TEXT Petr presents...
[00:10:00] CLSS
[00:10:70] FONT Bkant.ttf 50
[00:15:00] TEXT Script - based program wroted in QB64 (you see its output now) - written primarily to facilitate the creation of videos and presentations
[00:30:60] COLB 127 127 255
[00:30:70] COLF 0 0 0
[00:30:80] CLSS
[00:32:00] TEXT What all can be done in this first version?
[00:42:80] CLSS 
[00:43:00] TEXT You can set colors, writing comments (as subtitles) under images on the screen, using some fonts, playing sounds, setting screen resolution, fullscreen mode
[00:58:80] CLSS 
[00:59:00] TEXT I plan to add video launching via Windows media player. All this is then recorded by the screen recorder (using a third party program).
[01:14:00] CLSS
[01:14:20] TEXT This engine use 4-character statements. This can be writed in some text editos. All si drived BY TIME. First record is time - a mark,  that commands the command to be executed at concrete time.
[01:29:00] CLSS
[01:29:20] TEXT So as this text - it is writed step by step in script file. So. How statements can be used and for what?
[01:40:00] CLSS
[01:40:20] TEXT First from all is statement SCRN. This set your graphical screen resolution. Use is: SCRN 1980 1050   <- this create screen resolution 1980 x 1050 pixels
[01:55:00] CLSS
[01:55:20] TEXT You can also use fullscreen mode - this do statement FSCR - this has not others parameters.
[02:10:00] CLSS
[02:10:20] TEXT For foreground color change use statement COLF. COLF has three parameters: COLF 255 140 100 set color as RGB32(255, 140, 100). In the same way use statement COLB for setting background color.
[02:25:00] CLSS
[02:25:20] TEXT For erasing screen are here 2 statements. Normal clearing, without color change do statement CLRS. For background color change, first set foreground color with statement COLF and then apply statement CLSS.
[02:40:30] CLSS
[02:41:00] TEXT For images use statements SIMG (just place it) or PASS (then it is placed with effect). This works so: SIMG meteor.jpg 
[02:56:00] SIMG meteor.jpg
[03:06:00] CLSS
[03:06:30] TEXT Or place image with effect. Now program place meteor image back and then place other one image (snowman.png) - with statement PASS snowman.png
[03:21:70] CLSS
[03:22:00] SIMG meteor.jpg
[03:26:00] PASS snowman.png
[03:32:90] COLB 0 0 0
[03:33:00] COLF 200 200 100
[03:33:35] CLSS
[03:34:00] TEXT For sound use statements SNDL - for playing music in loop, SNDP for playing music once or SNDS for stop playing music. Program now start playing music.
[03:35:00] SNDP Joe.mp3
[03:49:05] CLSS
[03:49:60] TEXT And finally, for subtitles use statement STIT. It can be used with photos and sound in background...
[04:00:05] CLSS
[04:00:60] PASS meteor.jpg
[04:01:50] STIT On screen is now meteor image. 
[04:02:90] COLF 0 0 0
[04:05:00] TEXT Press any key to end
[04:06:00] DELA 0
