Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. DucatiST2

    ps 7 Scratch Disk Problem

    Photoshop 7 is old and can't use HDDs 1TByte or over, so you will have to partition the disc so that you can install it.
  2. DucatiST2

    Coping/Pasting a multi layerd image into another multi layered image (and keep all layers)?

    Select the layers you want to go into the other document, select duplicate layer (Layers Palette), then select the document you want them in.
  3. DucatiST2

    How to delete all duplicates in an array

    This should work as well... var a = [1,1,1,1,1,2,2,2,3,4,4,4,4,4,4,4,4,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6]; alert(ReturnUniqueSortedList(a)); function ReturnUniqueSortedList(ArrayName){ var tmpObj = new Object; for (var i in ArrayName) { tmpObj[ArrayName[i]] = ArrayName[i]; } var...
  4. DucatiST2

    RegEx String between 2 different strings MultiLine

    in javascript I would do:- var s = "Impact at 04/01/2012 21:28"+ "DSL: 92 customers on TEST111"+ "test Office (IDA): 3"; alert(s.match(/dsl:.*(\d\d)/i)[1]); Hope it helps.
  5. DucatiST2

    Re-sizing a layer and centering it on the work area

    Once you have done the resize, select the move tool, select all (ctrl/a) and select Align Vertical Centers (from the options bar) then Align Horizontal Centers. Or you can use Layer - Align Layers To Selection - Vertical Centers/Horizontal Centers
  6. DucatiST2

    Batch Processing

    Ah sorry, I have dug my old laptop out with CS2 on and this script should work for you. You need to select the files in Bridge then run the script from Photoshop. N.B. NO files should be open in Photoshop. #target photoshop main(); function main(){ var fileList = GetFilesFromBridge()...
  7. DucatiST2

    Batch Processing

    The following script will do that.. File - Scripts - Load Files into Stack..
  8. DucatiST2

    Embedded File Info

    Use a template in Bridge. Tools - Create Metadata Template.. Select the files Tools - Append or Replace Metadata This way no files need to opened.
  9. DucatiST2

    Resizing Weirdness...CS3

    WEB and your display works on the number of pixels only, not on what you set the reolution. Check your display resolution.
  10. DucatiST2

    Default Setting for 'Unsharp Mask' (Threshold)...???

    Hold the alt key down, this will change the Cancel button to Reset.
  11. DucatiST2

    Why Does The File Size Differ From the Image Size?

    When a file is saved compression is done on certain file formats, in photoshop the file is uncompressed and for each pixel there are three bytes RED,GREEN and BLUE so the file size is three times the pixel count. If you are editing the same document in needs to be in TIF,PSD or some other...
  12. DucatiST2

    Photographic calender

    Just design it in Photoshop, as for the calendar bit I have written a script for PSCS2/CS3 to create a one month calendar, if you want 12 months run it 12 times. http://www.ps-scripts.com/bb/viewtopic.php?t=2178
  13. DucatiST2

    History stages combined

    You could look at the script that does the job. C:\Program Files\Adobe\Adobe Photoshop CS3\Presets\Scripts\Photomerge.jsx Paul.
  14. DucatiST2

    Changing multiple text layers

    You could use a script, here is an example, it will change ALL text layers to the selected font. This was writen for PSCS2/3 Save the code as FileName.jsx and to run it: File-Scripts-Browse to where you saved it and select it. Select your font and click ok. Paul. ////////// #target photoshop...
  15. DucatiST2

    Image size reduction

    If you just want to change the resolution (PPI) Pixels Per Inch (DPI = Dots per Inch, what you use for printing); Select the Crop tool, remove any values in the Width and Height boxs and put your new resolution in the Resoution box. Select the whole document and double click. Your document is...
  16. DucatiST2

    Preview Photoshop thumbnails in windows explorer?

    In the explorer toolbar goto View and see what the setting is there, from your description it sounds as if it is set to "Tiles" or "Icons" if it is just click on "Thumbnails" and all should be well.
  17. DucatiST2

    Saving files within Action/Bathches to multiple folders

    It would be useful to know what vertion of Photoshop you are using. If you are using PSCS2 PSCS3 the following code would do a whole directory of GIFs. save the code to a file with a jsx extention to your scripts folder ie:- Gif2Jpg.jsx pscs2 C:\Program Files\Adobe\Adobe Photoshop...
  18. DucatiST2

    File Saving in Actions - Help/Suggestions Needed

    A script would do this. But having 3000 documents with the SAME NAME (fofder.jpg) seems very strange! Anyway here's some code for the save. Tested on CS2. var docRef = app.activeDocument; saveFile = new File(docRef.path + "/folder.jpg"); SaveJpeg(saveFile,8); function SaveJpeg(jpgFile...
  19. DucatiST2

    Custom batch rename

    Just found the link for the javascript plug-in download mscallisto http://www.adobe.com/support/downloads/detail.jsp?ftpID=1536 Paul.
  20. DucatiST2

    Custom batch rename

    Version 7 also supports javascript. Go to Adobe and download the free plug-in. I believe that scripts are not compatable between 7 and CS* though. Paul.

Part and Inventory Search

Back
Top