<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
<title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
That is not directly supported.<br>
You can make a link like this (in Maestro):<br>
<a class="moz-txt-link-freetext" href="javascript:window.open('http://www.google.com')">javascript:window.open('http://www.google.com')</a>;<br>
<br>
An alternative version is to create a html page that parses the
querystring and opens the supplied link, like:<br>
<html><br>
<body onload="activate_popup();"><br>
<script><br>
function activate_popup() {<br>
var url = document.location.href; //Get full url<br>
url = url.substring(url.indexOf("?url=") + "?url=".length); //Strip
until ?url=<br>
url = decodeURIComponent(url); //Fix up any browser url mangling<br>
window.open(url); //Add options here<br>
}<br>
</script><br>
</body><br>
</html><br>
<br>
Save the html as popup.html.<br>
Then make a hidden frame as the target, and place an url like this (in
Maestro):<br>
popup.html?url=<a class="moz-txt-link-freetext" href="http://www.google.com">http://www.google.com</a><br>
<br>
<br>
Beware that most browsers will block popups that are activated with the
"window.open" call.<br>
<pre class="moz-signature" cols="72">Regards, Kenneth Skovhede, GEOGRAF A/S
</pre>
<br>
<br>
NISHA P skrev:
<blockquote
cite="mid:bd48328e0911040244w5129d249w8afa4880e8cb7832@mail.gmail.com"
type="cite">Hi Kenneth<br>
<br>
I did this also..But in "New window",the location of the file is shown
in the address bar...So that I want to display the details on a <br>
<br>
pop up window...But I don't know in which file i have to write the
script for pop-up window..<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="gmail_quote">On Wed, Nov 4, 2009 at 3:30 PM, Kenneth
Skovhede, GEOGRAF A/S <span dir="ltr"><<a moz-do-not-send="true"
href="mailto:ks@geograf.dk">ks@geograf.dk</a>></span> wrote:<br>
<blockquote class="gmail_quote"
style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div bgcolor="#ffffff" text="#000000">In your WebLayout there is an
option that states "Linktarget" or "Links
open in".<br>
Select either "New window" or "Specified frame" and write "_blank" as
the frame (without quotes).<br>
<pre cols="72">Regards, Kenneth Skovhede, GEOGRAF A/S
</pre>
<br>
<br>
NISHA P skrev:
<blockquote type="cite">
<div>
<div class="h5"><font style="color: rgb(0, 0, 0);" size="4">Hi All<br>
<br>
I have a point layer in my map..when i click a point on the map,the
information will got in the right side of the map(taskpane)..<br>
<br>
I want to display the information on a pop-up window..For this, in
which file I have to write the code for pop-up?<br>
<br>
I am using mapguide open and maestro with php and ajaxviewer..<br
clear="all">
</font><font size="4"><br style="color: rgb(0, 0, 0);">
</font><br style="color: rgb(0, 0, 0);">
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<span style="color: rgb(0, 51, 51);">Thanks and regards</span><br
style="color: rgb(0, 51, 51);">
<br style="color: rgb(0, 51, 51);">
<span style="color: rgb(0, 51, 51);">Nisha</span><br>
<br>
</div>
</div>
<pre><hr size="4" width="90%">
_______________________________________________
mapguide-users mailing list
<a moz-do-not-send="true" href="mailto:mapguide-users@lists.osgeo.org"
target="_blank">mapguide-users@lists.osgeo.org</a>
<a moz-do-not-send="true"
href="http://lists.osgeo.org/mailman/listinfo/mapguide-users"
target="_blank">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a>
</pre>
</blockquote>
</div>
<br>
_______________________________________________<br>
mapguide-users mailing list<br>
<a moz-do-not-send="true"
href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a><br>
<a moz-do-not-send="true"
href="http://lists.osgeo.org/mailman/listinfo/mapguide-users"
target="_blank">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><br>
<br>
</blockquote>
</div>
<br>
<br clear="all">
<br>
-- <br>
Nisha<br>
<a moz-do-not-send="true" href="mailto:nisha@iiitmk.ac.in">nisha@iiitmk.ac.in</a>
<br>
<br>
<br>
<pre wrap="">
<hr size="4" width="90%">
_______________________________________________
mapguide-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a>
<a class="moz-txt-link-freetext" href="http://lists.osgeo.org/mailman/listinfo/mapguide-users">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a>
</pre>
</blockquote>
</body>
</html>