Why can't i change the link on the navigation bar?

In previous versions of Muse i was able to change the link on my navigation bar. For example I was able double click on the navigation bar and highlight one of the pages (let's say registration) and it would allow me to change the link on the registration page so that when you click on the registraion page it would take you to https://events.r20.constantcontact.com/register/eventReg?llr=5qqftnkab&oeidk=a07e69lauti1b 52a1df&oseq=a011mh5tw6bs2 and a not regular page on the website. but now when i try to do the same thing the link area is greyed out and i can't change anything.

I have installed v2.3 on my Mac, and had to go through and change all the fonts back due to a naming issue in Windows.  That's ok.
But there are several things that need to be fixed in Muse.  First, everything should work consistently.  If you click on an object that has a hyperlink or a link to another page in the document, that link should be displayed in the control bar.  NO EXCEPTIONS. 
The control bar should have enough sense to get bigger -- i.e. go to a second row of controls -- whenever there are items that are not being displayed due to window width.  Most sensible programs do not just display part of the info and then leave a blank space to the right, letting the user assume that there is nothng more to be displayed.  While I have 2560 x 1600 monitors, I am running Muse on a 27 inch 1920 x 1200 to avoid eyestrain from the tiny menus.  But there are times I need to make a window much wider than 1920 in order to display everything in the control bar -- and then slide the entire window back and forth.  Poor GUI design.
I now have a master page menu (all the buttons send the user to other pages in the document) where one of the buttons is sending users to a dead link.  Used to work perfectly, have not changed the name or the link.
I tried the above advice about opening page without hyperlink (how damnably counterintuitive is that maneuver?) and could then -- voila -- get the hyperlink menu for that menu item and select the page.  I was ecstatic -- until it turned out it didn't work -- either with open page w/hyperlink or without it selected.
AGAIN -- I will repeat -- one should be able to click on ANYTHING -- a text box, a picture, a menu item, etc. -- and assign a hyperlink from the SAME hyperlink menu -- without exception.  Having different ways to accomplish the same thing is fine unless you can't use any of those methods all the time.
The ability to resize the assets window so that one could read (without having to hover over each item) the FULL name of an image file, etc, would also be useful.
BAD DESIGN.  Please fix it.  And tell my how to get my missing link back.
Jeff Kreines

Similar Messages

  • HT201210 Why can't I change the location of my device backups?

    Why can't I change the location of my device backups?
    iTunes seems to force me to use my c:\ drive as the destination for all backups. 
    Background: I have set up my c:\ drive only for programs - all data is stored on separate drives - including my iTunes library and all media. So, I can't skinny down the c:\ drive any more without uninstalling programs.
    The issue is that my 10,000 rpm, 280 GB - C:\ drive is fast but small and is now FULL after I got about 1/2 way through a 128 GB backup of my ipad.  (Yes, all movies have been deleted off of the iPad to minimize the size of the backup.)
    I deleted the partial iPad backup, moved all the Mobile Applications to another drive, emptied the recycle bin and tried again with my much smaller iPhone.  You guessed it: the io7 update hung and both of my devices are now paper weights.
    Which leaves me f*cked, anyone know how I can un-f myself? 

    SPURCHASE wrote:
    The issue is that my 10,000 rpm, 280 GB - C:\ drive is fast but small and is now FULL after I got about 1/2 way through a 128 GB backup of my ipad.  (Yes, all movies have been deleted off of the iPad to minimize the size of the backup.)
    iTunes movies are not part of an iDevice backup.
    Videos & photos you take with the camera (in the Camera roll) are part of the backup but those should be sync'd to the computer and removed from the camera roll.

  • Why can't I change the transparent color and font color in IOS 7?

    Who thought all this WHITE AND TRANSPARENT color looks appealing?
    Why can't I change the color of the folders and text?
    I already tried inverting the colors and then it washes out the photos I use as my wallpaper.
    I love everything, so far, except this transparent issue.

    That's very sad those colors can't be changed. They really look ugly.
    Thanks for responding.

  • Why can't I change the transaction isolation level?

    I was trying to change the transaction isolation level from an EJB. My source codes are shown as the follows:
    ======================================================
    /*********************** Database Routines *************************/
    private void makeConnection() {
    try {
    InitialContext ic = new InitialContext();
    DataSource ds = ( DataSource )ic.lookup( dbName );
    con = ds.getConnection();
    DatabaseMetaData dmd = con.getMetaData();
    show_supported_trans_levels( dmd );
    int status = con.getTransactionIsolation();
    System.out.print( "1. " );
    disp_tx_status( status );
    System.out.println( "con.isReadOnly() = " + con.isReadOnly() );
    con.setTransactionIsolation( Connection.TRANSACTION_SERIALIZABLE );
    System.out.print( "2. " );
    disp_tx_status( status );
    } catch( SQLException ex ) {
    System.err.println( "SQLException: " + ex.toString() );
    throw new EJBException("Unable to connect to database. " +
    ex.getMessage());
    } catch( NamingException ex ) {
    System.err.println( "NamingException: " + ex.toString() );
    throw new EJBException("Unable to connect to database. " +
    ex.getMessage());
    private void disp_tx_status( int status )
    System.out.print( "Transaction Status: " );
    switch( status )
    case( Connection.TRANSACTION_READ_UNCOMMITTED ):
    System.out.println( "TRANSACTION_READ_UNCOMMITTED" );
    break;
    case( Connection.TRANSACTION_READ_COMMITTED ):
    System.out.println( "TRANSACTION_READ_COMMITTED" );
    break;
    case( Connection.TRANSACTION_REPEATABLE_READ ):
    System.out.println( "TRANSACTION_REPEATABLE_READ" );
    break;
    case( Connection.TRANSACTION_SERIALIZABLE ):
    System.out.println( "TRANSACTION_SERIALIZABLE" );
    break;
    case( Connection.TRANSACTION_NONE ):
    System.out.println( "TRANSACTION_NONE" );
    break;
    default:
    System.out.println( "UNKNOWN" );
    break;
    private void show_supported_trans_levels( DatabaseMetaData dmd ) throws SQLException
    System.out.println( "List of Supported Transaction Isolation Levels: " );
    if( dmd.supportsTransactionIsolationLevel( Connection.TRANSACTION_READ_UNCOMMITTED ) )
    System.out.println( "TRANSACTION_READ_UNCOMMITTED is supported!" );
    else
    System.out.println( "TRANSACTION_READ_UNCOMMITTED is unsupported!" );
    if( dmd.supportsTransactionIsolationLevel( Connection.TRANSACTION_READ_COMMITTED ) )
    System.out.println( "TRANSACTION_READ_COMMITTED is supported!" );
    else
    System.out.println( "TRANSACTION_READ_COMMITTED is unsupported!" );
    if( dmd.supportsTransactionIsolationLevel( Connection.TRANSACTION_REPEATABLE_READ ) )
    System.out.println( "TRANSACTION_REPEATABLE_READ is supported!" );
    else
    System.out.println( "TRANSACTION_REPEATABLE_READ is unsupported!" );
    if( dmd.supportsTransactionIsolationLevel( Connection.TRANSACTION_SERIALIZABLE ) )
    System.out.println( "TRANSACTION_SERIALIZABLE is supported!" );
    else
    System.out.println( "TRANSACTION_SERIALIZABLE is unsupported!" );
    =========================================================
    However, I encountered the following exception when running at the highlighted statement:
    ======================================================
    SQLException: java.sql.SQLException: Transaction manager errors. statement not allowed in XA Session.
    ======================================================
    To my surprise, the isolation level TRANSACTION_SERIALIZABLE is supported from the database vendor. So why can't I change the transaction isolation level?

    You can change the setting, you may need to click the lock at the bottom of the preference pane. Be careful what you download and install, Gatekeeper is there to help you. OS X: About Gatekeeper - Apple Support

  • Why can't i change the setting at the security

    Why can't i change the setting at the security & privacy? After I switch to OS X Yosemite, i cant install some application. It says that I can install due unidentified developers. Can anyone help?

    You can change the setting, you may need to click the lock at the bottom of the preference pane. Be careful what you download and install, Gatekeeper is there to help you. OS X: About Gatekeeper - Apple Support

  • Why can't I change the content for some songs when I click the Get Info button?

    Why can't I change the content for some songs when I click the Get Info button?  The information on the song, artist, genre is grayed out and will not allow me to alter the information.

    Hi htechadmin,
    Revcevied your PM and noted all details, Many Thanks.
    Getting this addressed by the team, either they will reply to you, here, or they shall email Or Call you.
    Regards,
    LP

  • Why can't I change the transparent color in IOS 7?

    Who thought all this WHITE AND TRANSPARENT color looks appealing?
    Why can't I change the color of the folders and text?
    I already tried inverting the colors and then it washes out the photos I use as my wallpaper

    That's very sad those colors can't be changed. They really look ugly.
    Thanks for responding.

  • WHY can't i change the civility in itunes store always said that there is an error, WHY can't i change the civility in itunes store always said that there is an error

    HELP
    WHY can't i change the civility in itunes store always said that there is an error, WHY can't i change the civility in itunes store always said that there is an error

    try this
    http://support.apple.com/kb/HT1452
    but also, do you already have your itunes account runnig on other computers?  if so how many ?

  • Why can I not change the apple id associated with iphoto and imovies

    Why can I not change the appleid associated with iphoto and imovies

    Is it not your Apple ID? Is this a used Mac? If so, the Mac, OS X and the iLife apps are all registered to the original owner of the Mac.
    When someone sells a Mac they should erase the Mac and reinstall the most recent version of OS X that came with the Mac. And they should call Apple Care and have the Mac, the OS and the iLife apps disassociated from their Apple ID. Can you call the original owner and request that?

  • Why can't I change the names of my states in my symbol?

    For some reason, Fireworks won't let me change the names of my states in my symbol.
    I double click on the state name in the states panel, and nothing happens.
    It works fine for normal "non-symbol" pages.
    Can you normally change the names of states in symbols?
    Any ideas why I am having difficulty doing so?

    Thank you SO much! Funny thing, I didn't even notice the tiny folder icon at the top of the info window until I saw it in the screen shot at the beginning of that article. 
    See, I have begun changing the icons of the folders of digital scrapbooking alphabets I have (screenshot below). Now it will be so much easier to scroll through my hundreds of alphas and choose one, because I can SEE them without going in and out of each folder.
    A million thank yous!!!!! 

  • Why can't I change the genre on the new iTunes

    I wish to change the genre of a song on the new iTunes.  I right click on the song go to details, write in the genre and then click on OK and yet nothing changes.  So how can I effectively change the genre of a song?

    I found out that in order to have iTunes accept changes, I must first go into Windows Explorer to the music file under properties, in the General tab, then uncheck in Attributes the read only box. Then iTunes accepts the changes.
    Thank you and have a great day!

  • Need to change the navigation bar direction in my site!

    I've got my site up and am working with it. I have some sense of HTML coding. My question/situation:
    I changed the name of my Home.html page to index.html so that google analytics could spider all my external and internal links. This went off with one major hitch... all the pages after the index page still send "Home" in their navigation bar to Home.html which no longer exists. Where can I find the file/feed/script or whatever to change the internal coding to direct that old Home in the navigation bar to my new index file?
    My site is www.womenswellnessmarketplace.com
    Thanks..I do realize that the themes are different in the home page and the following pages...thats my next big task!!

    Don't know what I did but it seems to be working now!

  • Changing the navigation bar - help!

    Hi,
    I'm making my personal website with iWeb (using the "Modern" template as a base) and I would like to personalise the navigation bar. I have already managed to change the colours of the words modifying the xml file for the template, but I would like the Menu to start about one inch further to the right, because I want to put the logo on the left hand side.
    I would also like to change the font size.
    I’ve searched already on many forums everywhere and I haven’t found anything really useful.
    Please, could anyone tell me exactly how to do this? I would need step-by-step instructions, because I’m not the “coder” type.
    I hope you can help me. Thank you very much.

    Go to:
    11mystics.com
    they have tutorials on changing templates and other stuff. I think they have one on changing fonts.
    The notation I found in this thread suggests NOT messing with nav bar settings ...but here is the thread:
    http://discussions.apple.com/thread.jspa?messageID=3288533&#3288533
    Also, with iWeb 08 ...some of the software architecture has changed and may not work down the road. Luck...

  • Why can't you change the .html/.htm filetype icons for Firefox?

    **Before you read this question: NOTICE I am talking about Firefox Icons on Windows, NOT ON FIREFOX BOOKMARKS/PROGRAM!!!!! Read the question then please, please visit the link so you have a better understanding of what I'm asking with this question!!!!**
    I've been trying to change the FileType Icons for the Firefox Documents for weeks now and there's no solution that I can see. I tried using Filetypes Manager to change the .html/.htm filetypes icons with no luck. Why does Firefox force this change on users when most users that use Firefox do so because of it's ability to be customizable? Even Microsoft Word .doc file icons allow you to change them! Microsoft!!! Why is Firefox forcing everyone to use their ugly filetype icons? &____& I've yet to see this issue not only addressed but solved. Why does Firefox ignore this issue? I'd like my computer's icons to all be top-notch, and Firefox is preventing me from making my weeks of hard work go to naught. Please, please address this issue... if anything, tell your users why your program is forcing the icons on them in the first place when monopolies like Microsoft allow their users to customize program filetype icons.
    If this cannot have a fix, why can't it be a new feature/addition to the newest versions of Firefox?
    Edit: And because people are starting to get 'confused' I've included a screen shot of what I'm talking about because, for the love of god, people, I'm *not* talking about using favicons and bookmarks!
    http://i28.photobucket.com/albums/c231/arcanetheorem/example.png

    The only thing I changed about the question was to add an image and to try and make it more understandable since everyone assumed I was talking about Favicons/Bookmark Icons....
    As for it being a Windows 7 issue and not a Firefox one... if it were just a Windows 7 issue I wouldn't be able to change other application icons or filetype icons on the Windows platform using FileTypes Manager. Firefox, from what I've been able to gather, is not one that can be changed. If I change the filetype icons for Word Documents any other extension (like .mp3/.mp4/.avi/.mkv), I get the changed icon I wanted. However, when you try to change the Firefox .html/.htm filetype extension icons, it doesn't work. Have you tried going through changing your icon filetypes using FileTypes Manager to see this issue? If it were a Windows or FileType Manager issue, then I'd have trouble changing other icons on that platform, no? So what I'm asking with my question is why this is. Why, if you use FileTypes Manager to change Windows7 icons, is Firefox's icons the only ones that won't be changed? Doesn't this fall under Firefox's problem if their icons are under the 'can't be changed' category under Windows? And using shortcut icons is no good for me. When I browse a folder of .html files, I want to see the icons I changed it to, not make a shortcut to every .html file I have just to have a better-looking Visual Style. Defeats the purpose, doesn't it? As for clicking on Properties to change it... Windows 7 doesn't allow this feature anymore, which is why I've been using FileType Manager to change all filetype extension icons.
    Hope that helps clear things up a bit, though I have a feeling I'm just confusing everyone more with what is a simple question/problem....

  • Why can't we change the 9am alarm for all-day events?

    I need these all-day events alarms to be at another time, why can't I do this? Why the arbitrary 9am? Please, don't suggest to not use all-day events, this is not an acceptable solution to a very basic setting change that should be accessible.
    Using iCal 6.0 on 10.8.3 with iCloud and iOS 6.

    Hi,
    See from the business perspective, but not from the system point of view.
    Intial triggering point for any business operation(inquiry , quotation , order - others are dependant transactions) is sold to party ( the one who place the order), which means at the time  of placing the order, respective business partner should completely aware of & disclose the required details to complete the business deal. 
    eg: where these order supposed to dispatch,
    to whom business has to send the copy of invoice &
    who is gonna settle this invoice amount.
       So Sold to party will have all the required details. Hence one sold to party act as the other business partners.
    Once agreed, then only business partner is created as Sold to party in system. If is there any changes from the Sold to party such as in future sold to party is not going to receive the goods, but they nominated some other business partner for this function, then the respective details will be recorded as Ship to party & assigned this number to Sold to Party.
    So you cant change the sold to party as some other business partners such as SH, BP  & PY.
    Regards,
    Reazuddin MD

Maybe you are looking for

  • Premiere CC keeps crashing on opening

    Premiere CC keeps crashing on opening

  • How can I create iTunes U content?

    Especially with the newly integrated features with the new iBooks...I would LOVE to use this feature to write courses as an individual or as a representative of a group that's not "official" in the sense that Apple seems to be striving for (Universit

  • JDE worldsoft 9.1 Facing the problem of extending cost is calculating wrong

    IN JDE worldsoft 9.1 we are facing the problem of extending cost is calculating wrongly. at the time of shipment confirmation in table F42119 it is calculated with 100 that means with decimals if the extended cost i( Qunatity 1 * cost 100 = Extended

  • Content generation error. [Error: exportArticleFolio]

    Hi guys! I'm getting the error "Content generation error. [Error: exportArticleFolio]" when trying to update an article (yesterday it was successfully uploaded and updated). The same issue when try to upload it as a new article. No errors are display

  • WorkFlow User Decision

    Hi I want to change the step egent , by a workFlow container element , i want to know wich element to choose , and what option to choose on changing agent of the step I try (work flow initiator _ Expression) with PERNR but it dosent work ANY HELP PLE