I found some old threads about different message boxes.
I could use one with a yes or no option.
When I did any option for the message box it gave me an error.
Why is this code not working?
--------------------------------------
--test
---------------------------------------
function Test()
	inst = mc.mcGetInstance()
	rc = wx.wxMessageBox("Testing yes no box",2)
	if (rc == 2) then
		wx.wxMessageBox("Yes was pressed")
	elseif (rc == 8) then
		wx.wxMessageBox("No was pressed")
	else
		wx.wxMessageBox("Did not work")
	end
end
---------------------------------------------------------------
Thanks,
Bill