It'd be handy to have in the File menu, a new entry called "New Test"
or something like that, so that the editor pastes the following code in:
Code: Select all
If OpenWindow(0,0,0,640,480,"test",#PB_Window_SystemMenu|#PB_Window_ScreenCentered)
CreateGadgetList(WindowID(0))
Repeat
ev=WaitWindowEvent()
Until ev=#PB_Event_CloseWindow
EndIf
means one can always quickly start a new test app without having to type
the above code in first, as the skeleton code above is ready to be edited.
It'd be a massive timesaver for quick test apps. It could go directly under
the File -> New menu command.