Apex Default icons/images file names

Hi ,
How can I get the list of icons & images in Apex (like "/i/go.gif" )
How will I get the other files names & Path like Lock / Unlock / Delete , so that I can refer them like :
< img src="/i/go.gif" >
Regards,
Benz

Hi,
One way, maybe not best but works:
Download Apex installation zip.
Check folder apex/images from that.
If image is in zip images folder then use it like
/i/imagename.gif
or if image is some sub folder then
/i/subfoldername/imagename.gif
Br, Jari

Similar Messages

  • Adding image file name and logo to image

    Can you do batch processing of images to automatically insert the image file name, say at the bottom along with a logo, in black font. The logo stays constant but the image deatils will change with each image?
    Can this be done in Lightroom or then the full Photoshop?
    Thanks!

    I've taken the script mentioned above and modified it to the best of my abilities.  Still getting the same error, unfortunately:
    function main(){
    var suffix ="cropped";
    var docPath =Folder("~/Desktop");
    if(!docPath.exists){
       alert(docPath + " does not exist!\n Please create it!");
       return;
    var fileName =activeDocument.name.match(/(.*)\.[^\.]+$/)[1];
    var fileExt =activeDocument.name.toLowerCase().match(/[^\.]+$/).toString();
    var saveFile = new File(docPath +"/"+fileName+suffix+'.'+fileExt);
    switch (fileExt){
       case 'jpeg' : SaveJPEG(saveFile); break;
       default : alert("Unknown filetype please use manual save!"); break;
    if(documents.length) main();
    function SaveJPEG(saveFile, jpegQuality){
    jpgSaveOptions = new JPEGSaveOptions();
    jpgSaveOptions.embedColorProfile = true;
    jpgSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
    jpgSaveOptions.matte = MatteType.NONE;
    jpgSaveOptions.quality = jpegQuality; //1-12
    activeDocument.saveAs(saveFile, jpgSaveOptions, true,Extension.LOWERCASE);

  • Help with image file names when using Import Word document feature

    Hello,
    I am using File >> Import >> Word document into an HTML template.  If the Word document contains images, the images are written to the directory specified in my Site Default Image Folder.  Here is my question: As I was teaching myself the Import function, one time the images were automatically named to match the page name.  So for example, if my page is named Create.html, the images would be named Create_image001.jpg, Create_image002.jpg, etc.  I can't remember how I enabled this feature (or maybe I was dreaming) but if anyone knows how to control the name of the images imported from MS Word, please let me know.  I've searched and Googled for hours and can't find a way to control the image file names.
    Thanks in advance,
    Shellie

    I was hoping that this would be fixed in the 10.8.2 upgrade but it has not.  Anyone have any luck?  Earlier today I was trying to write a paper and navigating between 10 pdfs was a nightmare without being able to hover my mouse for the titles like I used to. 

  • How can I assign image file name from Main() class

    I am trying to create library class which will be accessed and used by different applications (with different image files to be assigned). So, what image file to call should be determined by and in the Main class.
    Here is the Main class
    import org.me.lib.MyJNIWindowClass;
    public class Main {
    public Main() {
    public static void main(String[] args) {
    MyJNIWindowClass mw = new MyJNIWindowClass();
    mw.s = "clock.gif";
    And here is the library class
    package org.me.lib;
    public class MyJNIWindowClass {
    public String s;
    ImageIcon image = new ImageIcon("C:/Documents and Settings/Administrator/Desktop/" + s);
    public MyJNIWindowClass() {
    JLabel jl = new JLabel(image);
    JFrame jf = new JFrame();
    jf.add(jl);
    jf.setVisible(true);
    jf.pack();
    I do understand that when I am making reference from main() method to MyJNIWindowClass() s first initialized to null and that is why clock could not be seen but how can I assign image file name from Main() class for library class without creating reference to Main() from MyJNIWindowClass()? As I said, I want this library class being accessed from different applications (means different Main() classes).
    Thank you.

    Your problem is one of timing. Consider this simple example.
    public class Example {
        public String s;
        private String message = "Hello, " + s;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example();
            ex.s = "world";
            System.out.println(ex.toString());
    }When this code is executed, the following happens in order:
    1. new Example() is executed, causing an object to constructed. In particular:
    2. field s is given value null (since no value is explicitly assigned.
    3. field message is given value "Hello, null"
    4. Back in method main, field s is now given value "world", but that
    doesn't change message.
    5. Finally, "Hello, null" is output.
    The following fixes the above example:
    public class Example {
        private String message;
        public Example(String name) {
            message = "Hello, " + name;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example("world");
            System.out.println(ex.toString());
    }

  • Get image file name

    Hi ALL,
    I want all image file naming like a caption in my source document. Source document contains more than 100 images.
    But i got a script through the forum and tuned for my script. Still, the file naming comes for the Ist page image only.
    From second page onwards the file naming not comes like a caption.
    Trying script:
    //To Get image file name
    var tgt = app.activeDocument.rectangles;
    for (i=0;i<tgt.length;i++){
        myCaption = app.activeDocument.textFrames.add();
        myCaption.textFramePreferences.verticalJustification = VerticalJustification.TOP_ALIGN
        myCaption.contents = tgt[i].graphics[0].itemLink.name
        myCaption.paragraphs[0].justification = Justification.CENTER_ALIGN;
        bnds = tgt[i].visibleBounds;
        myCaption.visibleBounds =
            [bnds[2]+12, bnds[1], bnds[2]+4,bnds[3]];
            //[bnds[0]-6, bnds[1], bnds[0]-1,bnds[3]];
            myCaption.fit(FitOptions.FRAME_TO_CONTENT);
    Thanks in advance
    BEGINNER

    If you use the add() method in conjunction with the document without specifying the page or better the spread, all objects added will end up on the first spread of your document.
    But your testing scenario is also too narrow. You are expecting:
    1. All your graphics are sitting in Rectangle objects (what about Ovals or Polygons?)
    Therefore: All graphics placed in ovals or polygons are left out.
    2. That really ALL rectangles in your document contain graphics
    You are in trouble, if there happen to be empty rectangles on a page. I would suggest to test that with your script. It will give you an error, because there is no graphics[0] for this specific rectangle, where you can draw the "name" for the "itemLink".
    3. That there are no graphics in anchored objects or pasted inside other objects; left alone graphics inside table cells.
    And who can say that thiese three restrictions exist in all documents you want to run this script against?
    So, if you want to get to all image files in the document, why don't you start with the images in the first place?
    Let's see:
    the Document object has an "allGraphics" property.
    Use that as a starting point and you will not missing a single graphic.*
    Iterate through "allGraphics" will get you:
    the "name" of the placed image through its itemLink.name property;
    the container of the graphic, that's the "parent" of the graphic.
    Now you need one other thing:
    the page, or even better(!) the spread where the graphic is located. Imagine a graphic sitting outside of a page.
    If you want to handle thiese, you must know the spread.
    If  writing this script for InDesign CS5 or above, you are in luck. There is a "parentPage" property of the "Graphic" object, you could use for your add() method. For graphics outside of pages this property will be "null".
    And another important thing:
    if a graphic is copy/pasted from e.g. PhotoShop to InDesign, the "itemLink"  property of that graphic is also "null".
    We can handle that in a try/catch scenario…
    //Scope: all graphics on all pages
    //(that includes graphics of anchored objects, active states of MSOs, graphics in table cells as well)
    var tgt = app.activeDocument.allGraphics;
    for(var i=0;i<tgt.length;i++){
        //Narrow the scope to all graphics on pages only:
        if(tgt[i].parentPage != null){
            //What to do with graphics, that are pasted directly from none-InDesign files:
            //the caption will read "Undefined"
            try{
            var myName = tgt[i].itemLink.name;
            }catch(e){var myName = "Undefined"};
            //targets the page of the graphic:
            var myPage = tgt[i].parentPage;
            //adds a text frame to the page of the graphic:
            var myCaption = myPage.textFrames.add();
            myCaption.textFramePreferences.verticalJustification = VerticalJustification.TOP_ALIGN;
            myCaption.contents = myName;
            myCaption.paragraphs[0].justification = Justification.CENTER_ALIGN;
            //Why visible bounds and not geometric bounds?
            var bnds = tgt[i].parent.visibleBounds;
            myCaption.visibleBounds = [bnds[2]+12, bnds[1], bnds[2]+4,bnds[3]];
            myCaption.fit(FitOptions.FRAME_TO_CONTENT);
    *Not exactly true, because it is missing graphics in not-active states of  MultiStateObjects.
    Since MSOs were introduced in InDesign CS5 the DOM documentation left out this fact so far.
    //EDIT: in the first version I had a comment on a different scope. Since  Document Objects have no "graphic" property, I removed that comment. Sorry.
    Uwe
    P.S. And a Happy New Year to all!
    Message was edited by: Laubender

  • How do I call image file names from MySQL & display the image?

    Hello everyone,
    I have image file names (not the full URL) stored in a MySQL database. The MySQL database is part of MAMP 1.7 and I am using Dreamweaver CS3 on a Mac Book Pro.
    I would like to create a catalog page using thumbnails, and PayPal buttons displayed within a table, in rows. With the image centered and the PayPal button directly underneath the image.
    How do I use PHP to call the thumbnail images as an image not the file name, to be displayed in the table?
    Thanks in advance.

    slam38 wrote:
    How do I use PHP to call the thumbnail images as an image not the file name, to be displayed in the table?
    Open the Insert Image dialog box in the normal way, and navigate to the folder that contains the images. Then copy to your clipboard the value in the URL field, and click the Data Sources button. The following screenshot was taken in the Windows version, but the only difference is that Data Sources is a radio button at the top of the dialog box in Windows. It's a button at the bottom in the Mac:
    After selecting Data Sources, select the image field from the approriate recordset. Then put your cursor in the URL field and paste in the path that you copied to your clipboard earlier.

  • How do I not show image file name, only url link - Acrobat Pro 9

    Both file name and url ink show when placing cursor over image. I want to only have url link appear.
    And if that's not possible, I want to then change the image file name. Any ideas?

    Use a button field for the link. You will have to add the action or JS code to open the link.

  • RH8 - Image File Names

    Greetings,
    In a generated project, created in the RH8, when the user hovers over an image, the file name displays. I checked the image properties and Screen Tip text field is empty.
    How can I prevent the image file name from displaying in the generated project?
    Thanks

    Hi there
    When you examine the generated code what do you see? Is there a Title attribute or an Alt attribute? You didn't say what the output type was. Is it WebHelp? If so, did you enable Section 508 options when you generated? (Part of being Section 508 compliant is giving images corresponding names)
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Image file names changed on Homepage

    I have found, on several occasion,s that the titles of the images on my homepage have lost their file names and show the filename iPhoto gives it when uploading to Homepage i.e. Image123A123B123C etc Sometimes, it shows OK when viewing the page but not when editing the page.
    All my images are given my job number reference for people to order from so loosing them is a big issue.
    homepage.mac.com/cjbphotography/

    The exif "image file name" is probably only used by some cameras, I don't have anything in there either.
    Instead use "file name" under "other", that is the actual file name of the master file.

  • Export to PDF change default "Save As" file name

    Hello,
    I have an asp.net application where I use a CrystalReportViewer. The user runs the report via the application.  They then click on on the the Export button in the viewer with PDF as the format.  This launches the PDF file.  When I click the Save icon, the Save As dialog box comes up.  The default name in this window is the name of the .aspx file.  I want to be able to specify what this file name should be instead of it defaulting to the name of the asp page in which the report was launched.
    I do not want to recreate the Export button, I am trying to find a way to do this with existing crystal functionality.  Can anyone please help??  Thank you!!

    Hi there,
    I believe I may have found the solution!
    You will need to set your CrystalReportViewer.ID property to what you need your filename to be.
    In my example:
    CrystalReportViewer.ID = "NewPDFFileNamehere";
    The .PDF file extension will be added automatically!
    Just note, you need to set the above property ASAP in code - meaning - It should be the first thing you do before having any other code attached, read into or from CrystalReportViewer.
    Hope it helps!
    Credits to http://blog.dragonsoft.us/2009/04/07/how-to-set-default-file-name-for-export-from-crystalreportviewer-in-aspnet/
    RBotha

  • Convert image file names to labels and resizing images according to frame. Possible??

    Hi all,
    I have posted this question hastily in the main mac forum but then i realized it is a scripting question so I repost here.
    Q1: I have a client with 700+ images who has named the images with numbers and the caption:
    eg: 1.II.34. Walking down the road towards the building.tiff
    This is the name of the image file itself
    Is there a way to import the name of the file (possibly without the extension) and place it as a caption under the image without copying and pasting? A script maybe?
    I tried the labelgraphics script. Unfortunately it returned the extension as well. I was given a solution but did not work for me since it deleted everything after the first dot on the name. This was:
    in labelgraphics on line 105, change
    myLabel = myLink.name
    to
    myLabel = myLink.name.split('.')[0]
    So how can we tackle this so it deletes everything after the LAST dot?
    Q2: The image files I am given are all huge tiff files. I use the full 100% of the images but in my document they have to be much smaller . They are usually scaled down to 25-35% of the original file. So I end up with huge, unneeded documents.
    Is there a script that would work together with photoshop maybe?
    It would need to read the frames dimensions the image is in, open the linked file inside photoshop, resize it with a specified interpolation to maybe 110% of the frame's dimensions, set the resolution (if not set) to 300 dpi save the image as a copy (or with a suffix or prefix), leave photoshop open (for the next image to be processed), relink to the new image and go to the next image
    I know it sounds a lot but I was amazed by the issues people handle in this forum and thought I would give it a try
    Thank you in advance
    Michael

    Peter thank you so much. It works like a charm.
    As for Q2, I spent some time doing research and came up with a couple of scripts that sound like they could do the trick.
    a) Image Transform or Rasterize
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1509 022#
    b) Resample Project Images to 100%
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1612 518#
    Still, since I am such an ignorant I do not know which one would be the proper one.
    Any suggestions would be highly appreciated.
    Thank you once more
    Michael

  • Changing image file names

    hi all.
    can anyone help me find a thread (can i run a search somehow in ("Your Stuff"?) where folks were kind enough to help me understand how to change file names?
    i am reading through some help documentation on Batch Change but i am trying to remember what i should be doing to most efficiently solve my problem.
    basically i have images in aperture which have non-sensical names related to their originally existing in a pc folder organization originally and i would like to both rename them in aperture but also be able to have them EXPORTED to my desktop so i can upload them to the web with some reasonable sounding title such as "client1-town1-HousingType-FirmName-photographer.png" or something similar. right now the images i want to publish are ORGANIZED IN ALBUMS and have names like "folio_construction_other_turtle_134543.png"
    i think i WOULD LIKE to change the name of the master but i am not totally sure about this and when i run a Metadata > Batch Change and pull down version name i get selections that i do not fully understand.
    https://www.dropbox.com/s/yvu1u7eskbmhcik/Screen%20Shot%202012-12-03%20at%201.58 .46%20PM.png
    i /am/ familiar with a handle little tool called Name Mangler which basically allows me to easily delete all the PREFIX information (such as "folio_construction_other_turtle" and then to pre-pend something like "client1-town1-HousingType-FirmName-photographer" in front of the image number which would be ideal...
    apologies for asking this again but until i get through it once i am finding it all a bit tricky.
    THANKS

    Hi Leonie.
    Thank you so much. I am going to be doing a lot of this and just so i understand:
    Delete the images you exported and renamed from your Aperture library before reimporting, to avoid creating duplicates. When deleting from the album that you used to export, use the command "delete version", not "delete from album". Do not delete the projects that the images came from, only the images.
    Can you help me understand which images i am deleting? I mean, is there a way to delete just the images in the ALBUM because if i have to go in and delete the images from a Project there are going to be a lot more images in the Project and it is going to be very hard to tell which images have been renamed and which have not been renamed. If i have to do this by deleting the images in the Project, i suppose i could use one of your suggestions to color all the images in an ALBUM, say yellow, and then see where the images show up in Projects but even then i think it will be a bit tricky. Are you saying i can just delete the images in the ALBUM by doing "Delete Version"?
    Use "File > import" to reimport your image files. I'd put all images that shall be imported into the same project into one folder, and then import each folder on its own.
    OK. So - well - so now i am importing all of the images that i originally had in the Database and they are /basically/ (i moved the folder organization around a little bit while the images were on my desktop in this first attempt...) - they are basically getting IMPORTED into Aperture now with the "new" images coming into the database into a new Project that is named according to the Album that they were in?
    This is a little tricky for me. Will the old Albums still exist? What if i had more than one Album with an image in it. Also, this "new" image will be in a /new/ Project but will it still be in the OLD PROJECT with the old name? Or, i guess i am getting a little confused as to how this will work.
    Select the project in the Library Inspector, that you want to import the folder of images into, then set the "Destination" in   "Import settings > Aperture Library" brick to this project  and set "Store Files" to "In the Aperture Library".
    OK. I can try this here soon. What does Store Files in the Aperture Library do? I guess these images are getting imported as if they are new and they are getting imported with no external references?
    Set "Rename files" to "None" or "version name". Both will keep the name you edited.
    OK. Not sure i totally understand but i can try this as well. I guess this is making sure Aperture will keep the original names.
    THANKS

  • Render PDF Pages As Images - File names are gibberish

    I have a workflow that takes a folder of PDF's and converts them to JPG's.
    The problem is that Automator is giving the converted files random gibberish filenames such as Kft56Fvg.jpeg and not the names of the original files.
    Anyone know what's going on?

    At the bottom of the list of actions in Automator is an area with the description of the selected action in the listing (but not the workflow). If this description isn't visible, there is a button at the bottom of the window near the bottom left corner of the window for revealing the description.
    If you need to see the description of an action that is in the workflow on the right side of the window, there is a button on the action itself at its bottom left that will reveal the description of the action. This is so you won't have to find it again in the listing just to review its description.
    For you're immediate convenience and peace of mind, this is the description you'll find for "Render PDF Pages as Images":
    ---- Begin description ----
    This action will render each page of the passed PDF files as images.
    Note: As the names of the resulting images are randomly generated, this action is often followed by the Rename Finder Items > Make Sequential action.
    Input: PDF files
    Options: Image format, color model, resolution, and compression
    Result: (Image files) References to the rendered image files.
    ---- End description ----
    Since a PDF can contain many pages, this action could produce many images from the same PDF. So, that could further complicate naming the new images when multiple PDFs are involved if you need special names.

  • Changing image file name

    I'm working with dreamweaver 8 for Mac.
    Imagine that you have a html page with more than 200 images, that you have changed many times during the last few years, some have been deleted others have been added. And some are not linked any more.
    At the beginning the pictures were numbered from the top of the page to the bottom of the page in order (picture1, picture2....), now they are messed up (picture13, picture 1....).
    If I rename the images in my local file folder, DW update it on the html page. Unfortunately in the local file folder the pictures are not displayed, I have to open all of them (200 images) on my desktop ! I The result: a big mess. So my question is:
    Is it possible to make a file name change on the html page, and DW update it on the local files folder?
    I hope I've been clear. Thanks for your help.

    What I would do is create a PHP script that places the images in a document, sorted on date.
    If you Google the subject, you will see many examples on how to do this. One such search gave me this http://www.javascriptkit.com/javatutors/externalphp2.shtml
    If you then see an image that you no longer need, you can remove it from the directory. This will leave you with the images that you do need sorted from earliest date to the latest  date.
    Keep this script for the document that you want to show the images on. Future maintenance will consist of removing the unwanted images from the directory and adding new ones. The PHP page will automatically be updated. No worries with file names, as long as you do not have two the same.
    Although I mention PHP, the same goes for all serverside scripts.
    Good luck.
    Gramps

  • KM Image file name for Microsoft Office 2003 documents

    We want to change the images which display for Microsoft Office 2003 files loaded into KM to something more recognizable, but we CANNOT find the image files for .XLS, .DOC, .PPT, etc.
    Any Ideas what they are called?  Are they in the standard image repository?
    Thanks!

    Hi Brian,
    the icons are saved under /etc/public/mimes/images.
    You can go to KM Content and upload there your own icons, You can either replace the SAP standard ones (ie: document.gif for .DOC) or you can change the KM Configuration (Content Management -> Utilities -> Icons) so that your own icons are associated with the MIME types you want to change. The second solution should be more upgrade safe in my opinion.
    Hope this helps,
    Robert

Maybe you are looking for