OBSE text box

Post » Fri May 13, 2011 9:05 am

	elseif menu == 123		OpenTextInput "Name: |Done" 0 25		set menu to 123.5	elseif (menu == 123.5)		set button to GetButtonPressed		if (button == 0)			set tempstring to GetInputText			messageex $tempstring			setname $tempstring curset			let iSetName[setnum] := tempstring			sv_destruct tempstring			CloseTextInput			set menu to 120		else			UpdateTextInput		endif


I have this bit of code in part of my script, trouble is the box comes up but you cant type anything into it....the cursor can show up, but it's like the box is just frozen. I have used a text box in an earilier part of my script with the exsact same code and it works fine....but this one doesnt....any ideas?
User avatar
Matt Bee
 
Posts: 3441
Joined: Tue Jul 10, 2007 5:32 am

Post » Fri May 13, 2011 6:06 am

One possible cause is that the above script runs in GameMode and not MenuMode. The text input box is a menu, so opening it will stop any GameMode scripts from running until you click on any of the menu's buttons. So if the "UpdateTextInput" part of the script is in a GameMode block, it will never be called and is therefore the reason for it seeming to be frozen.

So if the script is from a GameMode block, remove the "else UpdateTextInput" part, and add the following to a MenuMode block:
if menu == 123.5  UpdateTextInputendif

User avatar
RaeAnne
 
Posts: 3427
Joined: Sat Jun 24, 2006 6:40 pm

Post » Fri May 13, 2011 8:24 pm

yep that was it....i had the UpdateTextInput for the first one in a menumode block at the bottom, added the second one and it works fine now.

Thanks :)
User avatar
Nathan Barker
 
Posts: 3554
Joined: Sun Jun 10, 2007 5:55 am


Return to IV - Oblivion