Image hyperlink - action is disable

Hi
I inserted an image into my model and I want to make that image a hyperlink to open another iView. But the Action tab is disabled.
Is this a standard setting for SP 9?
Thanks

I'm having the same problem.
The VC Reference Guide (pg92) says that the Action Tab is available for an image, but it is disabled for me too. I am on SP8 and thought that it must have been because of that.
Please let me know if you get this worked out.
Thanks
Regards
Richard

Similar Messages

  • Hyper link of public image(hyperlink or image) can not be saved on windows server 2012 and sharepoint 2010 problem

    hyper link of public image(hyperlink or image) can not be saved on windows server 2012 and sharepoint 2010 problem, is this a bug?
    thanks for any reply.
    Rosone

    It is not a bug, you might be using IE in Windows server 2012 and and browser might be restricting your site actions to respond properly.
    Check this in a different browser or access site in a differ OS.
    Adnan Amin MCT, SharePoint Architect | If you find this post useful kindly please mark it as an answer.

  • Image hyperlink issues in PDF creation using Acrobat 9.0

    Hi All,
    I am using Acrobat 9.0 Professional for creating a PDF of a web site hosted on my local IIS server. All the web pages contain:
               1. A single large image and some description text.
               2. Few hyperlinks mapped to the various areas/locations of the image. The hyperlink is visible when user moves the mouse cursor to that specific area/location on the image.
    These hyperlinks work correctly when the web page is viewed in any browser but when the web site is converted to PDF, we observed the following problems with the image hyperlinks:
         1. The hyperlink area (rectangular) on the image is shifted from its original position.
         2. The hyperlink area (rectangular) on the image grows bigger than its original size.
    (The original position and size here means the position and size of the hyperlink as on the web page respectively).
    Surprisingly these issues do not occur if a PDF is generated of the same web site using Acrobat 8.1.0 Professional.
    I searched the Adobe website for any service pack/updates that could resolve this issue in Acrobat 9.0 Professional but could not find any.
    I will be really thankful for any help provided.
    Regards,
    Santosh.

    In my case it's with .puz files, which are crossword puzzle files used by sites like the New York Times and read by the application AcrossLite. I went into preferences and tried to change the action for the file type from "Save File" to AcrossLite but it would not take. Set it instead to "Always Ask" and then in the dialogue box selected AcrossLite and "always do this" and it gave an unknown error.
    This is FF 4 on a Mac.

  • How can I execute the hyperlink action method when I click on the hyperlink

    Hi,
    I have created a hyperlink (hpPopupXML).
    1. I set the Target property to New Window.
    2. I set the URL to displayXML.jsp
    I ran the application and I click on the hyperLink to execute the hpPopupXML_action() method and it does not.
    Is there a way to force execution the hpPopupXML_action() when I click on my hyperLink (hpPopupXML);
    Please let me know.
    Thanks.

    The following excerpt is from http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/about_components.html#action
    Simple Page Navigation
    If you want the user to click a component to move to a specific page, and you do not want the browser to submit any user input, you can use the Hyperlink, Image Hyperlink, Tab, or Tree Node component and type the path to the destination page in the component's url property, such as /faces/Page1.jsp.
    Dynamic Page Navigation
    The Page Navigation editor enables you to specify navigation rules that map user actions and decision logic outcome to destination pages. You specify the mapping by dragging a named connector from the link or action component to the destination page. You must also create an action handler for the component that returns the outcome, which is a String value equal to the connector's name. You can use the component's action property to create the action handler.
    When a page visitor clicks the component, the browser submits the input, if any, and the action handler returns an outcome. The server looks up the outcome in the navigation rule mapping to determine what page to respond with. If there is no navigation rule for that outcome, the server redisplays the current page. You can write the action handler to return different outcomes based on business logic.
    NOTE: When you set both the url and the action property, the action handler takes precedence.
    IT LOOKS LIKE IN YOUR CASE THE URL PROPERTY IS TAKING PRECEDENCE OVER THE ACTION PROPERTY. IS THAT TRUE?

  • Ui:hyperlink action methods stopped working in IE

    Hi
    I'm developing my application for few months, but few days ago all ui:hyperlink action methods stopped working in IE. They are not invoked at all... No javascript errors, everything works fine in Firefox. Can anybody tell me where to look as I'm sitting 6h in front of screen and cannot find anything wrong...

    anyways, it can't be a problem becasue new application is facing the same problem and there's no filter. I'm using tomcat 5.5.18 on jboss 4.0.5.

  • Hyperlink action not called from within table

    I have two pages. Page1 has a table bound to a database listing all of the records in a customer table. Page2 has controls on it to display the details of a single customer record.
    On Page1 in the table I have made the record ID column a hyperlink. I want to save this selected ID for use on the page that the hyperlink points to. To accomplish this I added a property to my request bean. (Is this a good idea or does every page have its own request bean?) Anyway, I put code in my hyperlink1_action() method to save the current rowkey to my request bean.
    On Page2 in my prerender() method I am planning to jump to the rowkey stored in my request bean.
    It appears that my hyperlink1_action() method is never called. I have placed a breakpoint inside that method and the debugger never stops there. I have also placed a breakpoint within the prerender() method of Page2 and the debugger does stop there and I find that I have a null value stored in my request bean.
    Any insights? Feel free to speak up if I'm going about this the wrong way. I am new to Java Studio Creator and web development (previous Java experience was standalone-non-web apps).
    Thanks in advance for any help.

    Below is an excerpt from the JSP file defining the table that contains the column with a hyperlink:
    <ui:tableRowGroup binding="#{Page1.tableRowGroup2}" id="tableRowGroup2" rows="5"
         sourceData="#{Page1.tblcustomerDataProvider}" sourceVar="currentRow">
         <ui:tableColumn binding="#{Page1.tcolCustomerId}" headerText="Id" id="tcolCustomerId" sort="tblcustomer.lngCustomerId">
              <ui:hyperlink action="#{Page1.hyperlink1_action}" binding="#{Page1.hyperlink1}" id="hyperlink1" immediate="true"
                   text="#{currentRow.value['tblcustomer.lngCustomerId']}" url="/faces/Customer.jsp"/>
         </ui:tableColumn>Below is the definition of the hyperlink1_action() method that never seems to be called.
        public String hyperlink1_action() {
            // Find out what row was clicked
            RowKey rowkey = tblcustomerDataProvider.getCursorRow();
            // Save Customer Id so detail page knows what product to
            // provide detail info for
            getRequestBean1().setCurrentCustomer(rowkey);
            // Go to the detail page for that product's type
            return "case1";
        }I did not have the immediate property checked, so I tried checking it and saw no change. I have the url set to point at another page and clicking on a column with the URL appears to work fine, the specified page is opened.
    I do not have any virtual forms defined.
    Perhaps the function is called and I'm just not seeing any evidence of it. I have tried adding System.out.print statements but don't see my text in the out put window. I have tried adding break-points to the hyperlink funciton but the debugger does not stop.
    As far as the code I have pasted above for the hyperlink, it very well could be flawed (or the wrong way to go about what I am trying to accomplish) but as far as I know it has never been executed.

  • Render issues with Image Hyperlink Component in Internet Explorer

    Hi,
    My images in the Image Hyperlink Components get enlarged (100X100) when i display my application in IE. When i visualize in Firefox it works fine. Can anyone tell me why?
    jsf:
    <ui:imageHyperlink binding="#{Main.imageHyperlink1}" id="imageHyperlink1" imageURL="/resources/search.png"
                                        style="height: 22px; width: 40px" text="Busca" />
    <ui:imageHyperlink binding="#{Main.imageHyperlink2}" id="imageHyperlink2" imageURL="/resources/logout.png"
                                        style="height: 22px; width: 40px" text="Sair"/>
    IE:<a id="form1:imageHyperlink1" style="height: 22px; width: 40px" ><img id="form1:imageHyperlink1_image" style="width:100px;height:100px;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/WebLab/resources/search.png', sizingMethod='scale')" src="/WebLab/theme/com/sun/rave/web/ui/defaulttheme/images/other/dot.gif" alt="" border="0" /> Busca</a></td>
    <a id="form1:imageHyperlink2" onclick="return hyperlink_submit(this, 'form1', null);" href="#"><img id="form1:imageHyperlink2_image" style="width:100px;height:100px;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/WebLab/resources/logout.png', sizingMethod='scale')" src="/WebLab/theme/com/sun/rave/web/ui/defaulttheme/images/other/dot.gif" alt="" border="0" /> Sair</a>
    Firefox:
    <a id="form1:imageHyperlink1" style="height: 22px; width: 40px" ><img id="form1:imageHyperlink1_image" src="/WebLab/resources/search.png" alt="" border="0" /> Busca</a>
    <a id="form1:imageHyperlink2" style="height: 22px; width: 40px" onclick="return hyperlink_submit(this, 'form1', null);" href="#"><img id="form1:imageHyperlink2_image" src="/WebLab/resources/logout.png" alt="" border="0" /> Sair</a>Thanks,
    Tiago Gaspar

    It seems to work. But it's kind of ackward, for every image we add, we have to set its compoent size so it can work with IE. I know brousers are diferent, but not that diferent. Seems to me it would work just like Firefox if the same html were rendered for IE. So why the diference?

  • The destination plugin required for this action is disabled.

    Dear all, I am using Infoviewer first time and for testing purposes I uploaded our Lab rework report. The viewing side is absolutely fine however if I try to send the file via email, ftp etc it gives me the following error:
    The destination plugin required for this action is disabled. If you require this functionality, please contact your system administrator.
    I have looked on one of the forums where one user mentioned to restart the destination job server. I have tried that but it didn't work. It somehow looks like I haven't installed the plugins onto the server or maybe somewhere it has been disabled.
    Could you please help.
    Many thanks
    Kind Regards
    Jehanzeb
    Error given below:
    ============
    Title:         LabRework
    Description:       
    Created:       01/07/2008 16:57
    Last Modified:       01/07/2008 16:57
    Last Run:       01/07/2008 17:07
    The destination plugin required for this action is disabled. If you require this functionality, please contact your system administrator.

    OK. From CMC, I can use do the following:
    1. Go to Home>All Objects>
    2. Select the object
    3. Hit the History tab
    4. Click Send to... and select FTP
    This is explained on xir2_bip_Admin.pdf.
    However, I can't do this via Infoview.
    i.e.
    When I try to send a file from the History it doesn't end up in the FTP location.
    But what does work is if I select the report itself, the RPT format is sent to the FTP location.
    This makes sense from a perspective that if you don't schedule a Crystal Report, you will not have a PDF version of it. On the other hand, whay wouldn't I be able to send it from the History selection on Infoview.

  • Embedded Image triggers action even when disabled - Agentry

    Hi;
    I am working on SAP Work Manager 6.0 customising, using Agentry 6.1.3. I have created these embedded images for triggering actions that act on the current selected object on the current screen. The embedded images have rules to display the enabled image when particular conditions are met and rules to display the disabled image when not met. To my suprise, the buttons still seem to trigger the underlying action even when the button is showing the disabled image. Is this standard Agentry behaviour or there is a particular way I have to implement the underlying action to avoid this?
    Your help is much appreciated!
    Thanks and Regards;
    Sizo Ndlovu

    Hi Stephen;
    Thank you for the response. If I understand you correctly, you are saying I should put an action enable rule based on the enable/disable image, to say only enable action if image = enabled? How would this rule look like?
    Thanks;
    Sizo Ndlovu

  • With Pages, How Do I Disable Hyperlink Actions?

    How do I disable Pages from automatically making webpages or email addresses I type into my documents turn into a hyperlink? I'd also like to know how to change hyperlinked text into regular text.
    Thanks

    Hi Todd,
    I was working on this when dwb posted. I'll go ahead and give you the screen shots of the Preferences and Inspector where the link controls are located.
    Regards,
    Jerry

  • Upgrade from RH8 to RH9 displays error msg for images/hyperlinks

    We imported a RH8 project into RH9 on another computer. For the most part, it went smoothly; however, for some images and hyperlinks, we get the message: The image file "___.jpg" used in "______.htm" is outside of the current project and will not be shown in Project Manager.
    Additionally, there are approximately 20 broken links displayed in the Broken Links tab.
    Your suggestions would be appreciated as we have multple huge projects we need to upgrade. Thanks

    Hi there
    For each of the messages about the image being outside the project, you will need to carefully note the image file name, the topic and the location it is reporting. Then you will need to edit the topic and click on the image icon and browse to the image to choose it. That action should correct the link and copy the image into your project.
    Broken links will have to be resolved on a "link by link" basis. I was assisting someone else in a different thread and it may be of use to you. Click the link below to view that thread.
    Click here to view
    Cheers... Rick

  • Image hyperlink not working in iphone mail

    Hello,
    I have created an HTML email and have sent it using Outlook from a Windows PC. The HTML email contains a JPEG that has a hyperlink assigned to it. When I check my email on my iphone and touch the JPEG, it wants to download the image, but does not click to the URL. An Android phone works fine. Any suggestions as to why this is happening?
    Here's a snippet of the code involved:
    <td><a href="http://www.ecallis.com/Proofs/ProEnergy/powergen_2012_invitation/index.html" target="_blank"><img src="images/videostillscreen2.jpg" width="320" height="193" border="0" /></a></td>
    Thanks,
    Linda

    I discovered this only happens in the iPhone email app when using embedded images. If the images are embedded the iPhone wants to save the image when you click on it. If the images are not embedded (i.e. somewhere on the internet) then the links work fine when clicking on the image. HTH

  • Automatically Replacing Images Without Losing Previous Image's Action

    I've created updated versions of some images in a Keynote presentation, but the images they replace have actions assigned to them. Is it possible to update a pre-existing image so the updated version retains any actions?

    You have two options for this. The best option is to define the image as a media placeholder. Go to Format>Advanced>Define as Media Placeholder. Then you can change images and keep all actions.
    The other option is if you have saved your Keynote as a package, you can right click the icon and choose show package contents. Then make sure the new images are the exact same name as the ones you wish to change and drag them into the folder. You be asked if you want to replace the file already named --- and click yes. Keynote will then change the old picture with the new one. I would only use this option if you are changing a lot of images at once and it is too time consuming to use the other method.

  • POSTING TIPS - Code, Images, Hyperlinks, Details

    When you're posting a question - please search the forum first!  If that fails, and you wish to include T-SQL, C#, or VB code in your post, see below.  If you want to show us what you see on your screen (pictures are worth a thousand words), see
    below! Check that a URL does not stay black/gray indicating an inactive hyperlink. All URL references should be blue and clickable.
    Moderators, please add any other tips you may have.
    Including T-SQL, C#, VB.Net Source Code
    (Thanks to Phil Brammer & Kalman Toth for this tip)
    When you are composing a post and you wish to paste code, please don't directly paste it into the post, instead paste it into the code block editor.  It will preserve formatting for you, which makes it easier for us to read it and help you with your issue.
    Examples follow...
    Not using the code block editor:
    select
    text, *
    from sys.dm_exec_cached_plans
    cross apply sys.dm_exec_sql_text(plan_handle)
    Using the code block editor (and with the same copy-n-paste buffer):
    select
    text, *
    from sys.dm_exec_cached_plans
    cross apply sys.dm_exec_sql_text(plan_handle)
    Including Images
    Using the Editor:
    (Thanks to Kalman Toth for these instructions)
    Use the Forum Editor method to Insert Image:
    1. Save the image to disk or copy the image URL
    2. Use the Insert Image (right most) icon to upload the image
    Make sure the URL hyperlink is active:
    The forum post editor automatically hyperlinks a typed URL in IE. But not all browsers do it.
    Use the chain link icon to hyperlink an inactive URL, title or reference.
    Using HTML:
    (Thanks to Todd McDermid & Ed Price for this tip)
    Copy your screen to the clipboard (ALT-PRTSCN) (alternatively, some image editors can do screen captures)
    Paste it in your favourite image editor
    Upload it to a free image hosting site like Flickr,
    ImageShack, ...
    Create your post, then press the "HTML" button on the post toolbar.  This will open another browser window with HTML in it.
    Find the spot where you want the image, and add a standard IMG element, pasting in the URL to your image, like this:
    < img src="http://your.url.here/your_image_filename_here">
    Press the Update button.
    The Volunteer Moderators and Answerers who support the Microsoft MSDN SQL Server Forums have created a Wiki to present Solutions to Common T-SQL Problems.
    (Thanks to Arnie Rowland  for this tip)
    Check here to see if there is a suggestion that can guide you to a solution for your problem.
    http://code.msdn.microsoft.com/SQLExamples
    If you find that the Wiki provided you with useful information, please let us know by posting a synopsis of your problem and a comment about your successful use of that information.
     “Top Solution Content” blog 
    (Thanks to Elvis Long  for this tip)
    As part of our efforts to keep our communities informed about the most relevant content that address the top questions that we are getting in out forums and other support channels we want to introduce the new “Top Solution Content” blog (http://blogs.technet.com/b/topsupportsolutions).
    In this blog you will find up-to-date and valuable information about Microsoft top support solutions for several of our popular products in the Server and Tools portfolio. You can use the tags (http://blogs.technet.com/b/topsupportsolutions/archive/tags)
    to easily locate the product of your preference or visit the home page to see what’s going on for the different Microsoft Enterprise and developer products. As a blog you can also subscribe to post and comments using the RSS feeds.
    We hope this will reduce time and effort when you are looking for relevant content. Enjoy it!
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014

    the SWC thing may be exactly what I need.
    I read that link you gave me and I will definately do a little more research on SWC, even if it's not completely clear how to use them at this particular moment.
    let's say I have an image called MyImage.png which I have setup to export for actionscript on frame 1 and the class is called "MyImage"
    Assume I have the same thing setup in my library for a sound file called "MySound"
    Now, without doing any reading first, I would assume that I would create a new fla file, put those 2 assets in said fla's library and then compile that fla into an swc? And then access thoughs assets in my main project by importing the swc into it? or it is more simple than that?
    Cheers
    Dave

  • Image Hyperlink

    When I add a link to an image in Adobe Dreamweaver CS3 a
    border is added and the image size increases causing a disruption
    to my page layout. Can this border be disabled? All answers are
    greatly appreciated.

    > link box on the
    > far right vs. using the link box that appears below
    Source on the Image
    > version
    > of the Property Inspector.
    What link box on the far right?
    > If the link is made using the standard right-hand
    > link box, the program will always want to create a blue
    border.
    It's not DW that does this - it's HTML. Images with links get
    blue borders
    by default. But I can't know what you are describing until I
    know what the
    link box on the right is.
    A simple css style added to your stylesheet will take care of
    the entire
    problem. I can't understand why there's any struggle
    there....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "gloriaexcel" <[email protected]> wrote in
    message
    news:f3ihlf$8n8$[email protected]..
    > For the two large sites that I maintain, I have found
    that there is a big
    > difference between creating a link with an image if I
    use the link box on
    > the
    > far right vs. using the link box that appears below
    Source on the Image
    > version
    > of the Property Inspector. If the link is made using the
    standard
    > right-hand
    > link box, the program will always want to create a blue
    border. You can
    > overcome this with some difficulty using the techniques
    suggested above,
    > but
    > simply using the other link box will prevent the
    problem. I've made over
    > 4,000
    > of these image links and the only time it's a problem is
    when I forget
    > (not
    > often lately :-) ) to use the Source link box.
    >

Maybe you are looking for

  • Report output from memory to internal table (corresponding fields)

    How can we pick any standard report output such as RM07DOCS on to memory and from memory to an internal table.Here by internal table ,i do not mean of type c containing complete report but data should go from output to corresponding fields of interna

  • Annoying problem with speed change tools in FC7

    I have a clip that is 8 seconds long. Halfway into the clip I want to slow down and freeze on the end frame. How do I do this?

  • Lumia 620 Multimedia message

    I  got a multimedia message but i can not save the picture on my phone. When i tap on the link download media content, the phone vibrates and nothing else happens. Solved! Go to Solution.

  • Need help with Click Frequently Asked Questions in iProcuremenet purchasing

    Hi Guys, In iProcurement purchasing homepage, we have 1. Click Frequently Asked Questions and 2. Review Purchasing policies on the right side as links. When we click Frequently Asked Questions, its taking me to a page where standard FAQ is there. Now

  • Cost center retraction from BPS to R/3

    Hi All, I am trying to build a prototype model to check the functionality of cost center planning between SEM and R/3. We are trying to substitute the planning process from R/3 to BW. I am using standard cost center cube 0cca_c11 and switching betwee