Gamestudio Links
Zorro Links
Newest Posts
Lapsa's very own thread
by Lapsa. 06/26/24 12:45
Executing Trades on Next Bar Open
by Zheka. 06/20/24 14:26
A simple game ...
by VoroneTZ. 06/18/24 10:50
Face player all the time ...
by bbn1982. 06/18/24 10:25
Zorro Beta 2.61: PyTorch
by jcl. 06/10/24 14:42
New FXCM FIX Plugin
by flink. 06/04/24 07:30
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (AndrewAMD, Lapsa), 1,268 guests, and 1 spider.
Key: Admin, Global Mod, Mod
Newest Members
Mino, squik, AemStones, LucasJoshua, Baklazhan
19061 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 2 1 2
How do I wiew my game in fullsceen,HELP please? #108441
01/21/07 13:23
01/21/07 13:23
Joined: May 2006
Posts: 132
Norway
Fiskekona Offline OP
Member
Fiskekona  Offline OP
Member

Joined: May 2006
Posts: 132
Norway
I cant view my game when I run it in fullscreen mode, it only shows up in a window much smaller than fullscreen.I need to see how it looks like before I publish , so that the meny, icon and texts are in the right place.
After I updated it to the latest version. I have the commersial.
But when I publish the game and then run it it is in fullscreen mode.
Why is that? Is there some kind of settings I have to change in my gamestudio?
Here are my settings in my script, and that works fine when I run the published version, but the text and icons, are in the wrong places....so I need to see it before I publish it. Can anyone tell me how to do it?

Code:
var video_mode 						= 8; 		// 1024 x 768
var video_depth = 32; // 32 bit mode
var video_screen = 1; // Fullscreenn



typo...but I need full screen

Last edited by Fiskekona; 01/21/07 14:50.

Programmer in training... Own GameStudio Commerical 6.50
Re: How do I wiew my game in fullsceen,after update? [Re: Fiskekona] #108442
01/21/07 13:44
01/21/07 13:44
Joined: Mar 2006
Posts: 752
Portugal
demiGod Offline
User
demiGod  Offline
User

Joined: Mar 2006
Posts: 752
Portugal
video_mode = 10; its not 1024 x 768 resolution, its 1400 x 1050.
Does your monitor handles such resolution?

Re: How do I wiew my game in fullsceen,after update? [Re: demiGod] #108443
01/21/07 14:13
01/21/07 14:13
Joined: May 2006
Posts: 132
Norway
Fiskekona Offline OP
Member
Fiskekona  Offline OP
Member

Joined: May 2006
Posts: 132
Norway
it is no trouble setting the "settings"...

the problem is that :
I run my game and it is supposed to show in fullscreen, but it only comes up whit a window size 800x600.

It seems like gamestudio dont allow me to show it in a bigger window....?
but when I publish it whit the above settings . And then run the exeflie, it show the game in fullscreen.

Do you know why?


Programmer in training... Own GameStudio Commerical 6.50
Re: How do I wiew my game in fullsceen,after updat [Re: Fiskekona] #108444
01/21/07 14:29
01/21/07 14:29
Joined: Aug 2006
Posts: 652
Netherlands
bstudio Offline
User
bstudio  Offline
User

Joined: Aug 2006
Posts: 652
Netherlands
does your 3dgs version support 1400 x 1050 (commercial or higher)


BASIC programmers never die, they GOSUB and don't RETURN.
Re: How do I wiew my game in fullsceen,after updat [Re: bstudio] #108445
01/21/07 14:29
01/21/07 14:29
Joined: May 2006
Posts: 132
Norway
Fiskekona Offline OP
Member
Fiskekona  Offline OP
Member

Joined: May 2006
Posts: 132
Norway
I have the commersial version

it supports up to
screen resolution max. 1600x1200x32

Last edited by Fiskekona; 01/21/07 14:31.

Programmer in training... Own GameStudio Commerical 6.50
Re: How do I wiew my game in fullsceen,after updat [Re: Fiskekona] #108446
01/21/07 15:03
01/21/07 15:03
Joined: Mar 2006
Posts: 752
Portugal
demiGod Offline
User
demiGod  Offline
User

Joined: Mar 2006
Posts: 752
Portugal
Maybe you have something in your code that override the initial settings.
You can try the video_switch (var res,var depth,var window) function and call it at different places in your code structure and see if the problem persists:
video_switch(8,32,1); //1024x768 in fullscreen mode.
Hope it helps.

Re: How do I wiew my game in fullsceen,after updat [Re: demiGod] #108447
01/21/07 15:35
01/21/07 15:35
Joined: May 2006
Posts: 132
Norway
Fiskekona Offline OP
Member
Fiskekona  Offline OP
Member

Joined: May 2006
Posts: 132
Norway
I added the:

video_switch(8,32,1); //1024x768 in fullscreen mode.

to my function main. And now I can view it in full screen.

But why does it not "take" the information I added in the top of my script? I dont have any other "information or commands that changes or sets the size,mode and depth of the screen". Tried to run several other games that I havent made that was supposed to be run in full screen. But they also came up as mentioned above.

The version I have right now is named:
6.50 commersial. Didnt have this kind of trouble in 6.40.....

Thanks for the suggestion , it worked.

So now when I use video_switch(8,32,1); //1024x768 in fullscreen mode.
..... dont I need to spesify :
var video_mode = 8; // 1024 x 768var video_depth = 32; // 32 bit mode var video_screen = 1; // Fullscreenn

in the top of my script anymore?
or do I need to do this and have the
video_switch in the main function?


Programmer in training... Own GameStudio Commerical 6.50
Re: How do I wiew my game in fullsceen,after updat [Re: Fiskekona] #108448
01/21/07 15:42
01/21/07 15:42
Joined: Mar 2006
Posts: 752
Portugal
demiGod Offline
User
demiGod  Offline
User

Joined: Mar 2006
Posts: 752
Portugal
It is supposed to work with the initial settings, since you have do define in which resolution, depth and screen mode the engine will start.
video_switch is for switch / change those settings at realtime.

Re: How do I wiew my game in fullsceen,after updat [Re: Fiskekona] #108449
01/21/07 15:44
01/21/07 15:44
Joined: Aug 2006
Posts: 652
Netherlands
bstudio Offline
User
bstudio  Offline
User

Joined: Aug 2006
Posts: 652
Netherlands
well video switch is generally used to switch to a video mode at any given time in the game, so i suggest you specefy the video mode etc. on top and use the video switch for changing if necessary (player settings at menu)


BASIC programmers never die, they GOSUB and don't RETURN.
Re: How do I wiew my game in fullsceen,after updat [Re: bstudio] #108450
01/21/07 16:01
01/21/07 16:01
Joined: Jun 2005
Posts: 4,875
broozar Offline
Expert
broozar  Offline
Expert

Joined: Jun 2005
Posts: 4,875
disable the default display01.wdl - template!

Page 1 of 2 1 2

Gamestudio download | chip programmers | 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