Unable to Add alternative text and tooltips to your images

Hello,
I am using Muse CC in Apple iMAC machine.  The build version of Muse CC is 232. 
Having watched the video, http://tv.adobe.com/watch/learn-adobe-muse-cc/using-titles-and-alt-text-to-images/, I am unable to bring up the image property window when I press the right hand click button of my Apple Mouse. 
As such, I am unable to add alternative text and IMG Text to my images including the logo, facebook and Twitter Logos. 
Can someone please tell me how to resolve my issue?  How come I unable to bring up the image property when I press the right hand click on the mouse.  The image property is also not shown in the menu of Muse CC.
Thank you.
Maxplus.

Hello Maxplus,
Try doing CTRL+Click once to see if it works. Also, if an image is added as a fill, it doesn't bring up the Add alternative text and tooltips option, because then it is added as a background and not placed as an image.
Cheers
Parikshit

Similar Messages

  • How to add new text and an empty space before a file name with Automator

    I can create a new service to add to multiple files some text before the file name but I need to add even an empty space; e.g. file name original  becomes: new text(space)file name original. The aim is to add this text and space to multiple files.
    I hope to be understood. Please can somebody help me?
    Thanks

    This is an old Apple-supplied AppleScript that will do the job.
    IMPORTANT: note the conditions of use: it will choose the frontmost Finder window to operate on. Therefore, open the folder you want to change the names of and make it the front finder window BEFORE running the script.
    Add to File Names
    This script is designed to add a prefix or suffix to files in the front window of the desktop.
    If no folder windows are open, the script will affect items on the desktop.
    Copyright © 2001–2007 Apple Inc.
    You may incorporate this Apple sample code into your program(s) without
    restriction.  This Apple sample code has been provided "AS IS" and the
    responsibility for its operation is yours.  You are not permitted to
    redistribute this Apple sample code as "Apple sample code" after having
    made changes.  If you're going to redistribute the code, we require
    that you make it clear that the code was descended from Apple sample
    code, but that you've made changes.
    --March 2014: Changes by Phil Stokes to make the script work on 10.9
    --these changes are simply reversing the order of parameters in the lines that have "copy" in them
    -- The following line is disabled due to a Menu Manager bug
    --set the source_folder to (choose folder with prompt "Pick the folder containing the files to rename:")
    try
              tell application "Finder" to set the source_folder to (folder of the front window) as alias
    on error -- no open folder windows
              set the source_folder to path to desktop folder as alias
    end try
    set the prefix_or_suffix to ""
    repeat
              display dialog "Enter the prefix or suffix to use:" default answer the prefix_or_suffix buttons {"Cancel", "Prefix", "Suffix"}
              copy the result as list to {button_pressed, prefix_or_suffix}
              if the prefix_or_suffix is not "" then exit repeat
    end repeat
    set the item_list to list folder source_folder without invisibles
    set source_folder to source_folder as string
    repeat with i from 1 to number of items in the item_list
              set this_item to item i of the item_list
              set this_item to (source_folder & this_item) as alias
              set this_info to info for this_item
              set the current_name to the name of this_info
              if folder of this_info is false and ¬
                        alias of this_info is false then
                        if the button_pressed is "Prefix" then
                                  set the new_file_name to the (the prefix_or_suffix & the current_name) as string
                        else
                                  set the new_file_name to the (the current_name & the prefix_or_suffix) as string
                        end if
                        my set_item_name(this_item, the new_file_name)
              end if
    end repeat
    beep 2
    on set_item_name(this_item, new_item_name)
              tell application "Finder"
      --activate
                        set the parent_container_path to (the container of this_item) as text
                        if not (exists item (the parent_container_path & new_item_name)) then
                                  try
                                            set the name of this_item to new_item_name
                                  on error the error_message number the error_number
                                            if the error_number is -59 then
                                                      set the error_message to "This name contains improper characters, such as a colon (:)."
                                            else --the suggested name is too long
                                                      set the error_message to error_message -- "The name is more than 31 characters long."
                                            end if
      --beep
                                            tell me to display dialog the error_message default answer new_item_name buttons {"Cancel", "Skip", "OK"} default button 3
                                            copy the result as list to {button_pressed, new_item_name}
                                            if the button_pressed is "Skip" then return 0
                                            my set_item_name(this_item, new_item_name)
                                  end try
                        else --the name already exists
      --beep
                                  tell me to display dialog "This name is already taken, please rename." default answer new_item_name buttons {"Cancel", "Skip", "OK"} default button 3
                                  copy the result as list to {button_pressed, new_item_name}
                                  if the button_pressed is "Skip" then return 0
                                  my set_item_name(this_item, new_item_name)
                        end if
              end tell
    end set_item_name

  • PUSH BUTTON text and tooltip dynamic in module pool

    I want to change  at runtime the text and tooltip of a push button which belongs to a screen of module pool (not a pf_status).
    Is there anyone who can help me?

    HEllo,
    Check this report done by Rich,
    Ok..here is my example. Most of the code was generated by screen painter via the tabstrip control wizard. Create screen 100, use the tabstrip control wizard to create your tabstrip, name it TABSTRIP. Double click on the tab text elements, rename them TABSTRIP_TEXT1 and TABSTRIP_TEXT2 for the tab text elements, make sure that the output only check box is checked.
    REPORT ZRICH_0003 .
    data: TABSTRIP_TEXT1(30) type c,
          TABSTRIP_TEXT2(30) type c.
    start-of-selection.
    call screen 100.
    *&      Module  STATUS_0100  OUTPUT
          text
    module STATUS_0100 output.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    Fill the tabstrip text elements here!
    TABSTRIP_TEXT1 = 'Text 1'.
    TABSTRIP_TEXT2 = 'Text 2'.
    endmodule.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
          text
    module USER_COMMAND_0100 input.
    endmodule.                 " USER_COMMAND_0100  INPUT
    FUNCTION CODES FOR TABSTRIP 'TABSTRIP'
    CONSTANTS: BEGIN OF C_TABSTRIP,
                 TAB1 LIKE SY-UCOMM VALUE 'TABSTRIP_FC1',
                 TAB2 LIKE SY-UCOMM VALUE 'TABSTRIP_FC2',
               END OF C_TABSTRIP.
    DATA FOR TABSTRIP 'TABSTRIP'
    CONTROLS:  TABSTRIP TYPE TABSTRIP.
    DATA:      BEGIN OF G_TABSTRIP,
                 SUBSCREEN   LIKE SY-DYNNR,
                 PROG        LIKE SY-REPID VALUE 'ZRICH_0003',
                 PRESSED_TAB LIKE SY-UCOMM VALUE C_TABSTRIP-TAB1,
               END OF G_TABSTRIP.
    DATA:      OK_CODE LIKE SY-UCOMM.
    OUTPUT MODULE FOR TABSTRIP 'TABSTRIP': SETS ACTIVE TAB
    MODULE TABSTRIP_ACTIVE_TAB_SET OUTPUT.
      TABSTRIP-ACTIVETAB = G_TABSTRIP-PRESSED_TAB.
      CASE G_TABSTRIP-PRESSED_TAB.
        WHEN C_TABSTRIP-TAB1.
          G_TABSTRIP-SUBSCREEN = '0101'.
        WHEN C_TABSTRIP-TAB2.
          G_TABSTRIP-SUBSCREEN = '0102'.
        WHEN OTHERS.
         DO NOTHING
      ENDCASE.
    ENDMODULE.
    INPUT MODULE FOR TABSTRIP 'TABSTRIP': GETS ACTIVE TAB
    MODULE TABSTRIP_ACTIVE_TAB_GET INPUT.
      OK_CODE = SY-UCOMM.
      CASE OK_CODE.
        WHEN C_TABSTRIP-TAB1.
          G_TABSTRIP-PRESSED_TAB = C_TABSTRIP-TAB1.
        WHEN C_TABSTRIP-TAB2.
          G_TABSTRIP-PRESSED_TAB = C_TABSTRIP-TAB2.
        WHEN OTHERS.
         DO NOTHING
      ENDCASE.
    ENDMODULE.
    Screen Flow is ....
    PROCESS BEFORE OUTPUT.
    PBO FLOW LOGIC FOR TABSTRIP 'TABSTRIP'
      MODULE TABSTRIP_ACTIVE_TAB_SET.
      CALL SUBSCREEN TABSTRIP_SCA
        INCLUDING G_TABSTRIP-PROG G_TABSTRIP-SUBSCREEN.
    MODULE STATUS_0100.
    PROCESS AFTER INPUT.
    PAI FLOW LOGIC FOR TABSTRIP 'TABSTRIP'
      CALL SUBSCREEN TABSTRIP_SCA.
      MODULE TABSTRIP_ACTIVE_TAB_GET.
    MODULE USER_COMMAND_0100.
    Vasanth

  • LR 4.4 on pc with Win7. Catalog is loading with all data and text and metadata but no images

    LR 4.4 on pc with Win7. Catalog is loading with all data and text and metadata but no images and no previews.

    LR 4.4 on pc with Win7. Catalog is loading with all data and text and metadata but no images and no previews.

  • Unable to add "Yes" text to buttons

    Hello!
    I have a question that I think might just be an error with my
    program and/or computer. I am trying to add a button with a value
    of "Yes". I am unable to do that. I can put anything else I want as
    the value of the button. I can even put "Yes" in quotes and have it
    work. If I just type the word "Yes", Robohelp strips it out and
    creates a skinny button with no text and no value.
    I am completely confused by this. Has this happened to anyone
    else? Does anyone have any suggestions as to how I might be able to
    fix this? Thanks!

    In WYSIWYG, I selected Insert, Form Element, Button.
    A button is inserted with the name "Button". When I double
    click on the object, I typed "Yes" into the "Button Caption" field.
    when I clicked Apply, OK and went back to my form, the button was
    skinny and had no text in it.
    If I double click on the button again, I can type anything
    else I want into the object, just not the word Yes.
    This is the code that RoboHelp generated for the button.
    Notice "value" is blank, as "yes" was somehow dropped.

  • Unable to add body text for Purchase Order

    Hi,
    If this question has been posted before request send me the link .
    We are sending PO as a PDF attachment to email.
    To add body text to this I copied the print program SAPFM06P and modified the fm06pe04 program.
    DATA : l_mail_text TYPE bcsy_text,
                     l_mail_text_row TYPE soli.
              CONCATENATE 'Please check the' ' Attached file' INTO l_mail_text_row.
              APPEND l_mail_text_row TO l_mail_text.
                document = cl_document_bcs=>create_document(
                    i_type    = 'PDF' " cf. RAW, DOC
                    i_hex     = pdf_content
                    i_text    = l_mail_text               "added by me
                    i_length  = lp_pdf_size
                    i_subject = lv_subject ).                   "#EC NOTEXT
    But it does not show in the body text.
    But if I use the add_attachment method the text comes as an attachment.
    I am not sure what is the error here.
    Regards,
    Narayani

    DATA: send_request       TYPE REF TO cl_bcs.
      DATA: text               TYPE bcsy_text.
      DATA: binary_content     TYPE solix_tab.
      DATA: document           TYPE REF TO cl_document_bcs.
      DATA: sender             TYPE REF TO cl_sapuser_bcs.
      DATA: recipient          TYPE REF TO if_recipient_bcs.
      DATA: bcs_exception      TYPE REF TO cx_bcs.
      DATA: sent_to_all        TYPE os_boolean.
             Convert the OTF file format ino the PDF format.
              CALL FUNCTION 'CONVERT_OTF_2_PDF'
                IMPORTING
                  bin_filesize           = lwa_bin_filesize
                TABLES
                  otf                    = lt_otf
                  doctab_archive         = lt_doctab_archive
                  lines                  = lt_pdf_lines
                EXCEPTIONS
                  err_conv_not_possible  = 1
                  err_otf_mc_noendmarker = 2
                  OTHERS                 = 3.
              REFRESH lt_objbin.
             get the pdf data into the attachment table .
              CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
                EXPORTING
                  line_width_dst              = 255
                TABLES
                  content_in                  = lt_pdf_lines
                  content_out                 = lt_objbin
                EXCEPTIONS
                  err_line_width_src_too_long = 1
                  err_line_width_dst_too_long = 2
                  err_conv_failed             = 3
                  OTHERS                      = 4.
             Refresh the local tables and workareas.
              REFRESH: lt_reclist,
                       lt_objtxt,
                       lt_objpack.
              TRY.
                  CLEAR send_request.
        -------- create persistent send request ------------------------
                  send_request = cl_bcs=>create_persistent( ).
        -------- create and set document with attachment ---------------
        create document from internal table with text
                  REFRESH text.
                  APPEND 'Body1.' TO text.
                  APPEND 'Body2.'TO text.
                  APPEND 'Body3.'TO text.
                  CLEAR document.
                  document = cl_document_bcs=>create_document(
                                  i_type    = 'RAW'
                                  i_text    = text
                                  i_length  = '12'
                                  i_subject = 'Electronic Payment Notification' ).
                  FIELD-SYMBOLS <fs_x> TYPE x.
                  DATA lv_content  TYPE xstring.
                  CLEAR lv_content.
                  LOOP AT lt_objbin INTO lwa_objbin.
                    ASSIGN lwa_objbin TO <fs_x> CASTING.
                    CONCATENATE lv_content <fs_x> INTO lv_content IN BYTE MODE.
                  ENDLOOP.
                  CLEAR pdf_content.
                  pdf_content = cl_document_bcs=>xstring_to_solix(
                          ip_xstring = lv_content ).
        add attachment to document
        BCS expects document content here e.g. from document upload
        binary_content = ...
                  CONCATENATE 'Remittance_' sy-datum sy-uzeit '.pdf' INTO lv_filename_cl.
                  CALL METHOD document->add_attachment
                    EXPORTING
                      i_attachment_type    = 'PDF'
                      i_attachment_subject = lv_filename_cl
                      i_att_content_hex    = pdf_content.
        add document to send request
                  CALL METHOD send_request->set_document( document ).
        --------- set sender -------------------------------------------
        note: this is necessary only if you want to set the sender
              different from actual user (SY-UNAME). Otherwise sender is
              set automatically with actual user.
                  CLEAR sender.
                  sender = cl_sapuser_bcs=>create( sy-uname ).
                  CALL METHOD send_request->set_sender
                    EXPORTING
                      i_sender = sender.
                  CALL METHOD send_request->set_status_attributes(
                    EXPORTING
                    i_requested_status = 'N'
                    i_status_mail = 'N' ).
             Fill the receiver for the email with PDF attachemnt.
                  CLEAR : lwa_reclist,
                          lwa_lfa1,
                          lwa_adr6.
                  CLEAR lwa_lfa1.
                  READ TABLE lt_lfa1
                        INTO lwa_lfa1
                        WITH KEY lifnr = lwa_reguh-lifnr.
                  IF sy-subrc EQ 0.
                    CLEAR lwa_adr6.
                    READ TABLE lt_adr6
                          INTO lwa_adr6
                          WITH KEY addrnumber = lwa_lfa1-adrnr.
                    IF ( sy-subrc EQ 0 )
                      AND ( lwa_adr6-smtp_addr IS NOT INITIAL ).
        --------- add recipient (e-mail address) -----------------------
        create recipient - please replace e-mail address !!!
                      CLEAR recipient.
                      recipient = cl_cam_address_bcs=>create_internet_address(
                                                       lwa_adr6-smtp_addr ).
                    ELSE.
                      CLEAR lv_fax.
                      lv_fax = lwa_lfa1-telfx.
                      recipient = cl_cam_address_bcs=>create_fax_address(
                      i_country = lwa_lfa1-land1
                       i_number = lv_fax ).
                    ENDIF.
                  ENDIF.
        add recipient with its respective attributes to send request
                  CALL METHOD send_request->add_recipient
                    EXPORTING
                      i_recipient = recipient
                      i_express   = 'X'.
        ---------- send document ---------------------------------------
                  CALL METHOD send_request->send(
                    EXPORTING
                      i_with_error_screen = 'X'
                    RECEIVING
                      result              = sent_to_all ).
                  IF sent_to_all = 'X'.
                    WRITE text-003.
                  ENDIF.
                  COMMIT WORK.
                CATCH cx_bcs INTO bcs_exception.
                  WRITE: 'Error Occured'.
                  WRITE: 'Error', bcs_exception->error_type.
                  EXIT.
              ENDTRY.

  • Unable to add a signature and the fill ?

    I am unable to add a signature with acrobat pro for mac.  pushing the fill & sign button opens a completely blank window beside the document.
    not sure how to fix this problem.

    It's possible to set up your signature on the Desktop such that it can be simply dragged into the Camera icon's "From the Web" field...
    1. Right click on an already posted pic
    2. Choose "Open Link in New Tab"
    3. From the address bar of that new tab, drag the URL's favicon (little icon) to your Desktop whereupon an "@" icon will be created
    The above only has to be done once, and then to use that image in future posts...
    1. Click the Camera icon
    2. Click "From the Web"
    3. Drag the URL's "@" icon from your Desktop to the URL field and click Insert Image
    And if you want your signature instead of a generic "@" icon, that's possible too:

  • Is it possible to srcipt something that reads text and make an appropriate image visible?

    I have never written a script for indesign before so I am not really familiar with how it works
    Eessentailly, I have a text box that a user would be writting a state in. I then want the script to take that as input, and then make a hidden image of that state visible.
    Also, is it possible to have th script always running, or would the end user have to run it?
    Thank you!

    Hi,
    It is possible using eventListeners. Look at example below and be awared that this is an example ONLY:
    To switch this ON run:
    #targetengine "session"
    var myDoc = app.activeDocument;
    myDoc.addEventListener("afterSelectionChanged", myDisplay);
    function myDisplay(myEvent){
         if(app.documents.length == 0) return;
         var curDoc = app.activeDocument;
         if(curDoc.selection.length == 0) return;
         var
              myInput = curDoc.textFrames.item("input"),
              myOutput = curDoc.pageItems.item("output");
         if (!myInput.isValid || !myOutput.isValid) return;
         if (myInput.contents == "ON") myOutput.visible = true;
         else myOutput.visible = false; 
    to switch this OFF run (or quit InDesign):
    app.activeDocument.eventListeners.everyItem().remove()
    Assumings:
    input textFrame is named "input" (I mean in "Layer's Panel")
    output pageItem is named "output"
    type "ON" to make "output" visible
    Jarek

  • Calibrating: Improve the quality and accuracy of your images

    The Sprout Workspace depends on the alignment of the HP Touch Mat and the projected screen on the touch mat.
    This alignment is calibrated during initial setup and can also be recalibrated at any time you choose.
    During calibration, Sprout detects the alignment of the touch mat and adjusts the projector and cameras to create the best results. Calibration can be done from the Sprout Workspace or from the Windows Control Panel.
    Make sure that Sprout is on a level surface to successfully calibrate the product.
    You can check out Calibrating the Sprout by HP to read more about this function.
    Here are some tips to help you get the best image capture quality:
    Make sure the touch mat is flat, plugged in, and clear of any objects.
    Place the object for capture in the middle of the touch mat.
    Don’t touch the mat during capture.
    For best capture, objects should be less than 6 inches (15.24 cm) tall.
    Perform a recalibration (calibrating Sprout aligns the touch mat and the projector).
    Shut down other applications.
    Turn off the lights in the room, or darken the room as much as possible.
    I work for HP, supporting the HP Experts who volunteer their time and technical knowledge to help others.

    There's another HP document about calibrating for 3D scanning with your Sprout.
    Sprout by HP - Calibrating for 3D Scanning on Sprout by HP
    You might want to take a look at this one too!
    Thanks,
    GeorgeFN
    I work on behalf of HP.

  • Alternative Text for images

    Hello!
    I would like to know How to add alternative text to the images in Oracle Portal. And also to each area in an image map. I have tried with ALT="name" but it doesn't works.
    Thanks,
    Carmen

    You can try to create a HTML Template - HTML Content Layout
    with the following HTML code and use in the region where your image resides
    IMG src="#ITEM.IMAGE.VALUE#" alt="#ITEM.CONTENT.LABEL#" border="0"
    Yeannis
    Message was edited by:
    glazar

  • Adding alternative text (meta data)

    How do you add Alternative Text to an existing jpeg?
    Thanks

    Good day!
    A jpg can not have »proper« editable text (except in the meta data etc.) but rather presents an image of text.
    So changing text in the image would require removing the old text (if it is not completely covered by the new text at least) by using the various tools available for such a task in Photoshop (Clone Stamp Tool, Content Aware Fill, …) and writing in the new one (with the Type Tool for example).
    In such a case it might pay off to keep the layered psd file and save a jpg off of that (File > Save As).
    Regards,
    Pfaffenbichler

  • Add alt text to Photoshop Button

    Is it possible to add alt text (and/or tooltips) to Photoshop Buttons?

    Hi Julie,
    Please refer to the following post:
    Alt Text on Photoshop Button
    Regards,
    Akshay

  • Alternative Text

    I have a graph embedded into a 9i Report (jsp). The report runs fine and displays the graph as expected. I am trying to add alternative text for the entire graph but am not having any success.
    Via the property inspector (for the graph), under the Accessiblity Node, I have enter Alternative Text
    I have also tried entering alternativeText="sometext" on the rw:graph property under the graph node.
    What can I do to ge the ALT tag on my HTML output?

    you are on the right track. the "alternative text" should do the trick.
    if it does not, this might be a bug. check the online help for the graph tag; it might be that there is actually an additional attribute in the graph tag.
    regards,
    ph.

  • Is it possible to add a text box to an image in Aperture?

    is it possible to add a text box/caption to an image in Aperture? (I do NOT have photoshop)

    Do you want to write it directly onto the image? Then install and use the free BorderFX plug-in for Aperture. It will let you write text annotations directly onto the image or onto a border.
    Regards
    Léonie
    You can download BorderFX for Aperture from here: http://www.iborderfx.com/BorderFX

  • Why does my page loose formating when i add a text link on an image box?

    I wanted to make my own nav with texts links.  but i wanted to put the nav on an image like a black box.  when i add the text and then link them to pages they started to work when i previewed them in iweb.  But when i uploaded it to my ftp it messed up the formating on my page!  So I tried to add a new text box without a link on the same image... now it doesn't even show up.  What is the general rule of text on images? all i want to do is make a text nav on the image. Also i have made sure the image is sent back and the text to front.

    I don't know if you've fixed them since michaelfromrochester's suggestion but all of the links are white with green rollover for me now.
    If you haven't fixed them the clear your browser's cache (Command+Option+E for Safari) and reload the site.
    OT

Maybe you are looking for

  • Recolor Image not working for multiple images

    I applied themeing and created a Themeing file under Style Lib -> en-us->Themable->spriteTheming.css spriteTheming.css is for recoloring image but it is only recoloring spcommon and none other files. spriteTheming.css looks like below: /* [RecolorIm

  • Help with "simple" JFileChooser problem...

    Hi all, how do I set the font in a JFileChooser??? I have tried everything, but it always uses the Look & Feels default font setting. Can I change the default Look&Feels font setting? Greatfully for any suggestions! Cheers Anders ;-D

  • XML Parse

    Hi: I have a problem with a XML file. We are using Weblogic Server 6.1 sp1. We have developed a servlet, it invoke an EJB's method that it parse a xml file. This EJB obtain data from xml file and it query Oracle database. Then obtain data and create

  • Lotsize

    Hi, i have defined the lot size EX in MM01 and the minimum lotsize quantity is 100...but while creating purchase order for the same material less than the minimumlotsize quantity (i.e) for 50 it is accepting to do.  So what is the use of defining the

  • Error reports converting a vi from LV8 to LV7.1

    Neatly working VI in LV8.0 for some reason I am converting it into earlier version of LV7.1. When I opened from LV7.1, I got the error message (report attached). Hope somebody help me out to avoid coding from scratch. Kousy