Links not working in Spry Accordian Menu

When clicked the links in the left side accordian menu do not work. However, the child-links work great. Example: http://www.richartbuilders.com/remodel.php
HEAD TAGS:
<script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<link href="SpryAssets/SpryMenuBarHorizontal2.css" rel="stylesheet" type="text/css" />
<link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
<link href="content.css" rel="stylesheet" type="text/css" />
HTML:
<div id="navSide">
    <div id="sideWrapper">
      <div id="Accordion1" class="Accordion" tabindex="0">
        <div class="AccordionPanel">
          <div class="AccordionPanelTab"><a href="../remodel.php">Remodel</a></div>
          <div class="AccordionPanelContent"></div>
         </div>
        <div class="AccordionPanel">
          <div class="AccordionPanelTab"><a href="../windowsdoors.php">Windows &amp; Doors</a></div>
          <div class="AccordionPanelContent"></div>
          </div>
        <div class="AccordionPanel">
          <div class="AccordionPanelTab"><a href="../weatherization.php">Weatherization</a></div>
          <div class="AccordionPanelContent"></div>
         </div>
        <div class="AccordionPanel">
          <div class="AccordionPanelTab"><a href="#">Electrical...</a></div>
          <div class="AccordionPanelContent">
            <ul>
              <li><a href="residential.php">Residential</a></li>
              <li><a href="commercial.php">Commercial</a></li>
            </ul>
          </div>
        </div>
      </div>
    </div>
</div>
<script type="text/javascript">
var Accordion1 = new Spry.Widget.Accordion("Accordion1" ,{ useFixedPanelHeights:false, defaultPanel:0});
</script>
external CSS:
@charset "UTF-8";
/* SpryAccordion.css - version 0.5 - Spry Pre-Release 1.6.1 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
/* This is the selector for the main Accordion container. For our default style,
* we draw borders on the left, right, and bottom. The top border of the Accordion
* will be rendered by the first AccordionPanelTab which never moves.
* If you want to constrain the width of the Accordion widget, set a width on
* the Accordion container. By default, our accordion expands horizontally to fill
* up available space.
* The name of the class ("Accordion") used in this selector is not necessary
* to make the widget function. You can use any class name you want to style the
* Accordion container.
.Accordion {
    overflow: hidden;
    border: 1px solid #CCC;
    width: 145px;
/* This is the selector for the AccordionPanel container which houses the
* panel tab and a panel content area. It doesn't render visually, but we
* make sure that it has zero margin and padding.
* The name of the class ("AccordionPanel") used in this selector is not necessary
* to make the widget function. You can use any class name you want to style an
* accordion panel container.
.AccordionPanel {
    margin: 0px;
    padding: 0px;
/* This is the selector for the AccordionPanelTab. This container houses
* the title for the panel. This is also the container that the user clicks
* on to open a specific panel.
* The name of the class ("AccordionPanelTab") used in this selector is not necessary
* to make the widget function. You can use any class name you want to style an
* accordion panel tab container.
* NOTE:
* This rule uses -moz-user-select and -khtml-user-select properties to prevent the
* user from selecting the text in the AccordionPanelTab. These are proprietary browser
* properties that only work in Mozilla based browsers (like FireFox) and KHTML based
* browsers (like Safari), so they will not pass W3C validation. If you want your documents to
* validate, and don't care if the user can select the text within an AccordionPanelTab,
* you can safely remove those properties without affecting the functionality of the widget.
.AccordionPanelTab {
    background-color: #F2F2F2;
    margin: 0px;
    padding: 12px;
    cursor: pointer;
    font-family: "Myriad Pro", Verdana, Geneva, sans-serif;
    font-size: 14px;
    color: #0071BC;
    border-bottom: 1px solid #CCC;
    /* [disabled]text-transform: uppercase; */
