Flash - Make A Projector Movie That Links To A Pdf. Im Able To Get It To Work On A Pc But Not On Mac?

Aug 25, 2011

Im trying to make a projector movie that links to a pdf (in the same folder) on a CD that needs to run in both windows and mac. Im able to get it to work on a pc but not on mac. here is the code for the button i used in the projector.

on (release) {
fscommand ("exec", "manual1.bat");

and bat file open a pdf file.so i want to do the same thing for mac, that is using the fscommand to open up a pdf in acrobat. I read messages here that use applescript but i dont understand it too well so what id like to know if possible is the applescript, what it does and do i apply it to the button in my projector or do i tell the button to look at the applescript or what? I guess thats it for now.

View 1 Replies


Similar Posts:


ActionScript 1/2 :: Cant Make Buttons/links Work?

Jul 26, 2009

I have a flash that I am trying to make the buttons/links towork on and no matter what I do they just do not work. I have many hours into it so far and just had no success weather using my CS3 how to book of the forums information.I not sure what I am missing. Never had this much trouble before. the first one I tried is HOME, have not gone farther since I can make the 1st one work.[URL]..

View 1 Replies

Professional :: Links Work In Stand Alone Movie But Not When In Html?

Jul 24, 2010

I have a huge problem. I have a menu in Flash MX (AS2), it's pretty straightforward: It's a list of links but each time you mouseover one several related ones highlight (the client really wanted this). The code on each button is:

[Code]...
 
This works fine in IE8, it works fine in the preview in flash, but in FF/Chrome the rollovers work but the link is not clickable. Nothing happens on click. I thought this was perhaps a plug in issue, but when I loaded the movie in FF but not embeded into html it worked fine, it's only when it's embedded into html that the links won't click. The movie is here and the movie in a plain html page is here.[URL]..

View 3 Replies

MAC Flash Projector Does Not Work Correctly With Ruby On Rails

Aug 12, 2009

We have created on-line game that uses Ruby on rails for the server part. SWF client works well under browsers on Win&MAC. Windows stand-along client also works well but the MAC client runs down just after start. Analysis of the LOG file on the server shows a problem with a cookie for the session id. The server is not able to create the cookie on MAC to store session id.

View 5 Replies

Flash :: MAC Projector Does Not Work Correctly With Ruby On Rails

Aug 28, 2009

We have created an on-line game that uses Ruby on Rails for the server part.The SWF client works well under browsers on Win & MAC. Windows stand-along client also works well but the MAC client runs down just after start. Analysis of the LOG file on the server showsa problem with a cookie for the session id. The server is not able to create the cookie on MAC to store session id.

View 1 Replies

ActionScript 2.0 :: Make A Movie With A List Of Links?

Nov 27, 2005

I have followed the tutorial by b.rich on Arrays and attachmovie to try and make a movie with a list of links. the MC that I attach dynamically has a AS 2.0 class attached to it to handle its rollover and rollout states. An invisible button in the MC (instance name lbutton) carries the AS for the link and sits on the topmost layer. My newbie brain just cannot get around two problems:

1. The links just wont work.

2. I have quite a long list of these. How do I fit them all in the MC (all my attempts show the links spilling out of a container MC and onto the main stage), make the MC scrollable and then put it on the stage?

View 8 Replies

Links Will Not Work Under Flash?

Jan 14, 2009

I have a flash movie launch over my webpage when the page loads what the problem is is that when the flash is completed and unloads in the area where the movie showed up the links are not clickable. I have my wmode set to transparent and even have the unloadMovie at the end of the movie, this problem only occurs when using firefox how can I fix it?

View 1 Replies

ActionScript 2.0 :: [CS4] Flash Player - Links Won't Work

May 9, 2010

I am building a site, and I used the script assist to make links (on release) and the links won't work, i click on them and nothing happens. Do you think this is a coding problem or a flash player problem.

View 10 Replies

SWF - Flash Links Do Not Work Cross Domain

Apr 6, 2011

I have a flash accordion embedded using SWFObject. The SWF and related XML file are hosted on one domain. I have about 10 sites embedding this SWF from it's hosted location, both the SWF and the XML. The accordion links to various pages of my domains. The domain in which the SWF and XML file are hosted, the links work as expected. The other domains that the SWF is not hosted on, the links do not work at all. I verified it's a cross domain issue by placing the SWF and XML files locally on each domain and they worked, but this is not how I want it setup. I attempted to use crossdomain.xml and allow access from all hosts but that didn't work either.

View 1 Replies

ActionScript 2.0 :: Make Windows Pop Up On Flash Projector?

Aug 19, 2004

I will be making flash projector. How do I make windows pop up on flash projector when you click on buttons while exploring the contents inside?

View 1 Replies

ActionScript 1/2 :: Flash Menu: Unable To Get Links To Work

Aug 9, 2011

I purchased a website template that has some flash in it however the auther of the template lacked to include instructions and seemed to have left it unfinished (The links don't work, of course).
 
I can't seem to locate the actionscript he talks about: [URL]
 
[code]....

Notice that nothing there with clickable links :

I cannot find the actionscript that deals with onRollOver actions I would be absolutly ecstatic.
 
Download source files: [URL]

View 8 Replies

ActionScript 3.0 :: Make A Flash Player 10.1 Projector File (both .app And .exe)?

Oct 14, 2010

I am trying to make a flash player 10.1 projector file (both .app and .exe) and I am having some issues when I go fullscreen.This was originally a web project, and everything works okay online (or even locally when I click on my .html file). However when I make an .app projector file, and play it, some (not all) of my buttons stop working on fullscreen mode).I seem to be having problems with any buttons that have an alpha Tween (I am using TweenLite/TweenMax) applied to them on the MOUSE_OVER event.Buttons with Blur tweens work in both fullscreen and normal screen mode.

View 2 Replies

Professional :: Get Text Links In Flash To Work With A Single Click?

Jan 13, 2011

I have created static text links in Flash (CS4) but they only work when published with a double-click.How do I get them to work with a single click?

View 8 Replies

ActionScript 2.0 :: Flash 9 - Dynamic Menu Links Do No Work (Get Undefined)

Oct 21, 2009

I have a dynamically generated menu populated by two arrays, "menuTitles" and "menuLinks." Everything works great except the onRelease command. I get "undefined" instead of the contents of the array element (should be an HTML link). If I hard code the array element (menuLinks[1]) it works, but as it is, I just keep getting undefined.

function generateMenu() {
menuLength = menuTitles.length;
var currItem:MovieClip;
for (var i:Number = 0; i<menuLength; i++) {
currItem = emptyMovie.attachMovie("menuItem", "item"+i, i);
[Code] .....

View 1 Replies

Actionscript 3 :: Make Windowless Flash Projector Without A 3rd Party Application?

May 29, 2010

i'm trying to finish an educational cdrom done in flash, how can i make a window less projector, or position the window on the center of the screen without a 3rd party software?

View 1 Replies

ActionScript 2.0 :: External Links Won't Work In Flash File When Embedded In Html

Jan 16, 2010

I used Dreamweaver to embed my flash file into an html file, using "Insert-->Media-->Flash".When I preview the file, everything works fine, but when I upload the file to the web, the external links to my blog and e-mail will not work. Before, I just had the flash file up, with no html, and it worked fine.Url...

View 2 Replies

Professional :: Why Do Links Inside My Flash Site Not Work Properly In Firefox 3.6.1 And Safari 5.0.2?

Nov 17, 2010

The latest versions of firefox and Safari both cannot display email links. For some reason they don't parse ou the "mailto:".

View 5 Replies

Detect That The Flash Movie Projector Is Active Window?

Feb 4, 2011

How can detect that the flash movie projector is active window

View 1 Replies

ActionScript 2.0 :: Make Windows Popup On Flash Projector When Click On Buttons While Exploring The Contents Inside?

Apr 24, 2004

I will be making flash projector. How do I make windows pop up on flash projector when you click on buttons while exploring the contents inside?

View 7 Replies

ActionScript 2.0 :: Stretching The Flash File To Fill The Screen In A Projector Movie

Jan 3, 2005

Had a problem stretching the flash file to fill the screen in a projector movie. It is not made in proportion with the standard screen sizes. Is there a quicky way of doing this, without having to go into each element and resizing it. Its a huge file with a lot of cross referencing happening, and _root is used liberally everywhere.

[Code]...

View 1 Replies

IDE :: Make Drop Down Menu And Links To Flash CS4?

Jan 27, 2010

I have tried to do those thing for couple of days( and nights), and every time some part of the code that i write in there does not work.I have tried to do Drop Down in animation (motion tween), i have also tried to do links, but i just dont get them work.

View 1 Replies

ActionScript 3.0 :: Keyboard Events Do Not Work In Player Or Projector

Jan 8, 2009

I need to trap keyboard events. My code works OK in test mode (ctrl + enter), but not when I run the swf or projector directly on the desktop. My project is going on CD, not in a browser, and the only thing on the stage is an instance of the FLVplayback component. And while I'm at it....does anyone know the code to simulate clicking the windows Restore button? That's what the keypress is for. My client doesn't want the video running in real full-screen; they want their users to click the Maximize button, so they'll see the title bar, then press Esc to restore the window, again.

View 3 Replies

ActionScript 3.0 :: Projector External Files Don't Work At Windows?

Nov 23, 2009

I have a projector published from Mac into two formats: Mac and Windows. The main movie loads an intro flv, and it has a button to skip which loads another swf.When I run the .app in MacOS, it works fine. The video is displayed and the button jumps to the mentioned swf. However, when running the .exe in Windows, no video is showed and the button does nothing.I think it's a path problem. I'm using relative ones, and have tried in all forms:

./video/myvideo.flv
/video/myvideo.flv
video/myvideo.flv

[code]......

View 3 Replies

Can't Seem To Export Movie And Make Contact Form Work

Dec 16, 2009

I'm editing a flash template for a client - and AI can't seem to export the movie and make the contact form work. When I open up the default file from the provider - I get this output message:Forms Component - Version 0.81Couldn't load configuration.Even if I don't touch the contact page - it will never work when I export it for the web. I've been talking with the template help-desk for weeks, and they keep saying "it works for us".

View 1 Replies

ActionScript 2.0 :: Make A List Component With Links In Flash 8

Feb 5, 2008

I'm trying to make a list component in flash 8 have a links in them. So far I have this Actionscript in the main timeline for the component. I named the List component on the stage as "list"

[Code]...

View 2 Replies

ActionScript 3.0 :: Make Movie Work / Using Empty Stage & File?

Oct 31, 2009

I've selected the check box export for Action Script in the symbols library. Here is my current code:

[Code]...

how to put together these two pieces of code (using copy & paste) with my existing code? I am thinking the stage should be empty. And all I should have are items in my library. Than in the folder where the SWF lives is a file saved as .AS

View 3 Replies

Professional :: Can't Make Music On / Off Button Work For Movie Built In CS5

Aug 10, 2010

This Message Used To Be Entitled:"Can't make music on/off button work for my movie built in CS5..."But after literally WEEKS of being on this forum (& desperately seeking the answer in numerous ways) do you mean to tell me there is ABSOLUTELY NO ONE ON THIS FORUM that knows how to make a music/sound button work correctly? [code]Perhaps it's a simple adjustment,.

View 11 Replies

ActionScript 2.0 :: Script - Make It Work On Movie Clips Symbol?

Mar 28, 2007

it works fine when i apply it on Button Symbols. But when i apply it on Movie clips symbols that i use as button, it failed to work as i expected.

on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = "section1";[code]....

Should i change some thing to make it work on Movie clips symbol??

View 3 Replies

ActionScript 3.0 :: Make Flash Banner's Links Not Open In A New Window?

Aug 18, 2009

I'm having a little trouble with my flash banner. When I click on my button, it opens the link I specified in a new window or new tab, like target _blank in HTML. I want it to open in the same window, so you're still navigating through the site. Here's my button's code: link_btn5.addEventListener(MouseEvent.... goToURL5); function goToURL5(e:MouseEvent):void{ navigateToURL(new URLRequest ("/forums/index.php "));}

View 4 Replies

Flash :: Professional - Make Certain Areas Of Image Into Links To Other Sites?

Sep 22, 2011

I am new to Flash but am slowly teaching myself via [URL] etc I have an image that I have added to a website via a content management system and want to make certain areas of that image into links to other sites. I found this page that does the kind of thing I want to do, but it appears from looking at the source code that the person who has done this has cut the image up into several sections in order to fit it into a table: [URL] Is there a better way to achieve the same kind of effect using Flash by making ares of an image into links and keeping the image as a whole?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved