Results 1 to 3 of 3

Thread: Creating a link within a text variable in Flash

  1. #1
    Junior Registered Mayihkan's Avatar
    Join Date
    May 2004
    Posts
    2

    Creating a link within a text variable in Flash

    Hi folks!

    I'm just trying to figure out how to create a link (e-mail and URL) within a text variable in Flash MX. I can't seem to find it withing my school notes. Can anyone help me out?


    Thanks!

  2. #2
    Resident smart a$$
    Join Date
    Sep 2003
    Location
    UK
    Posts
    152
    I don't quite understand your question.

    Do you mean sending a form as in posting an email and variable through Flash to your server?

    Or adding an email link within Flash?

    If its the later here's the basic Actionscript for that:

    Code:
    // attach to button
    on (release) {
    getURL("mailto:someone@somedomain.com");
    }
    or you can pass a variable to the getURL mailto action to add an email subject:

    Code:
    on (release) {
    	EmailSubjectVar = "This%20Emails%20Subject%20Is";
    	getURL("mailto:someone@somedomain.com?subject=" + EmailSubjectVar);
    }

  3. #3
    Junior Registered Mayihkan's Avatar
    Join Date
    May 2004
    Posts
    2

    Thanks!

    Ok, I'll try that and thanks!

Similar Threads

  1. Back link request = SPAM?
    By ASP-Hosting.ca in forum Search Engine Optimization
    Replies: 20
    Last Post: 12-11-2006, 11:48 AM
  2. Image rather than Text?
    By iKwak in forum Search Engine Optimization
    Replies: 8
    Last Post: 03-06-2004, 09:12 AM
  3. Multiple links and link text
    By r2d2 in forum Search Engine Optimization
    Replies: 2
    Last Post: 02-17-2004, 07:40 PM
  4. Does google care about a text link the same color as the text
    By Apollo in forum Search Engine Optimization
    Replies: 6
    Last Post: 12-30-2003, 10:42 AM
  5. Variable value for form text...
    By Stevens in forum Website Programming & Databases
    Replies: 4
    Last Post: 10-15-2003, 02:58 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •