3dron
1
i have:
getURL("javascript:openNewWindow(‘http://www.test.com/add=1&name=itest_tem,‘testwin’,'width=600,height=400,scrollbars,location,resizable,status’)
");
How would insert variables to change the add value? It doesnt seem to work with syntax like
getURL("javascript:openNewWindow(’“http://www.test.com/add=” + addvalue +
“&name=test_item”,‘testwin’,‘width=600,height=400,scrollbars,location,resizable,status’)
");
Please help
system
2
i notice you have a double quote after test_item. shouldn’t that be a single quote?
rest assured, you can pass variables like this from flash.
system
3
That double quote is what closes my quote for:
“&name=test_item”
So I am trying to add the following together:
“http://www.test.com/add=”
“&name=test_item”
What am I doing wrong?
Ron
system
4
That should work:
add1=12
getURL("javascript:open('http://www.waever.com?add=" + add1 + "&name=itest_tem','testwin','width=600,height=400,scrollbars,location,resizable,status');");
yours,
h88