File window list reset?

 From:  Michael Gibson
8721.6 In reply to 8721.1 
Hi Mat, so to reverse the order of the recent files list, right-click on the MoI app and choose "Show package contents". Then inside there go into the ui folder and the file you need to edit is named FileMenu.htm, you need to open it in a text editor.

On line number 13, there is currently this:

code:
			for ( var i = 0; i < Files.length; ++i )


Change it to this instead:

code:
			for ( var i = Files.length-1; i >= 0; --i )


And that should do it.

- Michael