Gamestudio Links
Zorro Links
Newest Posts
Change chart colours
by 7th_zorro. 05/11/24 09:25
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
Help with plotting multiple ZigZag
by degenerate_762. 04/30/24 23:23
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (degenerate_762), 1,128 guests, and 7 spiders.
Key: Admin, Global Mod, Mod
Newest Members
firatv, wandaluciaia, Mega_Rod, EternallyCurious, howardR
19050 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 | 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