Cannot re-save a file into the same folder

Hi.
I have a odd issue where users are unable to resave their documents into the folder that they have opened them from.  The folders in question are their home folders to which each user has full permission to access. You cannot save over the original
file or even to the same folder and changing the filename makes no difference at all.  You can however save to a different folder within the users home folder.  I get an event 300 error/event when trying to save but no other errors other than a confirmation
box saying the file hasn't saved.
Has anyone else seen this before/
Thanks
Tom

It seems like a permission issue, can you save new files to the location anyway?
You can try clean boot to determine whether other programs are conflicting:
http://support.microsoft.com/kb/331796/en-us

Similar Messages

  • Nothing shows up on my Desktop. I can put a file into the Desktop folder but it will not appear on the DTop. The HarDrive is not on the DTop either.

    Nothing appears on my Desktop. The Finder seems to work, so I can place a file into the DTop folder, but nothing appears on the DTop, not even the HarDrive.

    You can temporarily hide the crap on your desktop. Edit the CreateDesktop key in com.apple.finder:
    defaults write com.apple.finder CreateDesktop -bool false && killall Finder
    Then, to get my clutter back:
    defaults write com.apple.finder CreateDesktop -bool true && killall Finder

  • How can I save a file in the Downloads folder and automatically have it opened?

    Often, I'd like to download a file, save it to my Downlaods folder and have it opened right away.
    Currently, you can only decide between the two options "open" or "save to...". There's seemlingly no way Firefox can do both at once.
    I know I can download it, open the downloads manager and open it manually. But when working with over a dozen documents a day, that doesn't quite do the trick.
    In Chrome, you only have to click twice: Once for downloading and once for opening it from the download bar on the bottom of the screen. You do not have to open a download manager.

    Yeah, thanks but that's not what I was trying to ask.
    I know that you can save and open a document by performing these three steps:
    1. Confirming to save a file to the Downloads folder
    2. Open the download manager by clicking the temporarily green arrow
    3. Clicking on the downloaded file
    What I would like to know is whether or not it is possible to have Firefox open a saved file ''automatically''. At the moment, if I choose to open it automatically, it is only saved to my temp folder.
    It would be great though if it was saved to my Downloads folder ''and'' opened with the respective program on my pc. Is there a way to do this?

  • How to read multiple files in the same folder?

    Suppose I have 100 txt files in the same folder, and I want to read them one by one. (order is not important). File name is also part of the information I want.
    How to do that?
    Thanks

    You need to use the directory to create a File (use the path name, w/o a file name). Then you need to ask for a list() (array of String containing name). To do that you'll need to implement the FilenameFilter interface, writing an accept() method that returns true if the file's name ends with ".txt".
    If that's not perfectly clear, try the java.io API docs and return more specific questions.

  • How can i stop the Action Wizard from putting the original file into the Source folder with my changed documents?

    How can i stop the Action Wizard from putting the original file into the Source folder with my changed documents?

    [discussion moved to Creating, Editing & Exporting PDFs forum]

  • How to put two files with the same name into the same folder?

    How can I put two files with the same name and the same extention into the same directory?
    Is this even possible?
    Thanks in advance. 

    Are you sure? I would be very surprised if that was the case.
    How does the computer/filing system differentiate the files, if not by their names?
    How do you tell the computer which one you want? (On the command line.)

  • Files from Windows 7 are not alphabetized correctly on OS X, and can match identically named files in the same folder

    I receive MS Word files from students using Macs or Windows-based computers.  This year, files prepared by students using Windows 7 are not alphabetized correctly on my Mac (under Snow Leopard or Mountain Lion).  The same four students keep having their files put at the END of the alphabetical sort by name, even though the files should appear earlier in the list.  I have to copy the file contents and paste the contents into a new document to get the new document to appear in the right order, and if I do so, then BOTH the old and new files appear in the Finder, even though the names appear to be identical!  So can have to files with the same name in the same folder, which ought to be impossible.  Does anyone have any idea what's going on?

    Bingo! 
    The problem is not the letters themselves, but non-letter characters in the file name; this showed up with the fixed-width fonts. The apparent duplicates and mis-sorting are caused by dashes, which differ because they're done as en-dashes in one file name and em-dashes in the other file name, or by curly or straight apostrophes.  I didn't see that in the Finder window.
    I never saw this behavior before this year.  Last year, when I was using a Mac for the first time, I did not see any such problem, even though my students' files were named using the same conventions. When I was using a Windows-based laptop before that, I never saw the problem.
    Windows must do something to style the non-letter characters differently than a Mac.  Is there any place in Windows Explorer or the OS X Finder that styles characters this way?  I can see this being a big problem for someone who needs to sort very important data by name, when the files are coming from different operating systems!
    (I just Googled en-dash, em-dash, and curly quotes with file names, and found a good number of posts on various sites about similar problems based on ASCI character coding, html coding, Windows Explorer, and other applications.  Sometimes the files don't appear at all, because the application reading the file name can't deal with a certain ASCI code.  What a mess.)

  • Can I include raw files into the installer folder with LV application builder?

    Hello,
    I have created a batch file that will run at the end of the installer, which will copy over some raw configuration files into the source destination so that the configuration files can be customized for each end user without rebuilding the installer with application builder. I also have an autorun.inf so the installer will automatically run when the user installs the CD.  
    However I would like to have some default configuration files and an autorun.inf file that will be automatically added to the installer "volume" folder using the application builder. 
    However I don't see a way to include raw files in the "volume" folder. It appears all source files in the application builder are embedded into the binary files.
    Please let me know if this is possible with the current application builder.
    Regards,
    Russell
    Engineering Team Leader
    G Systems, www.gsystems.com
    Certified LabVIEW Architect
    Certified Professional Instructor

    Russel,
    i think this link might give you some good hints....
    hope this helps,
    Norbert 
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Downloading a file to the same folder as an applescript

    I have never used applescript before and have what should be a simple problem.
    I just want to download via FTP a file and have it in the same folder as script application.
    This is what I have and it downloads what I want, but to get it where I want. This puts it in my home directory. I think "path to me" needs to come in here somehow. Now I am dumb so probably need the whole script!! thanks.
    tell application "System Events"
    do shell script "curl 'ftp://user:password@server//www/htdocs/current/l.txt' -o ~/l.txt"
    end tell

    Try using:
    tell application "Finder"
    set path_2 to quoted form of POSIX path of (folder of (path to me) as alias)
    end tell
    tell application "System Events"
    do shell script "curl 'ftp://user:password@server//www/htdocs/current/l.txt' -o " & path_2 & "l.txt"
    end tell
    (41158)

  • Trying to install photoshop elements 12    File Archive part of adobe premiere 12 is missing.  You need all files in the same folder

    rying to install photoshop elements 12    File Archive part of adobe premiere 12 is missing.  You need all files in the same folder

    It is actually a link from Tech Soup to a special link on Adobe.   But no
    chance to put in my serial number – get that error message after I download
    the exe.    Tried to copy page – I would select the correct file
    Welcome TechSoup Customer of TechSoup Global!
    Product Download
    Adobe Photoshop Elements and Premiere Elements 12.0 for Windows (English)
    *      <javascript:void(0)> Files
    <javascript:itralib_popup('dload_serialNum?item_key=5001111&plne=101791&cert
    Num=135338281','info','560','400')> PAC, Serial Numbers & Credential Files
    <https://adobe.subscribenet.com/control/adbe/certdlog?plne=101791&item_key=5
    001111> Download Log
    <https://adobe.subscribenet.com/control/adbe/certnotes?plne=101791&item_key=
    5001111> Notes
    *      <javascript:itralib_popup('downloadpagehelp','EULA','495','600')>
    Download Help
    Adobe recommends you use the Akamai Download Manager for large files. You
    can enable the download manager by clicking on the Download Preferences link
    to the left. If you are using Microsoft Internet Explorer as your browser,
    then the HTTP option will not work for files larger than 4GB due to the
    browser’s download size limit.
    If there are multiple files for your products, please be sure to download
    ALL files prior to attempting to install.
    The software you are about to download is subject to export control laws and
    regulations. By downloading this software, you agree that you will not
    knowingly, without prior written authorization from the competent government
    authorities, export or reexport - directly or indirectly - any software
    downloaded from this website to any prohibited destination, end-user, or
    end-use.
    Note: All Adobe products require a serial number for installation. If you
    are having difficulty with the serial number, please
    <https://adobe.subscribenet.com/control/adbe/manualsupport> contact us.
    *      6 Files
    Top of Form
    Select All
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111&orderB
    y=ORDER_BY_DESCRIPTION&ascending=true> File Description
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111&orderB
    y=ORDER_BY_FILE_SIZE&ascending=true> File Size
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111&orderB
    y=ORDER_BY_FILE_NAME&ascending=true> File Name
    The download limit for this file has been reached
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    Expand All / Collapse All
    Adobe Photoshop Elements 12.0 for Windows 32 bit Installer (English, German,
    French, Japanese)
    1.5 MB
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    PhotoshopElements_12_WWEFDJ.exe
    The download limit for this file has been reached
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    Expand All / Collapse All
    Adobe Photoshop Elements 12.0 for Windows 32 bit Installer Package (English,
    German, French, Japanese)
    1.1 GB
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    PhotoshopElements_12_WWEFDJ.7z
    The download limit for this file has been reached
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    Expand All / Collapse All
    Adobe Premiere Elements 12.0 for Windows 32 bit Installer (English, German,
    French, Japanese)
    1.5 MB
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    PremiereElements_12_WWEFDJ_win32.exe
    The download limit for this file has been reached
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    Expand All / Collapse All
    Adobe Premiere Elements 12.0 for Windows 32 bit Installer Package (English,
    German, French, Japanese)
    1.1 GB
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    PremiereElements_12_WWEFDJ_win32.7z
    The download limit for this file has been reached
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    Expand All / Collapse All
    Adobe Premiere Elements 12.0 for Windows 64 bit Installer (English, German,
    French, Japanese)
    1.5 MB
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    PremiereElements_12_WWEFDJ_win64.exe
    The download limit for this file has been reached
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    Expand All / Collapse All
    Adobe Premiere Elements 12.0 for Windows 64 bit Installer Package (English,
    German, French, Japanese)
    1.2 GB
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    PremiereElements_12_WWEFDJ_win64.7z
    Bottom of Form

  • Can I combine two methods of code to load various SWF files into the same location

    I presently have a set up where a large SWF file brought on the stage by clicking small icons from the scrollable thumbnail menu on the bottom of the stage. All of it happens at the same frame with .xml loading file.
    Here is the code for constructing the ImageLoader(for thumbnails) and SWFLoader for (bigger SWF files)
    [CODE]
       function _xmlCompleteHandler(event:LoaderEvent):void {
       _slides = [];
       var xml:XML = event.target.content; //the XMLLoader's "content" is the XML that was loaded.
       var imageList:XMLList = xml.image; //In the XML, we have <image /> nodes with all the info we need.
       //loop through each <image /> node and create a Slide object for each.
       for each (var image:XML in imageList) {
        _slides.push( new Slide(image.@name,
              image.@description,
              new ImageLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/thumbnails/appThmb_imgs/" + image.@name + ".jpg",
                   name:image.@name + "Thumb",
                   width:_THUMB_WIDTH,
                   height:_THUMB_HEIGHT,
                   //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates
                   //x:260, y:320,//doesn't work here but works in line 69
                   scaleMode:"proportionalInside",
                   bgColor:0x000000,
                   estimatedBytes:13000,
                   onFail:_imageFailHandler}),
              new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",
                    name:image.@name + "Image",
                    width:_IMAGE_WIDTH,
                    height:_IMAGE_HEIGHT,
                    //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates
                    x:0, y:144,
                    scaleMode:"proportionalInside",
                    bgColor:0x000000,
                    estimatedBytes:820000,
                    onFail:_imageFailHandler})
    [/CODE]
    Here is what I would like to resolve. I have another section on the site with an image collage. Every image is a button. I want to script this each image on click to go to the label with ImageLoader and SWFLoader AND TO OPEN A UNIQUE SWF (ASSOCIATED WITH AN IMAGE CLICKED) ON THAT PAGE
    Previously this is what I did to achieve it. I would specify a String:
    [CODE]
    var sourceVar_ProductsPopUps:String;
    [/CODE]
    and then all my buttons will have their unique SWF assigned for them which opens at another labeled section ("prdctsPopUps" in this example):
    [CODE]
    function onClickSumix1PopUp(event:MouseEvent):void {
      sourceVar_ProductsPopUps="prdcts_popups/sumix1-popup_tl.swf";
      gotoAndPlay("prdctsPopUps");
    [/CODE]
    Then in the "prdctsPopUps" section I would specify that var string to bring up SWF files. The value of sourceVar_ProductsPopUps allows to load mulitple SWFs from the previous page.
    [CODE]
    loaderProductPopUps = new SWFLoader(sourceVar_ProductsPopUps,
    [/CODE]
    But I need both of them to be working at the same time. First there is a sectionA from where a user can navigate to specifically targeted SWF to section B's SWFLoader. Then in the section B a user has an option to bring up other SWF files into SWFLoader from the scrollable thumbs menu. Is there a way to combine these two lines into one:
    [CODE]
              new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",
    [/CODE]
    and
    [CODE]
    new SWFLoader(sourceVar_ProductsPopUps,
    [/CODE]

    Thanks for looking into my issue.
    Unfortunatelly I am not so advanced in AS and do not complitely understand the logic of the problem. I will try to decribe my set up more precise.
    So, my main flash file is broken into labeled sections on the main time line.
    One of the sections is "Applications" It has an animated collage of images. Each image acts as a button and once clicked brings a user to a section called "ApplicationsPopUps".
    "ApplicationsPopUps" section has small image thumbnails scroll menu at the bottom of the screen and a large SWFLoader in the middle of the screen. User can click on an image in the thumbnails scroll menu and a corresponding SWF file will load in the middle of the screen in SWFLoader. User can click on left/right navigation buttons and preceeding/following SWF file will load in SWFLoader.
    Everything works fine (with your previous help)
    Here is the working code for the ImageLoader and SWFLoader (please let me know if you need additional code on the page):
    function _xmlCompleteHandler(event:LoaderEvent):void {        _slides = [];       var xml:XML = event.target.content; //the XMLLoader's "content" is the XML that was loaded.        var imageList:XMLList = xml.image; //In the XML, we have  nodes with all the info we need.        //loop through each  node and create a Slide object for each.       for each (var image:XML in imageList) {         _slides.push( new Slide(image.@name,               image.@description,               new ImageLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/thumbnails/appThmb_imgs/" + image.@name + ".jpg",               {                    name:image.@name + "Thumb",                    width:_THUMB_WIDTH,                    height:_THUMB_HEIGHT,                    //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates                    //x:260, y:320,//doesn't work here but works in line 69                   scaleMode:"proportionalInside",                    bgColor:0x000000,                    estimatedBytes:13000,                    onFail:_imageFailHandler}),                 new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",                   {                     name:image.@name + "Image",                     width:_IMAGE_WIDTH,                     height:_IMAGE_HEIGHT,                     //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates                   x:0, y:144,                     scaleMode:"proportionalInside",                     bgColor:0x000000,                     estimatedBytes:820000,                     onFail:_imageFailHandler}) 
    Thumbnails in the section "ApplicationsPopUps" and images in the image collage in the section "Applications" represent the same photographs. So when a user clicks on one of the images in "Applications" section it would be natural that that image will load in the "ApplicationsPopUps" section. However "ApplicationsPopUps" section presently has a working code (as sampled above) It looks too complex for me and I do not know hot to implement this feature. I do want to keep the functionality of the thumbs image scroller in section "ApplicationsPopUps" as it is now. But I want to add that when a user click on an image from section"Applications" then that particular SWF file will load in SWFLoader in section "ApplicationsPopUps" and then the present functionality can as well be exectuted. Presently it just opens on a first image in xml order.
    P.S. I see that you had a download link in your answer. How did you do it? I could also upload a small sample file with my problem. This way you could see all the set up right away.

  • How to Save XML file in the same directory as the swf file automatically?

    Hi all,
    I'm really new here with flash and actionscript 3, so i might not make any sense, probably. Any input is greatly appreciated.
    So here's my problem, i'm trying to make a Top Score history for a flash game, which i load from an XML file. The problem comes to when i want to update the XML file. how do i do that automatically without prompting the user (ofcourse). I want it to be saved automatically to the same directory as the flash file.
    here's my code right now, but it prompts the user where it wants to be saved, which i don't want to happen:
    var xml:XML = <XML>
                        <topScoreList>
                        </topScoreList>
                  </XML>;
    for(var i:Number=0; i<10; i++)
         var Record:XML = <Record>
                             <score></score>
                             <playerName></playerName>
                        </Record>;
         Record.score.appendChild(topScores[i].toString()); //topScores[] -> class variable containing scores
         Record.playerName.appendChild(topNames[i].toString()); //topNames[] -> class variable containing names
         xml.topScoreList.appendChild(Record);
    var ba:ByteArray = new ByteArray();
    ba.writeUTFBytes(xml);
    var fr:FileReference = new FileReference();
    fr.save(ba, "topScoreList.xml");

    yeah that makes sense, actually - after reading a dozen more forums. It's really weird tho that flash doesn't have a Buffer writer, unlike other programming frameworks.
    But yeah, thanks. i'll start reading on flash.net.SharedObject, correct ? Thanks.
    Anyways, if anyone out there has a different input, will be greatly appreciated!!

  • Open and Save downloaded files at the same time (in one click)

    OVERALL GOAL: To click on PDF links online, save the files to my Downloads folder, AND open them in Acrobat Pro, all in one click.
    Does anyone have a suggestion for how I would tell Firefox to both Save and Open my downloads? I'm using OS X, if it helps/matters.

    That happens automatically with both my Macs. I have one using 10.4 and another using 10.6. I use PDFView rather than Adobe, but I doubt that makes much difference. You are using Adobe as a helper application, not a plugin, right?

  • Cannot import a .mov file into the library

    I am trying to import a .mov file into my library so I can
    create a .fla file. Every time I try to import it into the library
    using the import wizard, it starts the importing process and always
    quits not quite two minutes into the process. It then returns me to
    the front page of the import wizard. I have done this before with
    absolutely no problems.
    The one thing that I am wondering about is the size of this
    particular .mov file. It is 377MB. Do you think this may be part of
    my problem? Thank you in advance for anyone's input or
    suggestions!

    Jeremy Williams wrote:
    > I am trying to import a .mov file into my library so I
    can create a .fla file.
    > Every time I try to import it into the library using the
    import wizard, it
    > starts the importing process and always quits not quite
    two minutes into the
    > process. It then returns me to the front page of the
    import wizard. I have
    > done this before with absolutely no problems.
    >
    > The one thing that I am wondering about is the size of
    this particular .mov
    > file. It is 377MB. Do you think this may be part of my
    problem? Thank you in
    > advance for anyone's input or suggestions!
    I would consider 10mb to be too big for a flash file. Even if
    it was CD
    I would load it dynamically to avoid performance problem.
    377mb is out of the question way beyond flash ability to
    maintain stable
    performance, not just the final output but the IDE itself.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • What is the recommended tool to convert all of my email and their attachments in one stroke to pdf files in the same folder structure that emails are stored in

    I have thousands of emails creatively stored in a host of sub folders. I would like to see if anyone knows of a tool that I can point at TB and convert all of my files into a similar file structure with the attachments embedded into the emails. I don't want much I realize. I bet there is a tool out there that will get me close.

    I don't know of a way to produce pdfs in a simple way (probably with a pdf printer driver), but if you export or save messages as eml files, the attachments are embedded in the emls, and emls can be read by most email programs. Besides saving through Ctrl-S, exporting complex folders to eml format is probably best done with [https://addons.mozilla.org/en-us/thunderbird/addon/importexporttools/ ImportExportTools].

Maybe you are looking for