Impossible to apply the hyperlink to text

I am new to Muse. Can someone tell me what I need to (see attached image). I want to apply the hyperlink to text elements and I do not understand how to change the text block to not require framing. Help, please.

Chris

Screen Shot 2012-10-23 at 7.22.10 PM.png

The police or the police that you use in the paragraph where you try to make a hypertext link is a system font and not a "police Safe Web" or a police Tyepkit taken in charge.

Unless you use a Web safe font or install that a Muse supported TypeKit fonts when designing or on your web page - Muse will turn these words into images in order to preserve their appearance (because not everyone has this font you like as above, installed on their computers), and since they have been transformed into images they can be used to make hypertext links.

Secure Web fonts:

http://www.speaking-in-styles.com/web-typography/Web-safe-fonts/

http://www.WPDFD.com/issues/87/knowing_about_web_safe_fonts/

Fonts taken Typekit support for Muse

http://museinsider.com/how-to-add-Typekit-fonts-to-your-Muse-site.html

http://TV.Adobe.com/watch/Adobe-inspire-magazine/using-Typekit-with-Adobe-Muse/

Tags: Adobe Muse

Similar Questions

  • A loop through hyperlinks and add * at the end of the hyperlink source text?

    Hello

    I'm sure it's very simple, but my javascript is a little rusty and a little short of time, so I was wondering if someone could point me in the right direction?

    I need a script that loops through all the hyperlinks in a document (no matter what styles are or are not applied). Please check the source text to see if it starts with "www" or "http".

    If the source text starts with "www" or "http" then do nothing. OTHERWISE add an * at the end of the text. In other words if there is text in the document as "Click on this link" (and there had a hyperlink applied) it would be changed to "click on this link." If there is text in the document as "www.google.com" (and there had a hyperlink applied), it would remain unchanged. The hyperlinks themselves remain unchanged.

    So I'm not sure what my If/else statement must be?

    Links = app.activeDocument.hyperlinks;

    for (i = 0; i < links.length; i ++)

    {if

    ???

    }

    Thank you very much in advance for your help!

    Angèle

    How stupid. You are absolutely right. The names of hyperlink above, test script must test the hyperlink source texts. In the small sample, I have tested the script on, names of hyperlink and source texts were the same, that's why I had not spotted the questionable logic of the script. This scripts properly tests:

    hlinks = app.documents[0].hyperlinks.everyItem().getElements();
    re = /^(?:http|www)/;
    for (i = hlinks.length-1; i >= 0; i--) {
      if (hlinks[i].source.hasOwnProperty ('sourceText') && !re.test (hlinks[i].source.sourceText.contents)) {
        hlinks[i].source.sourceText.contents += '*';
      }
    }
    

    This would also explain the unexpected behavior of your / ^ j / test. (/ ^ j / tests whether a string starts with 'j' - no need to the * or the parentheses.)

    Peter

  • Impossible to apply the update

    Automatic updates of Windows using these 4 security updates continually fails when you try to update - KB973705 KB974554, KB972580 KB974771.
    I used the automatic Windows update successfully for years.

    I was directed DIRECTLY download each update security - individually.
    I went to-http://www.microsoft.com/downloads/en/results.aspx?displaylang=en&freetext=security%20update
    and KB973705 KB974554, KB972580 KB974771 added one at a time
    in the search engine, then downloaded successfully on my desktop.

    I tried to use each installation file, and had all the programs are closed including antivirus programs.

    Every time that crosses the entire patch update process, and then at the end, I get this error message.

    IMPOSSIBLE TO APPLY THE UPDATE

    I try next?

    Hello

    Welcome to Microsoft Windows 7 answers Forum!

    You can try the steps below and check if the problem is resolved.

    This problem may occur if some of the windows update components are corrupt, so we will try to reset the windows update components and find the number.

    You must follow the link provided below to run the fixit which will automatically fix the problem if you find problems with the fixit, then you can follow the procedure to manually reset Windows component update.

    How to reset the Windows Update components?

    http://support.Microsoft.com/default.aspx/KB/971058

    Also, visit the following link for more reference.

    Troubleshooting Windows Update or Microsoft Update when you are repeatedly offered an update

    http://support.Microsoft.com/kb/910339/

    Hope this information is useful.

    Thank you, and in what concerns:

    Suresh Kumar-Microsoft Support.

    Visit our http://social.answers.microsoft.com/Forums/en-US/answersfeedback/threads/ Microsoft answers feedback Forum and let us know what you think.

  • Apply the hyperlink to a part of the image (was: hyperlink on the PNG file)

    Hello

    I import a PNG image in Adobe Muse. It is a circular image I want to use it as a button. When I created the hyperlink, the entire image, including the image frame is a hyperlink. Is there a way to only apply the hyperlink to the circle of the PNG file?

    Thank you!

    Uunfortunately, that's how image links work. Everything is square or rectangular in HTML, so when you apply a link to an image, it is actually applied to the image frame.

    It is possible to make links non square using image maps, but it involves a bit of coding.

    I hope this helps.

    David

    http://creativemuse.co

  • Impossible to apply the resource DRS settings on host.the of object has already been completely created this can drastically reduce the effectiveness of the DRS

    Impossible to apply the resource DRS settings on host.the of object has already been completely created this can drastically reduce the effectiveness of the DRS

    host is having above mess on summer please help on this

    I found the correct solution

    ESXi 5.1 U3 is the permanent fix for this issue

    U3 is fix

  • Impossible to apply the swf police embedded in the text in text layout

    Hello

    We have created a SWF for a police given (e.g., Calibri.swf) that contains all the styles (Regular, Italic, Bold, BoldItalic).

    We have created an xml that lists the name of the font and the path of the swf file. The names of xml is loaded into a drop-down list box in the application.

    When we try to apply the font selected in a text under text layout, it does the same. It sets the font to the font "Times" by default.

    Here is a snippet of code to apply the font for the text:

    private void selectFont(fontXML:XML):void {}
    var path: String = fontXML.@source;
    var myEvent:IEventDispatcher = styleManager.loadStyleDeclarations (FlexGlobals.topLevelApplication.url.substring (0, FlexGl obals.topLevelApplication.url.lastIndexOf("/"))+"/"+path);)
    myEvent.addEventListener (StyleEvent.COMPLETE, {function(event:StyleEvent):void}
    var editManager:EditManager = textFlow.interactionManager as EditManager;
    var itextLayout:TextLayoutFormat = new TextLayoutFormat();
    itextLayout.fontSize = 20;
    var fontName:String = fontXML.@name;
    Alert.Show (FontName);
    itextLayout.fontFamily = fontName;
    Alert.Show ("itext =" + itextLayout.fontFamily);
    editManager.applyFormat (itextLayout, itextLayout, itextLayout);
    var flowLeafElement:FlowElement = textFlow.findLeaf (editManager.anchorPosition) as element FlowElement.
    editManager.changeStyleName (fontName, flowLeafElement);
    });
    }

    Can someone please let us know what is missing in the implementation?

    Thanks in advance.

    Vikram

    Did you put the fontLookup in ITextLayoutFormat? It must be set to search for the police as an embedded policy. I think that, by default, it will consider it as a device font.

    -robin

  • System error / stop when trying to apply the animation to text on securities.  Already uninstalled and reinstalled. same mistake.

    Hello

    I just downloaded items from adobe first.  I'm unable to apply any transition to my title text.  The system gives the error:

    [/ Adobe/pre/main/libraries/HSL/Make/Mac /... /.. / Src/Views/MediaListView.cpp-3820]

    And then prior to the decision.

    I tried to uninstall the software completely and reinstall with no luck.  I use a new iMac so I doubt its my computer.

    Thank you

    rachelstrachel

    1. I'm strictly a Windows elements users, and it is my second hand information on when the Adobe Premiere elements Prefs file is Mac.

    I want you will find this file and delete it. I think this way seems it

    Users\Owner\Libraries\Application Support\Adobe\Premiere Elements\13.0.

    2 start a new project. Create your title in the Titler as follows.

    a. text Menu/new text/text default

    b. type your text in the text Section of the module of titration. Select the tool selection at the bottom of this article and then click on the text

    on the screen to select and get a bounding box around the text.

    c. go to the Animation Section of the module of titration. Click and drag the text Animation named bland by the line of the display of animation of the neighborhood of choice

    in the text on the screen or select Fade In by Line, scroll down the text animations, and click on apply.

    d. close the titration module.

    e. return the content of the timeline by pressing the button made above the timeline and you see the result of text animation.

    How long in the process do you have? Same problem as reported? Or this time it worked?

    RTA

  • Impossible to apply the resource of DRS

    The VI interface I have a yellow box on this node within a message saying:

    Impossible to apply settings of resource of DRS on the host 'XXXXX' (reason: a general error occurred: failure). This can drastically reduce the effectiveness of th DRS

    Here are my logs to vmkwarning (the end of the file):

    31 Mai 15:06: 20 GQV00500 vmkernel: 82:05:12:21.482 cpu4:1041) WARNING: ScsiDevice: 3731: ABILITY to READ on device "vml.02000b000060060e8005488c000000488c0000074e4f50454e2d56" Plugin "legacyMP" failed. Not supported

    31 Mai 15:06: 20 GQV00500 vmkernel: 82:05:12:21.483 cpu4:1041) WARNING: ScsiDevice: 3362: failed to vml.02000b000060060e8005488c000000488c0000074e4f50454e2d56: unsupported

    31 Mai 15:06: 20 GQV00500 vmkernel: 82:05:12:21.483 cpu4:1041) WARNING: ScsiDevice: 3731: ABILITY to READ on device "vml.02000b000060060e8005488c000000488c0000074e4f50454e2d56" Plugin "legacyMP" failed. Not supported

    31 Mai 15:06: 20 GQV00500 vmkernel: 82:05:12:21.484 cpu4:1041) WARNING: ScsiDevice: 3362: failed to vml.020009000060060e8005488c000000488c000007284f50454e2d56: unsupported

    31 Mai 15:06: 20 GQV00500 vmkernel: 82:05:12:21.484 cpu4:1041) WARNING: ScsiDevice: 3731: ABILITY to READ on device "vml.020009000060060e8005488c000000488c000007284f50454e2d56" Plugin "legacyMP" failed. Not supported

    31 Mai 15:06: 20 GQV00500 vmkernel: 82:05:12:21.484 cpu4:1041) WARNING: ScsiDevice: 3362: failed to vml.020009000060060e8005488c000000488c000007284f50454e2d56: unsupported

    31 Mai 15:06: 20 GQV00500 vmkernel: 82:05:12:21.484 cpu4:1041) WARNING: ScsiDevice: 3731: ABILITY to READ on device "vml.020009000060060e8005488c000000488c000007284f50454e2d56" Plugin "legacyMP" failed. Not supported

    31 Mai 15:06: 20 GQV00500 vmkernel: 82:05:12:21.485 cpu4:1041) WARNING: ScsiDevice: 3362: failed to vml.020009000060060e8005488c000000488c000007284f50454e2d56: unsupported

    31 Mai 15:06: 20 GQV00500 vmkernel: 82:05:12:21.485 cpu4:1041) WARNING: ScsiDevice: 3731: ABILITY to READ on device "vml.020009000060060e8005488c000000488c000007284f50454e2d56" Plugin "legacyMP" failed. Not supported

    2 Jun 03:01:29 GQV00500 vmkernel: 83:17:07:32.631 cpu2:1036) WARNING: FS3: 3495: status bad003f cleaning HB

    Did you try this KB

    vcbMC - 1.0.6 Beta

    Lite vcbMC - 1.0.7

    http://www.no-x.org

  • Unable to access the hyperlink in text Mode

    It is a new problem. All of a sudden, when I'm in text mode I is more now have the hyperlink options in the toolbar above. They re - appear only when the entire text is selected. So I can not link text to another page.

    Someone at - it a solution or explanation? I missed something or is this a bug?

    Thanks in advance.

    J

    OK... so I saw that someone had posted, but had not received your comments here, I'll be back to post the answer incase someone else ends up with this. As you can see, nobody helped me... ;-(

    By chance I discovered the problem:

    Resizing of the window. If you reduce the width of the window, functions disappear. Expand the window and they reappear.

    I lost a week of work because of this time. Hope this helps someone else.

  • Impossible to apply the Animation of the title

    First Elements 8 don't apply animation title to a certain title.

    The same track contains a few other titles, to which I was able to apply the animation of the title without problem.

    I tried dragging the problematic title (in fact, problematic titles) to a separate track, but this does not solve the problem.

    Is there a solution/workaround?

    Is this a known issue?

    Where the problem comes not from?

    Two thoughts:

    (1.) you try to add a fade-in and an Animation of bland-out title to a title? If so, use Ctrl-K to cut your title into two pieces in the middle right. Add your choice of fade-in for the first, then your bland-out per second.

    2.) you have more than one line of text? Title Animations would apply ONLY to the line above. The way around this is to make a separate title for each line and place them above the other on different video tracks. Jose a limitation of entertainment title.

    Good luck

    Hunt

  • Impossible to navigate the hyperlink in the upper part of a Web site using Firefox

    I can't navigate the hyperlink at the top of a Web site using Firefox. For example, in the site Web of Firefox, the cursor does not change 'arrow' to 'hand' when I point to 'Sign Out' or 'Inbox '. But it's ok for the rest of the site (i.e. the top right).

    However, if I use Internet Explorer, I havn't met the same problem. Help please advise.

    This problem is caused by the Yahoo! toolbar as scopes as well down and covers the top of the browser window, allowing links in this part of the screen not clickable.

    You can keep an eye on this thread:

  • Impossible to apply the skin in Media Player

    original title: Media Player

    I downloaded the skin KENWOOD_MPXP 05/12/2012 to my Media Player but when I try to apply it to help the skin to apply using the selector appearance, it does not work. However, if I go to my downloads folder and open it from there, he will work until I go full screen. Then it still does not work and I have to repeat everywhere in the download process. What can I do to apply the skin of my Media Player?

    Hi TJ.

    Welcome to the Microsoft Community and thanks for posting the question.

    According to the description, it looks like you are facing a problem while applying a skin for Windows Media Player.

    It would be awesome if you could answers to these questions in order to help you further.

    1. what version of Windows Media Player do you use?

    2. which version of the Windows operating system is installed on your computer?

    3. have you made changes on the computer before this problem?

    I suggest you to see the steps in the following Microsoft article.

    Windows Vista: Change the appearance of Windows Media Player by using skins: http://windows.microsoft.com/en-US/windows-vista/Change-how-Windows-Media-Player-looks-using-skins

    Windows 7: change the appearance of Windows Media Player by using skins: http://windows.microsoft.com/en-US/windows7/Change-how-Windows-Media-Player-looks-using-skins

    Reference:

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-windows_programs/Windows-Media-Player-11-unable-to-apply-downloaded/9c88a6a2-ab1e-41ca-AD68-f01ce9557ff9?page=1

    If you need Windows guru, do not hesitate to post your questions and we will be happy to help you.

  • Impossible to apply the functional base index


    Hi gurus

    For my learning, I am applying the functional index of basic but looks like I'm doing something wrong, see below for my code and appreciate your answers.

    Code example

    DROP TABLE my_table;

    CREATE TABLE my_table

    (

    AA: PRIMARY KEY number 4

    aa_desc VARCHAR2 (30),

    aa_type VARCHAR2 (10)

    ) ;

    CREATE INDEX first_name_idx ON my_table (aa > 10 and upper (aa_desc) = "SA" and aa_type is null).

    Thanks in advance

    Concerning

    Shu

    SQL> create table my_table1
      2    (
      3      aa      number(4) primary key,
      4      aa_desc varchar2(30),
      5      aa_type varchar2(10)
      6    ) ;
    
    Table created.
    
    SQL> create or replace function my_table_check
      2  (
      3    p_aa      in my_table.aa%type
      4  , p_aa_desc in my_table.aa_desc%type
      5  , p_aa_type in my_table.aa_type%type
      6  )
      7  return number
      8  deterministic
      9  as
     10  begin
     11     if (p_aa > 10 and upper(p_aa_desc) = 'SA' and p_aa_type is null) then
     12       return 1;
     13     else
     14       return 0;
     15     end if;
     16  end;
     17  /
    
    Function created.
    
    SQL> create index my_table_idx on my_table1(my_table_check(aa, aa_desc, aa_type));
    
    Index created.
    
    SQL> explain plan for
      2  select *
      3    from my_table1
      4   where my_table_check(aa, aa_desc, aa_type) = 1;
    
    Explained.
    
    SQL> set linesize 130
    SQL> set pagesize 200
    SQL>
    SQL> select * from table(dbms_xplan.display);
    
    PLAN_TABLE_OUTPUT
    ----------------------------------------------------------------------------------------------
    Plan hash value: 3962327877
    --------------------------------------------------------------------------------------------
    | Id  | Operation                   | Name         | Rows  | Bytes | Cost (%CPU)| Time     |
    --------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT            |              |     1 |    37 |     1   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| MY_TABLE1    |     1 |    37 |     1   (0)| 00:00:01 |
    |*  2 |   INDEX RANGE SCAN          | MY_TABLE_IDX |     1 |       |     1   (0)| 00:00:01 |
    --------------------------------------------------------------------------------------------
    Predicate Information (identified by operation id):
    ---------------------------------------------------
       2 - access("V195588"."MY_TABLE_CHECK"("AA","AA_DESC","AA_TYPE")=1)
    Note
    -----
       - dynamic sampling used for this statement
    
    18 rows selected.
    
    SQL>
    
  • Impossible to apply the behavior to an image - behaviors panel is dimmed

    I have a photo gallery set up with thumbnails and a large image. In the past, it was easy to select the tile and add the behavior of the swap on the thumbnail image to have a big image change as you hovered over the tile. Now, if I select the thumbnail image, the behaviors panel is grayed out, not allowing me to apply the behavior. Help!

    Hi Jon,

    Code is clean. Good news - I got it to work. I uninstalled Dreamweaver, reinstalled, double checked the above suggestion of Nancy O and own the behaviors panel.

    Thank you all!

  • Impossible to apply the update on June 21 [applications missing cloud desktop application tab]

    Notification of updates today (June 21). Now, my table CC doesn't have the applications tab. It is a change. I checked the preferences, but no indication as to how to recover the applications tab.

    I got a notification that updates are available, but I can't understand how to apply them. I updated several CC versions, but now the Apps tab went to CC, and I can't for the life of understand me what mantra I have to do to update.

    CCPanel06212016 copy.jpg

    alfonsov31097035 wrote:

    Now, my CC array does not have the applications tab

    Try Adobe Creative Cloud Desktop App - Apps tab fix - YouTube

Maybe you are looking for

  • HP Envy5530 series - HP64C25A: HP scanning and Capture does not work

    Recently my HP Scan application capture & has stopped working. So far the application worked perfectly. I tend to use it rarely, so the first cause can occur some time in the past weeks. The printer is connected to my laptop via a wifi connection & i

  • card installation causes the only safe mode startup

    After a driver to install my card from his Creative SB2 worked well. The day of juxtaposing it wouldn't work. Later, the only safe mode startup is cured by disconnecting the sound card. Could he have gone wrong or how do I get that back to work?

  • customize controls splits

    Hello I'm trying to customize the color box control to make them look like a modern LED.  I started with classical and any color box image led.  I then imported the modern LED framework.  Control looks very good and works as a color box, but not toge

  • Error 1935 HRESULT: 0x80070005

    I can't install a LeapFrog product and found the following errors in the Windows Event Viewer log: Product: LeapFrog Connect - Error 1935. An error occurred during the installation of assembly ' Microsoft.VC80.ATL, type = "win32", version = "8.0.5072

  • CS4 - installation error

    I tried to download CS4 on my laptop and get:"Setup error - Setup has encountered an error and cannot continue." Contact Adobe customer support for assistance. »I found only that the forums are available for assistance, but could not find something t