Hi,
I've discovered a parsing error in Setup Factory which affects the editor, when double clicking a specifically formatted action, the action is not correctly parsed, and the Actions Parameter Dialog fails to show the parameters correctly.
Included below is a sample script, both lines are valid LUA, however the first line does not parse correctly:
I've discovered a parsing error in Setup Factory which affects the editor, when double clicking a specifically formatted action, the action is not correctly parsed, and the Actions Parameter Dialog fails to show the parameters correctly.
Included below is a sample script, both lines are valid LUA, however the first line does not parse correctly:
Code:
-- Double clicking the line below does not correctly parse the parameters into the Action Paramaters Dialog result = File.Run("setx.exe", "-m MYVAR \"C:\\THISPATH\\\"", "", SW_MINIMIZE, true); -- Double clicking the line below Works as expected, and the values are parsed into the Action Paramaters Dialog result = File.Run("setx.exe", "-m MYVAR \"C:\\THISPATH\"", "", SW_MINIMIZE, true);
Comment