Difference between revisions of "Console"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Qazaaq
(Added page.)
 
imported>Qazaaq
(added as3 members)
 
Line 1: Line 1:
The '''Console Menu''' is where [[Console Command]]s may be executed.
The '''Console Menu''' is where [[Console Command]]s may be executed.
== AS3 ==
* <code>var BGSCodeObj:Object</code>
* <code>var CommandEntry:TextField</code>
* <code>var Background:MovieClip</code>
* <code>var CommandHistory:TextField</code>
* <code>var CurrentSelection:TextField</code>
* <code>var CommandPrompt_tf:TextField</code>
* <code>function get shown():Boolean</code>
* <code>function get hiding():Boolean</code>
* <code>function set currentSelection(param1:String):*</code>
* <code>function set historyCharBufferSize(param1:uint):*</code>
* <code>function set historyTextColor(param1:uint):*</code>
* <code>function set textColor(param1:uint):*</code>
* <code>function set textSize(param1:uint):*</code>
* <code>function set size(param1:Number):*</code>
* <code>function PositionTextFields():*</code>
* <code>function Show():*</code>
* <code>function ShowComplete():*</code>
* <code>function Hide():*</code>
* <code>function HideComplete():*</code>
* <code>function Minimize():*</code>
* <code>function PreviousCommand():*</code>
* <code>function NextCommand():*</code>
* <code>function AddHistory(param1:String):*</code>
* <code>function SetCommandPrompt(param1:String):*</code>
* <code>function ClearHistory():*</code>
* <code>function ResetCommandEntry():*</code>
* <code>function onKeyUp(param1:KeyboardEvent):*</code>
* <code>function onResize():*</code>


==== BGSCodeObj ====
==== BGSCodeObj ====
* <code>onHideComplete : Function()</code>   
* <code>function onHideComplete():void</code>   
* <code>executeCommand : Function()</code>
* <code>function executeCommand(command:String):void</code>


== See Also ==
== See Also ==

Latest revision as of 19:53, 8 March 2020

The Console Menu is where Console Commands may be executed.

AS3[edit | edit source]

  • var BGSCodeObj:Object
  • var CommandEntry:TextField
  • var Background:MovieClip
  • var CommandHistory:TextField
  • var CurrentSelection:TextField
  • var CommandPrompt_tf:TextField
  • function get shown():Boolean
  • function get hiding():Boolean
  • function set currentSelection(param1:String):*
  • function set historyCharBufferSize(param1:uint):*
  • function set historyTextColor(param1:uint):*
  • function set textColor(param1:uint):*
  • function set textSize(param1:uint):*
  • function set size(param1:Number):*
  • function PositionTextFields():*
  • function Show():*
  • function ShowComplete():*
  • function Hide():*
  • function HideComplete():*
  • function Minimize():*
  • function PreviousCommand():*
  • function NextCommand():*
  • function AddHistory(param1:String):*
  • function SetCommandPrompt(param1:String):*
  • function ClearHistory():*
  • function ResetCommandEntry():*
  • function onKeyUp(param1:KeyboardEvent):*
  • function onResize():*

BGSCodeObj[edit | edit source]

  • function onHideComplete():void
  • function executeCommand(command:String):void

See Also[edit | edit source]