Difference between revisions of "User:Scrivener07/Menus"
Jump to navigation
Jump to search
imported>Qazaaq |
imported>Qazaaq |
||
(20 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
These are my notes and findings about Actionscript 3 & Scaleform in Fallout 4. | These are my notes and findings about Actionscript 3 & Scaleform in Fallout 4. | ||
Some notes were moved to [[User Interface]] and [[Menu]]s. | |||
==== Notes ==== | |||
* Make page notes about the game's string pool potentially causing UI calls invoked from Papyrus to fail. See also iEquip Author. | |||
* A menu with flag <code>0x200000</code> will not hide when opening another menu which normally hides all others(pausemenu or messageboxmenu). | |||
==== Missing Font Error ==== | |||
== | An example of a missing font error. The errors are logged into the F4SE.log file. | ||
<source lang="text"> | |||
Missing font "Times New Roman" in ".root1.Menu_mc.CreditsContainer.instance18". Search log: | |||
Searching for font: "Times New Roman" [Device] | |||
Movie resource: "Times New Roman" [Device] not found. | |||
Imports : "Times New Roman" [Device] not found. | |||
Exported : "Times New Roman" [Device] not found. | |||
Registered fonts: "Times New Roman"[Device] not found. | |||
Searching FontLib: "Times New Roman" [Device] not found. | |||
Searching FontLib without [Device] flag: "Times New Roman" not found. | |||
Searching again without [Device] flag: | |||
Movie resource: "Times New Roman" not found. | |||
Imports : "Times New Roman" not found. | |||
Exported : "Times New Roman" not found. | |||
Registered fonts: "Times New Roman" not found. | |||
Font not found. | |||
</source> | |||
Latest revision as of 00:29, 8 March 2020
These are my notes and findings about Actionscript 3 & Scaleform in Fallout 4. Some notes were moved to User Interface and Menus.
Notes[edit | edit source]
- Make page notes about the game's string pool potentially causing UI calls invoked from Papyrus to fail. See also iEquip Author.
- A menu with flag
0x200000
will not hide when opening another menu which normally hides all others(pausemenu or messageboxmenu).
Missing Font Error[edit | edit source]
An example of a missing font error. The errors are logged into the F4SE.log file.
Missing font "Times New Roman" in ".root1.Menu_mc.CreditsContainer.instance18". Search log:
Searching for font: "Times New Roman" [Device]
Movie resource: "Times New Roman" [Device] not found.
Imports : "Times New Roman" [Device] not found.
Exported : "Times New Roman" [Device] not found.
Registered fonts: "Times New Roman"[Device] not found.
Searching FontLib: "Times New Roman" [Device] not found.
Searching FontLib without [Device] flag: "Times New Roman" not found.
Searching again without [Device] flag:
Movie resource: "Times New Roman" not found.
Imports : "Times New Roman" not found.
Exported : "Times New Roman" not found.
Registered fonts: "Times New Roman" not found.
Font not found.