Ask a Question related to Macromedia Director Basics, Design and Development.
-
Orestes31 #1
Flash Email Links
When you bring flash into director..why does it disregard the email links? Or does it or is it ust me? (I don't know Director too well yet)
Any help would be appreciated. :)
Orestes31 Guest
-
Resolving links for HTML email
We like to use Contribute to send HTML based email from pages we create for our website. Problem is, Contribute uses short addresses that are... -
Email links
Hi All, I am new to all this so please forgive my ignorance! I am trying to create a link that when activated it will open a blank email with... -
Troubleshoo Email links in PDF documents
How do I place a functional email link in a PDF Document I create. I've highlighted what I want to embed the email link in, and then used the create... -
How to give email links in Projector.exe.In Flash MX
Hi, I am Ajeet, I am working on a Project based on Flash. I have to give an e-mail link of my company in my FlashMX Projector File. on (release) {... -
Hiding email links from spammers
Instead of a mailto link, put in a link to a PHP script that contains these lines: <?php header("Location: mailto:test@test.nz"); ?> and... -
johnAq #2
Re: Flash Email Links
In short, when Flash issues a getURL command, it sends it to the host
application to deal with. A browser knows what to do when it is told to
navigate to a URL, or process a mailto. So when you run Flash in Director, it
send the getURL event to direcotr, but by default, it doesn't know how to
process it (Search the Director forum archives for get URL for more on this).
The solution is to create a getURL handler in a Director movie script and tell
it how to process the accompanying data - which Director can do with the
gotonetpage command
on getURL theData
goToNetPage(theData)
end
Note that in a projector, if you issue a mailto, gotonetpage will first call
up a browser window which will then process the mailto and open up an email
client. The free xtra [L=openURL]http://www.mods.com.au/xtras/default.htm[/L]
can process the command directly so you don't get the empty browser window.
on getURL theData
baOpenURL(theData)
end
hth
johnAq
johnAq Guest



Reply With Quote

