Jun 13, 2004 #1 solex Programmer Joined Feb 28, 2003 Messages 91 Location GB Hello, I have this code in my main.asc script: MoveClickerToRequest = function(destination) { trace("function was called to go to:" + destination); } how do i call this function and pass "destination" to the server? thanx inadvance solex
Hello, I have this code in my main.asc script: MoveClickerToRequest = function(destination) { trace("function was called to go to:" + destination); } how do i call this function and pass "destination" to the server? thanx inadvance solex
Jun 14, 2004 #2 pixl8r Programmer Joined Aug 9, 2001 Messages 1,487 Location US Is destination a URL? If so: Code: MoveClickerToRequest = function(destination) { trace("function was called to go to:" + destination); getURL(destination,"_blank"); } Otherwise you might need to provide a little more information on what you are trying to pass the information to on the server. Hope it helps. Wow JT that almost looked like you knew what you were doing! Upvote 0 Downvote
Is destination a URL? If so: Code: MoveClickerToRequest = function(destination) { trace("function was called to go to:" + destination); getURL(destination,"_blank"); } Otherwise you might need to provide a little more information on what you are trying to pass the information to on the server. Hope it helps. Wow JT that almost looked like you knew what you were doing!