Add hyperlinks to the tooltip widget in muse?

Ok. here is an interesting question.
1. I added the tool tip widget to a site design in Muse.
2. I clicked on the trigger & went to the muse toolbar to select hyperlink, I then added the desired hyperlink.
3. The "hover" finger pops up, but clicking does nothing.
I've checked layers and order to make sure nothing is blocking the trigger, all seems normal. Am I using this in a way it's not intended?

Oh well that's a whole different thing.
Click on the orange hyperlink and add your tooltip text

Similar Messages

  • How can I use the tooltip widget on individual images in my thumbnail gallery?

    Hey guys
    I've got a client that is insisting on not having the caption text visible on each picture unless you could click or hover over a little information button. But I can't get the tooltip widget inside an individual image's lightbox (hope this makes sense). I have very little coding knowledge and was hoping someone would have the answer to this?

    Does no one have an answer to this Was hoping that someone could save me on this dilemma.
    A side question, has anybody used a different gallery with muse before?

  • Editing swfobject.js code so hyperlinks inside the flash widget open in a new window

    0down votefavorite
    I have a flash calendar widget (code shown directly below) and I do not have access to anything other than the compiled .swf file (no access to .fla).
    The widget contains some hyperlinks to other websites, these links are dynamic and changes based on a number of things.
    There is also a corresponding swfobject.js file that is used to add functionality to the flash widget. The swfobject.js code is shown further down this post.
    Currently, the way the code is now, when I click any of the hyperlinks that are available to me in the widget, the destination website that hyperlink takes me to opens in THE SAME PAGE as the flash widget which is a big problem.
    I need to edit the code below so that any hyperlinks that are clicked inside of the flash widget open in a brand new browser window and do not take the user away from the original widget other than opening a new page with new content.
    Because the hyperlinks that are available are always changing, the swfobject code below uses some functions and parameters.
    I am hoping you can show me exactly what code I must insert, and exactly where I must insert it, in order to alter the behavior that happens so that when a user clicks one of the hyperlinks inside the flash widget, so that the content at the other end of the hyperlink opens in a new window, instead of opening in the same window.
    See code below.
    Thank you in advance for any help you can provide
    Flash Widget Code
    <!-- Embedded Calendar --> <div id="activecontent"> <script type="text/javascript" src="swfobject.js"></script> <div id="awccalendar"></div> <script type="text/javascript"> var so = new SWFObject("awc.swf", "awccalendar2", "700", "180", "8", "#ffffff"); so.addVariable('calendarid', '0'); so.addVariable('appurl', ''); // Flash Widget Initial Date should be ddmmyyyy so.addVariable('ldate', '20052014'); so.write('awccalendar'); </script> </div>  <!-- Embedded Calendar -->
    SWFOBJECT.JS CODE
    /** * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/ * * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License: * http://www.opensource.org/licenses/mit-license.php * */ if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(

    In that case, I will have no choice but to decompile the .swf to get the .fla because the original .fla is un-obtainable. Unless there is a way to edit the contents of the .swf file without decompiling it.
    I can see the code inside via various decompile tools and it seems that I would need to add the equivalent of <src target=_blank> to some of the lines I have shown below.
    obj_xml.load(appurl + "loadconfig.aspx?calendarid=" + calendarid);  -- need to edit this so it opens in a new window using something similar to target = _blank
    dest_page = appurl + "default.aspx"; -- need to edit this so it opens in a new window using something similar to target = _blank
    I know a lot of decompile tools can get you the code and the .fla but once you edit and re-compile and attempt to replace the original with the new & updated file, the decompiler did not necessarily generate the properly formatted flash pro project file, so compiling it back into an operational .swf often ends in failure.
    Do you know or can you recommend a tool that has a very good track record of re-compiling the decompiled modified.fla into a workable and usable .swf?

  • How can I add hyperlink to the object in iCloud pages ?

    Hi, there
    I want to add hyperlink to the object(image) in icloud pages.
    But it looks no such function on  icloud(any "add link" botton)
    I know that how to add hyperlint to the object in pages v5.2.
    1. place object
    2. prepare text box and add hyperlink to the text(invisible color)
    3. overlay object and textbox
    But, in icloud pages, I coundln't do above method.
    Pls give me some advice.
    Thanks.

    The feature to add images in tables is gone, ike about another 90 features that exists in Pages 09.

  • I want to add hyperlink in the illustrator file and want the output in the PDF

    I want to add hyperlinks in the illustrator file and want the output in the PDF.
    I tried to add the multiple hyperlinks on the text and images in the illustrator by using the attribute panel but the links are not working in the published PDF.
    Is there is any other method to create a hyperlink in the illustrator?
    Can anybody help me out in this
    Thanks

    Interesting, Carlos.
    There's another method by JET: Re: hyperlinks in Ai

  • Can you add hyperlinks to the images created in the slideshow on the command menu?

    can you add hyperlinks to the images in the slideshow created
    from the command menu? thanks

    On 30 Aug 2008 in macromedia.fireworks, mediastream13 wrote:
    > can you add hyperlinks to the images in the slideshow
    created from
    > the command menu?
    Unfortunately, those slideshows aren't all that flexible. I
    don't think
    that Adobe supplies the source for the Flash slideshows. But
    if you use
    the spry slideshow, you should be able to edit the HTML in
    Dreamweaver to
    add links.
    Have a look at one of Project Seven's graphics presentation
    products -
    Lightshow Magic, Slide Show Magic or Image Gallery Magic.
    They're $95
    each, and extremely flexible in what you can do with them.
    http://projectseven.com/
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/contact.php

  • Customizing/recreating the Accordion widget in Muse

    I want to use the accordion widget, but I can't figure out how to flip it to work horizontally. Is there a way to flip or rotate in Muse? If not is there way to recreate an accordion menu that opens horizontally?
    Thanks.

    You sure can, just download the widget from link below and copy and paste into your design then customize as you like.
    http://muse.adobe.com/widget/composition-menu-vertical-mcdonald

  • Youtube embed code in the lighbox widget crashes Muse

    Muse crashes every time I use the youtube embed code in the lighbox widget. I am looking for a simple pop up video solution.

    Use the YouTube widget from the Widget Library. It avoids this crash. (The next major update of Muse will enable you to once again use the embed code, if you prefer that over the widget.)
    https://creativecloud.adobeevents.com/ccnext

  • Trying to use the contact widget inside muse

    Hi,
    I am building a site and require a contact form for feedback etc and I am trying to use the contact form that comes with muse. All seems ok, ie the form appears correctly on my test website, the recapure text is there to copy, but when I try to submit an email from the form, nothing happens.. I have the BC CAPTURE toggle set true, on the widget, and enter the required text correctly,
    My question is, is it not working because I have a webbasics package given to me as a CC member and I have to upgrade to webbasics+ for this form to work as it needs email and that is only made available to webbasics+ members and above ??
    Thanks
    I had a further thought, just wondering if its because the site isn't yet live and needs to be live for the form to work.... I get "server encounterd an error" message when I press the "submit" button. ???
    More information
    Hmm, just tried with a live site and all I get is Red text saying required, the text is entered as shown, with and without spaces and still nothing happens...

    Hi
    Please provide the site url or page url where the form is inserted.
    Thanks,
    Sanjit

  • Is setting the tooltip widget to 100% width no longer possible?

    This is quite annoying since i put my navigation bar in a tooltip. And i would like it to be both hideable and browserfilling (in width).
    Is anyone else experiencing this problem? And perhaps has a solution / workaround to it?
    Thanks in advance!

    Zak Williamson (Adobe) wrote:
    Since your navigation is pinned, you could just make it arbitrarily wide and it won't cause a horizontal scrollbar to appear.
    Ok Zak that totally confused me? :/
    "Arbitraily wide"? Can you give an example because I've never heard that phrase used before regarding Muse design. I was under the impression that values punched in are not "arbitrary" by the traditional definition.
    I know it might take a little time. But with phrases like that an example (or link) of how to do it would go a lot further. Remember, most of us are designers not coders and although we try our best to learn the lingo (or fake it) sometimes concepts like this just don't register too easily. :/
    Thanks,
    Ed

  • Add hyperlink on the field txt in Search Result List to access Detail View

    Hi, SDN fellows.
    I have a PCUI requirement stated the following:
    1) In the line item of the Search Result List (table), there is one hyperlink in field 1.
    2) When click on the hyperlink, it will trigger the action to open up Detail View (Object Data Pattern 1 - ODP1) of the line item.
    3) Problem: When the value of the field is null, there will be no hyperlink to open up the Detail View.
    4) For work around, my requirement is to make the other fields (i.e. field 2) to have a hyperlink to trigger the action for opening the Detail View of the line item.
    I am not strong in PCUI. Please advise how to do so, while I am exploring the guide in the PCUI Book.
    Thanks,
    Kent

    Hello Kent,
    check out the settings of the Field Group element where the link is already active. Copy that settings to the Field which you want to be linked too.
    Regards
    Gregor

  • How do I add hyperlinks in the PDF output

    I am generating the PDF output from my DITA sources by using the menu option File > Save as PDF and hyperlinks are not taken into account.
    What can I do to get them working?
    Thank you for your help.

    What do you mean by "hyperlinks"? Cross-references (using xref or link elements) to other targets in DITA topics? External xrefs to URLs or other targets outside of the scope of the project? Or are you creating other types of hyperlinks?
    Also .. what version of FM are you using (I know you said earlier, but I've forgotten).
    ...scott

  • Cant add hyperlinks in the new version

    I have no way to add extrneal hyperlinks to any of my text or images... what happened

    See instructions below
    -Sam

  • Help! Slideshow made w/Tooltip Widget: Triggers stop the autorotation

    I made my first slider/slideshow with the Tooltip widget. It works great, the four panels are in rotation every 6 seconds. BUT... if I click a "back" or "next" arrow, or the circular triggers I have at the bottom of the slider, the panel goes to the panel I wish to see, but then the animation stops autoplaying, which I don't want it to do. I don't see a setting to prevent this. Any suggestions?

    Thanks for the reply. Yeah, I did some more digging and I found a few threads in this forum that describe my issue, and they say that's how it is, and currently there's no option to resume auto play except for reloading the page in the browser. Still I would guess there's some code hack that could be inserted into the script, but I have no idea how to do that. Kind regards-

  • IFrame hack for IE6 in Tooltip Widget

    The iFrame, that is called up in IE6 to cover form elements
    doesn't seem to get placed right.
    Obviously, this issue has to be viewed with IE6 since that's
    the only browser that uses the iFrame hack built into the Tooltip
    Widget.
    The following page shows some samples but the iFrame always
    shows in the wrong place:
    http://www.onuma.com/plan/test.html
    The only way the iFrame almost matches, is when I place the
    div tag containing the tooltip right behind the bold text:
    http://www.onuma.com/plan/test2.html
    I actually noticed that Adobe's
    Sample
    Page has the same problem but since the background is white and
    the page is pretty long, one doesn't notice it. When you look at
    the page with IE6 and you scroll over one of the tooltip texts, you
    can notice the scroll bar on the right of the browser window
    slightly moving. That's because the iFrame gets pushed into the
    bottom of the page.
    Is there any way to get this iFrame positioned correctly?
    Thank you,
    Thomas

    Has anybody used the Tooltip Widget and tested it with IE6
    with the standard SpryTooltip.js and SpryTooltip.css? Would it be
    possible to show some examples?
    I'm having difficulties with the position of the iframe that
    is displayed to cover certain form fields in IE6. This becomes
    especially apparent when the background isn't white and/or the
    trigger is a bit wider since the iframe seems to get positioned
    always in the same relative position to where I add the div tag (or
    at the bottom of the page if I don't use absolute positioning).
    If anybody can provide me with a sample of the Tooltip Widget
    being used on a page with non-white background or even with form
    fields it would be very much appreciated.
    I'd much rather ignore IE6's buggy behavior too but too many
    users are still using it...

Maybe you are looking for

  • Use of Input Variables in SQL-Queries Sometimes Not Possible

    Only in simple SELECT-statements the use of input variables ([%0], [%1], etc.) work without problems. In more complex queries the use of these variables is not possible (e.g. SELECT-statements with sub-queries, sometimes when UNION is used - but I co

  • Verification of recvr file channel  configuration without sending a message

    Hi, We need to test the configuration((such as directory, filename etc.,) of a receiver file channel. As we all know, in the case of sender channel, since it will keep polling the directory configured, if there is any incorrect directory, it will be

  • Ipod Nano song's not playing.

    the other day i downloaded the newest version of iTunes and put 130 songs into it, i then sync them to my ipon nano and to begin with all of the work, but the next day after listening to them all at least once its now only playing a selected few (abo

  • Data services management console deployment on weblogic

    I have installed SAP installation platform services 4.1 sp2 without Tomcat server. I have deployed BI applications using Weblogic 11 and they are working fine. I have installed SAP data services on top of it. Installation runs fine. I am not able to

  • Using STRUTS on oc4j ????

    Hi! I'm experiencing problems when trying to run a sample STRUTS-application on OC4J. I have placed it under 'default-web-app' and I'm pretty sure that the rest of the configuration is OK (updated Application.xml and http-web-site.xml). But it will n