Change the output settings > compatibility of SaveForWeb file via the script name?

I'm having a problem with one of my scripts adding hyphens instead of spaces to the files saved by export > SaveForWeb-feature. I realize it's because of the "unit of compatibility file name >"-box under output settings, but I can't find any info on how to disable this thing. The ExportOptionsSaveForWeb object does not seem to cover this particular setting.

The temporary file name must not have spaces, for example "tempSWF.jpg".

EDIT: just saw that it was PNG so use something like "tempSFW.png".

If the tempname had spaces or other strange characters when recording file name could be different!

Tags: Photoshop

Similar Questions

  • Change the host name and the url of the Oracle Application

    Hello, I need help to change the url of Application Oracle
    OLD url - http:// appssvr.XYZ.com:8007
    NEW url - http://erp.XYZ.co.in:8002

    Help, please

    Hi Richa,

    Please go through the below mentioned Notes Metalink.
    You just need to change the appropriate settings in the context of requests ($APPL_TOP/admin/*.xml, location) file and run Autoconfig.

    341322.1 how to change the hostname of a stream of Applications using automatic configuration
    338003.1 how to change the host name or port of the database layer using automatic configuration

    Let me know if you still have doubts.

    Concerning
    Neeraj Sharma

  • stop the warning to change the host name

    I continue to be careful:

    Your computer name is already in use on this network. the name has been changed...

    I click ok and keeps coming back with many more and will not stop!

    Thank you

    This is the share name that is duplicated on another device on the network, or the name of VICTORIES under the Ethernet settings. Both are in system preferences.

    Under network, click the network connection you are using (wired or wireless). Click the Advanced button, then the WINS tab change the NetBIOS name to something else. Click OK. If it is active, click on the button apply.

    If that doesn't help, click on the share icon. Change the computer name to something else. This is necessary, or even do anything if at least one of the options of sharing is checked.

  • Smartphones blackBerry how to change the user name of e-mail on a Blackberry Curve 9320.

    Dear community,

    I have a Blackberry Curve 9320. My company has recently changed their messaging system so I need to create a new e-mail account. Creating the account of electronic mail is not a problem. However. some settings need to be changed. When I go on settings, navigation key allows me to change the change the server info, type my password etc. However, I'm unable to change the user name. My device automatically generates a username of email that is not correct and I am unable to change because the navigation button jumps on this area. Can someone advise me on how a change the username of email on a curve 9320. Thank you.

    IT WORKED! Thank you very much. Force the unit to offer "I'll give you the parameters" was the thing. Have a great day.

  • How to change the default name of new adjustment layers? (and other Q)

    How can I change the default name of new adjustment layers?

    How can I do to make the adjustment layers do not come with a mask when I create them (unless I have an active selection)?

    Why isn't the functionality of shadows / highlights an adjustment layer? It is accessible under "settings", but you can use it not destructive

    Where can I find documentation on the API of Photoshop? (I want tools do it o - javascript)

    How can I do to make the adjustment layers do not come with a mask when I create them (unless I have an active selection)?

    It is an option in the drop-down Panel. Uncheck the 'Add a mask by default'. No mask unless you have a selection active.

    (it is using PS CS6, don't know about older versions)

  • The value of PDF file printed via the script name

    Hi people!

    I have a little problem with the generation of a PDF file. First my Workflow:

    I have an InDesign document with 6 pages. This document is merged with a databasefile containing 100 records. After it is merged, we need to generate a PDF file. This PDF file is opened in acrobat. In the document, I am looking for one ID for each record so I can split the document to 100 files (each with 6 pages) and name by the ID that I found.

    The Acrobat script is finished and functional. I thought: the InDesign script is over, too. But I was wrong-. -.

    I merged the databasefile with the document and it has exported to PDF. But after export, we noticed that the Acrobat script isn't finding the adressheader where ID is in. The script only noticed the text after this header. The result is, as get-Acrobat always 'null' as ID

    If print us the PDF with our PDFprinter, the header could be read by our script of Acrobat. I don't know why this is... But now, I changed the script to print the files through our PDF printer. Unfortunately I can not set a name for my exported file - do you know if it is possible to print PDF files without asking for confirmation after each other as well as with a via script name?

    Here you can see the old writing for InDesign and after her, the sript Acrobat. Maybe I made a mistake by generating my PDFexport and have no need to use the printer?

    INDESIGN SCRIPT:

    /**
    * invite filebrowser and stores the name and path of the file in variable
    */
    var sourceDocument = File.openDialog ("Bitte Indesign-Dokument Park", "*.indd", false);

    /**
    * stores the only prefix of file name to use as the new file name
    */
    newName var = sourceDocument.name.substr (0, sourceDocument.name.length - 5);

    /**
    stores in folder where the file is stored
    */
    var dbSourceFolder = sourceDocument.parent + "/"; "

    /**
    * guests for databasefile, where production is expected to begin
    */
    var dbstartfile = File.openDialog ("Start-Datenbankdatei of Bitte Park", "*.txt", false);

    /**
    * Gets databasefile basename
    */
    var dbstartfilename = dbstartfile.name.slice (0, dbstartfile.name.search(/_Teil+/));

    /**
    * Gets number of first databasefile
    */
    var i = dbstartfile.name.slice (dbstartfile.name.search(/_Teil+/) + 5) .slice (0, -4);

    /**
    * generates the path and name of the first databasefile to use
    */
    var dbSource = dbstartfile;

    /**
    * set PDF preset to generate PDFS
    */
    var PDFPreset = app.pdfExportPresets.item ("GAG - PDF");

    /**
    * stop throwing alerts
    */
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT;

    message will be thrown if databasefile is not existing
    If (dbSource.exists == false) {}
    reboot to launch alerts
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
    Alert ("File" + dbSourceFolder + dbprefix + "_Teil" + i + ".txt konnte nicht werden found! \n\rBitte starten Sie den procedure Rubis und Sie die right Datenbankdatei one enter.");
    }
    another process begins
    else {}
    even if (dbSource.exists == true) {}
    Opens the document indesign source without displaying
    mergeDocument = app.open (File (sourceDocument), false);
    defines what databasefile should be used for data merging
    mergeDocument.dataMergeProperties.selectDataSource (File (dbSource));
    starts the file database and the indesign document merging
    mergeDocument.dataMergeProperties.mergeRecords ();
    document generated in PDF export
    app.activeDocument.exportFile (ExportFormat.pdfType, File(sourceDocument.parent+"/"+newName+"_Teil"+i+".pdf"), false, PDFPreset);
    farm open indesign document
    mergeDocument.close (SaveOptions.no);
    i ++ ;

    change the name of the database file to get the next file
    dbSource = File(dbSource.parent+"/"+dbstartfilename+"_Teil"+i+".txt");
    }
    }
    reboot to launch alerts
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
    Alert ("PDF-Generierung sky!");

    SCRIPT ACROBAT:


    /**
    * Path where files should be saved
    * Special characters like spaces must be preceded of--------.
    * If you want to change the folder, use the following form:
    * ' / DriveLetter/foldername /... /LastFolderName/.
    * Be careful not to forget the / before and after the location
    */
    filepath var = "/ c/pdf_split_test / ';

    /**
    * Number of display pages - do not hesitate to change
    */

    pageType = app.prompt var ("Please die Seitenzahl der presentations one gewunschte.", "");
    Alert (PAGETYPE);

    /**
    to search for regular expression
    */

    var idNumber = / 08\d\d\d\d\-\d\d\d\-\d\d\d\d\d-\d\d\d-\d\d/g;

    /**
    * If possible this function gets the number sought as string
    *
    @param string of revenge that is to be found in the document
    * @return null if rematch is not found or a string if the rematch is
    */

    function ExtractFromDocument (reMatch) {}
    try {}
    var Out = new Object();
    for (var i = 0; i < 1; i ++)
    {
    numWords = this.getPageNumWords (i);
    var PageText = ' ';
    for (var j = 0; j < 30; j ++) {}
    var Word = this.getPageNthWord (i, j, false);
    PageText += Word;
    }
    var strMatches = PageText.match (reMatch);
    If (strMatches == null) continue;
    }
    Return strMatches;
    } catch (e)
    {
    App.Alert ("processing error:" + e)
    }
    }

    /**
    * tries to load given filename (excerpt number)
    *
    @param string file name of the file that should be checked
    @param n number of iterate when checking files
    * @return true if the file exists or false otherwise
    */

    function checkIfFileExists (filename, n) {}
    var existingDoc = false;
    try {}
    If (n == 0) {}
    var checkDoc = app.openDoc(filepath+filename+"-000.pdf");
    } else {}
    var checkDoc = app.openDoc(filepath+filename+"-000_"+n+".pdf");
    }
    checkDoc.closeDoc ();
    existingDoc = true;
    } catch (e) {}
    }
    If (existingDoc == true) {}
    n = n + 1;
    n = checkIfFileExists (filename, n);
    }
    return n;
    }

    var pageAmount = this.numPages;
    for (i = 0; I < pageAmount; i + pageType) {}
    var filename = ExtractFromDocument (idNumber);
    fileExistence = checkIfFileExists (filename, 0);
    If (fileExistence! = 0) {}

    this.extractPages ({nEnd:(pageType-1), cPath: filepath + filename + "-000_" + fileExistence + ".pdf"});
    } else {}
    this.extractPages ({nEnd:(pageType-1), cPath: filepath + filename + ""-000.pdf ""});
    }
    this.deletePages ({nStart:0, nEnd: pageType-1});
    }

    Hello

    I have a little problem with the generation of a PDF file. First my Workflow:

    I have an InDesign document with 6 pages. This document is merged with a databasefile containing 100 records. After it is merged, we need to generate a PDF file. This PDF file is opened in acrobat. In the document, I am looking for one ID for each record so I can split the document to 100 files (each with 6 pages) and name by the ID that I found.

    Why you are not exporting 6 pages PDF directly from InDesign?

    Robin

    www.adobescripts.co.UK

  • TB change the sender name to my name to email classic. Fritz! Box send a pushmail with the name "Fritz!" Box '. In the Inbox of my ISP of this name is present. ...

    TB change the sender name to my name to email classic.
    Fritz! Box send a pushmail with the name of the sender "Fritz!" Box' to my standard email address.
    In the Inbox of my ISP of this name is present. Get this mail with TB the name "Fritz!" Box"is changed in lastname, firstname. This is the full name of my standard email address as I stated in my address book.

    In the toolbar > Options > view > advanced and turn off "see the show only the names of the people in my address book."

  • How can I change the script on my windows live mail in English after it being hacked

    my windows live has been hacked. I decided to go back inside. But unable to change the script back to English.

    Windows Live Mail questions belong here: http://windowslivehelp.com/product.aspx?productid=15

  • LaserJet M1536dnf: Impossible to change the host name on HP LJ M1536dnf

    Hi everyone;

    I'm changing the host name on our printer that is currently Imprimante1 that's not what I'm looking for (I have no idea how it was change or not at all).

    I tried to access the printer via IP in a browser (tried Chrome, IE and Edge) still occur. I see the host name to the title of the network, however, I am not able to change it.

    I also thought I might be able to install the software and use the Toolbox, except that during the installation, the Toolbox links are created in the start menu, but it is never installed (confirmed uninstall reinstall twice)

    So yes, here it is...

    Anyone have any ideas on the issue?

    See you soon,.

    Do not know your printer exactly, but on most of these when you go to the web page, you must go to networking and you will need to go in which change you the method of how it gets ip address or an ip.  On this screen will be the ability to set the IP in a manual address and the area that contains the host name you should be able to click on it and change the name.

  • Properties of the system; General tab. How can I change the registered name?

    I am the second owner of my computer and I would like to change the registered name to show my own.  How can I do this?

    It's Windows XP Edition SP3 addition family

    Saturday, July 17, 2010, 11:24:04 + 0000, Dawgbrother wrote:

    I am the second owner of my computer and I would like to change the registered name to show my own.  How can I do this?

    It's Windows XP Edition SP3 addition family

    It is a Windows 7 forum, not a Windows XP forum. But since the same
    answer works for both versions of Windows, it's here:

    If I bought a used computer, no matter who previously owned, the first thing I have with it would be to reinstall the operating system itself. You don't know how the computer has been maintained,
    which has been improperly installed, what's missing, what virus and
    There may be spyware, etc. I would not live with someone of another errors and problems, possibility of kiddy p0rn, etc, and I would not recommend anyone else to do.
    But if you just want to change the name of "registered to", you can do
    editing HKLM\Software\Microsoft\Windows NT\Current
    Version\RegisteredOwner with Regedit.

    Ken Blake

  • How to change the SSID name of the computer to be Compatible with the new name SSID router

    Need to change the default name of the SSID router and then reconfigure adapters wireless in each PC to be compatible with the new router SSID.  A PC has Windows XP Home Edition Version 2002 Service Pack 3 and the other Vista Home Premium.  What are the steps to change the SSID on each PC?  Your response will help complete a home network wireless system.  Thanks in advance.

    Hello

    Your computers use the SSID of your router - sound essentially its name.

    Check this box:
     
    Setting up a wireless router with Vista
    http://www.ehow.com/how-does_4899098_setting-up-wireless-router-Vista.html

    If necessary:

    Make sure you know the details of connection to your wireless router - SSID and password.

    You lose connection when you do and have to redo your logon.

    Control Panel - Network & Sharing Center - right, click Customize - page set of network locations.
    lower left click on merge or delete network locations - REMOVE all instances of your network (and the
    others you don't use anymore) - REBOOT. Start - Connect To log on to the network.

    Setting up a wireless router with Vista
    http://www.ehow.com/how-does_4899098_setting-up-wireless-router-Vista.html

    I hope this helps.

    Rob - bicycle - Mark Twain said it is good.

  • I have a problem with the connection to the computer after you change the user name.

    Original title: HELP

    I changed the username on my laptop and it is not letting me log

    I changed the username on my laptop and it is not letting me log

    Here you go:

    1. Set your BIOS so that it uses the DVD drive as its primary boot device.
    2. Start the computer with your Windows 7 repair CD.
    3. Press a key when prompted to boot from the DVD.
    4. Select 'PC Repair' in the menu.
    5. Select 'Repair' when prompted.
    6. When you are prompted, select System Restore.
    7. Configure Windows to a point before you have changed the user name.
    8. Plan ahead a little and create, test and document an alternative admin account, same as you have a spare emergency House key. This will save you a lot of trouble.
  • Change the computer name in the network discovery, view old and new names and get error code 0 x 80070035

    I changed the computer names of computers each with windows 7 and a home network sharing. Network discovered each poster now the old and new names. I also have an error code 0 x 80070035.

    How can I get rid of the old names?

    Hello

    Are you able to access computers using the names?

    Step 1: Check out the link to learn how to delete the old name and create a new name:

    Change the name of your computer:

    http://Windows.Microsoft.com/en-us/Windows7/change-your-computer-name

    Step 2: Refer to the section below for more information to correct the error 0 x 80070035 and steps.

    Open the homegroup troubleshooting utility

    http://Windows.Microsoft.com/en-us/Windows7/open-the-HomeGroup-Troubleshooter

    Error 0 x 80070035 appears if you are not able to access the network computer. Follow the instructions in the thread below if you are faced with a similar question:

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-networking/Windows-7-error-0x80070035-when-trying-to-share/d8168c72-D51C-41C3-8B8F-3b6bb7f65f43

    It will be useful.

  • To change the host name of the device WAE

    If I want to change the host name of one of the WAE machine in my network, can I just rename it through Central Manager GUI? It is possible through CLI as well? Would the database of this device kept in CM by the change of host name?

    Thank you!

    Joe

    Hey Joe,

    You should be able to change it without any impact. In her change CM. the WAE you want to change. In activation select left pane and change the name to what you want it to be and click on submit. I would like to know if this is the information you were looking for? In her change CM. the WAE you want to change. In activation select left pane and change the name to what you want it to be and click on submit.

    Kind regards

    Kanwal

  • changing the computer name root

    I want to change the computer name added to the initial setup of the computer. I tried several suggested solutions and none worked.

    The easiest way to do what you want is to create another user with privileges to adminstrive account and name what you want.

    Then copy all your data and configure it as you wish.

    When you are satisfied, remove the original account.

    Edit: Didn't see page 2

Maybe you are looking for