Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 |
//============================================================================== // Created on: 07/09/2003 // Changes nickname on IRC // // Written by Ron Prestenback // © 2003, Epic Games, Inc. All Rights Reserved //============================================================================== class UT2K4IRC_NewNick extends UT2K4GetDataMenu; var localized string EditCaption, EditHint; function InitComponent(GUIController MyController, GUIComponent MyOwner) { Super.InitComponent(MyController, MyOwner); ed_Data.SetText(""); ed_Data.WinWidth=0.500000; ed_Data.WinHeight=0.047305; ed_Data.WinLeft=0.250000; ed_Data.SetCaption(EditCaption); ed_Data.SetHint(EditHint); } function InternalOnCreateComponent( GUIComponent NewComp, GUIComponent Owner ) { if ( moEditBox(NewComp) != None ) { moEditBox(NewComp).LabelJustification=TXTA_Right; moEditBox(NewComp).CaptionWidth=0.55; moEditBox(NewComp).ComponentWidth=-1; } } defaultproperties { EditCaption="New Nickname: " EditHint="Enter your desired nick, then press OK to save the changes." OnCreateComponent=UT2k4IRC_NewNick.InternalOnCreateComponent } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |