Flash Q
Flash Q
- Started
- Last post
- 3 Responses
- xaoscontrol
I'm trying to set up a swf with links to a couple of documents so they can be downloaded. Normally I would us the following code
getURL("http://www.yourdomain.co... "_blank")
In testing I've found that it requires two clicks on the link to get something to download. Is there a resolve for this or an easier way?
- ok_not_ok0
butt_btn.onPress = function(){
getURL("http://www.y ourdomain.com/direct ory/document.doc", "_blank")
}hope this helps
- unfittoprint0
adding to the previous post you might wanna lik to a popup javascript
butt_btn.onPress = function(){
getURL("javascript:openWindow('p... "_blank")
}
- Stylus0
It might help if you set you buttons to be tracked as menu items.