Nowhere to type file name in save as dialog, is this normal . . .

Hello;
here's the problem;
I'm having some problems with my main worksation and I'm going to probably rebuild it from scratch
(HDD problem & an AVG Baked registry & network stack)
so I've started by installing AA 2.0 (Full) onto one of  my backup systems
& will follow with AA3.0 (Upgrade) if I can verify that the system can do the job for me
here's the problem;
I installed AA2.0 which is needed to get AA3.0(upgrade) to install
but I haven't activated or registered yet because I don't want to waste any activations
if I can't use the system
is it normal for the save as dialog to not have a place to type a file name when AA isn't activated?
System:
HP/Compaq DC7600
P4HT enabled 3.2GHz
2GB DDR2 533MHz RAM
Lots of HDD Space on 5 HDDs
sidebar:
why is my insertion point moved all over the page while I type this in firefox?

thanks for the reply:
don't know if this some sort of a display redraw issue:
but if I just hit enter I get the file saved as untitled.wav (which is floating in the middle of the screen not in the correct location)
and the file ends up in "My Music Folder" (which I never use, but can't change folders either)
-good grief I hate M$ for their My . . . crap folders
the system is using similar Intel-GMA integrated graphics as my main workstation
the only difference is processors and the chipset is one generation back
my main workstation has 965ry and the backup has 945g

Similar Messages

  • Excel 2010 missing default suggested file name in Save As dialog box

    I’m using Excel 2010 running on Windows 7 (32 bit).  When I open a certain file which produces the following message: "A file is in a different file format than its extension indicates", and then go to “Save As” (or “Save”) the
    file, the default suggested file name is missing (blank).  This didn't occur in previous versions of Excel. 
    In previous versions, Excel would automatically populate the original file name in to the File Name field.
      I have searched all over the net, looking for a way to change Excel so that it will once again populate the file name in this situation. 
    To reproduce:
    Create a new blank workbook
    save as type “Web Page”, (i.e. File name:  “Blank Example.html”)
    Close workbook
    In windows, rename file from .html to .xls  (i.e. rename “Blank Example.html” to “Blank Example.xls”)
    In Excel open renamed file (i.e. “Blank Example.xls”) and click “Yes” when prompted with the “A file is in a different file format than its extension indicates” message.
    Do a “Save As” and you will notice that the File Name is blank. In previous versions, this field would contain the current workbook file name
     (i.e. “Blank Example.xls”)
    Any help will be greatly appreciated.

    Hi Jaynet,
    In order to re-produce this, you need to answer "yes" to the rename file prompt and then continue with step 5 (above).
    The reason for this is not an exercise in futility - I assure you.  At my work and elsewhere, when web developers have created features to permit the end user to save web data in Excel format, often times the Excel files are saved locally in Excel's
    html format (but with the .xls
    extension). 
    (I actually prefer the .xls
    extension, because it is easier to just double-click the file to open in Excel, rather than to select the open-with and then select Excel. a file with the .html extension will default open in your default browser. Now, I could change my default program
    for the .html extension, but that would only solve a part of the problem and would not really address the bigger issue and that being that Microsoft changed a behavior in Excel and may not even be aware that it was a much used feature. )
    To continue, when I go to open the resulting Excel file, I am prompted with the message that the file type does not match the extension (which is fine and not bothersome to me).  It's at this point when I go to save the file that I get really annoyed.
    In previous versions of Excel, the default file name would be pre-filled with the current name of the file and the default file type would state that it is a Web html file.  I would just change the file type to Excel Workbook and hit enter to save.
    I would be prompted with "Are you sure you want to overwrite your existing file?" message and I would click "yes" and that would be that.
    However, in Excel 2010, because the default file name is blank, I then need to re-type the name into the field to save the file. 
    Any help is greatly appreciated.
    Thanks

  • How can I add form field value to the file name in save as dialog box

    I do not want the form to be saved automatically, just want the form to auto populate the "file name" only.
    A little background on the forms I want to use:  My company has 70 retail outlets, I'll use one of our pdf forms called an "Incident Report" as an example.  I would like for a store manager to be able to complete the form, then email the form to the main office (I already have javascript to add field values and form name to the email subject line), once the main office receives it, I want for them to be able to file the pdf electronically on our server.  We have mutliple forms that we use so I do not want any of the forms to automatically save anywhere, (at this time anyway) I just want the office personnel to be able to click "save as" (or whatever they will need to click) and the form automatically add certain field values from the pdf they have received, of which will be different each time the form is sent to the office (Date, store #, employee name etc.) in addition to the name of the form in the "File name" of the "Save As" dialog box.  The main office employees will decide into which server file the pdf should be saved.
    I'm using Acrobat 8 professional, the stores and office personnel use Adobe reader.
    One little note:  We currently print and file a lot of paper on a daily bases, as soon as I can get this to work, we are going green.
    Me and a lot of trees in this will really apprecitate any help you can give with this!  :-)

    You might want to take a look at the document "Developing Acrobat Applications Using JavaScript" (js_developer_guide.pdf) which is part of the Adobe Acrobat SDK, which can be downloaded here. Read the "Privileged versus non-privileged context" (p. 45ff.). You will find an example for "Executing privileged methods in a non-privileged context". Should be almost exactly what you are looking for.
    Small Outline: For security reasons ("the user always has to know what's going on") you are not allowed to use the "Doc.saveAs"-method without the user permission (--> in a non-privileged context). In order to reach the goal of a privileged context you can use a trusted function. You do this by creating a JavaScript file (*.js) in either the Application-JavaScript-Folder (default location on Windows systems: "%ProgramFiles%\Adobe\Acrobat 10.0\Acrobat\Javascripts") or the User-JavaScript-Folder (default location on Windows systems: "%AppData%\Adobe\Acrobat\10.0\JavaScripts"). Add the following content to the new file:
    myTrustedBrowseForDoc = app.trustedFunction( function ( oArgs ) {
         app.beginPriv();
              var myTrustedRetn = app.browseForDoc( oArgs );
         app.endPriv();
         return myTrustedRetn;
    myTrustedSaveAs = app.trustedFunction( function ( doc, oArgs ) {
         app.beginPriv();
              var myTrustedRetn = doc.saveAs( oArgs );
         app.endPriv();
         return myTrustedRetn;
    The developer guide actually wants you to add this content to the existing "config.js" file. I recommend creating a new file, since its easier to deploy in a network. Either way, every client/user who needs to be able to save documents this way, needs this JavaScript Code in his Application/User-JavaScript-Folder.
    Within the Acrobat Document, which you want to obtain a certain file name, you can now use the trusted functions "myTrustedBrowseForDoc" and "myTrustedSaveAs" to store the file. To call the trusted functions and deliver the file name you can either you use a form field (button) or you add a new menu item. Add the following JavaScript Action to the button/menu item and change "Roller Coaster" to the name of the field which contains the value which you want to become the new file name:
    var fileName = this.getField("Roller Coaster").valueAsString;
    try {
         var oRetn = myTrustedBrowseForDoc({bSave: true, cFilenameInit: fileName + ".pdf"});
         try {
              myTrustedSaveAs(this, { cPath: oRetn.cPath, cFS:oRetn.cFS });
         catch(e) {
              console.println("Save not allowed, perhaps readonly.");
    catch(e) {
    console.println("User cancelled Save As dialog box");
    Good Luck!

  • Change File Name on Save

    Hi all,
    I have an action recorded that helps me to resize and rename an original image several times.  The action works perfectly, but I have to have the save step as manual so I can enter the correct save name for each file after the action resizes the image.  The save process is idential each time so I figure you must be able to 100% automate this.  So here is the scenario - hope someone can help.
    I have a heap of files open in Photoshop CS3
    action - resize and save as (current action does this)
    delete last 4 characters of current file name and add '1500' to end of current file name and save (this is what I want to automate)
    action - resize and save as (current action does this)
    delete last 4 characters of current file name and add '400' to end of current file name and save (this is what I want to automate)
    action - resize and save as (current action does this)
    delete last 3 characters of current file name and add '200' to end of current file name and save (this is what I want to automate)
    action - resize and save as (current action does this)
    delete last 4 characters of current file name and add '100' to end of current file name and save and close file (this is what I want to automate)
    run action again for all open files (this is what I want to automate)
    thanks in anticipation!   BD

    Here's a script for you:
    var count = 4;           // number of characters to remove
    var appendStr = '1500';  // string to append
    function main() {
      if (app.documents.length == 0) {
        return;
      var doc = app.activeDocument;
      var nm = doc.name;
      var base = nm;
      var ext = '';
      var m = nm.match(/(.*)(\.[^\.]+)/);
      if (m) {
        base = m[1];
        ext = m[2];
      if (base.length > count) {
        base = base.substring(0, base.length - count);
      var newName = base + appendStr + ext;
      doc.duplicate(newName);
    main();
    Save this to a file called "1500Dupe.jsx" or whatever.
    At the end of your first action, call this script. It will create a duplicate of the current document with last 4 characters replaced with '1500'.
    You will also need additional step in the action to save this to a file and close the duplicate document. It's simpler to do this in the action than it is in the script.
    You will need to create new jsx files for each of the other substitutions that you want to make. Just change the 'count' and 'appendStr' values as needed and save to new files.
    -X

  • HT1386 I keep getting an error messagwe when syncing: iphone cannot be synced. Aduplicate file name was specified. What does this mean? How do I fix it? Please help.

    I keep getting an error message when syncing:
    iphone cannot be synced. A duplicate file name was specified.
    What does this mean? How do I fix it? Please help.

    any idea how to fix this

  • Finder changes the file name in Save/Save As dialogue box

    Whenever I save or save as a file, the dialogue box opens, but when I make the file list active when using a mouse, the file name I click to changes the file name I am saving. I simply want to activate the file list window so I can find the right folder. For example if I am looking for a folder called "Receipts" I want to be able to click on the file list window to activate it and then type the first 2 letters of the folder-- "re" and then save the file in that folder. The finder keeps changing the name of the current file whenever I click on one of the "greyed-out" file names? This doesn't make sense unless of course I want to replace that file.
    Is there a shortcut that makes the file list window in the dialogue box active while in the SAVE/SAVE AS dialogue box??

    Yes, this example of horrible UI design has been a problem since "Panther". It illustrates what happens when you try to copy UI behaviour from another OS, do it poorly, and end up with a mess. In 10.3 and 10.4, the combination of the renaming behaviour with the default "replace" selection in the resulting save can result in data loss.
    Compared to the old Mac OS where a tab would flip the focus between the text field for the file name and the file browser, the current behaviour either doesn't allow enough keyboard access to controls, or with "full access" enabled, too many to cycle through easily. The inability to switch focus to the file browser using the mouse (depending on the view) is a horrible productivity loss. Having to recheck the filename before saving is a horrible productivity loss. Since there is no "undo" for the renaming in most files, having to retype the name is again, a horrible productivity loss.
    If they had done it right (a simple change, like requiring a modifier to rename), users would probably welcome the "rename" feature as a useful addition. Instead, it has the feel of something a junior Windows-trained programmer slipped in past their supervisor.
    In short, I am not aware of any workaround or hack to avoid this "renaming" behaviour. I doubt it will do any good since people have been doing so since "Panther", but you could try submitting feedback:
    http://www.apple.com/feedback/macosx.html

  • Dynamically populate pdf File name in 'Save As' dialogue box

    We have  rendered a pdf using adobe webservice.
    Once the pdf is generated , and we click on saveAs menu dialogue box opens and default name is populated in fileName field.
    Can it be possible to populate that name dynamically ? We tried using response.addheader() but it didnt work.
    Note : We are using java to create xml which we are passing to adobe webservice.

    Hi Jaynet,
    In order to re-produce this, you need to answer "yes" to the rename file prompt and then continue with step 5 (above).
    The reason for this is not an exercise in futility - I assure you.  At my work and elsewhere, when web developers have created features to permit the end user to save web data in Excel format, often times the Excel files are saved locally in Excel's
    html format (but with the .xls
    extension). 
    (I actually prefer the .xls
    extension, because it is easier to just double-click the file to open in Excel, rather than to select the open-with and then select Excel. a file with the .html extension will default open in your default browser. Now, I could change my default program
    for the .html extension, but that would only solve a part of the problem and would not really address the bigger issue and that being that Microsoft changed a behavior in Excel and may not even be aware that it was a much used feature. )
    To continue, when I go to open the resulting Excel file, I am prompted with the message that the file type does not match the extension (which is fine and not bothersome to me).  It's at this point when I go to save the file that I get really annoyed.
    In previous versions of Excel, the default file name would be pre-filled with the current name of the file and the default file type would state that it is a Web html file.  I would just change the file type to Excel Workbook and hit enter to save.
    I would be prompted with "Are you sure you want to overwrite your existing file?" message and I would click "yes" and that would be that.
    However, in Excel 2010, because the default file name is blank, I then need to re-type the name into the field to save the file. 
    Any help is greatly appreciated.
    Thanks

  • Change file format in save as dialog

    when i 'save as' in photoshop cs4 to change a psd to jpeg, the extension does not change.
    example: original file- 123.psd, save-as 123.jpeg. instead of adding .jpeg, cs4 adds the word 'copy' in the file name and keeps .psd. if i try to open the file again, ps says it is not a supported format and does this until i manually change the extension to jpg.
    any ideas?
    thanks
    im on a mac pro dual 2.66 running os 10.5.6

    Might You have set »Append File Extension« to »Never« in Preferences - File Handling by any Chance?

  • Trying to Save (menu or cmd-s) a file always opens Save As dialog

    Hi,
    First post (hello forums) - any help would be much appreciated. Please be kind if this is a no-brainer for the gurus out there.
    I'm on a Mac G5, OSX 10.4 running CS3 - upgraded from PS7 about 3 weeks ago.
    All was humming along nicely until this morning. I opened a file I had been working on (without problem) yesterday, made a few edits, hit cmd-s, and the save As dialog popped up. Okay, no worries -- overwrite, and move on. Made a few more edits, cmd-s, and again the Save As dialog pops up. Cancelled that dialog and tried the save command from the menu -- same thing -- get the Save As dialog. Hmmm... Closed that file, created a fresh one, made some simple edits, and tried to Save -- again the Save As dialog opens.
    Not a huge deal - I can always overwrite, but save should just save a working file surely.
    I've scoured the interwebs looking for any ideas, but nothing.
    Again, any help would be much appreciated.

    Hey,
    Thanks for the speedy response. Its been .psd's so far, but I haven't tried any other file type. Edits have been anything really -- adding layers to new files, adding layers to existing layered files, adding shapes, adding text to a layer - just about any alteration that would normally 'un-grey' the save option in the menu.
    The 'Layers' and the 'Embed Color Profile' boxes are checked in the save As dialog.
    Thanx.

  • OSX sometimes places 31 character limit on file names. How can I get this error to stop?

    This error notice doesn't make sense, since many of my file names exceed 31 char. This error message pops up when saving documents, esp. web pages. As a consequence, OSX will refuse to let me save the file, until I shorten the name and so remove informative identifying features of the file name. But most of the time, OSX is perfectly happy to save files with names longer than 31 char. How can I get this error notice and block to turn off?

    I have also seen this issue it occurs regularly when transferring word documents files from my Macbook Pro running OSX 10.5.8 to my iMac running 10.9.4.
    My iMac HD should be formatted to factory standards as well since I have not mucked around with it since I bought it.

  • HT1414 the iphone software update server could not be contacted.a duplicate file name was specified , please help as this is driving me nuts,does anyone know which file it could possibly be ?

    Hi could anyone help me out? my iphone 3gs keeps restarting itself every two minutes which i think is some kind of software issue,now there are a number of things i have done starting with putting in a new battery.when i charge the phone it resets itself every two minutes or so and the battery indicator stays at 4% so i decided to restore the phone on itunes (which is the latest edition) and when i connect my phone which i have put into recovery mode using the buttons, i get an error message saying :- the iphone software update server could not be contacted.a duplicate file name was specified. i have tried re-installing i tunes and that doesn't solve the issue and i have trawled through the program files to see if i could spot the duplicate but without success ,has anyone had the same issue and resolved it?

    An iPhone 3G cannot be updated beyond iOS 4.2.1...that's the end of the line for your phone.

  • I am using OSX 10.9.5 and Outlook Web App for emails. When I download an attachment it replaces the space in the file name with   - how can I change this?

    I am using OSX 10.9.5 and Outlook Web App for emails. When I download an attachment it replaces the space in the file name with %20  - how can I change this?

    Click on the below link :
    https://get.adobe.com/flashplayer/otherversions/
    Step 1: select Mac OS  X 10.6-`0.`0
    Step 2 : Safari and FIrefox
    Then click on " Download Now"  button.

  • Different photos with the same file name!! How to change this?

    While I was organizing my photos, I realized there are about 30 or so photos that have the same exact file name as another photo. Example: There are two IMG_1243.jpg, but they are different pictures. They were taken at different times, even different years. I have used more than one camera to import photos. I have changed the name of one of the photos in the Title area in the information section of iPhoto. When I try to put the newly named photo into a folder that has the other IMG_1243, I get a message that says" An older item named "IMG_1243" already exists. Do you want to replace it with the newer one you are moving?"
    I want to have both IMG_1243.jpg photos in the same folder. How can I do this? Also, I have a few thousand pictures, so how can I tell exactly how many photos have the same file name as another photo?

    Celtic Mom
    Welcome to the Apple user to user discussion forums
    While I was organizing my photos, I realized there are about 30 or so photos that have the same exact file name as another photo. Example: There are two IMG_1243.jpg, but they are different pictures. They were taken at different times, even different years. I have used more than one camera to import photos. I have changed the name of one of the photos in the Title area in the information section of iPhoto. When I try to put the newly named photo into a folder that has the other IMG_1243, I get a message that says" An older item named "IMG_1243" already exists. Do you want to replace it with the newer one you are moving?"
    I want to have both IMG_1243.jpg photos in the same folder. How can I do this? Also, I have a few thousand pictures, so how can I tell exactly how many photos have the same file name as another photo?
    It sounds like you are using the finder inside the iPhoto library - do not do that - you will corrupt your library and lose the edits, keywords, etc that you have
    iPhoto does not care about duplicate file names - it handles it fine
    changing the title of a photo does not affect the file name - although when you export the photo you can use the title for the file name as an option
    What are you doing and what do you want to accomplish?
    Remember do not ever make any changes in the iPhoto library using the finder or any other program
    LN

  • Error message: URL's with the type "file:" are not supported.  I get this pop-up twice each time I enter Safari and Mail.

    Everytime I go into Mail and/or Safari, I receive a pop-up the states "There was a problem connecting to the server.  URL's with the type "File:" are not supported.  The pop-up comes up twice each time and I have to click "ok" to close them.  Only started after install of OS Lion 10.7.  Any one else have this and is there a solution.  It is just plain irrating that is does this each time I check my mail or go on the internet.  Thanks!

    That's interesting. I bet that helps other Safari users! 

  • Default file name in Save dialog

    In our application, we need to specify a default name when
    calling file.browseForSave("Save"). However, it seems impossible.
    file.resolvePath("<path>") does not help as if the
    specified path does not exist, it throws out an error.
    Anyone can help? Thanks in advance!

    Thank you for your reply. I did try that. However, the
    problem is the similar to using file.resolvePath("<path>").
    In var f:File = new File( "/path/to/yout/file.txt" ), if
    "/path/to/yout/file.txt" is not an existing file on the disc, there
    will be the following error:
    ArgumentError: Error #2004: One of the parameters is invalid.
    at Error$/throwError()
    at flash.filesystem::File/set nativePath()
    at flash.filesystem::File()
    When saving data to a file, the file may not exist on the
    disc...

Maybe you are looking for

  • Please help me regarding the law and telephone pol...

    Hi guys this is my first post but I've been suffering for a few weeks with this matter and need some help from those in the know... I had a new line put in to the house which is about 1m from the middle of the pair of semi detatched where I live. The

  • Calendar popup for a date field in ITS service

    Hi I am working with SRM EBP module we want to add date help(with calendar function) to existing date fields in Shopping cart and PO screens . I found some HTML and scripts in SYSTEM and BBPGLOBAL(assuming in regular ITS this service might be GLOBAL)

  • How to enhance the Excel export from Crystal Reports

    Hello, I am new in Crystal Reports and I wonder if it is possible to enhance the Excel export from Crystal Reports with post-processing that would be applied to the Excel exported file. By example, is it possible to freeze the window panes, so rows a

  • POST data using UTL_HTTP

    Hi There, First of all, I am using the UTL_HTTP package for the first time. Basically, we have to POST JSON data to a URL. The format of the data is {"definition":"Part","item":"Part1","value":"123"} {"definition":"Part","item":"Part2","value":"789"}

  • LR 2.5 won't export TIFF files with LZW or ZIP compression??

    I've just updated to LR2.5 and CR5.5, I'm using Vista Ultimate x64 on an AMD x2 64 bit pc. LR worked fine until 2.4 came along and hijacked all my auto play settings. Adobe finally releases 2.5 and now I find if I export TIFF files from a Nikon D700