Importing media to use in Actionscript 3

Hello Everybody,
i try to figure out how to access the symbols in the library
directly with as3 without having them put on the canvas first. And
i want to know how i access external sources graphics, videos
without putting them in the library at all.
I tried it with the display class but with little succses, it
seams the as3 dokumentation is a bit short on this matter.
So please name some sources where i can read about this.
Greets
Jens

Each camera model's raw files must be supported individually, even if the sensor is the same because the electronics still might be doing something different to the data after it is read off the sensor or the lens system might be doing something different to the colors and hence the need for individual support, and at least because the camera has a different ID that needs to be recognized.
An Adobe Camera Raw engineer has said that while much of the camera support is in the camera profiles, either Adobe Standard or for some models, Camera Standard, Camera Faithful, etc, there are almost always little tweaks in the conversion that are actually part of the computer programming in the camera raw plug-in, itself, so it is a combination of a particular minimum version of the camera raw plug-in plus the camera profile file(s) that need to recognize and handle things for the camera.   The only thing you can copy from 8.3 to 8.4 is the external camera profile file(s) not the internal camera raw plug-in coding.
Obviously you can use the DNG Converter to create DNGs from the native camera raw files that can then be understood by older camera raw plug-ins, since that newer DNG Converter can embed all the extra parameters into the DNG files that the older ACR plug-in needs to do the raw conversion, but this is an extra step in the workflow so maybe you don't want to do it.
It seems like your choices are to upgrade your OS to Mavericks or use the DNG Converter to make DNGs of the Sony a6000 raw files so your current ACR 8.3 plug-in can understand and process these DNGs.

