OSX :: DVD Program And Flash Not Working Right On MacBook Pro?

Jan 12, 2012

I have a DVD that came with a school book the book is called CompTIA A+ Guide to Managing and Maintaining Your PC. It came with a DVD that has some interactive labs on it that work thru html files and flash player. There is a master HTML file on the disk that runs the whole thing. After everything is activated with numbers and all that jazz you have a screen that lists all the labs you can do. You have to set Flash up to allow access to a folder on the DVD that holds the labs HTML files.

I have this working on my PC thru Firefox and Internet Explore. I want to be able to do this on my MacBook pro. So far i can't get it to work on Safari or Firefox or Opera on my Mac. I have set up flash the same way and if I use Finder to go directly to the chapter1_lab1.html file it works. But when i try and do it by access the master HTML file and clicking on one of the labs listed it doesn't work. Safari sits on a blank screen and Firefox gives me this error.

File not found
Firefox can't find the file at file///Volumes/LabConnection/Labs/2207012/Chapter1_Lab1/chapter1_lab1.html

What i have figured out is that on the DVD the files are listed with capitals (Chapter1_Lab1 not chapter1_lab1) If i enter this part into the address bar of Firefox ( file///Volumes/LabConnection/Labs/2207012/Chapter1_Lab1/chapter1_lab1.html) I get the same error if I change the c and l to Capitals it plays the lab. Hope this is understandable. What do I need to do to make it read the file since the master is telling to look for lower case files and for some reason my Mac won't recognize it has the same file with the upper case letters.

View 1 Replies


Similar Posts:


Html :: Macbook Taps Not Working On Site, But Clicks Do?

Jan 18, 2012

Not necessarily my own website, but if you browse to [URL] and take a look at the scores/schedules area that has the left/right slider, is there a reason taps that usually register as clicks don't cause the slider to move? Is it a flash bug? Just want to know out of curiosity's sake.

I'm on Google Chrome, OSX Lion, MacbookPro 13".

View 1 Replies

ActionScript 2.0 :: Get A Contact Us Script Working On A Flash Program?

Jun 22, 2009

I have no previous experience in scripting etc, but I have to get a contact us script working on a flash program, there is 4 boxs, name, subject, email & message.

View 1 Replies

Flash :: Professional - Animation Working In Program Preview - Not In Browser With Up To Date Player

Mar 27, 2012

After hitting next on this animation you can see there appears to be blank areas on the animation. If you mouse over them you will see buttons appear which is their "over state." When I publish the animation and preview it in Adobe Flash CS5.5 all the buttons are visible and work correctly. It is only in the brower (chrome, firefox, safari) with up to date Flash Player that is is not working. This is happening in a number of animations I created originally in CS4 last year, and am updating them as CS5.5 using AS3.

View 5 Replies

Accessing Webcam On MacBook Pro Through Flash CS4?

Aug 9, 2009

I've been trying to access my webcam on my macbook pro using flash cs4 in an attempt to try and use the live feed to detect levels of motion and from there use that information to alter / animate an image on the screen (idea being more movement = more change in image), however I cant seem to get my webcam to even stream out and play on a flash file.

The code I am using is:
start code
var camera;
var video;
camera = Camera.getCamera();
video = new Video(camera.width * 2, camera.height * 20);
video.attachCamera(camera);
addChild(video);
end code

And when I run the file it asks for me to grant access to webcam / microphones (which is what it should do) but it doesnt stream to the file.

View 1 Replies

Professional :: Flash CS5 Unable To Play .FLV Files On Macbook Pro

Jan 18, 2011

I have a colleague who is trying to put together a Flash package for me  on her macbook pro.  It needs to play an flv file. She is unable to play  flv files on her computer either in Flash or using the Adobe Media  Player. I have no problem playing the same files on my macbook pro,  we're both running the latest OS and have version 1.8 of Adobe Media  Player. She went to the Adobe site to download the latest version of Adobe  Media Player, hoping that might include whatever component is missing on  her system. Because of Adobe's decision not to distribute AMP that  didn't help. 

She has Flash Professional CS5 11.0.2 on her system.  When  she imports an flv video into a Flash project and tries to play it she  gets an error message saying it can't stream the video. Note that the  video is on her hard drive, it is NOT on the internet so no streaming  should be required. The actual error message is: "the video player is in the connection  error state. It enters this state when a video stream attempted to load  but was unsuccessful. There are two possible reasons for the error: no  connection to the server or the stream was not found." Since it's a file on her hard drive, and she has loaded the file  into the Adobe development environment successfully, the one thing we  know for certain is that neither of these reasons is correct.

View 1 Replies

ActionScript 2.0 :: Start An Unrelated Program (such As Window's Media Player) From Inside Of A Flash Program?

Sep 29, 2010

Is there a way to start an unrelated program (such as Window's media player) from inside of a flash program?

View 2 Replies

Click The Url It Seems It Loads From MacBook?

Oct 25, 2009

I have built a full flash site were i have loaded the .swf into a dreamweaver page named index.html.
 
I then upload the index.html and the associated .swf file to my homepage.
 
Start up the webpage and all looks good.

I then update the .swf and upload the new one but the change does no show. I can see the change on my laptop, from another PC or if i type /index.html after the address.
 
I even deleted my index.html and the .swf and could still see the webpage on the same MacBook as it is created on (only).

View 1 Replies

ActionScript 3.0 :: Get MacBook Pro Function Keycode?

Aug 16, 2010

How to get MacBook Pro Function Keycode in AS3.0. Then how to write the function+delete press event in MacBook Pro. the MacBook Pro Function Keycode and Delete Keycode.

View 2 Replies

Professional :: Using The PC - Bigger Screen Than The Macbook?

Mar 2, 2012

I have a Mac and a PC - I have apple specific stuff on the Mac, everything else on the PC. My Adobe software is all on the PC. I like using the PC - bigger screen than the Macbook. Problem is that Adobe is effectively forcing me to use the MacBook.
 
Now I can use Flash to build cross-platform stuff from my PC, but I have to create all the certificates and profiles on the PC. If I want to do IOS development on the Mac I have to generate new certificates and profiles.
 
So switching between using flash/Flash Builder on a PC and native development on a MAc means continually regenerating certificates. If I had a desktop and PC latop, I could install on both, but not a PC and a MacBook. I am totally fed up with Adobe for this stupidity. If anyone knows differrent about the need to regenerate everything according to platform,

View 7 Replies

ActionScript 3.0 :: Add An Exit Button Onto Program So When Its Clicked It Exits The Program Completely

Nov 4, 2008

Im trying to add an exit button onto my program so when its clicked it exits the program completely.. I've tried some of the suggestions on the forums but they arnt working. what I have been using and its not working..

// CLICK to Exit
exit_Btn.addEventListener("mouseUp", goExit);
function goExit(evt:MouseEvent) {
fscommand("quit");
};

View 9 Replies

ActionScript 3.0 :: Capture MacBook And Air Multi Touch Scroll?

Jan 31, 2009

Does anyone know if the Flash Player / actionscript can capture MacBook and Air multi touch Scroll (two fingers) or any other multi touch user interactions?

View 4 Replies

ActionScript 2.0 :: Program A Timer For A Typing Tutorial Program?

Mar 24, 2003

I need to program a timer for a typing tutorial program. It needs to go to 5 minutes. When the timer gets to 5 minutes the movie has to go to frame 13 which displays the results of the typing test.

View 1 Replies

ActionScript 3.0 :: Publish The File On A New Macbook Pro Or IMac The Css Doesn't Work?

Nov 4, 2009

I built a site, and most of the content is pulling from an XML file. I think format some of that text with a css style sheet. When I publish this out on a powerbook running 10.5 with the first release of flash cs4 it works.But when I try to publish the same file on a new macbook pro or iMac the css doesn't work for me. Has anyone run into this kind of problem before?

View 2 Replies

Flash8 : Run A Flash Program From Another Flash Program?

Jan 29, 2010

I have created a flash program and I would like to run a second flash program from inside the first. To explain, say I am running a program that draws a circle and fills it with a color. Then, I have designed a second program that will divide a circle into sectors by entering percentages, to turn that circle into a pie chart. Is there a way to be running the "draw a circle" program and have a button that opens the "divide the circle into sectors" program in a new window and then passes information from that program to the first program. I am sure I will have to send the information from the second program to an XML file and then have the first program recieve it from the XML file (which I can do), but I don't know if I can run the second program from inside the first program.

View 1 Replies

Actionscript :: Connection From Program To The Server Using XAMPP Server And Program In Flex?

Oct 26, 2010

i have the following code ]

[Code]...

but no connection established what is the reason behind not know help required and one more thing XAMPP is installed in D: drive.

View 1 Replies

Create A Flash Program That Can Be Run On Facebook?

Apr 17, 2009

im trying to create a flash program that can be run on facebook. they require that the version be 9.0.115. how do i make sure the swf file i publish is this version? im using adobe flash cs3 proffesional

View 1 Replies

What Is The Best Program To Make Flash Games

Jun 10, 2009

What is the best program to make flash games?

View 1 Replies

What Program To Use For Editing A Flash Website

Feb 22, 2010

I had posted a similar query earlier but didn't get a satisfactory reply. I need to edit a flash website (only the text needs to be changed). Which software program should I use ? It is required to convert every text on the site (links or no links) to be converted from language A to language B.

View 1 Replies

Program That Cross Over Of Flash Back Into Php?

Aug 23, 2010

I'm trying to make browser game and I was wondering if this is possible.99% of the game is html/php/mysql but I wanted one little mini game to be in flash.after playing the flash game if you win you get +1 of whatever to your account. So my question is can someone program that cross over of flash back into php?

View 2 Replies

Import A Python Program Into Flash

Aug 25, 2010

Is there a way to imprt a python program into flash, so that you would get what you would see in python, but in .swf file (I'd like to make a text-only game for Kongregate)

View 1 Replies

ActionScript 3.0 :: Convert Program From Vb.net To Flash As3

Nov 15, 2010

i try to convert a program from vb.net to flash as3[code]

View 1 Replies

Retriving Data From Another Flash Program?

Feb 11, 2011

Currently learning flash and what I would like to do is capture information from another flash program if thats possible?Basically im playing a persistent browser based game written in flash and on mouseover of a tile in the world map it displays some information, specifically in game co-ordinates and details of whats there.Is it possible to capture that with a flash program? Or is that beyond the bounds of flash? I know it can be done in other languages but its been years since I've done any programming.

View 2 Replies

ActionScript 3.0 :: Exit The Program Using Flash Cs4?

Apr 19, 2009

i am doing a group project , about a test. At the end of the test , i would like to implement a print button to print the result, how to do it?

View 3 Replies

Possible To Get Computer Name Where Flash Program Is Running?

Jun 19, 2009

Is it possible to get computer name where the flash program is running? Not on the website, the swf will be run directly on the PC.

View 2 Replies

ActionScript 3.0 :: Add Accessibility To A Flash Program?

Sep 22, 2008

I need to add accessibility to a flash program which I have created. I can make the screen reader state all of the different buttons and at the top level of a combobox. However if I traverse the combobox none of the items are mentioned by the screenreader. I've tried various things down to trying to set the accessibility properties of the combobox items as though they were an array cb[0].accessibilityProperties = accessProps0; but nothing seems to work.

View 2 Replies

ActionScript 3.0 :: Timeout For Flash Program?

Aug 18, 2009

I am looking for some code that will make my program restart if it remains idle for a certain amount of time. I have looked around a good bit and cant find one that works in ActionScript 3.0.

View 6 Replies

ActionScript 1/2 :: Drawing Program In Flash?

Feb 11, 2010

I have a small flash that I'd like to expand upon, and basically I'm wondering if it's possible to Make a button that lets you erase things on click, rather than clearing the screen.Draw lines of different colours/thicknessHave the Flash output a code for the drawing (similar to Punk-o-Matic 1/2) and be able to put it into the Flash in a text form to have it output the picture. (Thus allowing sharing of pictures).Here's the code.
 
// 1. SETTING THINGS_root.createEmptyMovieClip("line",1);
// 2. EVENTS IN _ROOT:_root.onMouseDown = function(){ line.moveTo(_xmouse,_ymouse); line.lineStyle(2,0x000000,100); this.onMouseMove = function(){  line.lineTo(_xmouse,_ymouse);  updateAfterEvent(); }}_root.onMouseUp = function(){ this.onMouseMove = null;}

Also see included .fla. It's very small as all it features is a default stage that you can draw on, with an Erase button that clears the screen.

View 4 Replies

ActionScript 3.0 :: Get A Program To Run Inside Flash?

Feb 27, 2010

How do I get a program on my harddrive to run inside flash on my computer? I would like to build a Flash front end for my boat pc, but I would need to be able able to open up a program inside a flash.exe? would a external .ini File work? if so what code would I use internally to execute the .ini.

View 2 Replies

Professional :: Take An Existing Flash Program And Get It To Run In Air?

Apr 19, 2011

I was curious if you can take an existing flash program and get it to run in Air, or do you have to recode the entire thing. I see lots of stuff on Flex to Air, but not much of anything on Flash to Air.

View 5 Replies







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