Jump to content

Vida Marcell

Members
  • Posts

    320
  • Joined

  • Last visited

Everything posted by Vida Marcell

  1. Oh. Im sure if i was asking about unsolved physics questions You would send me a documentation link. Thanks Josh!
  2. Now i know all this, how can i cast a ray. to navigate my entity to a choosen place?
  3. I know that, that is why i was asking, so thanks Josh
  4. Also backstory, some mobile game makers brought this middleware. maybe is im going to be more experienced, i will make a software like this, but it will require mocap and other various ****
  5. Hi everyone, im planning a software similar to Naturalmotion morpheme, so the main point is to make creating 3d peoples easyer. now i will need a 3d viewport, and a flowgraph, here is the example: videoplayback.mp4 So the only question is, how can i use the leadwerks flowgraph in my software i will use leadwerks and uak.
  6. Correct the selected item. now it seems the code is allright, Thanks Josh! Edit: now its totally allright!
  7. the n value is not correct for me, what should i do?
  8. Allright, so im not familiar with arrays. but should it look like this? auto pixmap = LoadPixmap(partners->items[n].text + ".png"); if (pixmap) { profilepic->SetPixmap(pixmap, PIXMAP_CONTAIN); loadimage->SetText(StripDir(partners->items[n].text + ".png")); }
  9. Okay Josh, thanks! i will try to get it running!
  10. Another day another question that i will solve 10 minutes after asking this. Hi everyone! im having a problem, i want to load an image from my disc that has the same name as one of the listbox item, here is what im thinking about: auto pixmap = LoadPixmap("the selected item from the listbox"->GetText()); if (pixmap) { profilepic->SetPixmap(pixmap, PIXMAP_CONTAIN); loadimage->SetText(StripDir("the selected item from the listbox"->GetText())); } here is what i was thinking for solution: auto pixmap = LoadPixmap(partners->Selection->GetText()); if (pixmap) { profilepic->SetPixmap(pixmap, PIXMAP_CONTAIN); loadimage->SetText(StripDir(partners->Selection->GetText())); } summary: i have to get the text from the selected item in a listbox Thanks a lot for the help!
  11. Another day another question that i will solve 10 minutes after asking this. Hi everyone! im having a problem, i want to load an image from my disc that has the same name as one of the listbox item here is what im thinking about: auto pixmap = LoadPixmap("the selected item from the listbox"->GetText()); if (pixmap) { profilepic->SetPixmap(pixmap, PIXMAP_CONTAIN); loadimage->SetText(StripDir("the selected item from the listbox"->GetText())); } here is what i was thinking for solution: auto pixmap = LoadPixmap(partners->Selection->GetText()); if (pixmap) { profilepic->SetPixmap(pixmap, PIXMAP_CONTAIN); loadimage->SetText(StripDir(partners->Selection->GetText())); } summary: i have to get the text from the selected item in a listbox Thanks a lot for the help!
  12. Hi everyone, how can i change the icon of the window?
  13. I think panel_groups could make it nicer, and more organized!
  14. Allright then, we'll meet at the next post, have a nice day!
  15. Now i understand, i was a dumb ****, sorry for the inconvenience.
  16. Hi everyone, another question, i dont know what i'm doing wrong, i think i cant explain this: partners->AddItem(name->GetText()); stream->WriteWLine(name->GetText() + " " + mobil->GetText() + " " + company->GetText() + " " + adress->GetText() + " " + "\n"); if (profilepic->pixmap) if i only write one line its fine: but when i write an another line:
  17. Youre right, im sorry, i just wasnt understanding why was you thinking you have to ship Leadwerks with UAK.
  18. Have you seen his other comments? This dude is very angry
  19. Allright i messed it up, i had 2 ev.source == add in my code. Damn this coding is hard. sorry Josh for filling up your community page with the se useless questions!
  20. Hi everyone, i'm having a problem, i want to create an Item in a listbox with the text inside "name" every time i hit the add button here you can see: auto nameL = CreateLabel("Neve:", 5, 55, 120, 60, partneredit); //Neve = his name auto name = CreateTextField(70, 50, 135, 25, partneredit); //---------------------------------------------------------- auto add = CreateButton(L"Hozzáadás", 5, 195, 200, 30, partneredit); //Hozzáadás = add //---------------------------------------------------------- else if (ev.source == add) { partners->AddItem(name->GetText()); } break; But this is'nt working, however It is working if i hit enter in the "name" textfield with this code, but i dont want to use it like this: else if (ev.source == name) { partners->AddItem(name->GetText()); } So what i want is, i enter text in the "name" textfield and push the "add" button and it creates an item in the listbox with the text in the "name" textfield. here is the UI:
×
×
  • Create New...