Welcome! Log In Create A New Profile

Advanced

Cant call up a keyboard with libwiigui

Posted by SteelSLasher 
Cant call up a keyboard with libwiigui
September 04, 2009 01:36PM
I cant seem to successfully bring up a keyboard using libwiigui, i want the user to enter a url which should then be loaded but OnScreenKeyboard() keeps causing a crash.

char *add = 0;
OnScreenKeyboard(add, 256);
HaltGui();
struct block HTML = downloadfile(add);
ResumeGui();
Re: Cant call up a keyboard with libwiigui
September 04, 2009 04:07PM
you still have problems understanding memory pointers, do you ?

use

char add[256];


instead of

char *add = 0;
Re: Cant call up a keyboard with libwiigui
September 05, 2009 10:58AM
Quote
ekeeke
you still have problems understanding memory pointers, do you ?
No i get it now, you dont happen to know whether if its possible to create a button which will append a string to the string on the keyboard.
Re: Cant call up a keyboard with libwiigui
September 08, 2009 03:11PM
sure its possible. you probably want to save your string to a global variable and then just create a new button the keyboard to use that string
Re: Cant call up a keyboard with libwiigui
September 08, 2009 10:45PM
okay then, hope that will work, i also want to make the keyboard slightly smaller by moving it down slightly and bunching more of the keys together to allow the user to view the content behind
Sorry, only registered users may post in this forum.

Click here to login