How translate alts and titles for a images in dynamic content?

Hi,
I have a classic report with a column that shows diff. images based on decode expression for that column in report sql. Is there a way to translate alt and title for those images displayed dynamically?
Thanks.

Hello Edward,
>> Is there a way to translate alt and title for those images displayed dynamically?
Yes. You can use the APEX Dynamic Translation option:
http://download.oracle.com/docs/cd/E17556_01/doc/user.40/e15517/global.htm#BABFHCJA
Regards,
Arie.
♦ Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
♦ Author of Oracle Application Express 3.2 – The Essentials and More

Similar Messages

  • How translate Subject and body for a e-mail task to different languages ?

    We have several tasks with their corresponding subject and body text in a workflow.
    We would like to know if there is an easy way to translate all of them to several languages ?
    Thanks in advance.
    Juan.

    Hi Juan,
    The translation tools don't translate the subjects. I've found the best way to save yourself headaches is to log on in each target language and edit each task. Slightly longer but more reliable, simple and problem-free.
    Cheers,
    Mike

  • How to add src, alt and title tags to a PS generated Web Photo Gallery

    I do some web design and need to add some tags to a web photo gallery created by Photoshop. Maybe this question should be directed to the GoLive / Dreamweaver Forum but since the gallery was created in PS I thought I'd start here.
    I need to add src, alt and title tags to the images in the web gallery. Normally this is as simple as working on the code in the html page in which the image sits but the PS gallery doesn't seem to be that simple.
    Can anyone tell me exactly how, and which files I need to work on, to add these tags to each of my 42 gallery images?
    Thanks.
    John.

    You can't do it in Photoshop.
    You can open the pages in a text editor adn easily ad any tags you want. They are simply html pages.
    If you really want to, you can use Dreamweaver or Golive. Using a text editor is generally faster and easier because you can just copy/paste between the files and not have to worry about code rewriting in the WYSIWYG applications. Don't believe the GoLive/Dreamweaver hype about "round trip code" they both will alter code.

  • Changing ALT and Title Tags for Book and Page  Icons

    Hi folks,
    Are you aware of any setting in Robo Help that would allow
    you to modify or even remove the ALT and titles introduced for the
    Book and and Page icons displayed on the navigation pane. I tried
    deleting it from the RoboHHRE.lng file, but still its not going
    away. Other than deleting it from the rendered files (whlstt0.htm)
    is there any other setting within RoboHelp that would do the trick.
    My idea is to remove all ALT and title attributes given to Book and
    Pages as its causing too much redundancy.
    Regards,
    Prabhat

    Hi Prabhat -
    Apologies for the delayed response: while there is no
    Robohelp checkbox for removing this, you can step into the
    generated files and remove it. This thread should provide what
    you're looking for:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=65&catid=451&threadid =1184760&highlight_key=y&keyword1=TOC

  • Trying to add img scr, alt and title tags to a Photoshop created web gallery.

    I need to add some tags to a web photo gallery created by Photoshop. I've posted the same question in the PS Forum just in case.
    I need to add img src, alt and title tags to the images in the web gallery. Normally this is as simple as working on the code in the html page in which the image sits but the PS gallery doesn't seem to be that simple. I'm not sure exactly what file to put these tags in.
    Can anyone tell me exactly how, and which files I need to work on, to add these tags to each of my 42 gallery images?
    Thanks.
    John.

    The gallery is a mess and I might just rebuilt it using something else like Jalbum, but here it is: http://thewoodshopmalvern.com/ThumbnailGallery/index.htm
    Yes, I'm sorry, I'm trying to add ATTRIBUTES to the <img> tag.
    For the rest of the site I have simply gone to each of the html pages and updated the code itself - pretty straightforward. But PS seems to use Javascript in making this gallery and unfortunately I just don't know enough about Java to understand exactly where I need to add these attributes.

  • 1.6 Dynamic Photo Gallery - alt and title attributes from xml file?

    Hi!
    I would like to attach information to my gallery images from
    the XML-file used by the gallery.
    Especially the alt and title attributes for the "img
    id="mainImage"-tag would add a bit more user friendliness.
    I found
    this
    example about adding caption to images very help full and
    everything worked just fine, thanks to clear information!
    (http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=602&threadi d=1306782&enterthread=y)
    Could someone come up with an example of adding title/alt
    attributes values from XML file?
    I'm sure there are quite a few out ther who would like to see
    a solution to this ;)

    You need to add your info to the XML.
    So something like:
    <photo
    path = "travel_01.jpg"
    width = "263"
    height = "350"
    title="my title"
    alt_text="Alt Text"
    thumbpath = "travel_01.jpg"
    thumbwidth = "56"
    thumbheight = "75">
    </photo>
    Then in your detailregion:
    <img src="{dsData::large/@base}{@path}" alt="{@alt_text}
    title="{@title}" />
    I am using
    http://www.adobe.com/devnet/dreamweaver/articles/spry_photo_album.html
    as the source of my samples...
    So, just add the data to the XML and then you will have these
    attributes available as data references.
    Hope this helps.
    Don

  • Show inside dynamic text the title for multiple images on mouseover

    I have 25 animated movieclips dragged on the stage and they have similar instance names for easier manipulation purposes inside programming using loops. The instance names look like this: image0, image1, image2 and so on.
    Each time I go mouseover on one of these unique images I want to show the unique title of that image using for all titles just one dynamic text container named imageTitle.
    I have succeeded to make this work image by image but this would require me to copy paste and modify for each image the following code.
    image0.onRollOver = function() {
        imageTitle.text = "First image title";
        imageTitle.textColor = 0x000000; // setting the text color here
    image0.onRollOut = function() { 
        imageTitle.text = "Choose an image";
        imageTitle.textColor = 0x000000;
    Question: The above code would work but seems redundant to me. Since I have similar instance names (image0, image1, ....,image24), how can I put this code inside a loop or something in order to work for all images without repeating this code 25 times.
    Update: I have added an array to the project that contains all the titles:
    var imagesTitles = new Array("First image title", "Second image title", .... ); 

    imageTitle.textColor=0x000000;
    for(var i:Number=0;i<imagesTitles.length;i++){
    this["image"+i].ivar = i;  // key step
    this["image"+i].onRollOver=function(){
    imageTitle.text = imagesTitles[this.ivar];  // key step used here
    this["image"+i].onRollOut=function(){
    imageTitle.text="Choose an image";

  • How set  UserName and Password for HTTP Basic Authentication for a servlet

    Hi..
    How set UserName and Password for HTTP Basic Authentication for a servlet in JBoss server?
    Using Tomcat i can do it .(By setting roles in web.xml, and user credintails in tomcat-user.xml).
    But i dont know how do it in JBOSS..
    I am using Netbeans and Eclipse IDEs.. Can we do it by using them also!?
    Thank u

    Hi Raj,
    You can do this by creating a Login screen for the users and check the authentication of each user in PAI i.e. PROCESS AFTER INPUT.
    Store the user information in a database table and check the username and password when the user enters it.
    You can display password as *** also. For this double click on input box designed for password and goto Display tab. Select Invisible in the list and check it.
      CASE sy-ucomm.
        WHEN 'BACK'.
          LEAVE PROGRAM.
        WHEN <fcode for submit>.
          SELECT SINGLE uname pwd
           FROM <DB table>
           INTO (user, pass)
           WHERE username = user AND
                   password = passwd.
          IF sy-subrc = 0.
    <Go to next screen for further processing>
          ELSE.
    <Display Error message and exit>
          ENDIF.
      ENDCASE.
    Regards,
    Amit
    Message was edited by:
            Amit Kumar

  • Comments and Titles for iDVD slideshows

    I am wondering if there is any way to change the appearance (font, size, etc.) of the comments and titles for photos in an iDVD slideshow.  I have not found a way to do this, and am surprised since it seems I am able to change appearance for the text in virtually all other areas of iDVD.  I am running version 7.1.2.  Thanks for any suggestions.

    No, there's no way to modify that font or size. 
    OT

  • How can I reuse titles for different titels

    I would like to reuse the same titles for many/all of my videos, which naturally reside in different projects. How can I do this?

    Easiest way:
    Set up a Project called "My Titles" which has the titles just the way you like them, and nothing else.
    When you start a new project, right-click (control-click) on "My Titles" in the project source list, and select "Duplicate". Change the name of your duplicate project and add footage, etc.

  • How to read and display a fits image into JPanel

    Hi,I currently want to read a .fits file and display it in JPanel,have no idea how to achieve it.Any suggestions and source codes are appreciated.Thanks in advance!

    fits stands for flexible image transport system,it defined only for astronomy image data.it is not normal image,I am afraid I can not use the way you said to read fits file.Anyway,thanks a lot.

  • How to load and save a Bitmap Image?

    Hi, I have to load a directory of bitmap images, take the background(in this case: light green) and then swap those exact pixels with another image's corresponding pixels, and then save them in the same format(bitmap) in a different directory. Can anybody advise me on which libraries I need to use, and how I should approach this? I need help with every step so any help will be good. Thanks. Basically I need to do the following:
    1. Load 2 directories of images(Lets say the images are corresponding like Image1A and Image1B)
    2. Take Image1A's green pixels and swap them with the corresponding Image1B's pixels.
    3. Save Image1A in a new Directory.
    This will go on for however many images there are in those 2 directories. Can anybody advise me how to do this? I need critical help in all three stages. Thanks.
    Edited by: Taufiq on Feb 25, 2008 9:10 AM

    Taufiq wrote:
    Doesn't java handle bitmap images? Does it HAVE to be gif etc. ?
    Edited by: Taufiq on Feb 25, 2008 10:17 AMI'm not familiar with windows-specific stuff, but ImageIO supports additional image readers/writers. You should google.
    Edit: Actually, I just checked and ImageIO comes with readers and writers for both BMP and WBMP files:
    http://java.sun.com/javase/6/docs/api/javax/imageio/package-summary.html

  • How to open and validate the tif images via java?

    Is it possible to open and validating the photoshop images via java. Kindly advise me.
    Thanks for looking into this.
    Maria Prabudass

    I have recently looked at athe code for Image Processor.
    To avoid bailing on errors it uses two techniques.
    1) It turns off all PS error reporting in addition to just turning off dialogs with:     app.displayDialogs = DialogModes.NO;  (it restores the original settings when exiting)
    2) It uses the Javascript construct  Try.....Catch around the basic body of the code so "any" error will not abort the script but just jump to the "Catch" code.
    Hope that is useful

  • How to resolve insufficient data for an image

    Hi
    I am using oracle 9i database
    I have written a package using 'utl_smtp' package to send email and attachment.
    When I am attaching a oracle report (in .pdf format;This report has an Image inserted into it) and sent it to an email address, the attachment is sent properly. But when I am opening the attached file it is giving me
    insufficient data for an image instead of showing the picture. After the picture rest all text part of the report is appearing properly.
    The image is 24-bit bmp file.
    To test I have created another .bmp file with smaller size. And in that case it is working fine.
    Could you please resolve the problem.
    Regards

    Hi
    Thanks
    Yes I can open the .bmp file.
    My .pdf file is an oracle report
    I am generating the oracle report report as a .pdf file.
    When I open this .pdf file, it's perfectly fine, no problem with the file.
    But when I send this file as an attachment using utl_smtp, and after receiving the email I open the attachement, I face insufficient data for an image error. And the image is not shown in the .pdf
    regards

  • Photos app and titles for slideshow

    What is the best way to create titles for a series of photos to be played back in the photos app?

    you have the answer
    For now the solution is to use Mail or to export the photos and use them then delete the exported photos
    LN

Maybe you are looking for