TriangleGames wrote:I just upgraded from 5.3 to 5.4 beta, and I can't open any of my games to play OR edit.
The problem is with the program, but you can fix it by editing your game's coding. I had to fix it myself, and it's really simple. Just open your game's .aslx file in a text editor and at the very top, where it says
<asl version="530">
Change it to
<asl version="540">
However...
5.4 SHOULD have backward capability, but it doesn't, because for some reason, this code in the CoreEditor.aslx...
<editor name="_RichTextControl_TextProcessorCommands">
<data type="list">
<value type="stringdictionary">
<item>
<key>command</key>
<value>Bold</value>
</item>
<item>
<key>insertbefore</key>
<value><b></value>
</item>
<item>
<key>insertafter</key>
<value></b></value>
</item>
<item>
<key>info</key>
<value><b></value>
</item>
</value>
<value type="stringdictionary">
<item>
<key>command</key>
<value>Italic</value>
</item>
<item>
<key>insertbefore</key>
<value><i></value>
</item>
<item>
<key>insertafter</key>
<value></i></value>
</item>
<item>
<key>info</key>
<value><i></value>
</item>
</value>
<value type="stringdictionary">
<item>
<key>command</key>
<value>Underline</value>
</item>
<item>
<key>insertbefore</key>
<value><u></value>
</item>
<item>
<key>insertafter</key>
<value></u></value>
</item>
<item>
<key>info</key>
<value><u></value>
</item>
</value>
<value type="stringdictionary">
<item>
<key>command</key>
<value>Once</value>
</item>
<item>
<key>insertbefore</key>
<value>{once:</value>
</item>
<item>
<key>insertafter</key>
<value>}</value>
</item>
<item>
<key>info</key>
<value>{once}</value>
</item>
</value>
<value type="stringdictionary">
<item>
<key>command</key>
<value>Object link</value>
</item>
<item>
<key>insertbefore</key>
<value>{object:</value>
</item>
<item>
<key>insertafter</key>
<value>}</value>
</item>
<item>
<key>info</key>
<value>{object}</value>
</item>
<item>
<key>source</key>
<value>objects</value>
</item>
</value>
<value type="stringdictionary">
<item>
<key>command</key>
<value>Command link</value>
</item>
<item>
<key>insertbefore</key>
<value>{command:</value>
</item>
<item>
<key>insertafter</key>
<value>}</value>
</item>
<item>
<key>info</key>
<value>{command}</value>
</item>
</value>
<value type="stringdictionary">
<item>
<key>command</key>
<value>If...</value>
</item>
<item>
<key>insertbefore</key>
<value>{if </value>
</item>
<item>
<key>insertafter</key>
<value>object.attribute=value:}</value>
</item>
<item>
<key>info</key>
<value>{if}</value>
</item>
</value>
<value type="stringdictionary">
<item>
<key>command</key>
<value>Random text</value>
</item>
<item>
<key>insertbefore</key>
<value>{random:</value>
</item>
<item>
<key>insertafter</key>
<value>}</value>
</item>
<item>
<key>info</key>
<value>{random}</value>
</item>
</value>
<value type="stringdictionary">
<item>
<key>command</key>
<value>Image</value>
</item>
<item>
<key>insertbefore</key>
<value>{img:</value>
</item>
<item>
<key>insertafter</key>
<value>}</value>
</item>
<item>
<key>info</key>
<value>{img}</value>
</item>
<item>
<key>source</key>
<value>images</value>
</item>
<item>
<key>extensions</key>
<value>[EditorImageFormats]</value>
</item>
</value>
</data>
</editor>
...shows up as an error when trying to run 5.3 games. Hopefully this can be fixed.