Hi people,

I have created a Smart Clip which has the variables number and url in them. In the Smart Clip there's a dynamic textfield to show the number and a button to click on it.
As an action to that button I want to open a popup window, using the variable url.

Code:
on (release) {
getURL ("javascript:PopMe=window.open(url,'Popper','width=400,height=300,left=0,top=0,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No'); NewWindow.focus();");
}
Anyone got an idea what I am doing wrong ?