Random Quotes

I want to have a random quote (chosen from a separate file)
displayed on our site that changes on a daily basis. I have about
100+ quotes that are in a already in a HTML file using a table. Do
they need to be in a different format eg SQL file.
How do I get it to place one quote in a certain place, and
choose a new quote the next day all automatically? I have seen SSI
in use, but I'm not sure if this can do what I want.
If anybody has a way to do this with very little input after
it's set up I would really appreciate it.
Thanks
Pakman

Put the script on your page, it will produce a random quote
each time the
page is loaded.
Place linked text between <a href=http://www.google.com
and </a> like so:
Quotation[0] = "<a href=http://www.google.com>Truth is
beauty;</a>
beauty,truth";
Quotation[1] = "The time has come, <a
href=http://www.yahoo.com>the Walrus
said</a> to speak of many things";
If this isn't robust enough, there a many more scripts
available at dynamic
drive. This one uses Ajax to rotate include files.
http://www.dynamicdrive.com/dynamicindex17/ajaxrotate.htm
--Nancy O.
Alt-Web Design & Publishing
www.alt-web.com
A child of five would understand this. Send someone to fetch
a child of
five.
-- Groucho Marx (1890 - 1977)
"Pakman36" <[email protected]> wrote in
message
news:g230ib$irm$[email protected]..
> Hi Nancy
>
> This looks great, but I need the quote to automatically
display on the
page at
> the start of each day rather than having the end user
'Clicking' the
button!
> and the quotes have a book title with the appropriate
link contained in
them.
> Can the quotes have a link in the script?
>

