Unable to load external local content

I have Flash 8 Professional on Windows Vista 64-bit and I am
trying to load external SWF's into my main Flash SWF. The content
will load correctly in the trusted test movie environment but will
not load the local content in a published local sandbox mode that
runs inside of a browser. The odd thing is that the XML loader
actually loads the XML file sitting in the local directories but
for some reason it will not load the external SWF's. Anyone have an
idea why this might be happening?
I've pasted the code that will hopefully help in determining
the problem. The following is the traced print out of my debugging
info...
quote:
scorm.connect(): true
scorm.set('cmi.core.lesson_status', 'incomplete'): true
scorm.get('cmi.core.student_id'): User01
scorm.get('cmi.core.student_name'): Student, Joe
loading page 0
scorm.set('cmi.core.lesson_location', '0'): true
[Data:onLoad] Success
[Data:parseXML] Parsing XML...
[Preloader:loadFrame] Loading frame...
mcLoader.loadClip() succeeded
[Preloader:onLoadStart] _level0.content_mc.mcFrame0
[Preloader:onLoadError] Error Code:LoadNeverCompleted HTTP
Status:0

Since that error points to gallery fla, it may mean the problem is inside the gallery swf file.  What you should do is go into your Publish Setings and select the option to Permit Debugging.  THat will help by attaching the line number of the problemed code.  You might find it is of a line number greater than any you have in the file doing the oading which would probably make it more definitie that its the file you are loading.
Just in case you copied and pasted, the following line should have thrown up a syntax error due to missing a parenthesis...
loader.load(new URLRequest("gallery.swf");

Similar Messages

  • Unable to load database, locales [Arabic_SaudiArabia.ISO-8859-6@Default]

    When trying to load data into Essbase I get this error dialogue
    Object [65313270] is locked by user [admin@Native Directory]
    Unable to load database, locales [Arabic_SaudiArabia.ISO-8859-6@Default] and [English_UnitedStates.Latin1@Binary] are not compatible
    Object [65313270] unlocked by user [admin@Native Directory]
    Unexpected Essbase error 1019057
    Have checked essbase.properties files (all 10 of them!) and the 2 references that I could find both point to the default value of [English_UnitedStates.Latin1@Binary]
    So is the problem with the CSV file?

    Have you looked at the Load Rule (yes, I know, developed in Studio, but it generates Load Rules which I believe you can open in EAS)? Is the dimension that contains BON accounted for?
    Your second issue(s) seems to be that you have conflicting locales -- are you in SA? Could it be that Studio is installed with English as the language and EAS with Arabic (or vice versa)? Sorry, I have hardly any experience in languages other than English. Maybe one of the non-English language posters can chime in.
    I can't say whether that load buffer issue means anything at all or not -- it could be a red herring.
    Regards,
    Cameron Lackpour

  • Unable to view external webcam content.  I'm using IE11 with Windows 7 64 bit.  I've tried deactivating Activex control, tried different browsers etc, tweeked the tools for trusted sites etc, but am totally stuck. I know the cams are working as i can view

    Unable to view external webcam content.  I'm using IE11 with Windows 7 64 bit.  I've tried deactivating Activex control, tried different browsers etc, tweeked the tools for trusted sites etc, but am totally stuck. I know the cams are working as i can view them on mobile phone via puffin browser.  I can play Youtube videos etc just fine. So why not the webcam?

    First, confirm that ActiveX Filtering is configured to allow Flash content:
    https://forums.adobe.com/thread/867968
    Internet Explorer 11 introduces a number of changes both to how the browser identifies itself to remote web servers, and to how it processes JavaScript intended to target behaviors specific to Internet Explorer. Unfortunately, this means that content on some sites will be broken until the content provider changes their site to conform to the new development approach required by modern versions of IE.
    You can try to work around these issues by using Compatibility View:
    http://windows.microsoft.com/en-us/internet-explorer/use-compatibility-view#ie=ie-11
    If that is too inconvenient, using Google Chrome may be a preferable alternative.

  • Unable to load external swf which has runtime sharing with another swf.

    Hi,
    I am getting issues on loading external swf say "importer.swf" file into another swf file say "loader.swf" for second time like
    ReferenceError: Error #1065: Variable testSymbol is not defined. VerifyError: Error #1014: Class testClass could not be found.
    at global$init()
    In the external swf "importer.swf", i am trying to import the symbol "testSymbol" from another swf file say "exporter.swf", which exports through runtime sharing option for the symbols.
    I am having some buttons in loader.swf file and on each button click i am loading different swf files into the loader.swf after unloading the previous one.
    I am able to load and unload different swf files but unable to load the importer.swf file which is sharing symbols from external swf and that too for the second time i.e., when i click the button twice.
    When trying to debug with flash debugger, all the other swf files are being unloaded before loading of another swf but the swf which is sharing symbols/classes with another swf is not getting unloaded.
    Output when i am trying to load two files example and importer files into loader.swf file on two different button clicks. On first button click example.swf is loaded. On second button click , example.swf is unloaded and importer.swf is loaded which is successful. On first button click again importer.swf is unloaded and example.swf is loaded. On second button click again, example.swf is unloaded and importer.swf is loaded, here i am getting issues shown above.
    Attemping to launch and connect to Player using URL D:\runtime issue\loader.swf
    [SWF] D:\runtime issue\ loader.swf - 8181 bytes after decompression
    [SWF] D:\runtime issue\example.swf - 441708 bytes after decompression
    [UnloadSWF] D:\runtime issue\example.swf
    [SWF] D:\runtime issue\importer.swf - 1920 bytes after decompression
    [SWF] D:\runtime issue\importer.swf - 441708 bytes after decompression
    [SWF] D:\runtime issue\ example.swf - 441708 bytes after decompression
    [UnloadSWF] D:\runtime issue\ example.swf
    [SWF] D:\runtime issue\importer.swf - 1920 bytes after decompression
    ReferenceError: Error #1065: Variable xxxxxx is not defined.
    Debug session terminated.
    Code i am using
    b1.addEventListener(MouseEvent.CLICK, b1Clicked);
    b2.addEventListener(MouseEvent.CLICK, b2Clicked);
    var ldr:Loader;
    function b2Clicked(e:MouseEvent)
        if(ldr != null)
            ldr.unloadAndStop(true);
        ldr = new Loader();
        ldr.load(new URLRequest("importer.swf"));
        addChild(ldr);
    function b1Clicked(e:MouseEvent)
        if(ldr != null)
            ldr.unloadAndStop(true);
        ldr = new Loader();
        ldr.load(new URLRequest("example.swf"));
        addChild(ldr);
    If i try to open the swf using IE, i am not getting any issues at all. But i need to open this loader.swf in a air application. Also when i use loaderContext for the loader instance i am able to get rid of this issue but i cant use it in my application.
    So, please help me in resolving this issue.
    Thanks

    I got my answer. I had to append the photo url to the 'movie' value of the javascript embed method. Like this:
    <script language="JavaScript" type="text/javascript">
       AC_FL_RunContent(
          'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
          'width', '550',
          'height', '400',
          'src', 'lesson2',
          'quality', 'high',
          'pluginspage', 'http://www.adobe.com/go/getflashplayer',
          'align', 'middle',
          'play', 'true',
          'loop', 'true',
          'scale', 'showall',
          'wmode', 'window',
          'devicefont', 'false',
          'id', 'lesson2',
          'bgcolor', '#ffffff',
          'name', 'lesson2',
          'menu', 'true',
          'allowFullScreen', 'false',
          'allowScriptAccess','always',
          'movie', 'lesson2?photo=http://www.flash-mx.com/images/image1.jpg',
          'salign', ''
          ); //end AC code
    </script>
    Thanks,
    srb.

  • Problem in loading external HTML content using SpryHTMLDataSet in Firefox

    I have a very simple placement of the contents of an HTML DIV within a subsidiary HTML file (statespecificassets.html) into a main HTML document, using SpryHTMLDataSet in Dreamweaver CS4.
    The relevant bits of code in the main HTML doc:
    In the header:
    <script src="../../SpryAssets/SpryData.js" type="text/javascript"></script>
    <script src="../../SpryAssets/SpryHTMLDataSet.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var ds1 = new Spry.Data.HTMLDataSet("../../statespecificassets.html", "NN_Data_s3a");
    ds1.setColumnType("column0", "html");
    //-->
    </script>
    And at the point of inclusion of the external DIV:
    <div spry:region="ds1" class="StackedContainers">
             <div spry:repeat="ds1" class="RowContainer">
                <div class="RowColumn" style="background-color: #D7DF21;">{column0}</div>
             </div>
          </div>
    The problem: This works fine in Safari 4.0 on a Mac, and IE7 on a PC. It doesn't work in Firefox 3.0.11 (latest version) on Mac or PC: In firefox the reference content simply doesn't load. The only way I can get it to work in Firefox is if I place the main HTML doc and its subsidiary reference HTML file in exactly the same directory/ on the same level, and adjust the script reference accordingly ( var ds1 = new Spry.Data.HTMLDataSet("statespecificassets.html", "NN_Data_s3a"); ) ...But I can't/ don't want to alter my directory structure, because multiple files in other directories will need to use the reference file.
    Is there some other way of making it all-browser compatible -- possibly by adjusting a relevant bit of code in SpryHTMLDataSet.js in the Spry Assets? .. I've attached the SpryHTMLDataSet.js file for reference.
    Thank you to any kind soul who might have the nous to solve this.

    This is the latest version of SpryHTMLDataSet: http://labs.adobe.com/technologies/spry/preview/SpryHTMLDataSet.js
    Check out if works for, if not, please provide us with a online url.

  • Unable to load (packaged) locales on iOS

    Hi, for last couple of days I am struggling with loading locales (of course it works on Android and in fast packaging on iOS :-) ).
    Its flex project with AIR SDK 3.7 (without ASC 2.0) and Flex SDK 4.6, FB 4.7. Here's my test app:
         loader = new Loader();
         var url:URLRequest = new URLRequest("assets/locales/en_US.swf");
         var loaderContext:LoaderContext = new LoaderContext(false, ApplicationDomain.currentDomain, null);
         loader.load(url, loaderContext);
    after its successfully loaded I use ModuleManager..
         modInfo = ModuleManager.getModule("assets/locales/en_US.swf");
         modInfo.load(ApplicationDomain.currentDomain, null, loader.contentLoaderInfo.bytes, FlexGlobals.topLevelApplication.moduleFactory);
    Result is that it stucks with loading the data to the ModuleManager with the error:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at mx.core::FlexModuleFactory/getDefinitionByName()
        at mx.core::FlexModuleFactory/docFrameHandler()
        at mx.core::FlexModuleFactory/docFrameListener()
        at mx.core::FlexModuleFactory/docFrameListener()
    I've also tried ResourceManager.loadResourceModule but it throws the same error (I guess it works the same way)
    The en_US.swf file is generated with this script:
         <exec dir="${APP_ROOT}" executable="C:\Program Files\Adobe\Adobe Flash Builder 4.7 (64 Bit)\sdks\4.6.0\bin\mxmlc.exe" failonerror="true">
                <arg line="-locale=en_US" />
                <arg line="-static-link-runtime-shared-libraries=true -verify-digests=false" />
                <arg line="-source-path='${APP_ROOT}/resources/locale/{locale}'" />
                <arg line="-include-resource-bundles=rpxLocale"/>
                <arg line="-swf-version=20" />
                <arg line="-target-player=11.7" />
                <arg line="-output='${outdir}/assets/locales/en_US.swf'" />           
         </exec>
    A note: strange is that loading styles with StyleManager works for me:
         styleManager.loadStyleDeclarations2("assets/css/style.swf", true, ApplicationDomain.currentDomain);
    Thank you for any thoughts!
    Peter

    Hi,
    Could you please open a new bug report on this over at bugbase.adobe.com? When adding the bug, please include reproducible sample application so we can quickly test this out internally. If you would like to keep this private, feel free to email the attachment at nimitja@adobedotcom.
    Once added, please post back with the bug URL/number so that others affected can add their votes and comments.
    Regards,
    Nimit

  • Unable to load external image into iOS app with AS3

    Just trying out Flash Builder for iOS app development and have run into a problem right off the bat with loading an external image into an iOS app.  The actionscript is very simple (this was basically my Hello World attempt), and I'm hoping someone here can explain where I'm going wrong.  This code works in Flash Pro, and works when launched on the desktop from Flash Builder, but doesn't work on my iOS devices.
    Here's the code:
                                  var container:MovieClip = new MovieClip();
                                  addChild(container);
                                  var imageLoader:Loader = new Loader();
           imageLoader.load(new URLRequest("http://www.google.ca/intl/en_ALL/images/logos/images_logo_lg.gif"));
                                  imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, startListener);
      function startListener (e:Event):void{
                                                 container.addChild(imageLoader);
    Any thoughts on why this won't work would be greatly appreciated!

    I had the same issue, and modified my domain policy file as specified  in http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security.html#_Configuring_URL_M eta-Policies but the loader is not loading the file. Any ideas on how to fix this issue?

  • Loading external .swf content using a button in CS5 AS3

    My project has about 400 independent files. It was originally created in AS2 using the following script.
    on (release){
    loadMovie("A_002.swf", _root);
    This same script is used every time I need to load the following .swf movie.
    I would like to use a similar (equivalent) script using AS3. (Please note that the objective is not to load dynamic content into a particular file as when creating a "Gallery". My objective is for the new loaded movie to applear in its own screen. At the same time the file on scree shall unload completely or dissapear.
    I have been trying to achieve the above result for a long time with no luck. I mean a long time a couple of months. PLEASE HELP !!!!!!

    I have tried the following:
    back_btn.addEventListener(MouseEvent.CLICK, mouseClick);
    function mouseClick(event:MouseEvent): void {
    varLoader:Loader = new Loader();
    loader.load(newURLRequest("file_to_be_loaded.swf"));
    addChild(loader);
    This script loads the file. However, it loads on top of the loader file. My goal is that once the called file loads up, the previous file will leave the screen leaving only the loaded file.
    NOTE: The objective is not to build a gallery. This optionn is used instead ob having 400 different scenes. Each .swf shall be loaded independently of all other .swf/s.
    Thanks for your help.

  • Unable to load external images in flash

    Hi,
    I am a beginner in flash programming. I am trying to write a small flash app which will load and display images provided as a query.
    My flash app works fine when I provide the image path directly in the browser address bar, but it is not working when I do the same using html.
    Here is the direct link to the flash app:http://srbose.freelinuxhost.co.cc/test/lesson2.swf?photo=http://www.flash-mx.com/images/im age1.jpg
    Here is the link to the html with which I am trying to invoke the app.
    http://srbose.freelinuxhost.co.cc/test/lesson2.html
    The Html code is attached with the post.
    I know my app is getting invoked and it appears to work fine when I hardcode the image url into the flash app. But the query method just does not seem to be working!!
    This is hosted on a linux site supporting php.
    I have really hit a stone wall here as far as debugging this goes. Any help will be really welcome. Thanks in advance, srb.

    I got my answer. I had to append the photo url to the 'movie' value of the javascript embed method. Like this:
    <script language="JavaScript" type="text/javascript">
       AC_FL_RunContent(
          'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
          'width', '550',
          'height', '400',
          'src', 'lesson2',
          'quality', 'high',
          'pluginspage', 'http://www.adobe.com/go/getflashplayer',
          'align', 'middle',
          'play', 'true',
          'loop', 'true',
          'scale', 'showall',
          'wmode', 'window',
          'devicefont', 'false',
          'id', 'lesson2',
          'bgcolor', '#ffffff',
          'name', 'lesson2',
          'menu', 'true',
          'allowFullScreen', 'false',
          'allowScriptAccess','always',
          'movie', 'lesson2?photo=http://www.flash-mx.com/images/image1.jpg',
          'salign', ''
          ); //end AC code
    </script>
    Thanks,
    srb.

  • HtmlLoader and local content problems

    I'm having trouble with the HtmlLoader class and loading/displaying local content that contains flash files.
    As example, I load a local page with a flash video player and no video, but it's ffine if the file isn't local. Or a page with a flash google map, same thing, fine from web, nothing from local...
    Is there some method to allow this stuff?
    Thanks in advance!
    -Zeke

    Was the SWF your HTMLLoader is loading published with the "Access network only" Local Playback Security option:
    General discussion with focus on Flash Professional:
    http://www.adobe.com/devnet/flash/articles/local_network_playback.html
    Ways to set this option when using Flex/FlashBuilder:
    http://blogs.adobe.com/flexdoc/2008/06/the_security_sandbox_in_flex_b.html
    Note: Use the custom compiler option, use-network=false, if you want to override the Flex Builder default compiler option. This would change the settings to local-with-filesystem
    Chris Thilgen
    AIR Engineering

  • Legacy prog installs QT2.12 & fails on Vista; prog with QT7: unable to load

    A program installs QT 2.12 on Vista, but fails with the message
    Quicktime of Windows has stopped working.
    If I install QT7, the .MOV files can be played individually, but the program states:
    Unable to load external movie driver for Intro1st.mov.
    Possibly the driver is missing or there is no enough memory.
    There is a Gb of free memory for Vista. The software is from 1999.
    What can I do to enable this to work either with
    (a) QT7; or
    (b) QT2.12 with QT7 installed too; or
    (c) QT2.12 without QT7 installed.
    I am willing to give a USD $50 voucher to Amazon for the first respondent with a solution to option (a), $30 for option (b) and $10 for option (c). Only one gift in total is available. I will give people time to arrive at the best solution, namely option (a), before deciding on receives the gift.
    Thank you.

    You can't install QuickTime version 2 on your machine. I can't install the same >Mac version on my OS.
    Are your files found on a CD?
    QT2.12 is provided on the CD in the form of a setup executable file.
    Is the software running from a CD?
    I have copied all files to the notebook for ease-of-use, but usually it would run from the CD.
    After posting my message, I checked with my desktop (running XP SP2), and observed that I got the main software runnning with QT5 installed. Tried this on Vista, but the same error message occurs as for QT7.
    Does that CD try to do the QuickTime version 2 install?
    It tries to do it itself with the setup program for the application.
    Also, I have tried to do it myself.
    You could probably navigate through the CD to find the QuickTime files on it and >open them directly or drag them to your desktop to duplicate them.
    I will try copying them from another computer, but wouldn't it be necessary to set up the registry or something to let Vista know of its existence?

  • Error "Unable to load word breaker for locale 0. Error code 8007007e." with search service application.

    I recreate the Search service application and the default Content source stayning in the 'Recovering' status.
    The log give multiple error 'Unable to load word breaker for locale 0. Error code 8007007e.'
    The default language is English and the reference in registry for word breaker dll is naturallanguage1.dll but I found only the naturallanguage6.dll.

    Hi,
    For your issue, check your current language settings and ensure that search supports the current language.
    On the SharePoint Server open Registry Editor (Start -> type “Regedit” and hit enter). 
    Point to : HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\OfficeServer\14.0\Search\Setup\ContentIndexCommon\LanguageResources\Default\English
    Under the registry key for each of the languages there is a value called StemmerDLLPath and WBDLLPathOverride
    Updated the registry entry with NATURA~1.dll to NATURA~2.dll
    Point to Start -> Administrative Tools -> Services, right click on SharePoint Server Search 14 and click on Restart.
    Performed a Full Crawl and wait for the Full Crawl to complete and try searching again.
    For more detailed information, refer to the following blogs:
    http://blog.ithinksharepoint.com/2008/04/20/a-word-breaker-was-not-found-for-the-given-language-error-when-crawling-content/
    http://www.sharepoint2013.me/Blog/Post/175/Word-breakers-in-SharePoint-2013
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • Error when crawling "Unable to load stemmer for locale 1033. Error code 80040111."

    In the Sharepoint Search Service I get tose error "MAPI: Logon failed. " in the log and "Unable to load stemmer for locale 1033. Error code 80040111." in ULS.
    The error code 80040111 is well a relation with Mapi but what about stemmer???

    Hi,
    For your issue, check your current language settings and ensure that search supports the current language.
    On the SharePoint Server open Registry Editor (Start -> type “Regedit” and hit enter). 
    Point to : HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\OfficeServer\14.0\Search\Setup\ContentIndexCommon\LanguageResources\Default\English
    Under the registry key for each of the languages there is a value called StemmerDLLPath and WBDLLPathOverride
    Updated the registry entry with NATURA~1.dll to NATURA~2.dll
    Point to Start -> Administrative Tools -> Services, right click on SharePoint Server Search 14 and click on Restart.
    Performed a Full Crawl and wait for the Full Crawl to complete and try searching again.
    For more detailed information, refer to the following blogs:
    http://blog.ithinksharepoint.com/2008/04/20/a-word-breaker-was-not-found-for-the-given-language-error-when-crawling-content/
    http://www.sharepoint2013.me/Blog/Post/175/Word-breakers-in-SharePoint-2013
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • Trying to access Netflixs and pick movie but I get "Unable to load this content at this time"

    trying to access Netflixs and pick movie but I get "Unable to load this content at this time"

    This earlier posting worked for me:
    "This worked for me without having to reset my Apple TV universe: Press Menu and Down Arrow keys simultaneously for 6 seconds until the light flashes rapidly."
    Thank you!

  • Flash cs4 mac - Error opening URL '/:Users:someting.swf' - Not a "loading external content" problem

    Hello.
    I am having a weird problem when trying to test a movie or publish preview -> flash on mac with Leopard os.
    The result is a blank movie with the usuall "movie not loaded" if u right click on it and the output returns the "Error opening URL 'the path of the swf here'.
    This has nothing to do with loading external files or something like that. It happens even in blank movies and it gives the same error if I try to open a swf from flash ide.
    I can publish the project or export the movie with no problem at all.
    I can preview the movie in html. I can run all the swf files in my hard disk, network, usb stick, dvd etc., but when I try to open any of these files from flash ide I got that stupid error.
    Its not something that stops me from working in flash ide but its slow to export movie any time I want to test it.
    Things that I've tried so far but nothing worked:
    Update the flash cs4 to the latest version
    Update the flash players
    Restored the release flash player as default player (I am using as default the debug player)
    Cleared the preferences
    Move the flash cs4 folder to another location in hd
    Saved the fla document first before testing the movie (in different places with or without spaces in document name or folder)
    Give read & write permissions for everyone for flash.app, players and for fla files when saved first before test movie
    Unistall and install the application 3-4 times.
    Test every as version just in case.
    Also I've checked the folders when testing movie and I can see that it creates an swf file, which I can run it outside flash ide (the one that the flash ide player cannot load) with no problem.
    The mac os has the default set up as it came. Nothing chnaged in permissions or security settings.
    Thanx in advance.

    In this particular example I am using this code to start the
    xml file load:
    // now load the XML file that contains the content strings
    var sXMLFile:String = "xml/home.xml";
    var xmlContent:XML = new XML();
    xmlContent.ignoreWhite = true;
    xmlContent.onLoad = onXMLLoadComplete;
    xmlContent.load( sXMLFile );
    But I don’t think the code is the problem here . This
    happens on every file I load when I am using a relative path to the
    content, regardless of how I load the content (XML object,
    loadMovie, MovieClipLoader, etc…) and the same code executes
    perfectly on every other machine in the office(Mac and PC).
    I’m more concerned with the semi-colons and .swf filename
    that Flash is putting into my relative path on the error message.
    Is that normal?

Maybe you are looking for

  • GRC 10.0 Access Request Creation- Data Source of User Details

    Hi Experts, I was doing GRC 10.0 Configuration and found a query which I am not able to resolve. While creation of any kind of Access Request in GRC through NWBC> Acces Management Tab>Access Request>Access Request Creation. In the user details sectio

  • Green Screen with Quicktime

    Hi, Im gettin a green screen when im trying to watch video...I still have the sound but after couple sec green screen appear...Anyone know how to fix this problem? Thank you

  • Cannot connect to Enterprise Manager. Displays Enterprise Manager(null)

    Hi All: I have downloaded and installed VMware, Oracle 10g RAC and Red Hat Enterprise Linux 3 using Disk1 and Disk2. All seemed fine. However I cannot log on to the Enterprise Manager nor start the listener nor any instance of the database I got the

  • Adobe apps fail to launch after copying via ARD 3

    For several years we have beeen updating our Adobe apps by updating our master image and copying (via ARD v.1, then v.2, now v. 3) the applications and the associated Application Support files to the target machines. (300 Macs running Tiger) Since up

  • How do I download dvd's to my Mac Mini from my dvd player?

    I am wanting to download dvd's to my mac mini from my dvd player. Can anyone tell me how to do this? Also, after I get them on my mac mini I want to put them on my IPAD. Any suggestions would be greatly appreciated! I am not the most tech savvy perso