PDA

View Full Version : wait until a key stroke


kala
04-26-2008, 05:10 AM
in my project i am having a richtext object and it needs to be displayed until Esc key is pressed. please help me in coding . i tried but it not working fine

ShadowUK
04-26-2008, 05:18 AM
Goes in the On Key event.

if (e_Key == 17) then
RichText.SetVisible("RichText1", false);
end

FoxLeader
04-26-2008, 10:12 AM
Please post such messages in the Discussions forum. Thanks.