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
1 registered members (TipmyPip), 18,466 guests, and 6 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
inkey and multipe text lines #154551
09/16/07 15:47
09/16/07 15:47
Joined: Jul 2006
Posts: 96
C
ChildeHarold Offline OP
Junior Member
ChildeHarold  Offline OP
Junior Member
C

Joined: Jul 2006
Posts: 96
is it possible to use inkey as a trigger for a text editor, that means:
can you have mutiple lines of text?
I had crashes when I tried to strcat some "\n" enline mark to the iney text,
so I doubt if it is possible.

But maybe there is somebody who has tried that already.

Re: inkey and multipe text lines [Re: ChildeHarold] #154552
09/18/07 03:57
09/18/07 03:57
Joined: Mar 2007
Posts: 677
0x00000USA
M
MrCode Offline
User
MrCode  Offline
User
M

Joined: Mar 2007
Posts: 677
0x00000USA
I actually managed a small text editor. it's definitely possible to str_cat a \n.

Code:

function line_feed()
{
str_cat(new_line,"\n");
wait(1);
inkey(new_line);
}

...

on_enter= line_feed;



However, this code will only work when inkey(); is disabled, so you have to hit enter twice (one to exit inkey, and the other to execute line_feed()).

Last edited by MrCode; 09/18/07 04:00.

Code:
void main()
{
    cout << "I am MrCode,";
    cout << "hear me roar!";
    system("PAUSE");
}

Moderated by  HeelX, Lukas, rayp, Rei_Ayanami, Superku, Tobias, TWO, VeT 

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