Playing local authorware files in IE 7

I cannot play published Authorware files in the Internet
Explorer 7 from my local computer. I get error messages "invalid
map files etc". The published files play correctly in a local
Mozilla browser and also if I upload them on a server and play them
online with Internet Explorer 7. Is there a local setting, which
solves the problem? Normally I like to test the files on my
computer before uploading all the published files.
Thanks
Ruth

"ivoryruth" <[email protected]> wrote in
message
news:f1s522$ctd$[email protected]..
>I cannot play published Authorware files in the Internet
Explorer 7 from my
> local computer. I get error messages "invalid map files
etc". The
> published
> files play correctly in a local Mozilla browser and also
if I upload them
> on a
> server and play them online with Internet Explorer 7. Is
there a local
> setting,
> which solves the problem? Normally I like to test the
files on my computer
> before uploading all the published files.
There is no local setting, as such. What you must do is
reference the aam
file as a literal folder path - File://c:/work/test.aam
(that's not quite
right, the File:// should be a little different), instead of
the default
relative reference that is used by Authorware.
Alternatively, I think you can still test by clicking on the
aam file
instead of the htm ...
Steve
EuroTAAC eLearning 2007
http://www.eurotaac.com
Adobe Community Expert: Authorware, Flash Mobile and Devices
My blog -
http://stevehoward.blogspot.com/

Similar Messages

  • Standalone app (AIR?) for playing local FLV files

    Can someone point me to a desktop app (Windows and Mac) that can play local FLV files?
    Thanks!

    I don't know about an AIR application but you could make any Flash video player you want to create into a stand-alone simply by publishing it as a "Projector" file. So create your own custom player and include your own branding in the design.
    Or does this need to have a "browse to file" capability? Have never added that to a vid player so I'm not sure how that would work out.
    But here is a simple little .flv video editor that I sometimes use to check out video files:
    http://download.cnet.com/Moyea-FLV-Editor-Lite/3000-2168_4-10912717.html
    It's a video editor, not just a player... but it's free, and allows you to open and play .flv files.... maybe a temp solution ??
    Best wishes,
    Adninjastrato

  • Differences between the 2 ways to play local swf files in flash player

    There are 2 ways to allow the flash player to play local swf files:
    Add the directory/file of the swf to the Global Flash Player Trust directory. http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9 b90204-7c95.html
    Add the directory/file of the swf to the Trusted Location Settings in the Local Settings Manager.http://help.adobe.com/en_US/FlashPlayer/LSM/WS6aa5ec234ff3f285139dc56112e3786b68c-7ff0.htm l#WS6aa5ec234ff3f285139dc56112e3786b68c-7fea
    Adobe doesn't mentioned in the document what's the differences between these 2 methods, and they look has the same effect. But when I'm doing it on OS X, Safari 6.1, the first method doesn't work (It was working when I was using Safari 6.0). And then I tried method 2, it works…
    So I'd like to ask what are the differences between these 2 methods to play local swf files?

    For playing local SWF files, Download the Macintosh Flash Player 11.9 Projector
    It's a standalone app. Just copy it to your Applications folder. Launch it, and drag the SWF to the Dock icon. It'll play.

  • Play local FLV files in AIR

    Hello,
    Here is another question regarding FLV files: I'm developing my AIR application using Dreamweaver. My app will need to play some local FLV files wich will be delivered together with the application (they are not online).
    I'm using the built in feature of Dreamwever, wich creates a small SWF called "FLVPlayer_Progressive.swf" when you insert an FLV in the page. If I preview the page in Firefox, everything works fine and the video is played, but if I preview it in AIR, there is just a blank box where the video should be.
    All the files are in the site's root folder and are included in the "AIR application settings" (FLVPlayer_Progressive.swf, Clear_Skin_2.swf, video.flv, index.html and application.xml).
    I tryed importing the video in Flash (through progressive download) and then creating a small SWF wich would work only as a player but it didn't work either. The only way it worked was if I actually embedded the video in the SWF (so there is no external file), but then I have some audio synchronization problems and I loose quality...
    So the problem seems to be that AIR doesn't allow the SWF file to access external files, even if they are in the same folder. Is this a bug or is there a workaroud?
    Regards,
    Manuel

    Well, I just spent a few hour trying to make this work, and still nothing... but I think I know now what the problem is.
    As you said, after putting an absolute path in (I used "C:\video.flv" for testing) it worked fine! So what I did was create a code that would get the absolute path to the video located in the app-storage folder. I came up with the following:
    var flvFile = air.File.applicationStorageDirectory.resolvePath("data/flv/video.flv");
    var flvFilePath = flvFile.nativePath;
    This code returns flvFilePath as "C:\Documents and Settings\Manuel\Application Data\Test.08196269638DC859464A7A09369FF97BAC18DD7A.1\Local Store\data\flv\video.flv".
    I tried suplying this path to the player but it didn't work. So I inserted a new player in Dreamweaver using the path above and I got a message saying that the path can't have any spaces. This seems to be the cause of all my problems! I tried substituting the spaces with "%20" but it didn't work either.
    Do you have any ideas?

  • Playing local sound file

    I need to play an mp3 file in my AIR app. But I won't
    necessarily know the path to the file because I need to use things
    like the storage directory. So, would I have to do something like
    this to get that done:
    var file:File =
    File.applicationStorageDirectory.resolvePath("path/to/mp3");
    var urlRequest:URLRequest = new URLRequest(file.nativePath);
    and then load the sound from that? Or is there some way that
    AIR has provided to skip the first step?
    Thanks!
    Kyle

    @ paus akid,
    There are two things wrong here.
    One, you should never use a nativePath in place of a URL.
    This happens to work on Windows because the nativePath is
    interpreted as an absolute path. However, on Mac and Linux, a
    nativePath is indistinguishable from a relative URL. Since relative
    URLs are resolved against the application directory (in general),
    you get the app:/ URL scheme. So change:
    var req:URLRequest = new URLRequest(file.nativePath);
    to:
    var req:URLRequest = new URLRequest(file.url);
    The second issue is that you don't initialize your file
    object before using it to resolve a second path. Instead of:
    var file:File = new File();
    file = file.resolvePath(currentRandomSong);
    You should do something like this (using the appropriate
    directory):
    var file:File = File.usersDirectory("path/to/mp3");
    See
    Developing
    cross-platform AIR applications for more information.

  • Play local video file from MIDlet

    Hi there,
    I'm developing a video-related MIDlet application and I'm wondering which is the best strategy to play video on mobile phones.
    Since my video are very simple clips, my idea was to put them inside the jar and play them from there, however it seems to me that playing video from resource:/ URL is not allowed, is it true? Do I have to use file:/ URL or anything else? I would like to avoid streaming from HTTP.
    Finally, which is the minimum format that every phone CLDC/MIDP compliant should be able to play, MPEG1? Then if I code in MPEG4 there's no guarantee that is playable on every phone, isn't it?
    Many thanks in advance,
    Matteo.

    hi
    if u add the your file in jar n jad file that it wont do http connection. then u have to use something called getResourceMethod("file name") mathod
    yes we are having fille:/.. something like that that is jsr-75 buk it wont support by many of mobile model
    i hope i am lcear

  • Local video files on native player - any examples or official response?

    Sorry to bring this up again as there are several posts in this forum asking the same questions but I figured now that Packager for iPhone is once again being actively supported it would be a good time to try and get some clarification.
    Playing local video files on the iPhone/Pad's native video player is a well documented feature of the packager but one that I have yet to get working or even see an example of. There are quite a few posts here and elsewhere with people asking how to get this feature working, especially with reference to the navigateToURL() function as described in the developer guide.
    Has anyone ever managed to get this feature working and are there any examples of code using navigateToURL() which have been successful for anyone? If not could one of the Adobe reps on this board give a response just to clarify if H.264 video playback is working as intended and documented.
    Many thanks for any incoming responses, I have been very happy to hear the news from Apple/Adobe over the last few days and getting this feature working would top off a few days of good news!

    I've tried that with no luck.  Here's a screenshot of the app.  You can see the many ways I've tried to play video files and it just doesn't work the way you suggested, or the way the documentation suggests.  What am I doing wrong?  Or does it just not work since no one can seem to get it to work?
    And yes, I did include the video:

  • Local songs won't stream via Spotify after playing locally and being removed.

    I have an external hard drive I use to store all the songs I own. For everything else, there's Spotify. Sometimes I unplug my external hard drive and play music that I own via Spotify instead. Spotify used to be able to clearly distinguish between these and integrate them seamlessly. But with the new update (0.8.8.450gd...), these are very confused. The moment I plugged in my hard drive and played a song on my playlist, it switched the file source from Spotify to local, and it will not change back. Even after I unplug my hard drive and restart Spotify, problem not solved. In addition, there is no way to know if I'm dragging a local file or a Spotify song to my playlists, which leaves all my playlists absolutely unreliable until this is fixed. It could stop at any time if I don't have my external drive plugged in, which is not ideal. Any help would be appreciated.

    Same issue. This has always been a problem for me with Spotify, for the last few years.
    I have a lot of CD-ripped lossless files in my iTunes, so it's great Spotify lets me play those higher quality versions. However, if my external HD with my iTunes library files on it is not connected (which is any time my laptop isn't at my desk), there is no way to play that music without permanently unlinking the file.
    It's a crummy situation. Spotify will play music I never bought outright via CD just fine. But if Spotify ever gets a whiff of a file being part of the iTunes library, and that file is not able to be loaded at that moment, then it will refuse to let you stream the track. It makes no sense.
    The solution to this is that Spotify should play local audio files for tracks when they are accessible, and stream them when they are not. That was part of the whole point of subscribing to a cloud-based music streaming service in the first place for me. 

  • Dmp 4400 can't play local files

    I am using a DMP-4400 with firmware v.5.2.2. The unit connects to the network fine and is able to display webpages from the internet without problem; the ftp server is working fine also. However, when I attempt to play any type of local file ( located at /tmp/ftproot/usb_1/) the screen remains blank. I am assuming that the files are being found because the failover URL is not being displayed for either .mpg or .html files. I am using MPEG-1 type video files for testing. I have attached one of these videos along with a sample .html file I am planning to use to loop multiple files.
    Video files are being run using:
    "/tmp/ftproot/usb_1/melt.mpg" entered into the 'Local Storage Path' dialog under 'Play Video File Stored Locally' within the GUI.
    HTML is being launched using:
    "file:///tmp/ftproot/usb_1/play-local-mpg.html" entered into the 'URL' dialog under 'URL To Be Displayed' within the GUI.
    These problems persist whether the files are located on internal memory or external USB drive. Any help will be much appreciated.

    Peter,
    I was able to fix it, The issue seems to be with the content, I transcoded it with VLC Player to MPEG-TS and it works. Kindly find the attached transcoded file.
    Use
    var playlist = new Array(
    "file:///tmp/ftproot/usb_1/test1.ts"
    If this answers your concerns please mark this post as "Answered"
    Thanks,
    Sagar Dhanrale

  • Using flash player to play local  files

    When I try to run a local flash file I clicking on it with Windows Explorer  rather than playing the file.  How to I get it to just play the file?
    I'm using Win 7/64. I have flash player 11.8.800.94

    Use the standalone Flash Player (Projector) from http://www.adobe.com/support/flashplayer/downloads.html
    Note that the download is the player, not an installer, so you will have to make the file association manually.

  • Spotify won't play local files in newer version (w/o ffmpeg-spotify)

    Hi,
    I have recently updated Spotify from AUR to version 0.9.4.183-1 (updated 2013-10-10) and I'm not able to play local files anymore (I was before). Package maintainer says that the major changes in the last version is that ffmpeg-spotify is not needed anymore to play local files (and so it has been marked as outdated), so I guess it has something to do with this fact. Actually, having or not having installed ffmpeg-spotify does not make any difference.
    Just for the record, I am using PulseAudio, and when I try to play a local file, I can see in the log the following message:
    19:03:25.415 I [audio_driver_linux.cpp:18 ] Using PulseAudio
    Yep, that's all.
    Is this happening to anyone else? Does anybody knows how is Spotify supposed to play local files without ffmpeg?
    Thanks a lot.

    Well, funny enough, I've found the solution the minute after I posted the question. To play local files, the necessary package is ffmpeg-compat (in official repo). So I guess this should be added as a dependency of the spotify AUR package?
    Hope this helps someone.

  • [SOLVED] No audio in Chrome (even when playing local files)

    I'm running Arch on a Vizio CT14-A4 laptop.  Audio works in other programs, but sometimes it doesn't work in Chrome.  In the past this problem has magically disappeared and reappeared, but today it persists after multiple reboots.  I updated my system, still no dice.
    Initially I assumed it was a Flash issue, but now I believe it is a browser-level issue since there is no sound even for local .mp3 files (that play fine in mpd).
    Could Chrome be accessing the wrong playback device?  I have one card with two subdevices:
    $ aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: PCH [HDA Intel PCH], device 0: CS4210 Analog [CS4210 Analog]
    Subdevices: 0/1
    Subdevice #0: subdevice #0
    card 0: PCH [HDA Intel PCH], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    The first entry is the one I want to use.  Since it's device 0 on card 0 and I don't have a .asoundrc, it should be accessed by default.  Is there a way to check whether Chrome is overriding default behavior and using the second entry?
    Edit (much later): Turns out this was a mixing problem, I don't remember how I fixed it.  Essentially audio could only be played from one source at a time.  Not Chrome-specific.  Marking solved.
    Last edited by chikinn (2015-05-25 17:18:33)

    Oh, sorry, I should have mentioned: I'm using Alsa, not Pulse.
    I'm trying to get any audio content working in Chrome, doesn't matter what.  The fuser command gave the same output whether I was playing a local MP3 file or streaming a YouTube video.
    In ~/.mpd/mpd.conf, I have the following:
    audio_output {
    type "alsa"
    name "alsa-mpd-ncmpcpp"
    Regarding your last sentence,
    emeres wrote:Does is use hardware directly, hw:0,0 or whatever you specified in device?
    I don't know whether I specified anything in device or whether mpd uses hardware directly.  How can I check?  (I'm still a bit new to Linux!)

  • Flash media playback not playing local files?

    hi
    I want to use flash media playback http://www.adobe.com/products/flashmediaplayback/ to play some local FLV files on our intranet but it doesnt seem to work with local files
    I can play this http://www.osmf.org/configurator/fmp/ but when i replace the source with something like test.flv then it doesnt play
    Is this the case or I've done something wrong?
    We cant download anything so I need a flv player that comes with Adobe
    Thanks

    Sorry, I do not know Flash Media Playback, so I cannot help you.
    You may try to post at http://forums.adobe.com/community/flash/flash-media-playback but there seems to be almost no activity there.

  • Cant play local files on mobile

    Posting again and hoping for a response before I have to cancel Premium because of it. Hello, I have a Droid Razr M, and I can't play my local files on my Android phone. I have premium, and when I download a playlist/songs to my phone, they come up as (Song Name) Unknown Artist, Unknown Album, and completely grey instead of white with the Dowload Icon next to them. My Phone and my Desktop Spotify are sync'd and I switch between them often. 
    I used to have success transferring files when working off my Macbook Air to my phone, but no such luck with my HP desktop. I do not have the Macbook anymore so it isn't a solution to this problem.  I have connected my phone to my PC yet it does nothing within the Spotify window. When I'm playing a local file on the PC and I try to switch to mobile using connect, it just black screens and I have to back arrow out of that to get back to my playlist, where it resumes fine playing no song. This was not a problem a couple patches ago, yet it may make me unsubscribe because it is my most essential value to my Spotify experience.  I will provide more information to solve the problem, if necessary

    Yeh it won't sync local files under the latest version of Android. 
    It's not that it doesnt actually sync it, but on the phone on android. There is no option for local files. 
    It doesn't come up. Tho it is on the computer Spotify app. 
    The only way to do it, is to make a playlist. Drag everything from local files into the playlist. Then sync. 
    You can even click offline mode for what its worth. Obviously its already on the computer as its local files. 
    It seems files that are not on Spotify are faded out. It is very inconsistent about it. But none the less you can play everything. 
    Once you have it all on your new shiny playlist. Sync it to the phone. And just sync that playlist which just has local files. 
    There is no way to work out the bitrate of the files on the spotify app for Andoid, so I can see the kbps. So I know if it is a local version or what the sound quality is either. Anyway you can sync local files only through making a playlist. 
    The problem lies in the Spotify app. It has the option to click sync local files. And it actually does it, but this is useless as there is no way to search or play these files unless they are in a playlist on the latest Android App. And because it isn't in a playlist you cannot play it. 
    So yeh Make playlist. Copy Local Files into Playlist. Sync Android Phone with that Playlist. You can now play local files. 

  • How to play the local flash file in nexus one smart phone?

    In Nexus one smart phone(android 2.2), the flash file in the web site is played by browser,
    But local flash file is not played.
    How to play the local flash file?
    Does not support local swf playing yet?

    you can create from flash an AIR app that can be installed as a stand alone app on an android phone:
    tutorial here
    http://designupdate.com/blog/2010/07/27/air-for-android-access-the-microphone/

Maybe you are looking for

  • How can I have only icons of apps tasklist in Awesome wm ver 3.5?

    In Awesome 3.4 I it was possible to do this by modifying this line: mytasklist[s] = awful.widget.tasklist(function(c) local task = { awful.widget.tasklist.label.currenttags(c, s) } return '', task[2], task[3], task[4] end, mytasklist.buttons) This wo

  • Repair a Captivate corrupt file

    Hello I work with Captivate V5 I can't open my Captivate project. He told me that my file is damaged. I have no backup file. How can I do? HELP ME PLEASE.... Thanks

  • FM used to convert problem description to it_text ?

    Hi all, What is the FM or routine used to convert the problem description or notes we provide in WEBUI to it_text which is an importing parameter for ORDER_MAINTAIN FM? Thanks, Karthik

  • Cannot save changes when enabling Publishing Server

    I have Contribute 4 with Contribute Publishing Server 1.11. I'm able to setup normal Contribute sites fine and was able to setup one Publishing Server site. Now though, whenever I try to enable Publishing Server on a site, it enables alright but when

  • Searching for SAP certified project manager for project

    Please post a response if you know someone who has a BS or BA degree and has: General SAP Functional Knowledge and Experience 8 - 10 years of previous experience as an SAP Project Manager with SAP, an SAP Partner, or large companies doing SAP impleme