Gamestudio Links
Zorro Links
Newest Posts
Zorro 2.70
by jcl. 09/29/25 09:24
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
assetHistory one candle shift
by jcl. 09/21/25 11:36
Plugins update
by Grant. 09/17/25 16:28
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
0 registered members (), 16,643 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
krishna, DrissB, James168, Ed_Love, xtns
19168 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Publishing trouble. #235697
11/09/08 15:15
11/09/08 15:15
Joined: Nov 2008
Posts: 11
H
HSGM Offline OP
Newbie
HSGM  Offline OP
Newbie
H

Joined: Nov 2008
Posts: 11
Excuse me, but, how exactly would I publish without having to have that 3D Game Studio load-up screen ? Can I replace that?

and how would I change the Title? I've searched a bit to change it. (I've checked the .wdl script.)



Last edited by HSGM; 11/09/08 15:27.
Re: Publishing trouble. [Re: HSGM] #235779
11/10/08 03:14
11/10/08 03:14
Joined: Nov 2008
Posts: 11
H
HSGM Offline OP
Newbie
HSGM  Offline OP
Newbie
H

Joined: Nov 2008
Posts: 11
-Bump-

Anyone? D:

Re: Publishing trouble. [Re: HSGM] #235783
11/10/08 03:54
11/10/08 03:54
Joined: Aug 2005
Posts: 512
Bayern
Schmerzmittel Offline
User
Schmerzmittel  Offline
User

Joined: Aug 2005
Posts: 512
Bayern
The Load-up Screen can only changed in the Pro version.

What version do you have?


The Windowtitle? I think you mean the text in the blue line from the application-window?
You can change it by the following line:
Quote:
video_window(NULL, NULL, 0, "Testname");


Last edited by Schmerzmittel; 11/10/08 03:56.

A7 Com V7.80
Re: Publishing trouble. [Re: Schmerzmittel] #235928
11/10/08 23:38
11/10/08 23:38
Joined: Nov 2008
Posts: 11
H
HSGM Offline OP
Newbie
HSGM  Offline OP
Newbie
H

Joined: Nov 2008
Posts: 11
Originally Posted By: Schmerzmittel
The Load-up Screen can only changed in the Pro version.

What version do you have?


The Windowtitle? I think you mean the text in the blue line from the application-window?
You can change it by the following line:
Quote:
video_window(NULL, NULL, 0, "Testname");


Yes, I have the PRO. (A7)
How would I change the load-up screen?

And thank for for the code!

I keep getting "Unknown keyword "video_window" "

Last edited by HSGM; 11/10/08 23:51.
Re: Publishing trouble. [Re: HSGM] #236100
11/11/08 20:18
11/11/08 20:18
Joined: Aug 2005
Posts: 512
Bayern
Schmerzmittel Offline
User
Schmerzmittel  Offline
User

Joined: Aug 2005
Posts: 512
Bayern
Ok...

For the video_window:
Search in the Manual for
Code:
 video_window(vector pos,vector size,var style,STRING* title)


This is a example-code for the Load up Screen:

Code:
WINDOW WINSTART
{
  TITLE "My Simulator";
  SIZE 480,320;
  MODE IMAGE;	
  BG_COLOR RGB(240,240,240);
  FRAME FTYP1,0,0,480,320;
  BUTTON BUTTON_START,SYS_DEFAULT,"Start",400,288,72,24;
  BUTTON BUTTON_QUIT,SYS_DEFAULT,"Abort",400,288,72,24;
  SET FONT "Arial", RGB(255,255,255);
  TEXT "Get ready...", 0,0;
  TEXT_STDOUT "Arial",RGB(0,0,0),10,10,460,280;
  BG_PATTERN <background.pcx>,OPAQUE;
  PATTERN <checker.pcx>,OPAQUE,50,50,100,100;
  PICTURE <splash.pcx>,OPAQUE,10,10;
  PROGRESS RGB(0,0,255), 10, 0, 300, 400, 20;
  COMMAND "-diag";
} 

WINDOW WINEND
{
  TITLE "Finished";
  SIZE 540,320;
  MODE STANDARD;
  BG_COLOR RGB(0,0,0);
  TEXT_STDOUT "Arial",RGB(255,40,40),10,20,520,270;
  SET FONT "Arial",RGB(0,255,255);
  TEXT "Any key to exit",10,270;
}  


Search for it in the Manual under WINDOW.

I hope i that helps.

Last edited by Schmerzmittel; 11/11/08 20:19.

A7 Com V7.80

Moderated by  HeelX, Spirit 

Gamestudio download | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1