I plan to upload an improved version, but I actually don´t have the time to add, what I´d like to add, so it will take some time until you get it.

There where some framerate issues wich are easily to fix.
Just replace the old function PP_Toggle_OnOff with this one:

Code:

function PP_Toggle_OnOff()
{
if(PP_Quad.visible == on)
{
camera.visible = on;
PP_Cam.visible = off;
PP_Quad.visible = off;
}else
{
PP_Cam.visible = on;
PP_Quad.visible = on;
camera.visible = off;

while(PP_Quad.visible == on)
{
vec_set(PP_Cam.x,camera.x);
vec_set(PP_Cam.pan,camera.pan);
wait(1);
}
}
}