Hi,

I having a bit of a problem. I have a movie clip with 2 buttons in which have the getUrl command that opens a html pages in a browser window. I want to be able to click on one link and it opens a new browser window with the page in and then when I click on the second link it opens it in the same browser window.

Now I have name the window 'sellit' in my getUrl string as below (see end of string, you won't be able to see this working as this a demo site that is passwword protected):-

on (press) {
getURL("http://sell-it.rwa-net.co.uk/deeplink.jsp?command=PackageHomeCmd&search=marketi ngType%3DBeach+Holidays%3Bdestination%3DES%2CCO%2C IS%2CSpain%3Bdestination%3DREG-Canaryislands%2CRG%2CTO%2CCanary+Islands%3Bdestina tion%3DREG-Tenerife%2CRG%2CTO%2CTenerife%3Bdestination%3DRES-Playadelasamericas%2CRE%2CTO%2CPlaya+De+Las+Americ as%3B&browseMode=Holiday+Browse&countTag=1000&Pack age+Marketing+Type=Beach+Holidays&benum=5700\r\n", "sellit");
}

Second link:-

on (press) {
getURL("http://sell-it.rwa-net.co.uk/deeplink.jsp?command=PackageHomeCmd&search=marketi ngType%3DBeach+Holidays%3Bdestination%3DES%2CCO%2C IS%2CSpain%3Bdestination%3DREG-Canaryislands%2CRG%2CTO%2CCanary+Islands%3Bdestina tion%3DREG-Tenerife%2CRG%2CTO%2CTenerife%3Bdestination%3DRES-Loscristianos%2CRE%2CTO%2CLos+Cristianos%3B&browse Mode=Holiday+Browse&countTag=1000&Package+Marketin g+Type=Beach+Holidays&benum=5700\r\n", "sellit");
}

and the second link has the same window name 'sellit'.

When you click on the first link it opens a new browser window, but when you click on the second link it opens another browser window.

Any ideas why this is. I've tried these links in html pages and they do load the pages in the same browser window.

Steve