Pages does not update

The current (31 Dec 2013) version of Pages is 5.01, my MacBook has version 4.3.  The App Store does not show any update and says for Pages "Installed".
How can I update to the current version?

Problem solved: New version is in the Application folder, but Dock referred to old version.

Similar Messages

  • Blog Summary Page Does Not Update Picture

    For some reason, when I create a new blog entry by duplicating the last one and adding new content, the Blog Summary page will not update the picture. I sometimes either have to create a new blank blog entry, or drag a different picture into the placeholder, followed by my original.
    Is this happening to anyone else? I think I am going to finish out my year-long blog project with iWeb/MobileMe, then drop both! This is getting to frustrating.

    LawsonStone wrote:
    Is this happening to anyone else?
    Perhaps to this person:
    _blog summary didn't show the pictures_.
    LawsonStone wrote:
    I think I am going to finish out my year-long blog project with iWeb/MobileMe, then drop both! This is getting to frustrating.
    A wise move — problems with iWeb's blog are a recurring theme on these forums: Lost all blog entries or all comments or unable to publish, etc. If you switch to a dedicated blogging platform you're likely to have a better experience. For a success story using a non-iWeb blog hosted on WordPress, see this old thread:
    _To blog or not to blog_

  • Page does not update even if I hold shift while I click update or press F5

    In any other web browser the shift + F5 reload all contents of a updated page. Only in Firefox this does not work.
    I love Firefox, the best browser for me. But I can't continue to use it with this problem.
    I am a software developer. I need control over tools and it's make me crazy.
    All my friends told me the same problem about Firefox and have migrated to others browsers where this basic problem does not work.
    If you want to maintain Firefox at top, make it always work at least with basic features like that!
    Sorry my English.

    Vivek,
    I have tested Ctrl + F5, Ctrl + Shift + F5, Ctrl + Shift + R.
    Nothing work.
    Thank you very much for your help, but I have no time to lose. Since now I will adopt another browser.
    Thanks.

  • Color for published page does not update

    I built a web site in 2009.
    I have just made changes to it in 2011.
    I added 3 new pages, updated a few others.
    I publish the site changes. Or I publish the entire site. Do each to MobileMe.
    The updated pages colors turn from red to blue.
    Then I want to keep a folder of the site, so I choose publish to a folder.
    At this point, the updated pages turn red again.
    I publish the site changes. Or I publish the entire site. Do each to a folder.
    The updated pages colors turn from red to blue.
    When I choose publish to MobileMe again,
    without making any changes,
    the same pages turn to red again as if they were changed.
    And the same thing if I choose publish to a folder.
    Why do they change? How can I fix this?

    Yes I understand that.
    But after it has been published once for each way and then I don't make any changes, they should not turn red and need to be published again. They should stay blue if I don't make any changes. Even if I switch the publishing mode.
    I publish just the changes, then I publish the whole site. I send both to MobileMe. Then I switch modes. I publish changes and then the whole site to a folder. Everything is blue. Then if I switch back to publish to MobileMe, the few pages turn red again, after they had been completely blue after publishing them the first time. I don't think that should be happening. It acts like something is stuck.

  • Home page does not update correctly

    Can anyone help me? I have searched this forum and tried suggestions from the support site, but nothing has helped. Here is my problem:
    I am using iWeb '08 and posting to MobileMe. I add entries and/or make changes to existing pages and then publish them. When I check my site, my home page is an old one. I can navigate to my updated pages and then when I return to my home page it is correct.
    Any ideas on how to fix this for my computer and anyone else looking at my site?
    Thanks.

    Empty the cache in your browser. The old pages are on your drive, and you need to have an empty cache folder so that your browser will download new copies of your pages.
    Which browser are you using?

  • Paged dataset does not update it's child dataset

    My paged dataset works great, except on refreshing it's child
    dataset, when sorting or navigating from page to page.
    Clicking on the record in the paged dataset does return the
    correct child dataset record. Clicking on any of the column headers
    to sort the paged dataset or clicking on any of the page functions,
    i.e. Next Page, Previous page, does not update the child dataset
    record.
    The first record of the paged dataset is set to 'selected',
    after sort or page navigation function.
    What am I missing?
    Here is the code that updates the child dataset record:
    onClick="pvPOrders.setCurrentRow('{ds_RowID}');"
    Here is the sort:
    onclick="dsPOrders.sort('PONUM','toggle');"
    Here is the page navigation:
    onclick="pvPOrders.nextPage();"
    There are no observers. The code can be viewed here:
    http://codeshare.ulatu.com/mare3184

    Hi Doug,
    You shouldn't have to do the manual setting of the
    currentRow. The fact that your code snippet here:
    http://codeshare.ulatu.com/mare3184
    Has your PagedView data set pvPOrders depending on dsPOrders
    means that when you set the current row on pvPOrders it just
    forwards the set request on to dsPOrders.
    I'm a bit confused by the other snippet you posted here:
    http://codeshare.ulatu.com/marc0722
    because I don't see any mention of a PagedView in that
    snippet. In any case, I mocked up something that should be similar
    to your situation, and it seems to work just fine:
    <!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"
    xmlns:spry="
    http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    <script src="includes/xpath.js"
    type="text/javascript"></script>
    <script src="includes/SpryData.js"
    type="text/javascript"></script>
    <script src="includes/SpryPagedView.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var dsStates = new
    Spry.Data.XMLDataSet("data/states/states.xml", "/states/state");
    var dsCities = new
    Spry.Data.XMLDataSet("data/states/{dsStates::url}",
    "/state/cities/city");
    var pvStates = new Spry.Data.PagedView(dsStates, { pageSize:
    5 });
    //-->
    </script>
    <style type="text/css">
    <!--
    .hover {
    background-color: #FFCCFF;
    .select {
    background-color: #6699FF;
    -->
    </style>
    </head>
    <body>
    <input type="button" value="Prev"
    onclick="pvStates.previousPage()" /><input type="button"
    value="Next" onclick="pvStates.nextPage()" />
    <p>Select a State:</p>
    <div spry:region="pvStates dsStates">
    <div>{pvStates::ds_PageNumber} of
    {pvStates::ds_PageCount}</div>
    <ul spry:repeatchildren="pvStates" spry:choose="">
    <li spry:when="{pvStates::ds_RowID} ==
    {dsStates::ds_CurrentRowID}" spry:setrow="pvStates"
    spry:hover="hover" spry:select="select" spry:selected="">
    {pvStates::name}
    </li>
    <li spry:default="" spry:setrow="pvStates"
    spry:hover="hover" spry:select="select">
    {pvStates::name}
    </li>
    </ul>
    </div>
    <p>Cities for the currently selected state:</p>
    <div spry:region="dsCities"
    spry:repeatchildren="dsCities">
    {name}
    </div>
    </body>
    </html>
    --== Kin ==--

  • Since the latest update to OX I have been unable to download the contents of some emails because pages does not support the font they are created in. Is there a fix for this?

    Hi, since I installed the latest update on my Mac I have been unable to open the contents of some emails because it is saying that pages does not recognise the font. For example it is saying 'some features aren't supported, the font Calibri isn't available on OS X. It was replaced with TrebuchetMS' This means that I cannot open letters from my daughters school. Is there any way round this other than getting rid of this nightmare MAC and going back to Windows!?

    http://www.mozilla.com/en-US/firefox/3.6.13/releasenotes/
    Had the same problem; would have been nice if they had told s that we need an intel processor on our older Macs! I am up and running again.

  • Pages does not open anymore after the latest update

    I did all suggested problem solving steps, but after the last update Pages does not open anymore.
    It opens a window and immediately crashes again.
    I paid for it, and I used it for my business - and I'm so angry, that there is no support for apps in fact...

    Welcome to the Apple Community.
    Turn off iCloud for Pages on your mobile device at Settings > Pages > Use iCloud > Off.
    Open Pages on your computer and move any documents in iCloud to your desktop for safe keeping.
    Navigate to system preferences > iCloud > Manage and check that Pages documents are not taking any space in the cloud, delete them if they are.
    Enable iCloud syncing for Pages on your mobile device and launch the App.
    If Pages now opens properly, start to add back documents from your desktop one at a time (or in small groups if you have many).

  • When I update template, it does not update other pages

    I have created a template .dwt (XHTML) and have some .html pages. The problem is when I update the .dwt (XHTML) pages it does not update the other pages. I have tried everything but the other pages do not update. Could it be something to do with the folder files on the right which aren't selected properly? If so how do I update my source folder so that this will work?

    Hi,
    When you update a template, do you get dialog to update the other files? Launching those html files, do you see those related to your template?
    Please also provide more information like which version of Dreamweaver are you using and on which platform?

  • HT4623 My general settings page does not have a software update option, any ideas on what to do?

    My general settings page does not have the software update option on it does anyone know what I need to do? Was trying to update iOS

    The Settings > General > Software Update option only appears when you have iOS 5+ installed, if you have iOS 4 then you will need to follow the second part of that article and update via your computer's iTunes.
    Connect the iPad to your computer's iTunes and copy any purchases off the iPad to your computer via File > Transfer Purchases. You may also want to copy photos and any important documents off the iPad as well e.g. via the file sharing section at the bottom of the device's apps tab when connected to iTunes, via wifi, email, dropbox etc - they should be included in the backup, but it's best to have a copy of them outside of the backup just in case. You can then force a backup of the iPad by right-clicking the iPad 'Device' on the left-hand side of iTunes and selecting 'Backup'.
    Then start the update by selecting the iPad on the left-hand side of iTunes, and on the Summary tab on the right-hand side clicking the Check For Updates button
    Updating to iOS 5+ : http://support.apple.com/kb/HT4972
    If it's a first gen iPad then it should be update to iOS 5.1.1, if it's an iPad 2 (or 3) then it will update to iOS 6 (so you will lose the built-in YouTube app and the Maps app will change).

  • Since last update anything on the first three lines of a web page if it has a a button to click on to go to another page does not work. use Google Crome for fo

    Loging onto my bank I go to the barclays pege there on the top line is "log in" it used to work when I click on it but has stoped, any button on the first three lines of a web page does not work.
    I now use Google crome but would like to stay with Firefox if this coruption can be sorted.
    Rod

    Please reload the webpage while bypassing the cache using '''one''' of the following steps:
    *Hold down the ''Shift'' key and click the ''Reload'' button with the left mouse key.
    OR
    *Press ''Ctrl'' + ''F5'' or ''Ctrl'' + ''Shift'' + ''R'' (Windows and Linux)
    *Press ''Command'' + ''Shift'' + ''R'' (Mac)
    See if this helps solve the issues you had and please report back to us!

  • My New Tab Page does not work at all. I just have the empty squares with nothing in them at all?

    My New Tab Page does not work at all. I just have the empty squares with nothing in them at all?
    I know how to use about:config & have had the usual problems with newtab page tiles but this is more like a bug- using 33.0.1. Doesn't show tiles icon in top right corner just shows a gear that is used to hide the empty tiles that I can't fill with sites. First it would only show 2 rows of 4 columns even though I had it set to 5 & 6 then few days later for no reason they went empty with a serrated line around the tiles & can't drag from the bookmarks---- really bloody annoying!!!!!!! Possibly a setting in the about:config but i can't fig it out?

    Reset Firefox to its default state
    If you're having major problems which you can't resolve, start fresh with only your essential information.
    Troubleshooting Information
    This page contains technical information that might be useful when you're trying to solve a problem. If you are looking for answers to common questions about Firefox, check out our support website.
    Application Basics
    Name Firefox
    Version 33.0.1
    Update History
    User Agent Mozilla/5.0 (Windows NT 6.1; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0
    Profile Folder
    Enabled Plugins about:plugins
    Build Configuration about:buildconfig
    Memory Use about:memory
    Multiprocess Windows 0/1
    Crash Reports for the Last 3 Days
    Report ID Submitted
    All Crash Reports
    Extensions
    Name Version Enabled ID
    Adblock Plus 2.6.5 true {d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}
    Adblock Plus Pop-up Addon 0.9.2 true [email protected]
    Skype Click to Call 7.3.16540.9015 true {82AF8DCA-6DE9-405D-BD5E-43525BDAD38A}
    Trend Micro BEP Firefox Extension 8.0.0.1173 true [email protected]
    Trend Micro NSC Firefox Extension 6.8.0.1120 true {22C7F6C6-8D67-4534-92B5-529A0EC09405}
    Trend Micro Toolbar 7.0.0.1243 true {22181a4d-af90-4ca3-a569-faed9118d6bc}
    Graphics
    Adapter Description Intel(R) HD Graphics
    Adapter Drivers igdumd64 igd10umd64 igdumdx32 igd10umd32
    Adapter RAM Unknown
    Device ID 0x0046
    Direct2D Enabled true
    DirectWrite Enabled true (6.2.9200.16571)
    Driver Date 1-30-2013
    Driver Version 8.15.10.2993
    GPU #2 Active false
    GPU Accelerated Windows 1/1 Direct3D 11 (OMTC)
    Vendor ID 0x8086
    WebGL Renderer Google Inc. -- ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote true
    AzureCanvasBackend direct2d
    AzureContentBackend direct2d
    AzureFallbackCanvasBackend cairo
    AzureSkiaAccelerated 0
    Important Modified Preferences
    Name Value accessibility.blockautorefresh true
    accessibility.typeaheadfind.flashBar 0
    browser.cache.disk.capacity 358400
    browser.cache.disk.smart_size_cached_value 358400
    browser.cache.disk.smart_size.first_run false
    browser.cache.disk.smart_size.use_old_max false
    browser.cache.frecency_experiment 1
    browser.places.smartBookmarksVersion 7
    browser.sessionstore.upgradeBackup.latestBuildID 20141023194920
    browser.startup.homepage www.google.com
    browser.startup.homepage_override.buildID 20141023194920
    browser.startup.homepage_override.mstone 33.0.1
    browser.tabs.loadInBackground false
    dom.mozApps.used true
    extensions.lastAppVersion 33.0.1
    font.internaluseonly.changed true
    gfx.direct3d.last_used_feature_level_idx 1
    keyword.URL http://www.bing.com/search?FORM=UP97DF&PC=UP97&q=
    media.gmp-gmpopenh264.lastUpdate 1413750166
    media.gmp-gmpopenh264.version 1.1
    media.gmp-manager.lastCheck 1414375733
    network.cookie.prefsMigrated true
    places.database.lastMaintenance 1414404204
    places.history.expiration.transient_current_max_pages 102059
    plugin.disable_full_page_plugin_for_types application/pdf
    plugin.importedState true
    plugin.state.npmedia 0
    plugin.state.nptimegrid 1
    print.printer_Canon_MG2100_series_Printer.print_bgcolor false
    print.printer_Canon_MG2100_series_Printer.print_bgimages false
    print.printer_Canon_MG2100_series_Printer.print_colorspace
    print.printer_Canon_MG2100_series_Printer.print_command
    print.printer_Canon_MG2100_series_Printer.print_downloadfonts false
    print.printer_Canon_MG2100_series_Printer.print_duplex 3997817
    print.printer_Canon_MG2100_series_Printer.print_edge_bottom 0
    print.printer_Canon_MG2100_series_Printer.print_edge_left 0
    print.printer_Canon_MG2100_series_Printer.print_edge_right 0
    print.printer_Canon_MG2100_series_Printer.print_edge_top 0
    print.printer_Canon_MG2100_series_Printer.print_evenpages true
    print.printer_Canon_MG2100_series_Printer.print_footercenter
    print.printer_Canon_MG2100_series_Printer.print_footerleft &PT
    print.printer_Canon_MG2100_series_Printer.print_footerright &D
    print.printer_Canon_MG2100_series_Printer.print_headercenter
    print.printer_Canon_MG2100_series_Printer.print_headerleft &T
    print.printer_Canon_MG2100_series_Printer.print_headerright &U
    print.printer_Canon_MG2100_series_Printer.print_in_color true
    print.printer_Canon_MG2100_series_Printer.print_margin_bottom 0.5
    print.printer_Canon_MG2100_series_Printer.print_margin_left 0.5
    print.printer_Canon_MG2100_series_Printer.print_margin_right 0.5
    print.printer_Canon_MG2100_series_Printer.print_margin_top 0.5
    print.printer_Canon_MG2100_series_Printer.print_oddpages true
    print.printer_Canon_MG2100_series_Printer.print_orientation 0
    print.printer_Canon_MG2100_series_Printer.print_page_delay 50
    print.printer_Canon_MG2100_series_Printer.print_paper_data 1
    print.printer_Canon_MG2100_series_Printer.print_paper_height 11.00
    print.printer_Canon_MG2100_series_Printer.print_paper_name
    print.printer_Canon_MG2100_series_Printer.print_paper_size_type 0
    print.printer_Canon_MG2100_series_Printer.print_paper_size_unit 0
    print.printer_Canon_MG2100_series_Printer.print_paper_width 8.50
    print.printer_Canon_MG2100_series_Printer.print_plex_name
    print.printer_Canon_MG2100_series_Printer.print_resolution 7602290
    print.printer_Canon_MG2100_series_Printer.print_resolution_name
    print.printer_Canon_MG2100_series_Printer.print_reversed false
    print.printer_Canon_MG2100_series_Printer.print_scaling 1.00
    print.printer_Canon_MG2100_series_Printer.print_shrink_to_fit true
    print.printer_Canon_MG2100_series_Printer.print_to_file false
    print.printer_Canon_MG2100_series_Printer.print_unwriteable_margin_bottom 0
    print.printer_Canon_MG2100_series_Printer.print_unwriteable_margin_left 0
    print.printer_Canon_MG2100_series_Printer.print_unwriteable_margin_right 0
    print.printer_Canon_MG2100_series_Printer.print_unwriteable_margin_top 0
    privacy.sanitize.migrateFx3Prefs true
    privacy.sanitize.timeSpan 2
    storage.vacuum.last.index 1
    storage.vacuum.last.places.sqlite 1412311800
    Important Locked Preferences
    Name Value
    JavaScript
    Incremental GC true
    Accessibility
    Activated false
    Prevent Accessibility 0
    Library Versions
    Expected minimum version Version in use
    NSPR 4.10.7 4.10.7
    NSS 3.17.1 Basic ECC 3.17.1 Basic ECC
    NSSSMIME 3.17.1 Basic ECC 3.17.1 Basic ECC
    NSSSSL 3.17.1 Basic ECC 3.17.1 Basic ECC
    NSSUTIL 3.17.1 3.17.1
    Experimental Features
    Name ID Description Active End Date Homepage

  • The edit JSP page does not appear...

    Hi!
    I make a simple JSF application, I would like to show a DB table in a h:dataTable component and edit a given row after click, but the edit JSP page does not appear. I click the on link in the table, but the list is loaded again and not the edit page...:(
    (no exception in application server console)
    Please help me!
    my code:
    **************************************** listmydata.jsp***************************
                   <h:dataTable
                             value="#{myBean.myDataList}"
                             var="myDataItem"
                             binding="#{myBean.myDataTable}"
                   >
                        <h:column>
                             <f:facet name="header">
                                  <h:outputText value="Ajdi"/>
                             </f:facet>
                             <h:commandLink action="#{myBean.editMyData}">
                                  <h:outputText value="#{myDataItem.id}"/>
                             </h:commandLink>
                        </h:column>
    ********************************* MyBean.java *******************************
    package bean;
    import java.sql.Connection;
    import java.sql.SQLException;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.component.html.HtmlDataTable;
    import javax.faces.context.FacesContext;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.DataSource;
    import wrapper.MyData;
    public class MyBean {
         private List myDataList;
         private HtmlDataTable myDataTable;
         private MyData myDataItem;
         protected Connection Conn;
         // *********************** actions ***********************
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
         public String saveMyData() {
              try {
                   updateDataInDB();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              return "listmydata";
         // *********************** setter ***********************
         public void setMyDataList(List myDataList) {
              this.myDataList = myDataList;
         public void setMyDataTable(HtmlDataTable myDataTable) {
              this.myDataTable = myDataTable;
         public void setMyDataItem(MyData myDataItem) {
              this.myDataItem = myDataItem;
         // *********************** getter ***********************
         public List getMyDataList() {
              if (myDataList == null || FacesContext.getCurrentInstance().getRenderResponse()) {
                   loadMyDataList();
              return myDataList;
         public HtmlDataTable getMyDataTable() {
              return myDataTable;
         public MyData getMyDataItem() {
              return myDataItem;
         // *********************** others ***********************
         public void loadMyDataList() {
              try {
                   getDataFromDB();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
         void getDataFromDB() throws NamingException, SQLException {
              myDataList = new ArrayList();
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement("SELECT id, name, value FROM BEA_JSF_SAMPLE");
              PreStat.execute();
              java.sql.ResultSet Rs = PreStat.getResultSet();
              while(Rs.next()) {
                   MyData OneRecord = new MyData();
                   OneRecord.setId(Rs.getLong(1));
                   OneRecord.setName(Rs.getString(2));
                   OneRecord.setValue(Rs.getString(3));
                   myDataList.add(OneRecord);
         void updateDataInDB() throws SQLException, NamingException {
              String sql = new String("UPDATE BEA_JSF_SAMPLE SET name=?,value=? WHERE id=?");
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement(sql);
              PreStat.setString(1,myDataItem.getName());
              PreStat.setString(2,myDataItem.getValue());
              PreStat.setLong(3,myDataItem.getId().longValue());
              PreStat.execute();
              ownGetConnection().commit();
         Connection ownGetConnection() throws SQLException, NamingException {
              if (Conn == null) {
                   InitialContext IniCtx = new InitialContext();
                   DataSource Ds = (DataSource)IniCtx.lookup("JDBCConnectToLocalhost_CRS");
                   Conn = Ds.getConnection();
              return Conn;
    ******************************* editmydata.jsp *****************************
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <html>
    <body>
    <f:view>
    <h:form>
         <h:panelGrid columns="2">
              <h:outputText value="Name"/>
              <h:inputText id="name" value="#{myBean.myDataItem.name}"/>
              <h:outputText value="Value"/>
              <h:inputText id="value" value="#{myBean.myDataItem.value}"/>
         </h:panelGrid>
         <h:commandButton action="#{myBean.saveMyData}" value="Save"/>
    </h:form>
    </f:view>
    </body>
    </html>

    I have put his lines in the faces-config.xml and now it works:
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>editmydata</from-outcome>
                   <to-view-id>editmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>listmydata</from-outcome>
                   <to-view-id>listmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
    I don't understand, that I define the next JSP page in the bean java file, which must be shown, but I must define this in the faces-config.xml as well.
    for example:
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
    is it right or Do I make a mistake somewhere?

  • I would select a link from the drop down on the address bar but the page would not open. I would select it again but the page does not open. I could only reach website by selecting google on most visited list.

    After updating AVG anti-virus, I encountered a problem on Firefox. I would select a link from the drop down on the address bar but the page would not open after clicking on it. I would select it again, even double click, but the page does not open. I could only reach website by selecting google or yahoo from my dropdown on the most visited list and then click the website that I want to visit. I would like to do this in one step by just selecting a link from my history on the address bar and select a link instead of going to google and then writing the page I want to visit. What could be the problem? When going to the address bar to select a link to open, why does the site not open? Any help would be appreciated.

    Hi,
    Please check if this happens in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode.]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]

  • I applied a template to a page with SWFs and now that page does not play the SWFs. Why?

    I applied a template to a page with SWFs and now that page does not play the SWFs (just a blank area where the SWF should be). When I detach the template it will play the flash file. This site will eventually be updated via Adobe Contribute. And I just discovered that when applying a template to a page that uses HTML datasets (Master/Detail),it no longer reads the Master/detail regions and displays a blank. Any thoughts?
    [Moved to Dreamweaver forum by moderator]

    Firstly, you shouldn't really 'apply' a template to a page, you should create a child page by going to FILE>NEW>Page from Template.  Too many things can happen when applying a template the way you are doing it. eg:; editable and non-editable regions not matching up and being asked where to place these regions and in all likelihood, you end up with 2 or more of the same region.
    When a swf file is inserted into a page, a corresponding Scripts folder is written automatically is stored in the root of the site - it is also linked to in the head of the document. What I believe is happening is that when you apply a template to the page, the Template has no idea that there is a swf file on the page and is not aware of the correct link to the Scripts folder.  If you do a test and add the swf file to the template page itself, I bet that the links to the swf and the scripts folder are correct - because DW knows the correct path to the script file.   Hence the reason the page probably works when you detach it from a template.

Maybe you are looking for