Hello everyone, I have an intermediate understanding of Flash and currently work with Flash MX. My problem is this. I am creating a digital portfolio to be published as a Projector (.exe) to be distributed on disc to firms I wish to work for. I want the user to click on the button I have created for a specific image/work I have completed and have a seperate Projector open displaying said image. I have accomplished this partly, yet a dialog box appears first prompting the user to "open\save\canc el\more info" as if the file is being downloaded. The action script I used was the following:
on (release) {
getURL("filenam e.exe", "_blank");
}
As I mentioned It will do what I want but not without that dialog box appearing first. I really don't want some HR lady having to select "open" everytime to view an image. Especially if there are 30+ images to be viewed. I just want them to be able to view the image and then close the flash player to return to the main Flash player to select others. Please help me with a way around this dialog box. Hopefully using action scripting.
p.s. I also don't want them to open in Internet Explorer using a .swf extension instead. Just a second Projector sized exactly to the image.
on (release) {
getURL("filenam e.exe", "_blank");
}
As I mentioned It will do what I want but not without that dialog box appearing first. I really don't want some HR lady having to select "open" everytime to view an image. Especially if there are 30+ images to be viewed. I just want them to be able to view the image and then close the flash player to return to the main Flash player to select others. Please help me with a way around this dialog box. Hopefully using action scripting.
p.s. I also don't want them to open in Internet Explorer using a .swf extension instead. Just a second Projector sized exactly to the image.
Comment