Results 1 to 8 of 8
Thread: Call a function via URL
- 04-10-2011, 04:01 AM #1
Member
- Join Date
- Apr 2011
- Posts
- 3
- Rep Power
- 0
Call a function via URL
Is it possible?
For example: I need to call "Compose.SendMessage();"
can I tack on Compose.SendMessage(); likeJava Code:http://url.com/messenger/compose?displayname=name&message=text
Java Code:http://url.com/messenger/compose?displayname=name&message=text && Compose.SendMessage();
-
Is this Java? JavaScript? What's the context of your problem?
- 04-10-2011, 04:44 AM #3
Member
- Join Date
- Apr 2011
- Posts
- 3
- Rep Power
- 0
The function I'm trying to call is within:
So I guess that's Javascript and not Java? I'm not really sureXML Code:<script type="text/javascript" language="javascript">
I'm trying to allow someone click a link and automatically send a message on xbox.com
ie:And then instead of having to click the Send button, have it be sent automatically.XML Code:http://live.xbox.com/en-US/MessageCenter/Compose?gamertag=gamertag&message=message%20body
-
- 04-10-2011, 04:55 AM #5
To call javascript code from within an Applet, you need to call
Java Code:getAppletContext().showDocument(new URL("http://live.xbox.com/en-US/MessageCenter/Compose?gamertag=gamertag&message="+messageBody));
- 04-10-2011, 04:57 AM #6
- Join Date
- Jan 2011
- Location
- Richmond, Virginia
- Posts
- 3,069
- Blog Entries
- 3
- Rep Power
- 7
-
- 04-10-2011, 05:04 AM #8
Member
- Join Date
- Apr 2011
- Posts
- 3
- Rep Power
- 0
Similar Threads
-
Call a PL/SQL function that returns a boolean type using callablestatement.
By renu in forum New To JavaReplies: 10Last Post: 04-06-2011, 04:45 PM -
function call error
By peter_thm in forum New To JavaReplies: 2Last Post: 01-13-2010, 12:57 PM -
Possible? Callback function passed as arguments to another function
By TreyAU21 in forum Advanced JavaReplies: 3Last Post: 12-04-2009, 03:08 PM -
Rewrite as a function so it can call from main.
By thangli in forum New To JavaReplies: 2Last Post: 11-30-2008, 06:26 AM -
help with System.exit (1) function call
By katie in forum Advanced JavaReplies: 2Last Post: 08-06-2007, 08:03 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks