Difference between revisions of "User:Scrivener07/Menus"

1,726 bytes removed ,  01:29, 8 March 2020
no edit summary
imported>Qazaaq
imported>Qazaaq
 
(23 intermediate revisions by the same user not shown)
Line 1: Line 1:
== F4SE ==
These are my notes and findings about Actionscript 3 & Scaleform in Fallout 4.
* <code>GetMembers : function Function() {}</code>
Some notes were moved to [[User Interface]] and [[Menu]]s.
* <code>CallFunctionNoWait : function Function() {}</code>
* <code>MountImage : function Function() {}</code>
* <code>version : [object Object]</code>
** <code>releaseIdx : 0</code>
** <code>minor : 0</code>
** <code>major : 0</code>
** <code>beta : 0</code>
* <code>UnmountImage : function Function() {}</code>
* <code>AllowTextInput : function Function() {}</code>
* <code>SendExternalEvent : function Function() {}</code>
* <code>GetDirectoryListing : function Function() {}</code>
* <code>plugins : [object Object]</code>
** <code>f4mcm : [object Object]</code>


== ExamineMenu ==
==== Notes ====
* Callback: <code>SetName : function Function() {}</code>
* Make page notes about the game's string pool potentially causing UI calls invoked from Papyrus to fail. See also iEquip Author.
* Callback: <code>ConfirmBuild : function Function() {}</code>
* A menu with flag <code>0x200000</code> will not hide when opening another menu which normally hides all others(pausemenu or messageboxmenu).
* Callback: <code>PlaySound : function Function() {}</code>
 
* Callback: <code>ScrapItem : function Function() {}</code>
==== Missing Font Error ====
* Callback: <code>StartBuildConfirm : function Function() {}</code>
An example of a missing font error. The errors are logged into the F4SE.log file.
* Callback: <code>SetItemSelectValuesForComponents : function Function() {}</code>
<source lang="text">
* Callback: <code>FillModPartArray : function Function() {}</code>
Missing font "Times New Roman" in ".root1.Menu_mc.CreditsContainer.instance18". Search log:
* Callback: <code>OnAlternateButton : function Function() {}</code>
  Searching for font: "Times New Roman" [Device]
* Callback: <code>HasNullMod : function Function() {}</code>
      Movie resource: "Times New Roman" [Device] not found.
* Callback: <code>ToggleFavoriteMod : function Function() {}</code>
      Imports      : "Times New Roman" [Device] not found.
* Callback: <code>IsSelectedItemEquipped : function Function() {}</code>
      Exported      : "Times New Roman" [Device] not found.
* Callback: <code>UpdateItemSelectList : function Function() {}</code>
      Registered fonts: "Times New Roman"[Device] not found.
* Callback: <code>ToggleItemEquipped : function Function() {}</code>
      Searching FontLib: "Times New Roman" [Device] not found.
* Callback: <code>RegisterComponents : function Function() {}</code>
      Searching FontLib without [Device] flag: "Times New Roman"  not found.
* Callback: <code>RegisterRequirementList : function Function() {}</code>
      Searching again without [Device] flag:
* Callback: <code>SwitchMod : function Function() {}</code>
        Movie resource: "Times New Roman"  not found.
* Callback: <code>ShowItem : function Function() {}</code>
        Imports      : "Times New Roman"  not found.
* Callback: <code>StartAnimation : function Function() {}</code>
        Exported      : "Times New Roman"  not found.
* Callback: <code>ZoomIn : function Function() {}</code>
        Registered fonts: "Times New Roman" not found.
* Callback: <code>HideMenu : function Function() {}</code>
  Font not found.
* Callback: <code>SwitchBaseItem : function Function() {}</code>
</source>
* Callback: <code>UpdateRequirements : function Function() {}</code>
* Callback: <code>SendTutorialEvent : function Function() {}</code>
* Callback: <code>RequestItemSelectListData : function Function() {}</code>
* Callback: <code>RepairSelectedItem : function Function() {}</code>
* Callback: <code>CanRepairSelectedItem : function Function() {}</code>
* Callback: <code>CheckRequirements : function Function() {}</code>
* Callback: <code>StartItemSelection : function Function() {}</code>
* Callback: <code>EndRotate3DItem : function Function() {}</code>
* Callback: <code>RevertChanges : function Function() {}</code>
* Callback: <code>RemoveHighlight : function Function() {}</code>
* Callback: <code>OnBuildFailed : function Function() {}</code>
* Callback: <code>CancelConfirm : function Function() {}</code>
* Callback: <code>ItemSelect : function Function() {}</code>
* Callback: <code>ZoomOut : function Function() {}</code>
* Callback: <code>StartRotate3DItem : function Function() {}</code>
* Callback: <code>ShouldShowTagForSearchButton : function Function() {}</code>
Anonymous user