Link two dialogs
#1

I have one dialog and i want when some clicks The button More on the bottom to open another dialog. Can someone give an example and explanation?

Thanks in advance!
Reply
#2

Код:
ShowPlayerDialog ( .. , dialog id , .. , "Close", "More" );
OnDialogResponse

Код:
...

if (dialogid == dialog id )
{
if (!response) 
{
// "more button"
ShowPlayerDialog ( .. , dialog id 2 , .. , "Close", "More" );

}
else
{
// ok button
}
}

...
Reply
#3

Thank you very much!! +1 Rep (it was easy to be done)
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)