.AccordionPanelTab a {
    text-decoration:none;
    color: #0071BC;
/* This is the selector for a Panel's Content area. It's important to note that
* you should never put any padding on the panel's content area if you plan to
* use the Accordions panel animations. Placing a non-zero padding on the content
* area can cause the accordion to abruptly grow in height while the panels animate.
* Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
* Content container.
* The name of the class ("AccordionPanelContent") used in this selector is not necessary
* to make the widget function. You can use any class name you want to style an
* accordion panel content container.
.AccordionPanelContent {
    overflow: auto;
    margin: 0px;
    padding: 0px;
.AccordionPanelContent ul {
    list-style-type:none;
    margin:0;
    line-height: 22px;
    font-family:"Myriad Pro", "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size:14px;
.AccordionPanelContent ul li {
    color:#666;
.AccordionPanelContent ul li a {
    display:block;
    padding-top: 5px;
    padding-right: 0px;
    padding-bottom: 5px;
    padding-left: 0px;
.AccordionPanelContent ul li a:link, .AccordionPanelContent ul li a:visited {
    text-decoration:none;
    color:#0071BC;
.AccordionPanelContent ul li a:hover, .AccordionPanelContent ul li a:active {
    color:#FF9900;
.AccordionPanelTab a:link, .AccordionPanelTab a:visited {
    color:#0071BC;
.AccordionPanelTabHover a:hover, .AccordionPanelTabHover a:active {
    color:#FF9900;
/* This is an example of how to change the appearance of the panel tab that is
* currently open. The class "AccordionPanelOpen" is programatically added and removed
* from panels as the user clicks on the tabs within the Accordion.
.AccordionPanelOpen .AccordionPanelTab {
    background-color: #FFFFFF;
/* This is an example of how to change the appearance of the panel tab as the
* mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
* and removed from panel tab containers as the mouse enters and exits the tab container.
.AccordionPanelTabHover {
.AccordionPanelOpen .AccordionPanelTabHover {
    color: #555555;
/* This is an example of how to change the appearance of all the panel tabs when the
* Accordion has focus. The "AccordionFocused" class is programatically added and removed
* whenever the Accordion gains or loses keyboard focus.
.AccordionFocused .AccordionPanelTab {
    /* [disabled]background-color: #3399FF; */
/* This is an example of how to change the appearance of the panel tab that is
* currently open when the Accordion has focus.
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
    /* [disabled]background-color: #33CCFF; */
/* Rules for Printing */
@media print {
  .Accordion {
  overflow: visible !important;
  .AccordionPanelContent {
  display: block !important;
  overflow: visible !important;
  height: auto !important;

When clicked the links in the left side accordian menu do not work. However, the child-links work great. Example: http://www.richartbuilders.com/remodel.php
HEAD TAGS:
<script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<link href="SpryAssets/SpryMenuBarHorizontal2.css" rel="stylesheet" type="text/css" />
<link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
<link href="content.css" rel="stylesheet" type="text/css" />
HTML:
<div id="navSide">
    <div id="sideWrapper">
      <div id="Accordion1" class="Accordion" tabindex="0">
        <div class="AccordionPanel">
          <div class="AccordionPanelTab"><a href="../remodel.php">Remodel</a></div>
          <div class="AccordionPanelContent"></div>
         </div>
        <div class="AccordionPanel">
          <div class="AccordionPanelTab"><a href="../windowsdoors.php">Windows &amp; Doors</a></div>
          <div class="AccordionPanelContent"></div>
          </div>
        <div class="AccordionPanel">
          <div class="AccordionPanelTab"><a href="../weatherization.php">Weatherization</a></div>
          <div class="AccordionPanelContent"></div>
         </div>
        <div class="AccordionPanel">
          <div class="AccordionPanelTab"><a href="#">Electrical...</a></div>
          <div class="AccordionPanelContent">
            <ul>
              <li><a href="residential.php">Residential</a></li>
              <li><a href="commercial.php">Commercial</a></li>
            </ul>
          </div>
        </div>
      </div>
    </div>
</div>
<script type="text/javascript">
var Accordion1 = new Spry.Widget.Accordion("Accordion1" ,{ useFixedPanelHeights:false, defaultPanel:0});
</script>
external CSS:
@charset "UTF-8";
/* SpryAccordion.css - version 0.5 - Spry Pre-Release 1.6.1 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
/* This is the selector for the main Accordion container. For our default style,
* we draw borders on the left, right, and bottom. The top border of the Accordion
* will be rendered by the first AccordionPanelTab which never moves.
* If you want to constrain the width of the Accordion widget, set a width on
* the Accordion container. By default, our accordion expands horizontally to fill
* up available space.
* The name of the class ("Accordion") used in this selector is not necessary
* to make the widget function. You can use any class name you want to style the
* Accordion container.
.Accordion {
    overflow: hidden;
    border: 1px solid #CCC;
    width: 145px;
/* This is the selector for the AccordionPanel container which houses the
* panel tab and a panel content area. It doesn't render visually, but we
* make sure that it has zero margin and padding.
* The name of the class ("AccordionPanel") used in this selector is not necessary
* to make the widget function. You can use any class name you want to style an
* accordion panel container.
.AccordionPanel {
    margin: 0px;
    padding: 0px;
/* This is the selector for the AccordionPanelTab. This container houses
* the title for the panel. This is also the container that the user clicks
* on to open a specific panel.
* The name of the class ("AccordionPanelTab") used in this selector is not necessary
* to make the widget function. You can use any class name you want to style an
* accordion panel tab container.
* NOTE:
* This rule uses -moz-user-select and -khtml-user-select properties to prevent the
* user from selecting the text in the AccordionPanelTab. These are proprietary browser
* properties that only work in Mozilla based browsers (like FireFox) and KHTML based
* browsers (like Safari), so they will not pass W3C validation. If you want your documents to
* validate, and don't care if the user can select the text within an AccordionPanelTab,
* you can safely remove those properties without affecting the functionality of the widget.
.AccordionPanelTab {
    background-color: #F2F2F2;
    margin: 0px;
    padding: 12px;
    cursor: pointer;
    font-family: "Myriad Pro", Verdana, Geneva, sans-serif;
    font-size: 14px;
    color: #0071BC;
    border-bottom: 1px solid #CCC;
    /* [disabled]text-transform: uppercase; */
.AccordionPanelTab a {
    text-decoration:none;
    color: #0071BC;
/* This is the selector for a Panel's Content area. It's important to note that
* you should never put any padding on the panel's content area if you plan to
* use the Accordions panel animations. Placing a non-zero padding on the content
* area can cause the accordion to abruptly grow in height while the panels animate.
* Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
* Content container.
* The name of the class ("AccordionPanelContent") used in this selector is not necessary
* to make the widget function. You can use any class name you want to style an
* accordion panel content container.
.AccordionPanelContent {
    overflow: auto;
    margin: 0px;
    padding: 0px;
.AccordionPanelContent ul {
    list-style-type:none;
    margin:0;
    line-height: 22px;
    font-family:"Myriad Pro", "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size:14px;
.AccordionPanelContent ul li {
    color:#666;
.AccordionPanelContent ul li a {
    display:block;
    padding-top: 5px;
    padding-right: 0px;
    padding-bottom: 5px;
    padding-left: 0px;
.AccordionPanelContent ul li a:link, .AccordionPanelContent ul li a:visited {
    text-decoration:none;
    color:#0071BC;
.AccordionPanelContent ul li a:hover, .AccordionPanelContent ul li a:active {
    color:#FF9900;
.AccordionPanelTab a:link, .AccordionPanelTab a:visited {
    color:#0071BC;
.AccordionPanelTabHover a:hover, .AccordionPanelTabHover a:active {
    color:#FF9900;
/* This is an example of how to change the appearance of the panel tab that is
* currently open. The class "AccordionPanelOpen" is programatically added and removed
* from panels as the user clicks on the tabs within the Accordion.
.AccordionPanelOpen .AccordionPanelTab {
    background-color: #FFFFFF;
/* This is an example of how to change the appearance of the panel tab as the
* mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
* and removed from panel tab containers as the mouse enters and exits the tab container.
.AccordionPanelTabHover {
.AccordionPanelOpen .AccordionPanelTabHover {
    color: #555555;
/* This is an example of how to change the appearance of all the panel tabs when the
* Accordion has focus. The "AccordionFocused" class is programatically added and removed
* whenever the Accordion gains or loses keyboard focus.
.AccordionFocused .AccordionPanelTab {
    /* [disabled]background-color: #3399FF; */
/* This is an example of how to change the appearance of the panel tab that is
* currently open when the Accordion has focus.
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
    /* [disabled]background-color: #33CCFF; */
/* Rules for Printing */
@media print {
  .Accordion {
  overflow: visible !important;
  .AccordionPanelContent {
  display: block !important;
  overflow: visible !important;
  height: auto !important;

Similar Messages

  • Adobe Edge links not working

    Yeah I have also experienced links not working when I import my .oam file from Adobe Edge Animate also. Is there anything the Muse team is doing to fix this issue? I need a response from you guys by the end of the week. my company website is malfunctioning due to issues with your software. If there is some sort of hotfix please let us know.

    When you install the software illegally, using a volume license, there is a script you can run that will enter all of the adobe servers into your local DNS hosts file so the software can be activated. This makes accessing those domains impossible. This scenario fits the description of your issue, not suggesting anything beyond that.
    The hosts file is in /private/etc/hosts and can be accessed through the terminal:
    sudo nano /private/etc/hosts
    If you see a bunch of adobe servers in there, that is your problem.

  • Add new document link not working in upgraded sharepoint 2013?

    Hello there,
    Upgraded SharePoint team sites from 2010 to 2013. add new document link not working for shared document in upgraded sharepoint 2013?. it is specially not working on machine where Office web apps set up with this sharePoint server and it
    is working fine with environment  Office web apps not configured with Sharepoint.
    Looking resoluion /suggestion, thanks in advance.
    Regards,
    Sushil

    Hi  Sushil,
    According to your description, my understanding is that the add new document link was not working on machine where Office web apps set up with this SharePoint server after you upgraded SharePoint team sites
    from 2010 to 2013.
    For your issue, it can be caused by integrating Office Web Apps with upgraded SharePoint Site.
    Firstly please make sure claims-based authentication is used by the SharePoint web application that is used to create the new document. Only web applications that use claims-based authentication can open
    files in Office Web Apps. To determine the authentication provider for a web application, follow these steps:
    1.In SharePoint 2013 Central Administration, click Manage web applications.
    2.Select the web application that you want to check, and click Authentication Providers on the ribbon.
    The authentication provider must be displayed as Claims Based Authentication for Office Web Apps to work correctly with the web application. To resolve this issue, you can delete the web application and recreate
    it using claims-based authentication, or you can change the authentication method of the web application.
    Secondly, make sure the WOPI zones match on the SharePoint 2013 and the Office Web Apps Server farm.
    To do this, run the following command on the SharePoint Server:
    Get-SPWopiZone
    The result will be one of the following:.
    internal-https
    internal-http
    external-https
    external-http
    Next, run the following command on the SharePoint Server.
    Get-SPWOPIBinding
    In the output, look for WopiZone: zone. If the results from Get-SPWopiZone don’t match the zone that is returned by Get-SPWOPIBinding, run the Set-SPWOPIZone -Zone cmdlet on the SharePoint Server to change
    the WOPI zone to match the result from Get-SPWOPIBinding.
    If not work, you can try to disconnect SharePoint 2013 from Office Web Apps Server and re-configure Office Web Apps for SharePoint 2013.
    For more information, please refer to the article:
    http://technet.microsoft.com/en-us/library/ff431687(v=office.15).aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Fresh Install HCM 9.1 but Links not working. Help please

    Dear All,
    I'm trying to make a switch from SAP to PeopleSoft. I tought it easier to install PSFT since the number of source to install is much less than SAP. However, I kept getting same error where the links not working no matter which environment I tried to install.
    I downloaded all software from eDelivery.
    HCM 9.1, PTOOLS 8.52, Oracle 11g 64 bit, Oracle Client 32 bit.
    First Try:
    Install on windows 7 64bit. Everything works fine until first login to the PSFT and all links not working.
    Suggestion from Hakan is to apply the patch and gave me a link to the old FTP site. I downloaded the 85209 patch but got password.
    Finally I managed to get a customer ID from a friend and downloaded Patch 85211 and applied. But got java error so I scrapped it.
    Anyway, Gasparotto said the environment is not certified and will not fix my problem with the patch.
    Second Try:
    Installed Virtual Box.
    Installed Windows 2008 R2 and applied the SP1.
    Installed everything all over again.
    Ensured the PTWEBSERVER password similar the username.
    Everything works fine but when login to PSFT, again..... links not working and see on the bottom left corner there are some javascript error where they cannot find certain peoplesoft objects..
    Just upgraded to IE 9 because I read somewhere IE 8 is not certified.
    Tried to login again, no error message and everything looks fine but... links not working.
    Logs also looks normal to me.
    Does anyone ever encountered similar issues before?
    Does this is a normal behaviour before tools patch 85211 being applied ?
    Thanks,
    aLuNa
    My APPSRV Log:
    PSSAMSRV.12 (0) [11/03/12 09:04:46](0) PeopleTools Release 8.52 (WinX86) starting. Tuxedo server is APPSRV(99)/100
    PSSAMSRV.12 (0) [11/03/12 09:04:46](0) Cache Directory being used: C:\APPSRV_CONFIG\appserv\HCDMO\CACHE\PSSAMSRV_100\
    PSSAMSRV.12 (0) [11/03/12 09:04:46](0) Server started
    PSRENSRV.2808 [11/03/12 09:04:49](0) PeopleTools Release 8.52 (WinX86) starting. Tuxedo server is RENGRP(92)/101
    PSRENSRV.2808 [11/03/12 09:04:49](3) Switching to new log file C:\APPSRV_CONFIG\appserv\HCDMO\LOGS\PSRENSRV_1103.LOG
    PSADMIN.2124 (0) [11/03/12 09:04:52](0) End boot attempt on domain HCDMO
    PSAPPSRV.1488 (3) [11/03/12 09:13:16 GetCertificate](3) Returning context. ID=PTWEBSERVER, Lang=ENG, UStreamId=091316_1488.3, Token=PSFT_HR/2012-11-03-02.13.17.193528/PTWEBSERVER/ENG/XxZ3vyJWXF/S1MoQtG2Wox6wGJA=
    PSAPPSRV.1488 (5) [11/03/12 09:13:21 GetCertificate](3) Returning context. ID=PTWEBSERVER, Lang=ENG, UStreamId=091321_1488.5, Token=PSFT_HR/2012-11-03-02.13.22.193632/PTWEBSERVER/ENG/pS6ec6pIAJJSYc1oOWcNYiR0UFQ=
    PSAPPSRV.1488 (7) [11/03/12 09:13:29 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=091329_1488.7, Token=PSFT_HR/2012-11-03-02.13.30.193285/PS/ENG/3GnOezS6D9PUlzwrjPwqexv4ir0=
    PSAPPSRV.1488 (34) [11/03/12 09:18:47 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=091847_1488.34, Token=PSFT_HR/2012-11-03-02.18.48.194158/PS/ENG//oJB5tvSHYNzsmZ2Gs4g2vBLUVs=

    alunwawa wrote:
    Does anyone ever encountered similar issues before? Yes, I did already see the same, that was when installed the same with 8.52.00 (without Peopletools patch) or without applying the patch project...
    Does this is a normal behaviour before tools patch 85211 being applied ?Without patch, you have the error you mentioned. How many time I told that 8.52.03 min. is required, I did not go further, but there was some bugs before which make it not working.
    I understand that's rather frustrating for people who wants to jump to Peoplesoft. I don't know SAP, but here you go, Peoplesoft is not a simple toy.
    Unfortunately, if you have no access to My Oracle Support to get the Peoplesoft patches, you have no way but work on Peoplesoft OVM (free of use), and to use them on VirtualBox, the Jim's articles are worth to follow.
    Nicolas.
    PS: @Jim, thanks for the kind words.
    My last install guide is quite old now (PT8.50/Linux), even though it did not change very much within the last tools 8.52. But seeing the number of time such questions have asked over here (PT8.52 on Windows), I'm thinking to write one more, that time on Windows.

  • Purchased Lightroom 5 and Download link not working. Please advise

    I have Purchased Lightroom 5 followed the download instructions and Download link not working.
    I get a dialog box stating that I have Explorer 4 and I need a later version.
    I am in fact running Explorer 10.
    Please advise.
    Bob Spree
    England

    Please see http://forums.adobe.com/thread/1229333 where this topic has been discussed.

  • Links not working correctly in PCUI for CRM

    Hi All,
    We are implementing mySAP CRM 4.0 through PCUI on Portal
    EP6 SP14.
    I have integrated the CRM Business Package 60.2 in Portal.
    Proper User has been created in the backend and assigned Sales Manager Role both in the portal and in the CRM backend.
    We are facing problem of links not working in the CRM Contents. When we click on the links in the CRM Portal Contents ( BSPs) we don’t get the desired application opening.
    When we click any links in the BSP's ( Activity Links in Opportunity Management BSP ) we get a blank page popped up.
    I have the screen shots with me. Any one responding can get the screen shots from me.
    Thanks in Advance
    Rohit

    Rohit,
    Have you maintained configuration in (transaction CRMC_BLUEPRINT_C --> Navigation (URL Generation) --> Assign Object Method to Role)? Be sure that the role that you are using is present and ID Page/Service field correctly points to the pcd url for your portal.
    When testing, it may be helpful to set parameter CRM_URL_BUFFER_OFF = X on the user profile (SU01) to turn off the url buffer. That way changes made above are immediate.
    Best Regards,
    Bernard

  • Web links not working in iPhone calendar notes. Used to work. Ideas?

    Web links not working in iPhone calendar notes. Used to work. Ideas?

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Has any of this been tried?

  • Why Does Dynamic Link Not Work

    I purchased the CS5 Adobe Production Premium.  I have been working in Premiere and I have been learning about how to use Dynamic Link. I want to be able to alter clips in After Effects and bring them back and forth into Premiere.  When I go to File/ Adobe Dynamic Link/New After Effect Composition, I get this message:
    Adobe Dynamic Link Requires Adobe Production Premium.
    Since I own production premium, I do not know why I am getting this message.  I have reinstalled the CS5 Production Premium Software twice and it still gives me the same message.  What can I do to get Dynamic Link Working.

    Thank you for the tip.  Could you possibly tell me how to deactivate and
    then reactivate the suite.  I am using a Macbook Pro laptop running OS
    10.6.4.  I do not even know where to start.
    From:   Colin Brougham <[email protected]>
    To:     Dan Seanor <[email protected]>
    Date:   03/15/2011 09:55 AM
    Subject:        Why Does Dynamic Link Not Work
    Deactivate the software (not uninstall), and then reactivate the suite.
    This often fixes this. You can opt to leave the serial number on the
    system; no need to clear it and re-enter it.

  • Verizon Access Manager Download link not working

    Hi,
              Verizon Access Manager Download link not working, Following Links
    http://www.vzam.net/download/download.aspx?productid=872
    http://pcdn2-download.vzw.com/win/7.7/VZAM_7.7.1_2727b-AC30-Web.exe
    plz help to download verizon five spot access manager.
    thanks
    karthirocks

        Hi karthirocks! I'm sorry to see you're having any difficulties using these links. I've clicked on both, but had no problems getting pages to launch or in getting the application to download. If this is still a problem for you, please describe the issue you're experiencing. Also, please share the browser version you're using, and if you've enabled any security feature that prevents access to certain secure sites or services. Thanks!
    DionM_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

  • Flash Global Security & Links Not Working?

    Hi all,
    I am absolutely near some sort of breakdown with my Flash website....I really hope someone can help!
    I am building my portfolio website; I'm using Dreamweaver CS3 (on Mac) and inserting Flash animations in the centre of a table in each Dreamweaver page. All was working fine until I built the Contact page animation on Flash last night. I linked in some external websites to my Blog, Flickr and Twitter and also need a button to launch the user's default mail client.
    When I tested the animation (CMD+ENTR) in Flash the links appeared to be working, if after a few clicks. I then inserted the Contact animation into the Contact.html page on Dreamweaver and tested it in Safari. A dialogue box came up regarding something about security settings and Flash 8 (makes no sense as I am using Flash 9); and I ended up on the Global Security Setttings panel page on the Adobe website. I selected the entire folder the website is in on my hard drive under "Trust Files in these Locations". Now the ENTIRE website's flash animations are not working. There are links to internal pages of the site (i.e. a link to the "Contact" page in the animaiton on the Home page) which are now not working either. No error messages come up when I test the movie in CS3 either. I have refreshed Safari, restarted the Mac and redone the folder on the Global Security Settings panel. Also loaded the entire website onto a PC this morning, all links not working either.
    Actionscript 3 on the Contact page looks like this:
    import flash.events.MouseEvent;
    //---Blog Button---\\
    var getBlog: URLRequest = new URLRequest("http://www.myblogsdomain.com");
    Blg_Btn.addEventListener(MouseEvent.CLICK, eClick);
    function eClick(event:MouseEvent):void{
    navigateToURL(getBlog, "_self");
    //---Twitter Button---\\
    var getTwitter: URLRequest = new URLRequest("http://www.twitter.com/mydomain");
    Twt_Btn.addEventListener(MouseEvent.CLICK, eClick1);
    function eClick1(event:MouseEvent):void{
    navigateToURL(getTwitter, "_self");
    //---Flickr Button---\\
    var getFlickr: URLRequest = new URLRequest("http://www.flickr.com/photos/mydomain");
    Flkr_Btn.addEventListener(MouseEvent.CLICK, eClick2);
    function eClick2(event:MouseEvent):void{
    navigateToURL(getFlickr, "_self");
    //---Email Button---\\
    var getMail: URLRequest = new URLRequest("mailto:[email protected]");
    Eml_Btn.addEventListener(MouseEvent.CLICK, eClick3);
    function eClick3(event:MouseEvent):void{
    navigateToURL(getMail, "_self");
    I'm not 100% sure if the e-mail AS3 I set up is correct, but as none of the links are working I can't test it. I cannot provide a link to the website as it isn't uploaded yet, and I don't really want to upload it not working properly.
    Any help at all would be gratefully received, I'm really, really on the brink of some sort of breakdown. Thanks.

    Thanks Samuel.Wong and Ned Murphy for the information.
    I'm not actually sure what happened but my website suddenly started working again today, I think possibly by selecting "Always Allow" on the Global Security Page as well as inserting every individual file as well as the folder under "Trusted Locations" has also done the trick.
    The external links appear to work when I test the movie in Flash CS3, but the same warning comes up once the movie is inserted into a Dreamweaver html page and tested in Safari. However I think when the links (all except the email ) appear to be working in Flash then it should be just fine once uploaded onto the server. Many thanks for your advice once again.
    Maxx

  • Timemachine and link not work property...

    At home I have 10.4.2 and no digidesign hardware.
    Timemachine and link not work property...
    I send them: when I use ol algorythm- they caclulating 1 mono file (3 min lengh) about 15 min at dual G5. It is normal? And when I use new algorytm- nothign happen whith file. No result. (1 week it work fine).
    Link in matrix not work
    And what system I shood to use at studio whith PT?

    CRash when change lengh of region whith new algoruthm
    Date/Time: 2005-08-24 12:11:29.752 +0400
    OS Version: 10.4.2 (Build 8C46)
    Report Version: 3
    Command: Logic Pro
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Parent: WindowServer [91]
    Version: 7.1.0 (7.1.0(877))
    Build Version: 1A73
    Project Name: LogicPro710_ApplicationData
    Source Version: 900001
    PID: 288
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x0000007e
    Thread 0 Crashed:
    0 com.apple.logic.pro      0x0059a8c8 0x1000 + 5871816
    1 com.apple.logic.pro      0x0037183c 0x1000 + 3606588
    2 com.apple.logic.pro      0x00370000 0x1000 + 3600384
    3 com.apple.logic.pro      0x002983b4 0x1000 + 2716596
    4 com.apple.logic.pro      0x00298a84 0x1000 + 2718340
    5 com.apple.logic.pro      0x00298c28 0x1000 + 2718760
    6 com.apple.logic.pro      0x0005e264 0x1000 + 381540
    7 com.apple.logic.pro      0x0005c6e0 0x1000 + 374496
    8 com.apple.logic.pro      0x002aa538 0x1000 + 2790712
    9 com.apple.logic.pro      0x00571e10 0x1000 + 5705232
    10 com.apple.logic.pro      0x0016c090 0x1000 + 1486992
    11 com.apple.logic.pro      0x0017864c 0x1000 + 1537612
    12 com.apple.logic.pro      0x00178ad8 0x1000 + 1538776
    13 com.apple.logic.pro      0x0016c150 0x1000 + 1487184
    14 com.apple.logic.pro      0x0018e388 0x1000 + 1627016
    15 com.apple.logic.pro      0x0018e588 0x1000 + 1627528
    16 com.apple.logic.pro      0x0017d0cc 0x1000 + 1556684
    17 com.apple.logic.pro      0x00124170 0x1000 + 1192304
    18 com.apple.logic.pro      0x002fed40 0x1000 + 3136832
    19 com.apple.logic.pro      0x003026a8 0x1000 + 3151528
    20 com.apple.logic.pro      0x00300a94 0x1000 + 3144340
    21 com.apple.HIToolbox      0x931229f4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    22 com.apple.HIToolbox      0x9312214c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    23 com.apple.HIToolbox      0x93128ed0 SendEventToEventTarget + 40
    24 com.apple.HIToolbox      0x93229ffc SendEventFromMouseDown + 156
    25 com.apple.HIToolbox      0x93205998 HandleClickInContent + 368
    26 com.apple.HIToolbox      0x93155d6c HandleWindowEvent + 1584
    27 com.apple.HIToolbox      0x931655c8 StandardWindowEventHandler + 160
    28 com.apple.HIToolbox      0x931229f4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    29 com.apple.HIToolbox      0x9312214c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    30 com.apple.HIToolbox      0x93128ed0 SendEventToEventTarget + 40
    31 com.apple.HIToolbox      0x93229ffc SendEventFromMouseDown + 156
    32 com.apple.HIToolbox      0x931b6b08 HandleWindowClick + 572
    33 com.apple.HIToolbox      0x931b6560 HandleMouseEvent + 456
    34 com.apple.HIToolbox      0x931655bc StandardWindowEventHandler + 148
    35 com.apple.HIToolbox      0x931229f4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    36 com.apple.HIToolbox      0x9312214c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    37 com.apple.HIToolbox      0x93128ed0 SendEventToEventTarget + 40
    38 com.apple.HIToolbox      0x931b5530 HandleMouseEventForWindow(OpaqueWindowPtr*, OpaqueEventRef*, unsigned short) + 236
    39 com.apple.HIToolbox      0x931b4aa8 HandleMouseEvent(OpaqueEventRef*) + 368
    40 com.apple.HIToolbox      0x9312923c ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 496
    41 com.apple.HIToolbox      0x93122c44 DispatchEventToHandlers(EventTargetR

  • External links not work

    Hello,
    I have a word document that has external links. Text that
    links to other page or other url.
    When I convert my doc (word document) into a swf using flash
    paper 2 the links not work. There are still highlighted but no
    linking is taking place.
    please help me.
    Thanks
    Alejandro

    I am having the same problem. At first I thought it was
    because I had converted an excel file but I tried the same
    information from a word document and the links do not work in the
    browser or if I view the SWF file separately. Additionally, when I
    convert the word file to a pdf none of the hyperlinks to pages or
    documents work but the links to email addresses do.

  • Spry accordion for CS5 links not working

    Hi everyone!
    I build a Spry accordion for my website, and while the functionality of it works beautifully, the links do NOT work. I have double and triple checked that my links are correct, and when I am in a preview mode, the text is changing to my a:hover specifications. Does anyone have any useful suggestions?  Please be gentle when answering, I know my way around HTML and Dreamweaver, but am trained as a designer, not a coder.
    Thank you!

    Please upload your site and supply a link.
    Gramps

  • Navigation menu links not working

    I just published a site with iWeb and the navigation menu links are not working. They appear to be active when I mouseover them in iWeb, but but neither the mouseover effects nor the links themselves are working on the published site in Safari.

    Finally solved the problem.
    The title of the webpage had a clickable link right above the navigation bar. Once I removed that the navigation bar started working.
    I'd guess that the webpage title was "infront" of the clickable navigation bar.

  • Slimbox not working with Spry Dataset

    Hi there,
    I'm trying to populate a page with Spry Dataset and use Slimbox2 to show a set of 4 images when a thumbnail is clicked.
    The original webpage WITHOUT Spry Dataset is here:
    http://shadowmuseum.com/portfolio/p-web.html
    Currently it works with just slimbox, but as soon as I add a Spry Dataset, the large images won't load anymore. When a thumbnail is clicked on, it opens the 1st large image of the set in a new page, completely removing the lightbox effect.
    I've scouted the internet for solutions; it's been suggested that slimbox doesn't work because spry doesn't have time to load the content first. But I'm not savvy with javascript at all, so have no idea how to work around it....
    Any help would be greatly appreciated.
    Thanks a lot.
    P.S. Below is the HTML code for the page with both spry & slimbox:
    <!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"><!-- InstanceBegin template="/Templates/bone.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><meta name="keywords" content="Shadow Museum, design, photography, london, web, web design, ana, ana lorraine lui, benjamin, backhouse, E1, E8, N16, graphic design, st martins, creative, agency, bespoke, multi-disciplinary" /><meta name="description" content="London based bespoke multi-disciplinary creative agency. Services include web design, photography, print design, and filmmaking." />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Shadow Museum || London-based bespoke multi-disciplinary creative agency</title>
    <script type="text/javascript" src="../zzAssets/scripts/Lightbox/jquery-1.3.1.min.js"></script>
    <script type="text/javascript" src="../zzAssets/scripts/Lightbox/js/slimbox2.js"></script>
    <script src="../zzAssets/scripts/SpryAssets/xpath.js" type="text/javascript"></script>
    <script src="../zzAssets/scripts/SpryAssets/SpryData.js" type="text/javascript"></script>
    <link rel="stylesheet" href="../zzAssets/scripts/Lightbox/css/slimbox2.css" type="text/css" media="screen" />
    <!-- InstanceEndEditable -->
    <link href="../zzAssets/scripts/main.css" rel="stylesheet" type="text/css" />
    <script src="../zzAssets/scripts/SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../zzAssets/scripts/SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" src="../zzAssets/scripts/clock/clockp.js"></script>
    <script type="text/javascript" src="../zzAssets/scripts/clock/clockh.js"></script>
    <!-- InstanceBeginEditable name="head" -->
    <script type="text/javascript">
    <!--
    var dsWeb = new Spry.Data.XMLDataSet("p-web.xml", "portfolio/project");
    dsWeb.setColumnType("info", "html");
    //-->
    </script>
    <!-- InstanceEndEditable --><!-- InstanceParam name="footer" type="boolean" value="true" --><!-- InstanceParam name="clock" type="boolean" value="true" -->
    </head>
    <body>
    <div id="clock_a"></div>
    <div id="menu">
      <ul id="mainMenu" class="MenuBarHorizontal">
        <li><a href="../index.html">Home</a>      </li>
        <li><a href="../news/news.html">News</a></li>
        <li><a class="MenuBarItemSubmenu" href="#">About</a>
            <ul>
              <li><a href="../about/our_story.html">Our Story</a></li>
              <li><a href="../about/our_values.html">Our Values</a></li>
            </ul>
        </li>
        <li><a href="#" class="MenuBarItemSubmenu">Services</a>
          <ul>
            <li><a href="../services/web_design.html">Web Design</a></li>
            <li><a href="../services/print_design.html">Print Design</a></li>
            <li><a href="../services/photography.html">Photography</a></li>
            <li><a href="../services/filmmaking.html">Filmmaking</a></li>
            </ul>
        </li>
        <li><a href="#" class="MenuBarItemSubmenu">Portfolio</a>
          <ul>
            <li><a href="p-web.html">Web Design</a></li>
            <li><a href="p-print.html">Print Design</a></li>
            <li><a href="p-photography.html">Photography</a></li>
            <li><a href="p-filmmaking.html">Filmmaking</a></li>
          </ul>
        </li>
        <li><a href="../contact/contact.html">Contact</a></li>
      </ul>
    </div>
    <!-- InstanceBeginEditable name="content area" -->
    <div id="content">
      <div id="p-web">
        <h2>Web  Portfolio</h2>
         <div class="SpryHiddenRegion" spry:region="dsWeb">
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr spry:repeat="dsWeb">
            <td align="center" valign="top">
                   <a href="../zzAssets/images/p-web/{pic1}" rel="{label}" title="{title}"><img src="../zzAssets/images/p-web/{thm}" width="180" height="130" /></a>
                   <a href="../zzAssets/images/p-web/{pic2}" rel="{label}" title="{title}"></a>
                   <a href="../zzAssets/images/p-web/{pic3}" rel="{label}" title="{title}"></a>
                   <a href="../zzAssets/images/p-web/{pic4}" rel="{label}" title="{title}"></a>
              </td>
            <td align="left" valign="top">
                   <h3>{title}</h3>
                   {info}
                   <p><a href="http://{url}" target="_blank">{url-label}</a></p>
              </td>
          </tr>
        </table>
         </div>
        <p> </p>
      </div>
    </div>
    <!-- InstanceEndEditable -->
    <div id="footer">
      <div id="watermarkRight">
        <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr>
            <td align="left" valign="top">©2009 Shadow Museum | Company Number 6576238
              | <a href="../terms.html" class="colourless">Terms &amp; Conditions</a></td>
            <td align="right" valign="top">contact us: <a href="mailto:[email protected]">[email protected]</a></td>
          </tr>
        </table>
      </div>
    </div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("mainMenu", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    <!-- InstanceEnd --></html>

    You are not re-initializing the lightbox library code after Spry have generated the markup.
    You can use the Spry region observer onPostUpdate to get notified of region re-generation and recall the initialization code of the lightbox.

Maybe you are looking for

  • ADOBE, please fix CC application, it's broken beyond repair.

    Just look at the list of people have problems with CC application.  It's so bad that if you do a google search on the problem there will be 100+ pages of hits on the problems with CC from professionals to the hobbiest. I want to stay with Adobe produ

  • Windows Vista and Shuffle 2

    I have been succesfully running the second Beta release of Vista. My I tunes works well with my existing Mini. However I just bought a Shuffle2 and I am unable to transfer music to it. I keep getting a message "unknown error 1418" I also get the othe

  • IMac G5 freezes regularly under leopard

    Hey. I have a 17' imac G5 2GHz. After installing Leopard a few weeks ago my iMac has started freezing randomly. The entire system locks up, mouse doesn't move, keyboard does nothing, display freezes. If iTunes is playing music it will loop half a sec

  • Unable to see user created in Child system

    Hi There, I am facing a peculiar issue with CUA. 1) A user created in CUA is not appearing in Child system. 2)When I checked the IDOC status it is Green(03) in both the systems. 3)When I remove the system in the CUA for that client , it  is fine. 4)W

  • Post-refresh steps for a CUA child system

    Hi, I implemented CUA in our non-prod system. I will copy my DEV system (CUA enabled) to a SBX machine (also CUA enabled). our CUA Master is installed on our Solution Manager machine. I searched the web for possible solutions. One of them is: 1.expor