Similar Messages

  • Random quote generator

    Does anyone know of a random quotes generator plug-in/applescript or another way to generate random quotes on one's calendar?

    Thanks Don. That helps just a bit.
    However, while I appreciate the sample page of randomizing,
    and although I reviewed the code, I would still like to be able to
    simply use the WYSIWYG setup through DreamWeaver.
    Again, Its more the just randomly displaying the list. Its
    making sure I can apply separate CSS to the quote and the name and
    making sure the name stays with the quote.
    I basically just need to know that I wrote the XML sheet
    correctly, what XML items to choose in the data set window along
    with what functionality to set and whether or not I have to write
    extra code in addition.
    I do appreciate your response.

  • Script for "random quote"

    Can anyone please point me at a javascript that will display
    a random quote
    when the page is loaded?

    You miss the point bonehead. What I meant was, surely amongst
    this vast
    experienced community, some of these coders have experience
    with a script as
    requested; I was asking for pointers to those specifically,
    as it would have
    been about as much typing to say "go to www.whatever.com to
    look at this one
    I've used" as to type "do a google search for it". Don't need
    anyone to do
    any work for me, just point me at scripts you've had actual
    experience at.
    Easy 'nuff to understand now?
    "Walt F. Schaefer" <[email protected]> wrote in
    message
    news:f4nsbq$oe8$[email protected]..
    > Yeah, I feel your pain Rachel. I too hate it when others
    are too lazy to
    do
    > my work for me.
    >
    > --
    >
    > Walt
    >
    >
    > "Rachael Caldwell" <[email protected]> wrote in
    message
    > news:f4mv46$mfq$[email protected]..
    > > Yeah, I'm googling away, but was rather hoping that
    those with
    experience
    > > with specific scripts would share, rather than just
    get a lot of lazily
    > > posted "do a google search" . . . thanks for this
    pointer! : }
    > >
    > > "geschenk" <[email protected]>
    wrote in message
    > > news:f4ltjq$bn0$[email protected]..
    > >> one example can be found
    http://www.computerhope.com/j15.htm,
    and
    you?ll
    > > find plenty of related stuff when googling for
    "javascript random quote"
    > >
    > >
    >
    >

  • Tutorial announcement .:: Building Random Quote Script ::.

    Hello everyone...
    today in this tutorial we will make an easy and fast :: random quote application :: this application will help you to retrieve random data from your database, text, images, links, with un sorted order.
    if you have very large number of records in your database and hardly find the way to sort them, the best way is to randomly view it.
    this application contains:
    1- Insert new record to the database.
    2- view random text each time you refresh your page.
    :: Go to tutorial ::
    :: Online Demo ::

    Hi Purple Edge,
    it would be great if you could figure out a way to determine file size before attempting an upload.
    PHP can only access file data (e.g. size) after it´s been uploaded -- one would have to use Flash for this, as this technology is indeed capable to check such data immediately.
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • I'm looking for a random quote script for my website?

    So I've got a very large numbered list of quotes. I want to set up a  little text thing on my website's homepage so it displays a randomly  selected quote from the list which changes every day. Can anyone write  me a script to do this? I had one, but it stopped working and no one's  been able to help me fix it (I've tried to get help with that more times  than I care to remember) and I decided that it would be better to just  get a new script.

    I have a random script, but it also seems to not be working the way it was originally written, it now outputs a number 1  along with the intended output.
    Take a peek here, there is a rotator script I am about to use on a site I am workng on.
    http://www.marcofolio.net/
    Gary

  • Using AS3 to create a random quotes in text field

    Hi,
    I though this would work but unfortunately I am not pulling the txt files into the field.
    It is definitley giving me random feedback.
    There are ten quotes in a folder: Suzuki_quotes/quote1.txt etc
    Should I not use a Dynamic Text field and create a text field using the var.
    Thanks
    stop();
    var randomNumber:Number = Math.ceil(Math.random()*10);
    var reqB:URLRequest=new URLRequest("Suzuki_quotes/quote1.txt");
    var loaderB:URLLoader = new URLLoader();
    function textLoadedB(event:Event):void {
        quoteLdr.text ="Suzuki_quotes/quote"+randomNumber+".txt";
    loaderB.addEventListener(Event.COMPLETE, textLoadedB);
    loaderB.load(reqB);
    btn1.addEventListener(MouseEvent.CLICK, goPage2);
    btn2.addEventListener(MouseEvent.CLICK, goPage1);
    function goPage1(evt:MouseEvent):void{
        gotoAndStop("page1");
    function goPage2(evt:MouseEvent):void{
        gotoAndStop("page2");

    if  you have several txt files each with one quote, try:
    stop();
    var randomNumber:Number = Math.ceil(Math.random()*10);
    var reqB:URLRequest=new URLRequest("Suzuki_quotes/quote"+randomNumber+".txt");
    var loaderB:URLLoader = new URLLoader();
    function textLoadedB(event:Event):void {
        quoteLdr.text =event.target.data;
    loaderB.addEventListener(Event.COMPLETE, textLoadedB);
    loaderB.load(reqB);
    btn1.addEventListener(MouseEvent.CLICK, goPage2);
    btn2.addEventListener(MouseEvent.CLICK, goPage1);
    function goPage1(evt:MouseEvent):void{
        gotoAndStop("page1");
    function goPage2(evt:MouseEvent):void{
        gotoAndStop("page2");

  • Display Randon Quote of the Day to the Agent (abap)

    Hi,
    I was trying to create a function that displays a random "quote of the day" to the CIC Agent and i need some help. this is my abap code so far:
    DATA quote1 TYPE string.
    DATA quote2 TYPE string.
    DATA sentence TYPE string.
    DATA random TYPE i.
    quote1 = 'my quote of the day 1'.
    quote2 = 'my quote of the day 2'.
    CALL FUNCTION 'QF05_RANDOM_INTEGER'
          EXPORTING
               ran_int_max = 2
               ran_int_min = 1
          IMPORTING
               ran_int = random.
    concatenate 'quote' random into sentence.
    value = sentence.
    ENDFUNCTION.
    My problem is that the "value" variable outputs "quote1" (or "quote2", that the sentence variable contains), although I wanted it to output the text that corresponds to quote1 or quote2 (eg. "my quote of the day 1")
    Any help?
    Thanks

    I have exactly the same problem, I expirienced it today the first time, but I actually do not use the list view often. In the list view, I'm missing quite a lot of events, I first thought it went something wrong with exchange sync and tried around about an hour till I found out, that all events are basically on the phone and also shown in day and month view, but not in the list view.
    There seem to be a general problem with the list view, as I found this discussion:
    http://discussions.apple.com/thread.jspa?threadID=2260803
    Greetings
    Bernhard

  • Randomizing blocks of content

    a client of ours has requested that we provide mulitple
    chunks of content (image, text with links), bascially profiles of
    individuals that will randomly switch out on "refresh". Can anyone
    provide me with suggestions on the best way to do this. I have done
    it with images only..but not with entire blocks of content. Any
    suggestions would be considered...oh did I mention he requested we
    have this completed by Monday morning?
    DOOKS

    Should be simple to do. David Powers tells you exactly how to
    do this with
    a random quote section in his PHP for Dreamweaver 8 book from
    Friends of Ed.
    Assuming you are using PHP/MySQL, this would be exactly the
    ticket. An
    afternoon at Borders/Barnes & Noble with a few triple
    mocha lattes and
    Chapter 8 should allow you to meet this deadline.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "J_me" <[email protected]> wrote in message
    news:g9rjvd$dee$[email protected]..
    >a client of ours has requested that we provide mulitple
    chunks of content
    > (image, text with links), bascially profiles of
    individuals that will
    > randomly
    > switch out on "refresh". Can anyone provide me with
    suggestions on the
    > best
    > way to do this. I have done it with images only..but not
    with entire
    > blocks of
    > content. Any suggestions would be considered...oh did I
    mention he
    > requested
    > we have this completed by Monday morning?
    >
    > DOOKS
    >

  • IPhone sending texts to two different threads

    I have an iPhone 4S running iOS 6.1.3 and I'm on the Sprint network.
    To preface, way earlier this summer I sent out a message to several people, all with iPhones with iMessage enabled. Turned out that the contact info I had for one of the contacts on my phone, let's call him Friend 1, was wrong (I somehow had an 8-digit phone number for him, I guess I had just entered the information incorrectly and never texted him before). The texts were obviously going to everyone except Friend 1. So I corrected his contact info with his correct number, made a new group thread, and all was better.
    Then two days ago, another one of my friends (Friend 2) in the same group thread turned off his iMessage because he's got a different bug on his phone that makes it freeze up every time he sends an iMessage. Anyway, as I expected, every message I send in the group thread is now green, being sent as an SMS. But everyone else in the thread is still able to send iMessages to it, which Friend 2 receives, despite having turned off iMessage on his phone.
    However, whenever I try to send a message, I'm almost always only able to send an SMS. One of my other friends (Friend 3) informs me that all my SMSes sent since Friend 2 turned off his iMessage have been going to a different thread, the one from months ago with Friend 1's number entered incorrectly. I can see every message that everyone else sends in the thread, including those of Friend 1, whose contact info is still correct. Occasionally when I open the thread I'll be able to send an iMessage, which everyone receives, but most of the time I'm only able to send SMSes, which go to the broken thread that everyone except Friend 1 can see. On my phone, though, it looks like I'm sending and receiving every message in the same thread with all the info correct, and every message that any of my friends send in either thread comes into the one thread on my phone with Friend 1's number entered correctly.
    Whenever I text Friend 1 individually or in any thread that doesn't have Friend 2 (who turned off iMessage) in it, everything works perfectly. I have no problem in any other iMessage conversation. But the thread with all of us in it together presents these problems where any time I'm not able to send iMessages, the SMSes appear to me to be sent in the same thread, but for everyone else (except Friend 1 who can't see them at all) they go into the old broken thread.
    To clarify, whether or not I'm able to send iMessages seems to turn on and off arbitrarily between texts, that is to say, it doesn't seem to be corrolated to whether or not anyone in the thread is or isn't connected to the network.  I'll send a few SMSes in the thread, which go to the broken one, and then my phone will be able to send one iMessage, and I can wait as long as I want to send it- the capability doesn't go away with time, but as soon as I send the one iMessage I can't send any more. That iMessage goes to the good thread, and then it'll turn back to SMS for either a random period of time or a random quota of SMSes sent, I can't tell.
    Basically I can't understand how this could be happening. I don't get how I could be sending these texts to a number that I don't have in my phone. I don't get why iMessage seems to turn on and off arbitrarily for me alone in this one group thread. I also don't understand how someone (Friend 2) with iMessage turned off can be receiving iMessages in a group thread but can't send them himself or receive them when someone texts him alone, but that's not a problem, just a related curiosity.
    I know this is a huge explanation, but I just wanted to be as thorough as possible. If any clarification is needed just let me know. Thank you guys for any help you can provide.

    No problem. However, like I said earlier, music is a sync, no problem since that content is on a computer. Contacts and calendar is a sync, no problem since that content is on a computer as well. Just make sure there is a file backup of those components. The next thing is to save pictures and other data. I suggest you have a sync of both computers to the phone, and then do a backup on your personal computer. I would also import the pictures to the personal computer as a bakup, however you can keep them in the Camera Roll if you want after you have imported them. This ensures you have data backed up. Restore the new phone to the backup on your personal computer. Make sure it is set to only sync music.You should get your data, and then it can resync the music. Make sure the work computer is only setup to sync manually and to sync just contact and calendar data and nothing else. Connect the phone to that computer and sync. You should get your contacts and calendar. Now you might get a warning box saying the iPhone is synced to another library, but don't worry since the work computer is not setup to sync music. Now remember, this is my 2cents worth based on what information you provided. You cand decide if you want to do this or not and you make your choices on your own.

  • How to highlight or make a Smart Playlist of missing music files?

    I recently converted my library from Mac to PC and out of the 45000 songs there are around 1500 missing. It'll take forever to search my library for the ! next to each missing sing. Anyway to simply get all the missing songs in one list?

    You really don't get it, do you.
    I really do: You can't bring yourself to say "OK, my solution is not practical or helpful". You're dancing all around it.
    I wasn't meaning to "lecture" you but I was - and am - really annoyed. I'm sorry, but I honestly felt that your solution was more about you feeling a need to be technically correct when clearly it was an unhelpful answer and I'm not going to go along with that. And it looks like you're not going to admit your solution was unhelpful.
    I might seem to be over-reacting but the thing is it's not just this thread.
    I have noticed that there is a lot of this going around on these forums and it's annoying because it derails perfectly sensible questions and wastes a lot of time. It's happened quite a few times to me and the common thread seems to be those who engage in this behaviour have a whole lot of "discussion board points".
    What you should have asked is, "Is there an available field in the tags of a movie file that I can use in a Smart Playlist to select for only HD movies". And I would have given you a one-word answer. NO
    Yes, I should have. Technically. Semantically. I suppose. Sure.
    But anyone can get that from "How can I make a smart playlist of only HD movies?" without assuming I'd want to first manually select all the movies. That's the purposes of the joke quote which seemed to be lost on you. I wasn't just randomly quoting you know, I was making a point.
    If only you'd given me a one word answer. Now that would have been helpful.

  • HTML Snippet Resizing Box Problem

    Hey guys, hope someone can shed some light on this incredibly irritating issue that i've been struggling with for ages.
    I've got a javascript for generating a random quote out of a preset list (10) into a HTML snippet box on my site.
    The problem that I can't cure is that each quote, depending on its length makes the html box resize around it, so it sometimes covers some of the existing text.
    What I want is for the generated text to fit itself into whatever box size I choose.
    Any ideas??
    <CENTER>
    <SCRIPT LANGUAGE="JavaScript"> <!-- Distributed by <a class="jive-link-external-small" href="http://www.hypergurl.com">http://www.hypergurl.com</a>
    var howMany = 10 var quote = new Array(howMany+1) quote[0]="A good woman
    to a man is like money in the bank." quote[1]="God loved the birds and
    invented trees. Man loved the birds and invented cages." quote[2]="The
    words that enlighten the soul are more precious than jewels." quote[3]="Prepare
    your mind to receive the best that life has to offer." quote[4]="In
    order to be walked on, you have to be lying down." quote[5]="Education
    is the power to think clearly, the power to act well in the world's work, and
    the power to appreciate life." quote[6]="No one can make you feel inferior
    without your consent." quote[7]="A person who aims at nothing is sure
    to hit it." quote[8]="Shoot for the moon. Even if you miss, you'll land
    among the stars." quote[9]="No bird soars too high if he soars with
    his own wings." quote[10]="You can't build a reputation on what you're
    going to do." function rndnumber(){
    var randscript = -1 while (randscript < 0 || randscript > howMany || isNaN(randscript)){
    randscript = parseInt(Math.random()*(howMany+1)) } return randscript } quo = rndnumber()
    quox = quote[quo] document.write(quox) // End Script--> </SCRIPT> </CENTER>

    Hiya Old Toad, thanks for the reply.
    Sorry it took me so long to get back to you, things just keep coming up!
    Ok so ,if I try to resize the box, it goes widthways rather than lengthways and therefore covers all the text next to it.
    If I add the
    tags, it just breaks it completely and nothing shows up.
    Also looks like I copied the wrong script when I posted here originally, I had it in a notepad file but I must have opened the wrong one, sorry!
    Attached is the actual script from the site,
    Thanks again for all your help!
    <center>
    <resizeable=false>
    <script language="JavaScript">
    var howMany = 6
    var quote = new Array(howMany+1)
    quote[0]="'The teacher motivates children in a fun way'"
    quote[1]="'Very friendly, fun and hard working class - with an excellent teacher'"
    quote[2]="'It's a good way to keep all ages off the streets and meeting new people in a friendly environment'"
    quote[3]="'The class is good, giving kids a fun and enjoyable time. The teacher is funny and, also has a good way of handling the class'"
    quote[4]="'The class teaches good discipline whilst still having fun'"
    quote[5]="'Discipline, respect, enjoyment and fun. All key factors put across by a very good teacher'"
    quote[6]="'The class teacher is good and disciplined. It has taught my child to come out of her shell'"
    quote[7]="'The class makes learning fun whilst still teaching the students the important lessons needed to progress'"
    function rndnumber(){
    var randscript = -1
    while (randscript < 0 || randscript > howMany || isNaN(randscript)){
    randscript = parseInt(Math.random()*(howMany+1))
    return randscript
    quo = rndnumber()
    quox = quote[quo]
    document.write(quox)
    // End -->
    </script>
    Gah that last "quo" is meant to have [ 's around it but they dissapear for some reason on here.
    Message was edited by: Billbrown

  • Is CF Developer Edition slower than the actual production version?

    I'm most of the way finished with my website conversion from PHP to CF.  I have a working blog, a photo gallery, and other sundry pages.  It's been a really fun project, and I'm looking forward to picking up some space from Hostek and uploading my franken... errr, my new website.
    The one thing I've noticed though is that when run locally, pages take AGES to load.  And not just the pages with queries.  Even the static pages are slow.  At first I wondered if my SQL was to blame, but when I <cfdump> the query that builds my photo gallery index page, I get an execution time of zero (granted, I only have a 6 albums that show up, and 3 of them are empty).
    My development machine is a Core2 Duo, 3GHz, with 8GB of ram, running Ubuntu 12.10.  I have CF10 installed with MySQL 5.x and Apache2.
    It just seems like locally things should be speedy, so I'm starting to suspect the dev edition of CF.  Has anyone else had a similar experience?

    Figured it out!!!
    I have a main content section on my website, then a sidebar on the right with sundry items, like a random quote, a featured pic, a list of previous blog posts, AND two RSS feeds that bring news for my two favorite things (cycling and Formula 1) into the sidebar.
    In the PHP version, I had a script that I downloaded that was very complicated, but in the conversion I'm using <cffeed>.
    Well, in playing around, I accidentally made a typo in the sidebar code, and the page rendered instantly.  I started commenting out sections of the sidebar, and the culprit was the feed section (which makes sense, since the other items in the sidebar are cached queries).
    Now that I know the culprit, maybe I can post the code and some of you can tell me what I've done wrong, or could do better.
    <h4>Cycling</h4>
    <ul>
    <cfset rssUrl = "http://velonews.competitor.com/feed">
    <cffeed action="read" source="#rssUrl#" query="cycling" properties="info">
    <cfoutput query="cycling" maxrows="6"><li class="rssdesc"><a href="#rsslink#">#title#</a></li></cfoutput>
    </ul>
    <h4>Formula 1</h4>
    <ul>
    <cfset rssUrl2 = "http://www.formula1.com/rss/news/latest.rss">
    <cffeed action="read" source="#rssUrl2#" query="formula1" properties="info">
    <cfoutput query="formula1" maxrows="6"><li class="rssdesc"><a href="#rsslink#">#title#</a></li></cfoutput>
    </ul>
    Perhaps there's a way to cache these results so they only update once per day and not every single time the page is loaded.  If not, I'll just leave them out altogether.

  • Timed array issue

    Hi all,
    I am trying to incorporate a timed array into my website. I want it to pull the timedCount function every 10 seconds. Any help would be greatly appreciated! Here's what i have so far....
    Thanks!
    Kal
    function timedCount()
    var whichQuote=get_random();
    var c=0
    var zen = new Array(3);
    zen[0] = "If you do not raise your eyes you will think you are the highest point. . .
    Antonio Porchia";
    zen[1] = ". . . they're the words you would think I would say if there was a me for you. . .
    They Might Be Giants"
    zen[2] = "Scar tissue is stronger than regular tissue. Realize the strength, move on. . .
    Henry Rollins"
    document.write('<div  style="z-index: 5; position: absolute; left: 400px; top: 20px;">' +
    alert(zen[whichQuote]) + '</div>').value=c;
    c=c+1
    t=setTimeout("timedCount()",5000)
    }

    Kal_025 wrote:
    i mean, I would like for one of the quotes to come up at random and change every 10 seconds. Well then you're building three things:
    1) a method to grab a random quote from the array
    2) a method to display that quote
    3) a way to run the above every 10 seconds.
    As I recall Javascript has a "setInterval" method that can be used to cause timed events, but I don't know the details. Again, you want a Javascript forum.
    Javascript isn't Java. You're more likely to get answers on a Javascript forum somewhere.Sorry about that, I guess i didn't really think about the difference.Actually there's a huge difference...they're syntactically similar in some ways but not in others, and arguably they're not semantically the same at all. They tend to run in vastly different environments too. And they don't share libraries. The main similarity apart from the partial syntax similarity would be that they're both used in web development a lot (although on completely different tiers usually) so developers of each one might travel in the same circles.
    Curses to the late Netscape for giving the language such a similar name. Clearly, it wasn't Microsoft who crushed them...it was GOD!

  • HTML 5 code insertion issues

    I have a code that worked on my last site fine, but now is not working.  My last post got me a lot of help in the adobe forum, hopefully this site will be even more helpful.  The code gets a random quote from a linked js file.  This is then displayed on the page under the title of "Wisdom Quotes".   The title is not being centered, it is confined to the top left, and the text from the linked js file will not change to the desired color and size like the title.  Here is the code, any help would be greatly appreciated:
    <!--begin quote-->
    <p style="color:red;font-size:18px;display:block;width:60px;text-align:center;">Wisdom Quotes</p>
    <script type="text/javascript" src="assets/quote.js"></script>
    <!---end quote-->

    Got the text working, now just the title centered...

  • Getting the frame label

    Is there a way to return the value of the frame labels?
    I want to create a list of all the frame labels to use as a
    navigation tool.
    Thanks.
    Rob Childress

    Ok - so is there a way to randomly select a frame label along
    a timeline using AS1 or AS2? I have 4 labels along approx 2500
    frames that I need to randomly go to on load. Just a random quote
    rotator. I'm currently using this:
    labelselect = random(_currentframe)+1100;
    _root.allquotes.gotoAndPlay(labelselect);
    Thanks ...

Maybe you are looking for

  • I want to remove Trailing zeros from a charecter value

    Hello ,           i want to remove trailing zeros for a prticular value.Following is my code : DATA: V_FLOAT TYPE F VALUE '4.8240000000000000E+03',            V_CHAR(25) ,            P10_4(10) TYPE P DECIMALS 4. CALL FUNCTION 'CEVA_CONVERT_FLOAT_TO_C

  • How to have the name of code PL/SQL

    I make a generique tools for logging in PL/SQL : http://log4plsql.sourceforge.net/ 1. how to have the name of the code PL/SQL which is run ? 2. how have a pl/sql call stack dynamically ? proc1 -> proc2 -> package1.proc3

  • Bridge CS5 Win Batch Rename sets milliseconds to 000

    Am using BridgeCS5 (Windows7) to Batch Rename (either during download from Lexar Card Reader using Bridge, or during download from Canon 7D with Cable via Bridge- or to batch rename files already in a folder within Bridge) when I use YYYYMMDD_HHMMSS_

  • Reduce pdf file size OSX 10.9

    how can I reduce the size of a pdf in Mavericks?

  • Cannot create new page nor website and worse cannot edit existing websites

    When I click on File in the menu the only options that work are Setup Google AdSense and Page Setup... All other options are grey and cannot be accessed. This means that I cannot edit my existing websites which is a major problem. Any idea? Reinstall