Open a window from a Smart Viewer

Rabbit

Member
I placed a button on a smart viewer to open another smart window. But when the window was opened, all the objects on the window was not response. I cannot click on any button and even cannot close or move the window.

If I run the window seperately, there was no problem. Is there any restriction that I cannot open a new window from a smart browser? Please help, thank you!:dead:
 
If agent.w is a Smart Window, try

DEF VAR hWindow AS HANDLE NO-UNDO.
RUN agent.w PERSISTENT SET hWindow.
RUN initializeObject IN hWindow.
 
Top