Hello, today I have couple of question:
1)I made input field for my game but it's showing really weird type of letters, like when I click D it's showing FF>>oo
Code:
sfUint32* test;
if (Wydarzenie.Type == sfEvtTextEntered)
{
test+= Wydarzenie.Text.Unicode;
sfString_SetUnicodeText(Wyjscie, test);
}
2)I want to make a field where You have two arrows and by clikcing one of them You go to next or previous picture.
I want to use char* table with fields filled with paths to files.
Like that:
char * test[1] = {"Graphics/Bla.png"};
And then:
sfImage_CreateFromFile(Glowne, test[1]);
Will it work?
3)The same as 2 but after clicking on an arrow I want to load text from file to string and draw it. File looks like it:
Darek
17
2
3
1
Every text has to be a single string so it's going to be 5 string in total.
I really need help with this, I know I please for a lot but just give em some hint, tips anythign that will help me.[/code]