Topic:   Help please!   (Read 14894 times)


0 Members and 1 Guest are viewing this topic.

Raphael


  • GMG Newbie

  • *


  • Posts: 19

  • I love GameMaker!
Help please!
« on: December 14, 2010, 01:58:01 PM »
Hello everyone,
I am new to GameMaker, and I am wondering how do you get a scrollbar to appear in your game?  I am sure it is possible, I just need to know how!  :)  Thanks in advance.
I statement below is true.
The statement above is false.

My Official Website is: web.mac.com/gabecker

My Official YouTube Channel is: youtube.com/bhssinger3

Gnome


  • GMG Extraordinaire

  • ***


  • Posts: 1073
Re: Help please!
« Reply #1 on: December 14, 2010, 02:31:22 PM »
Quote
Hello everyone,
I am new to GameMaker





Hmm, may I ask why you need it?
This Cannot be, NOOOOOOOO!!!!

-Gnomes Cry when the McRib was discontinued again.

Raphael


  • GMG Newbie

  • *


  • Posts: 19

  • I love GameMaker!
Re: Help please!
« Reply #2 on: December 14, 2010, 02:54:29 PM »
So that when I put something in the text area, and there is more than what is shown, I can scroll and see the rest.
I statement below is true.
The statement above is false.

My Official Website is: web.mac.com/gabecker

My Official YouTube Channel is: youtube.com/bhssinger3

Gnome


  • GMG Extraordinaire

  • ***


  • Posts: 1073
Re: Help please!
« Reply #3 on: December 14, 2010, 03:48:15 PM »
Game maker was never made for a text-heavy game, its a heavy limitation.

There are workarounds though, what exactly is happening, one large piece of text? Or smaller ones that pile up?
This Cannot be, NOOOOOOOO!!!!

-Gnomes Cry when the McRib was discontinued again.

Raphael


  • GMG Newbie

  • *


  • Posts: 19

  • I love GameMaker!
Re: Help please!
« Reply #4 on: December 14, 2010, 04:31:57 PM »
It's a list, and later I'll be having longer stuff.  It's just a large piece of text.  I can put just a click button on the bottom saying "More" and then keep going, but I was wondering if you could have a scrollbar or something easier.  Are there any other workarounds?
Also, is there a way to make the text smaller or bigger?
I statement below is true.
The statement above is false.

My Official Website is: web.mac.com/gabecker

My Official YouTube Channel is: youtube.com/bhssinger3

Tireas Dragon


  • GMG Extraordinaire

  • ***


  • Posts: 1626

  • Trying to recover from my shattered screen.
Re: Help please!
« Reply #5 on: December 14, 2010, 04:39:03 PM »
More button is your best option. You can't change the size of text. There is no way of adding a scroll bar that I know of.
I must be dreaming (wake up me wake up) How could this have happened. Tireas' cry when he found his computer fallen over in his chair with it's screen shattered.

GMG Mike


  • Administrator

  • GMG-er

  • *****

  • no avatar

  • Posts: 536
    • mikerichardson.name
Re: Help please!
« Reply #6 on: December 14, 2010, 06:20:23 PM »
Does GM have a TEXTWINDOW command like SC?

Raphael


  • GMG Newbie

  • *


  • Posts: 19

  • I love GameMaker!
Re: Help please!
« Reply #7 on: December 14, 2010, 06:32:03 PM »
Okay, the More button is fine with me.  Thanks guys. :)
I statement below is true.
The statement above is false.

My Official Website is: web.mac.com/gabecker

My Official YouTube Channel is: youtube.com/bhssinger3

Gnome


  • GMG Extraordinaire

  • ***


  • Posts: 1073
Re: Help please!
« Reply #8 on: December 14, 2010, 07:36:34 PM »
Quote
Okay, the More button is fine with me. Ā Thanks guys. :)


Don't forget to submit a game to the GMG cup! Winner gets 25$ giftcard!
This Cannot be, NOOOOOOOO!!!!

-Gnomes Cry when the McRib was discontinued again.

Charlo


  • GMG-er

  • **


  • Posts: 451
Re: Help please!
« Reply #9 on: December 14, 2010, 09:17:57 PM »
Well, I have nothing more to add to the thread other than welcome to the forum, DrSpock!

Raphael


  • GMG Newbie

  • *


  • Posts: 19

  • I love GameMaker!
Re: Help please!
« Reply #10 on: December 14, 2010, 10:49:51 PM »
Thanks Charlo!  I'm making a game of the Star Wars Miniatures if anyone is wondering.  If anyone know how to make AI or convert a game from Mac to Windows, that'd be great.  But, ya, I'll probably try for that GMG Cup.
I statement below is true.
The statement above is false.

My Official Website is: web.mac.com/gabecker

My Official YouTube Channel is: youtube.com/bhssinger3

Xiphos


  • GMG-er

  • **


  • Posts: 676
Re: Help please!
« Reply #11 on: December 15, 2010, 06:13:45 AM »
Welcome to the forums! :D

Al Staffieri


  • GMG-er

  • **

  • no avatar

  • Posts: 452

  • I love GameMaker
Re: Help please!
« Reply #12 on: December 15, 2010, 07:29:33 AM »
Quote
Does GM have a TEXTWINDOW command like SC?

Yes. In GameMaker it's WINDOW TEXT. You can write the text to a file and then show the file in a window as text. Try this code::

Code: [Select]
FILEIO OUTPUT 1 TempText
FILEIO WRITE 1 This is a test of adding text to a file and showing it later.
FILEIO WRITE 1 USE FILEIO commands to write the text to a file.
FILEIO WRITE 1 Then use WINDOW TEXT to show a window with this text in it.
FILEIO WRITE 1 If you keep adding text, the window that is shown will have a scroll bar.
FILEIO WRITE 1 If you have a lot of text to show in a window, you might want to try using this method.
FILEIO CLOSE 1

WINDOW TEXT TempText
« Last Edit: December 15, 2010, 07:30:32 AM by AlStaffieri »

Gnome


  • GMG Extraordinaire

  • ***


  • Posts: 1073
Re: Help please!
« Reply #13 on: December 15, 2010, 04:31:19 PM »
Quote
Thanks Charlo! Ā I'm making a game of the Star Wars Miniatures if anyone is wondering. Ā If anyone know how to make AI or convert a game from Mac to Windows, that'd be great. Ā But, ya, I'll probably try for that GMG Cup.


At the risk of betraying Al, SilverCreator can be converted easily, and has an AI engine for turn-based games already made.
This Cannot be, NOOOOOOOO!!!!

-Gnomes Cry when the McRib was discontinued again.

Silverwind


  • ^ This guy is amazing.

  • ****


  • Posts: 2805

  • For the glory of my maker
Re: Help please!
« Reply #14 on: December 15, 2010, 04:52:12 PM »
Quote
At the risk of betraying Al, SilverCreator can be converted easily, and has an AI engine for turn-based games already made.
Eq, you've gone too far this time; give Gnome back his body!
I survived the spammage of 2007