Similar Messages

  • Importing media on iMac using iPhoto help

    I  trying to import media using iPhon on my iMac and it says the file is unsupported. So
    when end I try to play the movie , QuickTime converts this before playing clip and creates new file which then I can oort the converted file into premiere pro. Why is this have to be converted to a new file(never had to do this when using iMovie)? And is there any quick way to do all files at once instead of every one individual?

    Holding alt key does bring up the choices, but I never see the bootable USB or external DVD drive as options... I only see the 2 partitions - the main iMac and the partition created by Bootcamp to install windows.

  • PLEASE HELP! Trouble importing media used in Premiere CS6 into CC

    After infinitely trouble with stability in OSX Premiere CS6, I´ve tried to open my project in CC. I get a dialogue box when importing media with heading "Cannot Link Media" and saying "The selcted file cannot be linked because it has 2 audio channel(s) and the clip was created with 1 audio channel(s). Now, these clips had no issues in CS6, but after installing CC, I cannot open anything in CS6 and CC won´t, as stated, accept my clips. Now, I tried to uninstall CS6 to late reinstall it. But Adobe seems to have removed the installer, anyway I can´t find it. SERIOUSLY!. This is EXTREMELY frustrating. PLEASE HELP!

    I don't have any sure-fire solutions, but I do have a suggestion: rather than opening the whole CS6 project and going through the whole conversion process, try importing just the sequence(s) from the CS6 project into a new CC project. There are a couple of ways to do so: 1) File>Import, select "Import Selected Sequences," then pick the desired ones, or 2) drill down to the project in Media Browser, which will show you it's contents, then drag and drop the sequence(s) into the Project panel.
    I found a few bug reports in the same neighborhood. They were all fixed in the release you're using. But each was specific to a particular file type, so you may have hit on a case that we didn't exercise. It could really help us nail this down if you provided one small clip that CC is balking at and, ideally, a CS6 project containing that clip.

  • "Embedding OLE objects is unsupported. Use File- Import to import media." Error dialog while concurrently Flash CC executions

    Hi,
    we are using Flash CC an a dedicated windows server with two userprofiles. Each user has its own licence.
    If we run a jsfl script singly, this script runs fine.
    If we run the same jsfl script on both users we get the error:
    "Embedding OLE objects is unsupported. Use File->Import to import media."
    I read the article addItem() -> "Embedding OLE objects is unsupported" , but it could not the problem, because the script runs fine singly.
    Could it be possible that both users uses the same Flash CC Clipboard ore are there any other shared modules etc?
    Best regards
    Alex

    can you write how to use ?
    i write
    "import the flash.display.MovieClip; "
    still error ahhh
    i try to change extends MovieClip instead Spirt
    and not error stop(); and gotoAndStop Already
    but
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at MemoryGame/nextTurn()
              at MemoryGame/clickStart()
    i got thissssssss TT
    import flash.display.Sprite;
    import flash.events.*;
    import flash.text.*;
    import flash.utils.Timer;
    import flash.media.Sound;
    import flash.media.SoundChannel;
    import flash.net.URLRequest;
    import flash.display.MovieClip;
    that i import

  • HT3775 how to extend QuickTime to import or play other popular and specialized media formats using codec components

    how to extend QuickTime to import or play other popular and specialized media formats using codec components for my MacBook Air?

    plamenok1 wrote:
    how to extend QuickTime to import or play other popular and specialized media formats using codec components for my MacBook Air?
    You can install Perian, 
    http://www.perian.org/
    although this will be the last version, and Flip4Mac.
    http://download.cnet.com/Flip4Mac-WMV-Player/3000-13632_4-87679.html
    Otherwise you may have to look at a different and more extensive player such as VLC
    http://www.videolan.org/vlc/index.html
    or MPEGStremclip
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html
    Good Luck
    Pete

  • Import and/or export for actionscript without extention?

    I have a project in which I need to import several hundered png images.
    When I import them into the library, then select all the images, then view the properties, I Check the export for action script and the export in frame 1.
    Now, all my images have class names that I can access though my code, however, it included the file extensions in the class names, thus making invalid class names.
    Is there any way I can import and/or set class names so they do not include the file extensions without having to do it manually for EVERY file?

    My actual project has something like 9200 images in it.
    if  my main project, let's call it "main.fla", was to contain every one of  those images, every time I tried to run or debug it, it would take  FOREVER to compile... as a work around that I discovered in a previous  project was to put all my graphics and media into an swc file. (Let's  call it MyLibrary.swc)
    While I was trying to get the  swc working, I discovered that while my media in the swc was indeed  setup to be exported for actionscript with unquie classes and  everything, when I compiled and built my project, I could not get any of  those media elements using the getDefinitionByName function.
    After alot of reading and trail and error I found that the only way to get it to work was to have someplace in my code, an actual reference to the objects that I was trying to get with getDefinitionByName. It turned out, that without instantiating the object in the code, the compiler was omitting it.
    Now, but instantiate, I mean doing this:
    var bm:BitmapData = new MyImage();
    Where MyImage.png is in my swc and has a class defined as "MyImage"
    Once I do that, then I can do this
    var classRef:Class = Class(  getDefinitionByName("MyImage")  );
    But without that line above SOMEWHERE in my code (even if it's not actually executed), the getDefinitionByName returns an error saying it can't find the class.
    Now, here's the problem.
    When I import all my images into my swc library they get named with the file extention... "MyImage.png" and when I select all the images that Imported and batch set the export for actionscript, they get automatically assigned a class name equal to their library name, so the class name is "MyImage.png"
    so if I wanted to use getDefinitionByName to access the class, I would need to instantiate it in my code by doing this:
    var bm:BitmapData = new MyImage.png();
    BUT, that is erronous as the period causes an error and the adobe docs says right in it that class names can't use periods or any other non-alphanumeric character.
    So while the getDefinitionByName function DOES actually work with classes with periods in them, because my media is external of the main.fla, I can't load it unless it's instantiated first, which leaves me right back where I was.... having to to manually rename over 9000 classes manually one at a time.
    I did some searching and found the "Flash Library Renamer" extension, but it requires me changing all my class names to be sequenial, which the vast majority is not.
    Is there a way that I can import the files into the library and have it omit the file extension?
    if not, is there a way that I can set the class names in a batch and not have it use the file extentions?
    if not, is there an Flash Extention or plug in that will allow batch renaming using regular expression or wildcards?

  • I can't upload or import videos from my iphoto library, into final cut pro x.  When i click, IMPORT MEDIA in FCP, It lists iPhoto Library as GRAY, and will not let me access it.  I need the videos out of there.  I have tried every way I can think of.

    Like the title says...
    I can't upload or import videos from my iphoto library, into final cut pro x.  When i click, IMPORT MEDIA in FCP, It lists 'iPhoto Library' as GRAY, and will not let me select it.  I need the videos out of there.  I have tried every way I can think of.
    I have also tried from the iphoto side, to export the videos or share them to final cut.  I have had no luck.
    I have tried to drag and drop indidual video clips from iphoto to fcp, and the programs simply do not respond to each other
    I can see in the OLDER version of final cut pro x, where it has IMPORT FILES as an option, it was possible.  I see this on forums and youtube videos of the older versions.
    However, the newer version that i have, does not have IMPORT 'FILES' as an option, it is simply all lumped together as IMPORT 'MEDIA'
    Thank You for the Help

    at the end, you say "import preferences", which program are you describing?
    So im safer using footage that is remotely being pulled from iphoto...
    vs
    using footage that is imported into FCP from imovie?
    Is there anything i can do in fcp to make this footage more reliable or safer or more stable as i pull remotely from iphoto?
    All the footage, and all the libraries to all programs, or on a new pegasus 12tb raid 5 setup fyi.

  • How to edit bitmap which is imported in flash using xml and save the edited bitmap back to xml in flash.

    hi all
    It would be appreciated if any one let me know how to edit
    bitmap which is imported in flash using xml and save the edited
    bitmap back to xml in flash.
    Is it posible to save the bitmap data in flash?
    thanks in advance

    Yes you can... but like I said before you need to upload the
    data from the changes you make to a server.
    In terms of the solution... its unlikely that you'll find one
    specifically for your needs. You will have to learn whatever you
    don't know how already and maybe adapt some existing examples to
    your needs.
    To change the visual state of a movie clip... you just do all
    the regular things that you want to do to it using flash... scale,
    rotation, drawing API , textfields etc in actionscript. If you
    don't know how to how to do that stuff, then you need to learn that
    first. That's basic actionscript.
    You can capture the visual state of a movieclip using the
    BitmapData class. That includes a loaded jpeg. You can also
    manipulate bimatp data using the same class. You should read up on
    that if you don't know how to use it or check out the examples
    below for uploading info.
    For uploading to the server:
    Here's an as2 solution that took 15 secs to find using
    google:
    http://www.quasimondo.com/archives/000645.php
    If you're using as3, google search for "jpeg encoder as3" and
    look through that info. There are also historical answers in the
    forums here related to this type of thing that might help as
    well.

  • Since 10.0.9 FCPX crashes at "Import Media"

    Hi,
    it never happend before, the problem has shown up after i updated fcpx.
    I tried to import my footage, it´s from a panasonic hmc 151. 1080/50i, AVCHD.
    I never had a problem before. It was always the some work around.
    Open FCPX, insert SD-Card into the build in sd card reader, "import media", choose the filmes, set in and out point, import. finish.
    After the update it starts that the footage will not be shown in the "import media" window. Ok, no problem I copied everything to my hard drive. Opened the "import media" window again. Nice, footage shows up. Now the problem, i can only see: clip1, clip 2 etc.
    With the click on a file to preview or something final cut crashes within seconds.
    Every time I try, what happend? Also with the Canon 550d/T2i Rebel footage.
    No preview, straight crash.
    I also saved the fail protocol, if someone needs it to help.
    thank you for your help, philipp

    Try trashing preferences; I regularly use Preference Manager from Digital Rebellion as my first remedy when FCP starts acting up.
    What happens if you connect via USB cable? Are both Archive and Import available and do either work?
    Russ

  • Can't import Media into FCP X

    In the last week or two when I try to import media into FCP X I end up with a very dark and locked import screen.  The only way I can recover is to force quit FCP X.  It doesn't always happen but it is getting more and more frequent.
    I have not updated to Marverik and I'm running the latest version of FCP X on the same iMac I have used since installation.
    Any suggestions beacuse it really is starting to beome very, very frustrating.
    Thanks

    They system is hanging up, waiting on some command to finish, which is not able to.  So let's look at ways to fix this.  Becasue you never want to do an upgrade to fix problems.  Only upgrade a proerly working system.  Otherwise, you may just be hauling old problems into a new envoronment, and making things worse.  I've seen it a lot over the years.
    First, verify that all of your drives have at least 15% of their total capacity as free space.  Not enough free space on any dirve can cause similar odd behaviors.
    Second, you need to do some housee cleaning.  Start by downloading and running the free application "Preference Manager" from Digital Rebellion (dot com).  Use it to trash the FCPX preference files.  It is easy and safe to you.  None of your media or projects will be touched.  After that, run Disk Utility to "Repair" all of your drives (ignore "Verify", total waste of time).
    If none of that helps, I'd recommand you download the free application "FCS Remover" from Digital Rebellion.  Use it to uninstall FCPX.  Some folks say to just move the app from the Applications folder to the Trash.  That leaves a bunch of other files hanging around that could be bad.  Use this app.  Once you've uninstalled FCPX, launch the App Store, go to the Purchases section, and FCPX will have an "Install" button.  Reinstall a fresh copy, see if that helps.

  • Can't Import Sony AVCHD Using Log and Transfer

    HI
    I have been importing AVCHD footage from all kinds of cameras, mainly Panasonics for over 4 years now using Final Cut Pro 7.  I just got a new Sony NEX-EA50 but when I try to import the footage using Log and Transfer, it does not show up.  When I try to drop the card folder into the window I get the ""PRIVATE" contains unsupported media or has an invalid directory structure. Please choose a folder whose directory structure matches supported media." message.
      The only way I can import the footage is using Toast, but that is a pain in the *** because it is a hassle to rename and scan the clips before I import. 
    Does anybody know whats going on?  Did Sony purposely change their file directory system so it couldn't be read by FCP? 
    Thanks in advance.

    Hi,
        What framerate did you shoot ?
    Log and Transfer will not recognise non standard frame rates such as 50 fps or 60fps. Toast, Clipwrap etc is an option but there is another. If you have the Panasonic AVCCAM importer Quicktime plug in, it will allow you to convert to Pro Res through Mpeg Streamclip or Compressor.
    DM
    Hang on, are you pointing log and transfer at the ROOT folder and not the folders inside.

  • FCPX has suddenly started crashing when trying to import media

    I updated FCPX to 10.0.8 a couple of weeks ago and everything has been fine until today (I'm fully updated with Mountain Lion as well) .  Now every time I try to import media, FCPX crashes. This occurs right after I hit the "Import Selected" button -- and occurs regardless of type of media, where I'm importing it from, or how many clips.  I get a very long error message -- I've attached just the first part of it (through Thread 0) below.  The entire error message runs through Thread 37.
    The only thing I did right before this happoened was to delete some old unused applications that were not even on the system HD (they were on a different internal HD - drive A).  The applications included very old versions of Final Cut and iMovie that had not been opened in a couple of years.  After I did this, FCPX suddenly started to recognize another internal HD (drive C) as a camera for the first time, and tried to import a bunch of old home movies, which it has never done before.  And ever since then it started crashing when trying to import new media -- even after I "ejected" drive C. 
    Any ideas?  I'm at a total loss and in the middle of a big project for a client, and could really use some help.  Thanks!
    Process:         Final Cut Pro [326]
    Path:            /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    Identifier:      com.apple.FinalCut
    Version:         10.0.8 (221398)
    Build Info:      ProEditor-22139008018000000~1
    App Item ID:     424389933
    App External ID: 14685451
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [152]
    User ID:         502
    Date/Time:       2013-03-31 13:00:19.713 -0400
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          14013 sec
    Crashes Since Last Report:           9
    Per-App Interval Since Last Report:  12180 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      11BDDCCB-5BCF-05B8-C04A-9A39067B1572
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Application Specific Information:
    objc[326]: objc_removeExceptionHandler() called with unknown alt handler; this is probably a bug in multithreaded AppKit use. Set environment variable OBJC_DEBUG_ALT_HANDLERS=YES or break in objc_alt_handler_error() to debug.
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff8d168814 objc_alt_handler_error() + 0
    1   libobjc.A.dylib                         0x00007fff8d1686a0 alt_handler_error(unsigned long) + 52
    2   libobjc.A.dylib                         0x00007fff8d162f35 objc_removeExceptionHandler + 92
    3   com.apple.CoreFoundation                0x00007fff893ebb49 _CFDoExceptionOperation + 89
    4   com.apple.AppKit                        0x00007fff86e2bbcf -[NSApplication endModalSession:] + 24
    5   com.apple.prokit                        0x00000001003283c3 -[NSProApplication endModalSession:] + 45
    6   com.apple.FinalCut                      0x0000000100033870 -[PEAppController windowWillClose:] + 416
    7   com.apple.CoreFoundation                0x00007fff893aceda _CFXNotificationPost + 2554
    8   com.apple.Foundation                    0x00007fff8575ae26 -[NSNotificationCenter postNotificationName:object:userInfo:] + 64
    9   com.apple.AppKit                        0x00007fff870c49e0 __18-[NSWindow _close]_block_invoke_0 + 260
    10  com.apple.AppKit                        0x00007fff870c48b5 -[NSWindow _close] + 364
    11  com.apple.FinalCut                      0x0000000100073be7 -[PEImportWindow timer] + 439
    12  com.apple.Foundation                    0x00007fff85785af3 __NSFireTimer + 96
    13  com.apple.CoreFoundation                0x00007fff893b7804 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    14  com.apple.CoreFoundation                0x00007fff893b731d __CFRunLoopDoTimer + 557
    15  com.apple.CoreFoundation                0x00007fff8939cad9 __CFRunLoopRun + 1529
    16  com.apple.CoreFoundation                0x00007fff8939c0e2 CFRunLoopRunSpecific + 290
    17  com.apple.HIToolbox                     0x00007fff84842eb4 RunCurrentEventLoopInMode + 209
    18  com.apple.HIToolbox                     0x00007fff84842c52 ReceiveNextEventCommon + 356
    19  com.apple.HIToolbox                     0x00007fff84842ae3 BlockUntilNextEventMatchingListInMode + 62
    20  com.apple.AppKit                        0x00007fff86f2e563 _DPSNextEvent + 685
    21  com.apple.AppKit                        0x00007fff86f2de22 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    22  com.apple.AppKit                        0x00007fff86f251d3 -[NSApplication run] + 517
    23  com.apple.prokit                        0x00000001003286c5 NSProApplicationMain + 378
    24  com.apple.FinalCut                      0x0000000100001e14 start + 52
    I'th Mountain Lion as well.  *and FCPX 10.0.7

    Update: the problem is definitely with the internal HD "drive C".  Before restarting FCPX after the last crash I unmounted the C drive -- then restarted FCPX and was able to import media just fine.  I thought I had tried this already, but I guess not.
    So, what did I change with my C drive when I deleted the old apps off my A drive?  There is both an iMovie events and projects folder on the C drive -- but FCPX has never tried to import them until after I deleted the old iMovie app (I still have the most recent version of iMovie on my system drive -- but have never used it to open these old folders).  I read on another thread on this forum that if I "hid" these folders, FCPX would not try to recognize them, so I moved them to within another folder on the same drive -- but FCPX is still trying to recognize and show them when the Import Media window is launched --  and still shows the C drive as a camera.
    So, what can I do to stop this from happening?
    Thanks!

  • Can't import media

    OK, I'll start by telling you what I THINK caused this problem.  I've been working on this project on one computer, then moved my HD to another to work at the office.  I had to let PE know where the files were.  When I pointed it to their location, it seemed at first to get it's new bearings.  But I see that this really screwed things up...I think.
    Now that I'm back at my home computer, whenever I got to place a file in the timeline, I see this batch of confusion...I get the same symbol regardless of the file type I import.  I see the same symbols for all of the files I'd previously imported, but they are correctly rendered in the timeline.
    I've tried deleting the files and re-importing, and just redoing the get media thing.  When I do, windows presents the standard looking window of files.  I click any file in the list and all the files are cleared from the screeen and only the one I clicked remains.  The process is pretty wierd and looks like this.
    Basic question....how do I get PE to let me import media again?
    Philosophical question....why does this happen just as I get near the end of a project.  Have I taken Murphy on as a partner?

    Well, yes and no.  I can get media into the project but....
    I just added my last day of time lapse using the numbered stills method.  Zip,  into the timeline.  Yee Hawww.  Then I rendered it so I could see it quickly enough to reposition it with your spot on Bezier curve advice.  Once it was rendered about 1/4 of a 30 second clip plays then it freezes.  I can't even see additional frames when I focus my view later in the clip.
    I tried creating a new project and dropping into it.  Same thing.  I'm in the process of burning it to a disk to see if it's really in there or not.
    In that I get something different whenever I reconfigure memory, that's almost got to be it.  I'm going to try to leave you guys alone for a while and work through memory options.  If you see a big mushroom cloud comming up over Dallas....that's me;-)

  • Why I can`t import media file to my second disk?

    I install ssd on my mbp as startup disk,when I try to import media,I can`t select my HDD as save path? What should I do?

    To get the easy stuff out of the way, your drive must be formatted as Mac OS Extended (journaled). I would assume it already is since this used to be your boot drive.
    Now on to more complicated stuff.
    The Final Cut Events and Projects must go in the Movies/Final Cut Projects and Movies/Final Cut Events folders in your Home folder. Or they can go in the Final Cut Projects and Final Cut Events folders at the top level of a non-boot drive. Moves should be made inside Final Cut Pro X to preseve the links.
    What I did was to put my OSX and Apps on the SSD, and then I put the rest of my Home Folder onto the Hard Drive. This includes FCP, iMovie, iPhoto, Aperture, Garageband, and all my documents. When you split your home folder like this, it takes some special considerations. I found a website by frequent Apple Discussions Contributor James Ponds (Pondini) to be very helpful in setting up my Home Folder.
    Here is a link to his website.
    http://pondini.org/OSX/Home.html
    Here is a link to the specific post for setting up a home folder on a secondary drive.
    http://pondini.org/OSX/SetupOther.html

  • Import media from card vs. Finder

    Is it a bad idea to Import MOVs straight from the Finder to FCPx as opposed to Importing from the original card structure? The only difference I see it the "Camera Name" and "Reel" columns are blank, but maybe there is something else I am missing. 
    Let me back up:
    I'm seeing signifigantly slower read/write speeds when I import media that are within the original CF card data structure as opposed to when I import files that are "loose" in the Finder.
    I have cloned my source cards from the CF media to my RAID, which is where I am importing from (there is no card attached to my computer).
    I am importing to an Event that is on the same RAID as my cloned card.
    When I use FCPx to Import media from the cloned card on my RAID, I am seeing read/write speeds of about 20MB/s.
    If I copy the MOV files from the cloned card to the "Original Media" folder in my Event (again, on the same RAID as my cloned card), I get speeds around 300MB/s. If I import the MOVs that I copied to the "Original Media" folder, the Import into FCPx is instant.
    Thanks

    try this plugin. it will import directly to FCP X from cam
    http://pro.sony.com/bbsc/ssr/micro-xdcam/resource.downloads.bbsccms-assets-micro -xdcam-downloads-PDZKLT2CameraImportPlugInVersion10

Maybe you are looking for

  • My computer has two users and we want to share the same iTunes

    How can I get the two users accounts (My wife and I) to share the same iTunes library?  We have two accounts to keep our emails separate

  • Power Mac G5 Dual 2.3 freezing from Archive Install of Leopard from Tiger

    Just archived and installed Leopard from Tiger 10.4.10 and on all our Macs, but our only PPC system is having serious issues. The system boots up fine, faster than before, however the Finder and desktop freeze when booting into any of the two user ac

  • Visual basic 6.0

    Hi, I am getting a small application developed in visual basic 6.0, this application is taking screenshots and saving them in as gif images, but the size of the file is too big upto 2-3 mb which takes time to send them thru email in real time. please

  • Policy ASBVGM is missing

    Hello, I have a problem with the policy ASBVGM+EX_CFF_Unit_MediumTF. When I open a PDF file I have a error message. It's in French because I'm French. Impossible to extract the policy ASBVGM+EX_CFF_Unit_MediumTF. etc... In my PDF document all charact

  • How do i update os 4.2 ?

    my son has a 3g ipod touch, he has just downloaded a game which will not transfer to the ipod as it states he needs os4, having checked the ipod he has os 4.2, i can't find any updates?