Issue importing .3ds file

I am having an issue importing the .3ds files. Photoshop has a window that appears that reads "Reading 3D Studio Format" (the loading bar in that window doesn't load) and then Photoshop closes out. I have updated everything, including the video card drivers. I have tried searching the issue online but cannot find a solution. My computer is fairly new. I just bought it back in February. It's an HP, has Windows 8.1 and a AMD A6-5200 w/ Radion HD Graphics card, if that helps at all.

Hello Chris, I am using Photoshop CC 2014.
This is what the log says:
Windows cannot access the file  for one of the following reasons: there is a problem with the network connection, the disk that the file is stored on, or the storage drivers installed on this computer; or the disk is missing. Windows closed the program Adobe Photoshop CC 2014 because of this error.
Program: Adobe Photoshop CC 2014
File:
The error value is listed in the Additional Data section.
User Action
1. Open the file again. This situation might be a temporary problem that corrects itself when the program runs again.
2. If the file still cannot be accessed and
    - It is on the network, your network administrator should verify that there is not a problem with the network and that the server can be contacted.
    - It is on a removable disk, for example, a floppy disk or CD-ROM, verify that the disk is fully inserted into the computer.
3. Check and repair the file system by running CHKDSK. To run CHKDSK, click Start, click Run, type CMD, and then click OK. At the command prompt, type CHKDSK /F, and then press ENTER.
4. If the problem persists, restore the file from a backup copy.
5. Determine whether other files on the same disk can be opened. If not, the disk might be damaged. If it is a hard disk, contact your administrator or computer hardware vendor for further assistance.
Additional Data
Error value: 00000000
1-3 did not work. A few of my other classmates are having the same issue.
What now?
Thanks for your help!

Similar Messages

  • Is it true that Lightroom 4,4 has an issue importing RAW files from Nikon D610 ?

    Is it true that Lightroom 4,4 has an issue importing RAW files from Nikon D610 ?

    Hi Kenneth L,
    Please use the below link to convert your raw files to DNG files then you would be able to import the files in Lightroom 4.4
    Adobe - Adobe Camera Raw and DNG Converter : For Macintosh : Adobe DNG Converter 8.6 For Mac
    Adobe - Adobe Camera Raw and DNG Converter : For Windows : Adobe DNG Converter 8.6 For Windows
    Thanks

  • Issue importing ProRes files

    Just bought Premiere CS6.  Have an issue importing ProRes files.  Have searched a dozen forums and FAQ pages, and not got a clear or functional answer.  I'm trying to find a phone number for Adobe Product support.  It is almost evil.  Every page takes me to either a FAQ page, or this forum, or back to the page I started at, never arriving at the product support number that is promised with the purchase of the product.
    Anyone got a suggestion?
    I've already posted my issue on this forum several days ago, but received no answer as of yet.
    When I try to import a ProRes file into Premiere CS6 (latest ver.) all that comes in is the audio track.
    I've come across rumours and hints in various forums that suggests I should be able to import and edit ProRes in CS6, just not export ProRes.  Which is fine.  It allows me to do an edit on a Windows platform (in the studio where I'm working) and then I can bring the project back to Mac and output the master as ProRes.
    Help please!!
    Ben

    I modified the title to reflect the issue your having sine it sounds like a phone # is no longer your priority now. I'm glad installing QuickTime fixed it for you. It is listed as a system requirements and we do recommend having it to avoid situations like yours. Many have worked for some time without it with little or nor problems.
    As for the support number, I'm not sure what Number that would be either, but it seems like customers usually get good answers in a timely manner just by being on here. Welcome.

  • Issue importing flat files into SQL server 2008R2

    I have csv files that the last column may not have data. SSIS (version 2008R2) will insert the next row's data into the empty cells, which causes my package to fail.
    I know this is resolved in 2012 but we are using 2008R2 still. Any suggestions?
    Thanks.

    Hi sqlBI2014,
    After testing the issue that Flat File Connection Manager cannot handle file with uneven number of columns in each row in my SQL Server 2008 R2 environment, I can reproduce it.
    Based on my research, the issue is caused by the Column Delimiter gets first preference and then Row delimiter. So the next row data would be inserted in the empty column cell. This is by design in SQL Server 2005, SQL Server 2008 or SQL Server 2008 R2.
    Good news is that the issue is fixed in SQL Server Data Tools which comes with SQL Server 2012. In SQL Server 2012, by default, the Flat File Connection Manager always checks for a row delimiter in unquoted data, and starts a new row when a row delimiter
    is found. This enables the connection manager to correctly parse files with rows that are missing column fields.
    If you still want to fix the issue in SQL Server 2008 R2, there is a sample component posted to the CodePlex that might help you with this:
    http://ssisdfs.codeplex.com/
    References:
    http://blogs.msdn.com/b/dataaccesstechnologies/archive/2013/03/13/flat-file-source-cannot-handle-file-with-uneven-number-of-columns-in-each-row.aspx
    https://connect.microsoft.com/SQLServer/feedback/details/293193/ssis-import-of-flat-file-with-uneven-number-of-columns
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Importing 3ds files

    hi, i want to import a file in too java 3d program but I have a problem
    my code is
    public class HelloJava3Da extends Applet {
        public HelloJava3Da() {
            setLayout(new BorderLayout());
            GraphicsConfiguration config =
                SimpleUniverse.getPreferredConfiguration();
            Canvas3D canvas3D = new Canvas3D(config);
            add("Center", canvas3D);
            BranchGroup group = createSceneGraph();
            group.compile();
            SimpleUniverse simpleU = new SimpleUniverse(canvas3D);
            simpleU.getViewingPlatform().setNominalViewingTransform();
            simpleU.addBranchGraph(group);
        public BranchGroup createSceneGraph(){
            BranchGroup objRoot = new BranchGroup();
            ModelLoader modelLoader = new ModelLoader();
            try{
                Scene scene = modelLoader.load("dino.3DS");
                BranchGroup branchScene = scene.getSceneGroup();
                objRoot.addChild(branchScene);
                return objRoot;
            }catch (FileNotFoundException fnfe) {}
        public static void main(String args[]){
            Frame frame = new MainFrame(new HelloJava3Da(), 256, 256);
    }can someone help
    this is the error message
    javaWork/HelloJava3Da.java [52:1] cannot resolve symbol
    symbol : class FileNotFoundException
    location: class javaWork.HelloJava3Da
    }catch (FileNotFoundException fnfe) {}
    ^
    1 error
    Errors compiling HelloJava3Da.

    Correct me if I am wrong cause I'm not a l33t programmer, but I thought u can't have " public static void main(String args[])" if u r running an applet.. That could be the problem.
    And I have a question for you. With Java3D when u read a 3Ds model into java, does Java3D have tool to modifiy the 3Ds model as in reduce the number of edges, polygons etc..

  • Issue: Importing CVS files into Contacts under OS X MT Lion.

    I recently upgraded Mac and leaped from Snow Leapord to Mt Lion in the process and now I'm having issued importing contacts via CVS files into Contacts. Has anyone else experience this and for those who have a work around please share.
    Best,
    CMJ

    Use vCards instead of CSV files.

  • Issue importing a file into photoshop elements 11

    I am new to Photoshop Elements 11. I am just playing around with it right now to get used to it since I've never worked with the program before. I am importing files from iphoto and it is working fine except for one thing. I imported a group of photos and while I was playing around in Elements (basically to get used to naming folders/albums/moving things around/etc) I deleted the folder I had imported, more or less to see what happens, and now when I try to import the same file into Elements again, it tells me that "the file selected to import did not contain supported file types or the files are already in this catalog." I cannot find these pictures anywhere within my catalog, so why will it not let me import them a second time? I have looked all over online for an answer to this and have come up empty handed. If someone knows how I can get this group of pictures into Elements, please let me know! I'd like to start practicing with the editing options but need these pictures in the program first. (I did also create an album from the file I imported, again to practice moving things around within Elements, and when I deleted the Folder the Album went away too.) I am still able to import other files from iphoto, it is just that this one particular file will not transfer....is it because I deleted it and now it somehow does not recognize the file??

    Welcome to the forum.
    As you have reposted to the Photoshop Elements Forum, where you will get quick and expert help, I will Lock this thread, and all discussion can take place in the Ps Elements Forum.
    Good luck,
    Hunt
    [Thread Locked]

  • Issues importing AVI files into iPhoto

    Hi there,
    I am trying to import the videos I've taken with my Olympus Digicam over the weekend into iPhoto but for the longer ones it doesn't work. When I select the movies to import it looks like it's doing it but then, after a while, iPhoto displays an error message stating the following:
    The following file could not be imported. (The import failed.)
    As already mentioned, the issues I have are with the AVI files, and they are pretty long movies...some up to 4 or 5 minutes I think.
    Has anyone got an idea how I can get them to import and play in iPhoto?
    Thanks heaps.
    Nadine

    Nadine
    iPhoto will baulk at importing longer movies from a camera. The trick is to copy the movies to your desktop using the Finder (if your camera appears on the desktop) or Image Capture (in your apps folder) and then importing them to iPhoto.
    Regards
    TD

  • I'm having issues importing raw files into LR 2.6.

    Hi All.
    So here's the issue. I have about 1300 images that I'd like to import into LR from my USB Exteral Hard Drive. In the past, I had no issues. but with this one, it seems that I'm limited. I tired to import all 1300 and nothing would happen when i hit import. So then I started to import half of that and it worked.. So I backed out and added in about 10 more.. worked fine, backed out and imported 10 more and it wouldn't work.
    I have enough HD space, at least 30Gbs free. The folder size of the images is 11gbs. Is there a setting that limits the amount that I can upload?
    Thanks soo much!

    Thanks Hal for getting back to me..
    Yes, that's what I did..
    So I tried two things.. a different set of about 2k images.. raw files.. and it wouldn't work. So that ruled out a corrupt file in my current set.
    I went back to the current batch where I was able to import file 1-1060 with no issues. I then chose files 1061-1300 and that worked fine. So that ruled out a corrupt file from 1-1300.
    Is is possible to do Two separate import jobs so that i will be able to see all of them when I go to post process? I have never had to do two sep import jobs before so not sure if this is an option.
    Thank you very much

  • There are no readers registered for the txt type - Issue importing txt file

    Hello guys,
    I am working on SQL developer 3.2. and Oracle database 11g. I am trying to import a txt file with only two columns and 100 rows separated with a pipe. I can import the same file if its in *.CSV or *.xls format. I right click on the table > Import table > Choose the *.txt file > and then I get a message "There are no readers registered for the txt type". Why? Where do I get the reader? I am using the same exact method and the same exact data to import using a different file format and I do not get any errors. The wizard comes up and I am ready to load. I have scoured through this forum for a solution and I could not find one. Any help is very much appreciated.
    Thank you!

    It means we don't support that file type for doing imports. It sounds like a reasonable request to [add to the Exchange|sqldeveloper.oracle.com] though.

  • Issues Importing Video Files

    When I import files I can see "Desktop" listed.  However, when I open it the files listed are not those on my desktop!  I honestly have no idea where these files are located, but there deffinately not from my desktop.  What did I break!?

    Below is what I see when clicking into Desktop:
    Below is my desktop - Mind the mayhem!  And a preemptive thank you for all of your help!

  • Issue Importing .m2a file into Encore

    Hello -
    I'm having a problem importing m2a audio files into Adobe Encore to properly. I import an .m2v and its corresponding .m2a file, and then add them to a timeline. The video imports fine, but only the first second or two of audio appears in the timeline. I know it is a valid .m2a file, because its file size and the fact that it does play properly through QuickTime. But for some reason, Encore doesn't properly import the .m2a file, and I only end up with the first second or two of audio.
    I encoded the audio and video using the Sorensen Squeeze... any ideas?
    Thanks!
    Scott

    I strongly advise against using MPEG audio files in Encore.
    Instead, use an uncompressed WAV or AIF file, and then let Encore transcode it to AC3, which is universally supported by all DVD players (some players can't playback MPA streams). Don't recompress the MPA to AC3 in Encore as MPEG-1 Level 2 compression in MPA is already lossy, and recompressing to AC3 will involve further lossy compression.
    If you have a good AC3 encoder, you could also use an AC3 stream in Encore.
    But avoid MPEG audio - if not for the reason of the trouble your seeing, then for player compatibility.

  • Lightroom 2.7 issue importing CR2 files

    I have been using Lightroom 2.7 with my Canon G10 raw images successfully for several years, but I just had the G10 replaced with a G12 by Canon. When I downloaded my photos the first time, and tried to import them, I get errors tell me they failed the import. They are CR2 format files.
    Any ideas on what is going on? I can view the raw images in the Canon software fine.

    Your new camera wasn't supported in Lightroom 2.7. You will either have to upgrade Lightroom, or else use the DNG converter 7.1 to convert your raw images to digital negative. Then you can open those DNG files with Lightroom 2.7. The version of Lightroom you are using is really obsolete. I think you would find that you get much better results if you upgraded to Lightroom 4.1. But, that is your choice.

  • Issues importing RAW files

    I want to store images on my IPAD when travelling. I have a 64GB Ipad with Iphoto and the basic PS loaded. I have to download direct from the camera, whisch is a pain, and then store and group into files from there. However, I attempted this today and a red exclamation mark pops up on the images when I select 'import all'.
    I shoot with a 7d, creating 20MB + files each shot. I can create several hundred shots over the day I wish to  back up.
    Any suggestions ?

    The iPad is probably not a good solution for this.  You can't use the full 64 gb of storage on the iPad, because the iPad needs several GB for the Operating Sytems and for temporary files to translate the RAW image files.  This will prevent you from using it like a backup hard drive.

  • Importing Photoshop files into premiere pro CS6 issues

    Hi
    I recently re-installed Premiere Pro CS6 on my work computer (i changed from a HDD to an SSD). Ever since I did this I am having an issue importing .PSD files into Premiere.
    I try and import a photoshop file. The importer window comes up. The progress bar starts to move, then pauses and the Importer says 'Not Responding'. After a few seconds it comes back and throws up the following error:
    Error message - 'The importer reported a generic error'
    All projects i previously worked on that had .PSD files in them are now reporting these files as 'Media Offline' meaning I have to replace them with .PNG files which is really annoying.
    Any ideas what might be happening? The files I am trying to import are RGB .PSD's. They worked previously without any issues.
    I have Premiere Pro Version 6.0.5 (001 (MC: 264587))
    running on a Windows 7 machine with Service Pack 1, 64 bit OS, 16GB Ram and Intel Core i7-2600
    Many thanks in advance for anyone who can help me with this!

    Yes, MXF should play perfectly in PP CS6, but if you can't work this out at this point, you may wrap your MXF video to something intermediate. as a matter of face, Adobe Premiere Pro CS6 seems to work fine if you import your MXF clips directly from a camera or camcorder, but if have already copied MXF recordings your HDD or you downloaded them from somewhere else, the import error may occur.
    So i suggest you convert the MXF footage to something mezzanine we would recommend DNxHD.mov (if you are on a PC) or Apple ProRes .mov (if on a mac). those two intermediate codecs are good mezzanine codecs that handle recompression well and standup well in other areas of post-production (color grading, graphics, compositing, etc,). You can see what I wrote about the solution. "Why Premiere Pro CS6 can't import MXF files?" i hope that it is helpful to you.

Maybe you are looking for

  • Is there anyway I can run a faster OS on my G4 Powerbook (pre Intel)?

    I was very kindly given a G4 Powerbook by my uncle, but after waiting a whole year to get it I was heartbroken to realise I could not sync my iPhone 5 as it needs to run a faster OS to be able to run iTunes 11. My mum established it is a pre Intel pr

  • DVR shows 35% usage with no shows recorded. How to clear this?

    I have deleted all recorded shows on my HD DVR but the usage still shows 35% space used.  Is there a way to clear up all usage and make sure I have all the space needed to record shows?  Is there a master reset that would do this?  Thanks for any tip

  • PC Doesn't SHow Message

    My airport is set to show when you connect a message. it works on my mac, but not my two PCs. How can I fix this?

  • Exported files are grainy

    I have Lightroom 5.6 but still having issues with exporting, as I apply "Luminance" but images exported do not have the effect I applied! They don't even show skin smoothing effects I added!

  • 80GB Classic touch wheel non-responsive

    Just got the 80GB classic, and am liking the new interface but the touch wheel is having some issues. The scrolling action only moves 20-30 lines at a time and then pauses, making it tedious to scroll through artists/albums. Anyone else having this p