Whenever the var=OFF the menu quits as expected. When it is supposed to jump, the menu opens and hangs, and doesn't redraw. It seems like it is expecting something that doesn't exist. So I tried it with blank jumpto pages and it still hangs. I also tried a 2 condition IF ELSE example from a post, and it didn't work.
%Read_AutoPlayDVD% = Registry.GetValueData ("HKEY_CLASSES_ROOT\Software\MySoftware", "AutoPlayDVD")
IF (%Read_AutoPlayDVD% = OFF)
Application.Exit
END IF
IF (%Read_AutoPlayDVD% = ON)
Page.Jump ("Research")
END IF
IF ((%Read_AutoPlayDVD% <> ON) AND (%Read_AutoPlayDVD% <> OFF))
Page.Jump ("Main Menu")
END IF
%Read_AutoPlayDVD% = Registry.GetValueData ("HKEY_CLASSES_ROOT\Software\MySoftware", "AutoPlayDVD")
IF (%Read_AutoPlayDVD% = OFF)
Application.Exit
END IF
IF (%Read_AutoPlayDVD% = ON)
Page.Jump ("Research")
END IF
IF ((%Read_AutoPlayDVD% <> ON) AND (%Read_AutoPlayDVD% <> OFF))
Page.Jump ("Main Menu")
END IF
Comment