Save as dialog not showing files on a AFP share in CS2

I have a user who is not able to see any files or folders on an AFP share (SFM on Windows 2003) when attempting to Save As. The files are visible in the finder, terminal, it is not a permissions issue, and I have trashed permissions. Any ideas? Are there hidden files on the share that need to be trashed?
10.4.10, 2.66 Mac Pro, AD user
Thanks!

Open the Script Editor in the /Applications/AppleScript/ folder, and use this script to make all files visible.
(22547)

Similar Messages

  • Save As Dialog Not Showing when opening pdf from Outlook 2010

    Hi
    I have recently had to change the default documents folder on a windows 7 machine (Right Click Documents, properties,  include folder, set save location). Since this change, when opening an attached pdf document in outlook 2010 and viewing with adobe reader, if i click Save as from the file menu, no os dialog appears and therefore user cannot choose a place to save the document.
    As a work around the user can right click the attachment save the docment to a location, once opened, ther save as dialog is usable.
    I have uninstalled and re-installed reader to the laterst version, but with no luck.
    Any ideas?
    Jason Congerton

    This looks like a new behavior of Outlook 2010 and isn't specific to PDFs. You will need to "save as" the document. There is a thread at Microsoft forums about this with some possible workarounds:
    http://social.technet.microsoft.com/Forums/en-US/outlook/thread/927d678d-b55b-4732-93cb-f1 3ed1dacf96/

  • Folders Not Showing in Server Admin AFP Share Point?

    Hello all,
    My problem is I can make a folder in Server Admin under AFP Share Point, But the Folder wont actually be made on the HD.
    Under Server Admin AFP Share Point it will tell me that it doesn't exist?
    So I thought I'll go to that point on the HD and make the folder then set the permissions to it... nope I can make the folder I can see it in finder and in terminal, But not in Server Admin AFP Share Point.
    I have never seen this before any help is greatly welcomed.

    Hi Kristoffer,
    I have seen an attribute for folder object which could control SharePoint folder hide or show in webdav explorer view, you can use PowerShell to output the problematic folder property, see if it the case, then use the PowerShell code to set it's property
    with blank value to make it show in explorer view,
    Use the PowerShell to get the folder object and then check the property value with this code line $folder.Properties["vti_winfileattribs"]
    #folder can be site, library level and folder level
    $folder = (Get-SPWeb http://sp).Folders["shared documents"].SubFolders["folder1"]
    #hide folder
    $folder.Properties["vti_winfileattribs"]="00000016"
    #show folder
    ####$folder.Properties["vti_winfileattribs"]=""
    $folder.Update()
    https://social.technet.microsoft.com/Forums/lync/en-US/9ceafb38-24dc-466c-b497-2cee062b81cf/explorer-view-hidden-folder-attribute?forum=sharepointgeneral
    Thanks
    Daniel Yang
    TechNet Community Support

  • Finder not showing files in an SMB share

    Ok, I think I know what I need to do, but i'm not sure where to look essentially. I have a user in my office that connects to a share on a PC file server called Community. When looking at the share in finder it seems to be bugged, and it shows like an old cached view of what the share USED to look like. If I open a terminal and do an ls everything shows up like normal. The way I've been able to temporarily unbugg this is by clicking on Go->Go to folder and then telling it to go to \volumes\community\myfolder and then it corrects the view and shows the correct list of folders. But the next time she boots her mac and connects to the share - old view again. Is there a file for finder that is caching this info in her profile that I need to delete somewhere? This seems to be the issue, but I'm not sure where to look for this. Worse comes to worse I suppose I could always give her a clean profile on her mac, but I hate to do that for something so trivial.
    (Just to note here, there's no hidden files or anything - If we go to another PC or Mac everything shows up fine, first try, no problem. It's just this one machine having this issue)

    giving this topic a bump. i've tried the same share via AFP and SMB, both have shown files before, but now only show folders in Finder.
    incidentally, i tried mounting the same share using NFS and it works, all files and folders are shown in Finder.
    in either case, all files and folders show up from Terminal.

  • Bridge does not shows file info, just thumbnails, what's going on? already adjusted in preferences, but still only thumbnails and not the info of the file

    Bridge 8.5 does not shows file info, already adjusted in preferences but still just showing thumbnails only.
    Can anyone please help?
    Thanks

    The single download means that you won't be able to redownload it from the store without paying, either on a computer's iTunes or an iOS device - it doesn't stop you from copying the audiobook to your other computers or syncing it to your iOS devices, you just can't redownload it. (I believe that they are all supplied to Apple by audible.com, so I assume that it's them requiring the one-time download.)
    You can download audiobooks on your computer's iTunes and sync them to iOS devices, you do not have to buy them directly on the device (if you do then you can copy them back to your computer's iTunes library by connecting the device and using the File > Devices > Transfer Purchases menu option on your computer's iTunes).
    What you are doing to sync them should work i.e.
    - connecting the iPad to your Mac
    - selecting the iPad on your Mac's iTunes
    - selecting its Books tab and selecting the audiobooks that you want to sync to the iPad and syncing/applying that selection.
    You should then get an audiobooks option in the Music app on your iPad. If they aren't appearing there  then do they show in Settings > General > Usage > Music on the device - if you have audiobooks on the iPad then they should be listed there under an 'audiobooks' heading.
    By 'restart the iPad' do you mean a soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.
    You could also try closing its Music app via the iPad's taskbar : Force an app to close in iOS.
    And do a soft-reset and retry syncing.
    I assume that music and other items sync ok ?

  • Download file in struts - File save dialog not showing up

    Hi,
    The issue i have is - the file save dialog box which should be displayed on file download is not showing up.
    I have a DAO being called from the Action form SaveDocumentAction which extends DispatchAction and has a download(mapping, request, response,..) method. Below are relevant portions of my code.
    public void showDocument(DocumentTO Doc, HttpServletResponse response){
    //get filename etc
    response.setContentType("application/x-download");
    response.setHeader("Content-Disposition", "attachment; filename=myFile.txt");
    OutputStream out = response.getOutputStream();
    //code for writing from input file to out
    I shld be getting a File Save dialog after response.setHeader(), but I am not. Can anyone tell me where I am going wrong. I have printed SOPs and all print fine, even the file writing part.

    Put this code into a servlet rather than a JSP.
    JSP are for returning text based HTML pages. It adds extra carriage returns into the response that will corrupt the file, and prevent the dialog showing up.
    This code is much better off being in a servlet
    If you are using a FileInputStream, you should be using a ServletOutputStream rather than the JSP writer: response.getOutputStream()
    When dealing with file input in a JSP/Servlet you should use the methods of ServletContext. getRealPath() turns a website relative file into a real location on disk. getResourceAsStream() opens the file for you. getResourceAsStream() is more reliable as it will work even if the web app is deployed in a packed WAR.
    Cheers,
    evnafets

  • Blank page shown instead of Open/Save As dialog box-CSV file download in IE

    I am migrating an application hosted earlier on Oracle 9iAS (9.0.3.1 BP1) to OracleAS 10g (10.1.3) with Struts 1.2.9. While the below JSP code worked for the earlier s/w stack when accessed using IE 5.5 SP2 or above, a blank page is displayed with the new s/w stack. What I mean by "worked earlier" is this. A "Open/Save As" dialog box would appear. Trying to "Open" would open a new IE window launching MS Excel and displaying correct data. Trying to "Save As" would display correct filename and extension in the dialog box.
    <%@page autoFlush="false" contentType="application/x-filler"%>
    <%
    try
    String fileName = "ABC.CSV";
    String strData = "A,B,C";
    response.setContentLength(strData.length());
    response.setHeader("Content-Type","application/octet-stream");
    response.setHeader("Content-Disposition","inline;filename="+fileName);
    ServletOutputStream ouputStream = response.getOutputStream();
    ouputStream.write(strData.getBytes(), 0, strData.getBytes().length);
    ouputStream.flush();
    ouputStream.close();
    catch(Exception e)
    %>
    I tried some changes listed below:
    1. Deliberately introduced compilation errors in the JSP code.
    2. Changed contentType="application/x-filler" to various MIME types like application/x-download, application/vnd.ms-excel, removing it altogether.
    3. Commented out response.setHeader("Content-Type","application/octet-stream") and also tried other MIME types related to CSV/Excel.
    4. Changed Content-Disposition from inline to attachment.
    Each of the above resulted in an unacceptable behaviour compared with the earlier state:
    1. Blank page shown as if nothing was happening even in case of deliberate incorrect JSP syntax.
    2. Dialog box did show up with some combinations. But on trying to "Open" or "Save As", the dialog box shows up a second time. Then while trying to "Open", the contents get opened either inline or in MS Excel but with some additional garbage data like source file name.jsp etc. While trying to "Save As" the file name and extension take on the pattern <URL_Pattern>.htm where URL_Pattern would be "DOWNLOAD_ACTION.do".
    Some other information:
    1. This code works when accessed from desktop local container (Win 2000) but not when deployed on Unix env (HP-UX B.11.11.0109).
    2. Latest patchsets are installed for IE.
    3. The existing application is designed to work for ONLY IE 5.5 SP2 or above, so I haven't tried with other browsers. I have tried both IE 5.5 SP2 and 6.0 SP1.
    Any help in this regard will be highly appreciated.
    Thanks a lot for your valuable time..

    I have made it to work with the below changes:
    1. Changed the URL pattern for <filter-mapping> for *.jsp to /*.jsp
    2. Added <dispatcher>REQUEST</dispatcher> and <dispatcher>FORWARD</dispatcher>
    3. Everything else (code-wise) is as before.
    Because of these changes, the filter, wherein some headers are being added to the response, is being invoked appropriately now.
    Thanks for you time and suggestion though...

  • Excel Save As dialog not appearing for one user

    Hi,
    My company uses a payroll application called Cintra.
    It's possible to run a report in this application and
    export it to Excel.
    When one of the users exports a report and clicks File > Save As > Browse nothing happens. All other users get the Save as dialog.
    Is there any setting that may be preventing this? She does not appear to have this trouble when saving any other
    Excel
    files.
    We all use Excel 2013 on Windows 7 in Citrix.
    Cheers
    Paul

    Here is an article for troubleshooting errors when save Excel files you can refer to
    http://support.microsoft.com/kb/271513
    Based on your description, it's most likely that a Third-party add-in causes this issue, you can try to start excel in safe mode to test it.  excel.exe /safe

  • Excel 2010 inplace not showing File tab

    Wondering if anyone else having an Excel 2010 inplace issue not showing the File ("Backstage") tab to allow Save or Save As operations?  Noticed others searched SAP xSearch help with similar Excel 2010 search terms but nothing relevant returned...
    We're on ERP 6.04, NW 7.01sp5, SAPGUI 7.20sp2 with Excel 2010 running on XP sp3.
    Thanks in advance (and full points) for any resolution ideas or issue confirmations before opening an OSS ticket :>

    >
    Scott Aamodt wrote:
    > Patrick,
    >
    > In response to your Excel 2010 issue above our users have not had similar "crash" issues at all in the SAP technical environment I originally posted above.  If you have the same EHP4 and SAPGUI 7.20 as we and have that issue I'd check your Excel installation again before opening a ticket with SAP.
    >
    > Scott
    Is the "File"-Button now working in your environment or not?
    (We don't use SAPGui 7.10 and EHP ... but we will upgrade in a few month)
    Note 1408098 looks like there is no solution for the crash-issue, right?
    The only solution/workaround is to put the icons into the quickmenu-bar.
    Best Regards,
    Patrick

  • Smart Folder not showing files

    Hi guys, i'm trying to save a search on folder ~/Library/Application Support/iLifeAssetManagement/assets/sub/, but the smart folder is not showing the files even when i'm looking at those files, can any one tell me what am i doing wrong?
    Thanks!

    I have bad news for you. There appears to be a problem with the [Contains Attachments] condition in smart mailboxes. For smart mailbox purposes, Mail does’t realize a message contains attachments until you view its contents. I don’t think there is anything you can do about it other than reporting the problem here:
    http://www.apple.com/macosx/feedback/

  • Java GUI for Unix not showing . files

    we have discovered a strange behaviour with sapgui 7.10 rev 8 on unix (AIX and Solaris). You can't see and browse to folders starting with a . (e.g. .abc) and also files with a . are not listed in the file open dialog (for attaching files via cv02n). Does anybody experience the same behaviour and probabely has found a setting to change it?
    Thanks for any help
    Axel

    Hi Axel,
    it sounds a bit odd that this CAD integration software is writing files to hidden folders but the user later is forced to navigate inside there.
    SAP GUI for Java inherits the file chooser dialog from the Swing framework part of Java. Sun seems to have decided, that by default, hidden files and folders should not be shown.
    I am hesitating to generally switch on showing hidden files and folders because it will irritate most end users.
    We are looking into a way to add the option to switch on showing hidden files and folders by the user.
    Btw, the user can navigate into a hidden folder by entering its name and hitting return, from there the user can navigate as usual. So it is not required to enter a complete path.
    Best regards
    Rolf-Martin

  • "Sony_Volume_Recorder_Volume DVD" not showing files

    Hi all,
    I had some video tapes transferred onto dvd by a local company. When I got them
    home I tried to open the dvd on my Mac to transfer files onto my hard drive but I got the message
    above "SonyVolume_RecorderVolume DVD" with small no entry symbol on the folder. I have done a bit of research so I know Sony is not compatible with Mac (- I wish I knew before I had them transferred!) but I don't know how to get these video files to show so that I can save them?
    I must stress, these are my home videos; I own the rights to them. I just want to be able to
    save them and maybe edit them iMovie.
    Is there some special software I can buy to open these sony dvds? I read about
    the Terminal thingy; but when I am wary about going into the "guts" of the computer?
    I did try some "sudo" thing in Terminal I found on the internet, but it didn't work.
    Can anyone help? Am really frustrated at not being able to save these precious memories properly.
    Many thanks

    Hi,
    the format is Universal Disk Format (UDF)
    It says under Sharing and Permissions that I have no access
    and the files will not show up in the folder which has a no entry sign on it.
    These are my own home movies; I just had them copied from video to dvd in the hopes of
    saving them forever.
    Thanks,

  • Save As Dialog not responding - PDF Printer

    Whenever I try and print to the PDF printer, (If preferences are set to prompt for file name) the "Save As " dialog locks up. The only way to clear this is to stop the Acrotray.exe. process.
    I have tried changing the printer preferences, but the only options that I can get to work are:
    Prompt for Adobe PDF filename
    Documents\*.pdf
    I I use the browse to point to a different location, when I save the setting, exit and then go back to check it, it has reset to Prompt.
    System
    Windows 7 Ultimate
    Adobe Acrobat Pro 9.3

    to make things clearer a screenshot of the dialog I'm talking about. this happens everywhere such a generic save file dialog appears.

  • Folders not showing files

    I'm currently using a 13" Macbook Pro purchased in early 2011 and running on OSX Mavericks.
    I've been using the third party software Mackeeper for well over a year now and it's been great. I make good use of the encryption service that the app provides and there has been no misshap with it until now. A month ago my computer crashed, something to do with the wiring between the motherboard and the hardrive. When they fixed the problem my Mac was returned to me with absolutely no discernible data loss.
    However, I only just unencrypted some of my files in Mackeeper to check through them. All the files are intact except for one particular folder. "Get Info" States that the folder is filled with data and there are over 200 files in it, but clicking on it only opens up an empty finder window. I've tried googling for solutions but I can't find any.
    Can anyone help?

    Hi Everyone,
    I was experiencing the same. on the XP box it just wouldnt show anything period and on the Mac, the finder would briefly display the contents of the drive before disappearing. Spoke to Tier 2 and they thought I should reformat the drive, since he thought it likely that due to severing the drives connection that the format was corrupt...
    I did manage to fix it myself and I'll tell you how. First I hardwired the drive via USB to the Mac. noticed an item called FROM which had no size, no date modified and type was --. I deleted the RECYCLED folder (which results when you delete something from the drive thru XP)
    then i hardwired it to the PC. deleted the "FROM" folder which in this case was a file folder, and 237MB approx in size. I also deleted the ".DSStore" and ".Trashes" files. .DSStore is basically the icon cache and .Trashes is when you delete something on the airdisk from the Mac. reconnected the drive and POOF! it worked Problem is now solved.
    So to summate, i think in my case it was more the discrepancy between the FROM not showing up as anything on the Mac, versus it being a full fledged folder to windows xp. i just thought i would pass this along...
    Macbook C2D 2.0GHZ   Mac OS X (10.4.9)  

  • Finder not showing files when I open folder

    A folder on my external hard drive which I was just editing/ doing some file organization with,
    contains 60gb of data.
    Lots of files and folders in it.
    For no apparent reason,
    it is now showing nothing in it when I open it,
    Still says size is 60gb, but when I open it, the files do not show.
    What is going on?
    I need to work on these files.
    If you can help me with this, it would a huge help.
    Thank you.
    ps. in Mountain Lion 10.8.2, late 2011 macbook pro.

    [Please note, the plugin I mention is NOT a finder substitute. It is a plugin, and merely gives the finder tabs.
    If I disable this plugin, the result is the same in the "original" finder. Although when I say "original" I was using finder all along anyway.]
    I shouldn't have mentioned it, it is superfluous info.
    I dragged and dropped files using finder, that's all that needed to be said really.
    It would obviously make no sense to ask questions about finder if I was not using finder.
    Okay, I have to say, this is incredibly strange :
    After comparing the two separate drives,
    it seems I DID actually move the files to another folder [and forgot / was unsure of this],
    however, the info box still says the original folder I mention is 60gb, with one file [which does not appear when I open it]
    and finder is not displaying the increase in size in the folder [I'll call it folder 2] I moved the files to.
    I wonder if I delete the original folder, are the sub-folders I moved to folder no.2 going to be deleted?
    Are they still somehow connected to the original folder?
    I was moving things around to try and merge all my files and folders into one folder [folder no.2]

Maybe you are looking for

  • How to remove selection from a tr:selectManyListBox

    Hi, Let us suppose that a JSF page consists of a tr:selectManyListBox and a tr:commandButton. On clicking on an option in the list box that option gets highlighted. If press the commandButton then the page simply reloads with the slected option in th

  • Problem when updating software

    Hello, I've failed at two attempts to update my IPOD software to Ver 4.2. Each time, after downloading the software, it goes into "Backup Mode" and stays there for an inordinately long time. The process simply repeats if I stop the backup and restart

  • How to change the name showing up underneath of the app name

    as the title described, how can I change the name shows up underneath of the app name when you search in the app store. Is it called "publisher name"?

  • Unable to receive sub-account emails in Windows Ma...

    Family members living a distance away have a btinternet main account with a sub account. Both accounts are managed by their Windows Mail and have been operating fine for over 2 years. Last week an error 553 was given. Sub-account emails could be neit

  • Create material using LSMW

    Hello LSMW experts, I want to upload material master from flat file with some Plant and Sales Organization views in single load. But I am not sure how to map the header data (basic data), sales organization and plant data to the tool. Do I need to ha