How do I make a web page that changes every time the user refreshes it? Is it possible in Muse?

Hi, i'd like to make quite a simple website where the main text in the centre of the page changes every time the user refreshes the page in their browser. I assume i'll have to make one master, and multiple pages that are all the same except for the changes in the text, but i'm not sure how to make it so that every refresh directs to a different page and not just the home page? Is this even possible in Muse?
This is an example of what i'm going for: :: procatinator ::
Thanks!

You can't do it with Muse alone. Would probably be fairly simple to do with a bit of Javascript. Check the widget directory as it is possible someone has made a widget for random content. If not, maybe I will make one this weekend. ;-)

Similar Messages

  • How do I make safari web page go direct to "Open pdf in preview" without having choose it manually

    how do I make safari web page go direct to "Open pdf in preview" without having choose it manually

    Well crap!  Internet explorer goes direct to actual pdf, would'nt you know it, safari wont!  I will have to change my pdf order form to include instructions on how to find that toggle thing at the bottom so it wont wig out safari users.
    Kind of *****, if people dont know they have to click the open in preview choice, my form wont work.
    Thought maybe it was an HTML issue that could be overidden.
    Thanks for your answer.
    LeeCM

  • HT1338 In my e mails, I cannot get to a web page that is mentioned in the body of the e mail

    In my e mails, I cannot get to a web page that is mentioned in the body of the e mail.

    That's probably a bookmark you have saved in Favorites.
    Tap bookmark icon>Favorites>Edit>Delete the bookmark

  • How to turn off printing message box that appears every time I send a document to the printer?

    How to turn off printing message box that appears every time I send a document to the printer?  Appears bottom right corner of screen above task bar.  Printer is HP c309a All-in-One PhotoSmart printer.

    I have an Iphone 4s, and every time I receive a call and i dont answer it, the cell shows a black screen with many things to do and automatic messages to send, like "call back, save, remind, call now, call later, etc". If I don´t close it as soon as i receive the call, then the cell gets frozen in that screen and i have to restart it. Sory for my english, i´m from argentina! thaks for your help !!!

  • When restarting firefox after a crash, how do I stop it from re-opening all web pages that were open at the time of the crash?

    When firefox crashes, or if it hangs and I have to kill it, then when I go to restart it, it tries to re-open all pages that were open at the time it crashed or was killed. This is incredibly annoying, especially if one of the visited pages caused the crash or hang. It is also really annoying if some of the web pages happened to require passwords to log in, from multiple sites. In my case this occurs as I am frequently logged into multiple online educational web sites like ucsc-extension.edu and berkleemusic.com. In the login case you get multiple login prompt pop-ups with no way to correlate which pop-up goes with which web page. If there are a lot of them then it's a hopeless mess. This behavior is something that I never ever want and it infuriates me that not only is it the default behavior, it is something that there seems to be no way to turn off, at least via the configuration menus. Am I wrong? Is there a way to turn this off? If not can somebody either make it configurable or get rid if this fantastically idiotic behavior?
    I suspect there's a command line option for this but on my Mac (or most systems these days) it's sort of "unnatural" to be starting programs like browsers by means other than a provided program start-up icon, which gives you no choice about the command line options.
    Besides, as a default behavior the current behavior is something I cannot conceive of ever wanting. I would rather have a poke in the eye with a sharp stick.
    == This happened ==
    Every time Firefox opened
    == firefox crashed

    You can try this.
    In the address bar type about:config you will be warned that this is dangerous.
    Search for browser.sessionstore.resume_from_crash
    Double click on true to toggle it to false.
    Exit the page.
    Firefox will now NOT try to reload websites after a crash.

  • How do I parse a web page via a URL in the clipboard

    Hi.
    I would like to read the html source of a web page into a string variable. The contents of the clipboard contains the URL.
    How do I do this ?
    Regards,
    Harry W.
    PowerMac G5 Dual 2.5GHz   Mac OS X (10.4.3)  

    What I have done is write an Applescript that parses a URL copied from a web site (http://www.ebroadcast.com.au/TV/static/PerthNight.html?) read the web page using CURL and use the EyeTV API to schedule a recording.
    The applescript is as follows;
    property |version| : 1.0
    property author : "HarPat Software"
    property |date| : date "Saturday, 18 February 2006 12:00:00 AM"
    property license : "freeware, open-source"
    version 1.0, February, 18, 2006
    - Initial version.
    set theURL to contents of (get the clipboard) as text
    if theURL contains "http://www.ebroadcast.com.au/cgi-bin/TV/detail?" then
    set thePage to do shell script "curl " & quoted form of theURL
    set theBDateStr to "Broadcast Date: "
    set theChannelStr to "&chan="
    set theDescriptionStr to "&descrip="
    set theBTimeStr to the offset of "Broadcast Time: " in thePage
    set theDurationStr to the offset of "Timeslot Duration: " in thePage
    set theBDateOff to the offset of theBDateStr in thePage
    copy (characters (theBDateOff + (length of theBDateStr)) thru ((the offset of "Channel: " in thePage) - 9) of thePage) as string to theBroadcastDate
    set theChannelOff to the offset of theChannelStr in theURL
    copy (characters (theChannelOff + 6) thru ((the offset of "&state=" in theURL) - 1) of theURL) as string to theChannel
    set theDescriptOff to the offset of theDescriptionStr in theURL
    copy (characters (theDescriptOff + 9) thru ((the offset of "&fta=" in theURL) - 1) of theURL) as string to theTitle
    set theBTimeOff to the offset of theBTimeStr in thePage
    copy (characters (theBTimeOff + (length of theBTimeStr) + 23) thru ((the offset of "Classifications: " in thePage) - 10) of thePage) as string to theBroadcastTime
    set theDurationOff to the offset of theDurationStr in thePage
    copy (characters (theDurationOff + (length of theDurationStr) + 26) thru ((the offset of "<!--<br>" in thePage) - 11) of thePage) as string to theDuration
    set Durationsecs to (theDuration as integer) * 60
    set thetheBroadcastDateTime to theBroadcastDate & " " & theBroadcastTime
    set aChannel to 0
    if theChannel = "2" then
    set aChannel to 1
    end if
    if theChannel = "7" then
    set aChannel to 2
    end if
    if theChannel = "9" then
    set aChannel to 3
    end if
    if theChannel = "10" then
    set aChannel to 4
    end if
    if theChannel = "SBS" then
    set aChannel to 5
    end if
    if theChannel = "31" then
    set aChannel to 6
    end if
    tell application "EyeTV"
    make new program with properties {start time:date thetheBroadcastDateTime, duration:Durationsecs, title:theTitle, channel number:aChannel}
    end tell
    end if
    I'm not very good at scripting yet so please don't laugh at my code.
    Regards,
    Harry Werkman

  • How can I forward a web page (not a link but the page) using Mac Mail'Mountain Lion?

    I want to mail a web page, not a link to the page but the page itself. I use Mountain Lion and Mac Mail. I used to be able to do this with Lion.

    Look in the outgoing email message window. Make sure Send Web Content is not set to Link Only

  • How can I make my web page fill up the entire browser screen regardless of monitor it is viewed on,

    I have noticed that some websites are designed so that the page expands to fill in the entire screen, regardless of the size of the monitor. Here is an example: https://www.draft2digital.com/support/
    I have viewed the Muse tutorial that expands the Footer area to fill in the whole screen, but it does not address how to do this for the main part of the web page, or the header. I have looked at the site setup section and do not see where I could set it to expand.
    Any help would be appreciated.
    Thanks.

    Okay, in your link the blue bars would be in muse as a blue box then drag the right side so that it stamps just outside your page area. This will make muse program it so you will always see it extend to fill the browser window. Do the same on left side and you should be good. It will work even better if you also centre the rest of your content under page, page properties, padding - check the box for centre horizontally. Any content you want to extend with the browser, while the rest stays centred, you have to drag extending the content so it snaps just outside the main page in muse.
    Hope this helps.

  • How do I make a web page recognize an iPhone?

    I want to make my site recognize when someone browses it with an iPhone so I can redirect the iPhone users to a specific page. Anyone know how to do it?

    As an iPhone user, I see some sites that are doing this and I can't say that it's welcome. Knowing that the iPhone can view full web pages over a WiFi connection, I'd rather have a button on the main page for "mobile" instead of being shunted to the mobile site automatically.
    Right now, going to macnn.com reroutes me to macnn.com/mobile. It's well laid out and well intentioned, but if I want to surf the full site (which Safari would allow me to do), I don't have that option. I can understand how this was important for other mobile devices as their browser didn't even remotely give a true web experience, but for the iPhone, I feel it should be optional.

  • How to create a link to a web page that is connected to the database?

    i am developing a web form in java using Oracle's JDeveloper. i created the form which is connected to the database and now i want to put a link in a page that when clicked it shows the form and populates it if necessary. i have no idea how to do that, can anyone please give me an example or where i can find an example?

    Its really hard to answer this question with this enough information....Which Jdeveloper version? which technology you are using to create this web form ? ADF BC or others
    If 11g then are you aware of Task flows?

  • How do I save a web page that doesn't require me to be online when I want to view it?

    I have saved a web page to use later on, but when I try to view it, it links to the original site. Is there a way of viewing the saved page without being online?
    == This happened ==
    Every time Firefox opened

    How did you "save" that page?
    Are you sure that you didn't just save a "shortcut" to that page, like dragging that page to the Windows desktop?

  • How can I make a photo cd that is compatible for windows users?

    I need to make a photo cd from my iphoto library that will be compatible with Windows computers.  In my older iphoto program on my iBook G4 that was not a problem.  In iphoto '11, I get a message saying I need to follow some other instructions for cds for windows.  I'm having trouble with the alternative.  I must be missing something.  Is there a simple explanation?  Or will this always be a chore with the new program?
    Thanks for any help,
    Sheila

    Select the photos in iPhoto, export them to a desktop folder - see the user tip on exporting for details on the export options - and using the finder burn that folder to Disk
    LN

  • How do you make a portrait view that doesn't loose the pictures?

    I'm trying to layout a portrait view book in iBooks Author and I don't understand why Apple doesn't include a template that doesn't lose the pictures when you change screen orientation. Seeing that 99.9% percent of all paper books in the world are in portrait view I would have expected this to be the default view rather than landscape view. Has anybody been able to make a portrait view book that retains the graphics and other bells and whistles or am I just banging my head against the wall?

    In portrait mode the figures and things are always links down the side of the text. The only way I found to stop them disappearing was to insert them in portrait mode. They don't disappear when you change back to landscape, you just have to move them to wherever it is you want them to be. The best workflow is edit in portrait, then switch to landscape for formatting.

  • Web page opens automatically every time I log in to ask me why I uninstalled their program

    I was a member of the Nielson Digital voice program and had their software installed on my laptop, it kept crashing and I had to uninstall it and re install it every time I tried to use it so I uninstalled it. Now every time I log onto my computer and open the browser, their web page questionnaire opens in a new tab to ask me why I uninstalled their software. How do I make this STOP? I have answered it twice and it still keeps coming back.

    I was a member of the Nielson Digital voice program and had their software installed on my laptop, it kept crashing and I had to uninstall it and re install it every time I tried to use it so I uninstalled it. Now every time I log onto my computer and open the browser, their web page questionnaire opens in a new tab to ask me why I uninstalled their software. How do I make this STOP? I have answered it twice and it still keeps coming back.

  • Make a background photo that will resize to the users browser size

    I'm trying to create an effect like this in Iweb:
    http://neistatbrothers.com/
    You'll notice that the background image resizes to the browser size.
    I have read threads like that say to edit the HTML from "Scroll" to "Fixed"... that doesn't seem work.
    THIS website is NOT what I am looking for.
    THIS website is NOT what I am looking for.
    Thanks!

    Thanks Wydor,
    I'm trying to decode this very elegent and cryiptic answer. I am an iweb user after all so I need a few more baby steps. I'm going to try and over-communicate to clarify. This response is long, but I appreciate your help.
    The link that you sent me (the way that page looks) is exactly what I am looking for.
    So I'm assuming that this is the code I will need :
    <script language="JavaScript" type="text/javascript">
    <!--
    parent.document.body.style.backgroundImage='url(../images/beach.jpg)';
    parent.document.body.style.backgroundRepeat='no-repeat';
    parent.document.body.style.backgroundPosition='50% 0%';
    parent.document.body.style.backgroundAttachment='fixed';
    parent.document.body.style.MozBackgroundSize = 'cover';
    parent.document.body.style.backgroundSize = 'cover';
    // -->
    </script>
    And of course changing the image title and folder.
    From iweb I have downloaded my "site" to a local folder where I can edit the HTML files from Dashcode 3.0.1.
    The code looks like this for that page which I have titled "Blank", the Image I want to use is titled "SNV33631.jpg"  :
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <meta name="Generator" content="iWeb 3.0.4" />
        <meta name="iWeb-Build" content="local-build-20110920" />
        <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
        <meta name="viewport" content="width=700" />
        <title>Blank</title>
        <link rel="stylesheet" type="text/css" media="screen,print" href="Blank_files/Blank.css" />
        <!--[if lt IE 8]><link rel='stylesheet' type='text/css' media='screen,print' href='Blank_files/BlankIE.css'/><![endif]-->
        <!--[if gte IE 8]><link rel='stylesheet' type='text/css' media='screen,print' href='Media/IE8.css'/><![endif]-->
        <script type="text/javascript" src="Scripts/iWebSite.js"></script>
        <script type="text/javascript" src="Scripts/Widgets/SharedResources/WidgetCommon.js"></script>
        <script type="text/javascript" src="Scripts/Widgets/Navbar/navbar.js"></script>
        <script type="text/javascript" src="Blank_files/Blank.js"></script>
      </head>
      <body style="background: rgb(255, 255, 255) url(Blank_files/SNV33631.jpg) repeat scroll top left; margin: 0pt; " onload="onPageLoad();" onunload="onPageUnload();">
        <div style="text-align: center; ">
          <div style="margin-bottom: 0px; margin-left: auto; margin-right: auto; margin-top: 0px; overflow: hidden; position: relative; word-wrap: break-word;  background: transparent; text-align: left; width: 700px; " id="body_content">
            <div style="margin-left: 0px; position: relative; width: 700px; z-index: 0; " id="nav_layer">
              <div style="height: 0px; line-height: 0px; " class="bumper"> </div>
              <div class="com-apple-iweb-widget-navbar flowDefining" id="widget0" style="margin-left: 35px; margin-top: 0px; opacity: 1.00; position: relative; width: 630px; z-index: 1; ">
                <div id="widget0-navbar" class="navbar">
                  <div id="widget0-bg" class="navbar-bg">
                    <ul id="widget0-navbar-list" class="navbar-list">
    <li></li>
    </ul>
    </div>
    </div>
              </div>
              <script type="text/javascript"><!--//--><![CDATA[//><!--
    new NavBar('widget0', 'Scripts/Widgets/Navbar', 'Scripts/Widgets/SharedResources', '.', {"path-to-root": "", "navbar-css": ".navbar {\n\tfont-family: Arial, sans-serif;\n\tfont-size: 1em;\n\tcolor: #666;\n\tmargin: 9px 0px 6px 0px;\n\tline-height: 30px;\n}\n\n.navbar-bg {\n\ttext-align: center;\n}\n\n.navbar-bg ul {\n\tlist-style: none;\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n\nli {\n\tlist-style-type: none;\n\tdisplay: inline;\n\tpadding: 0px 10px 0px 10px;\n}\n\n\nli a {\n\ttext-decoration: none;\n\tcolor: #666;\n}\n\nli a:visited {\n\ttext-decoration: none;\n\tcolor: #666;\n}\n\nli a:hover\r{\r\n \tcolor: #463C3C;\n\ttext-decoration: none;\r}\n\n\nli.current-page a\r{\r\t color: #463C3C;\n\ttext-decoration: none;\n\tfont-weight: bold;\r\r}\n", "current-page-GUID": "68D4EEAC-3DE6-4685-B7F9-9DBD522AB485", "isCollectionPage": "NO"});
    //--><!]]></script>
              <div style="clear: both; height: 0px; line-height: 0px; " class="spacer"> </div>
            </div>
            <div style="float: left; height: 0px; line-height: 0px; margin-left: 0px; position: relative; width: 700px; z-index: 10; " id="header_layer">
              <div style="height: 0px; line-height: 0px; " class="bumper"> </div>
              <div style="height: 1px; width: 630px;  height: 1px; left: 35px; position: absolute; top: 3px; width: 630px; z-index: 1; " class="tinyText">
                <div style="position: relative; width: 630px; ">
                  <img src="Blank_files/shapeimage_1.jpg" alt="" style="height: 1px; left: 0px; position: absolute; top: 0px; width: 630px; " />
                </div>
              </div>
            </div>
            <div style="margin-left: 0px; position: relative; width: 700px; z-index: 5; " id="body_layer">
              <div style="height: 0px; line-height: 0px; " class="bumper"> </div>
              <div style="height: 480px; line-height: 480px; " class="spacer"> </div>
            </div>
            <div style="height: 150px; margin-left: 0px; position: relative; width: 700px; z-index: 15; " id="footer_layer">
              <div style="height: 0px; line-height: 0px; " class="bumper"> </div>
            </div>
          </div>
        </div>
      </body>
    </html>
    My question are as follows
    1: Where do I paste the code you gave me.
    2: do I need to reformat or add modifiers like, "<" or ">" to it because it is Javascript not HTML code.
    3: do I paste it in the "Index" file or the "Blank" file.
    Thanks

Maybe you are looking for

  • ThinkPad USB 3.0 Dock - Firmware update doesn't work

    Hello, My company has bought over 200 ThinkPad USB 3.0 Docks to use with HP Folios to connect dual and single monitors.  Some users have experience multiple issues with this product and I am trying to determine how to resolve these issues.  I first w

  • Regarding Rules, Functions and Risks

    Hello, 1. Does SAP provide a standard ruleset for SoD? Does it come with the AC 5.3 .SCA? 2. What is the relation between Rules, Risks, Functions and Business Process? Thanks.

  • No charge, no lights, no luck with suggested solutions

    My playbook battery drained (yellow blinking lights) and I tried all of the suggestions listed here, multiple times with no success.  Now my playbook will not power on and show any lights.  Is my playbook dead.  Do I have any other options? It is abo

  • Transaction Locking

    hi, Quick question. I have a session bean which I am using to access my database. I execute the SQL using prepared statements. In one case for an insert I perform the following: 1. Insert a records 2. Read a sequence to get the id of the previous ins

  • Good password manager for mac

    Can someone recoomend a safe and goos password manager for OSX Mavericks? Thanks! Jo