Can I do something like this within my panorama: Open a new window width 320 height 240 posx 10 posy 10 ?
Hi,
I think
opening such windows will be only possible via Javascript...
e.g. call your own javascript function that will
open that window:
xml:
|
Quellcode
|
1
|
.. onclick="js( openwindow(http://test.com, 320,200,10,10) );"
|
html/js:
|
Quellcode
|
1
2
3
4
|
function openwindow(url, width, height, xpos, ypos)
{
//... ?
}
|
best regards,
Klaus