Hi @danny.lewisA9QBW
See these quick iLogic examples
I hope this helps.
Best of luck to you in all of your Inventor pursuits,
Curtis
http://inventortrenches.blogspot.com
oInput = InputRadioBox("Select one", "Use Image", "Don't Use Image", True, "iLogic")
oSchemes = ThisApplication.ColorSchemes
If oInput = True Then
oSchemes.BackgroundType = BackgroundTypeEnum.kImageBackgroundType
ThisApplication.ActiveColorScheme.ImageFullFileName = "C:\Temp\BG1.jpg"
Else
oSchemes.BackgroundType = BackgroundTypeEnum.kOneColorBackgroundType
End If
oInput = InputRadioBox("Select one", "Use Image1", "Use Image2", True, "iLogic")
If oInput = True Then
oPath = "C:\Temp\BG1.jpg"
Else
oPath = "C:\Temp\BG2.jpg"
End If
oSchemes = ThisApplication.ColorSchemes
oSchemes.BackgroundType = BackgroundTypeEnum.kImageBackgroundType
ThisApplication.ActiveColorScheme.ImageFullFileName = oPath