Widget stops working when second widget added

I added a twitter feed widget via adobe widget and it was working. Then I added an image cycle widget and the image cycle widget worked, but the twitter feed widget stopped showing up in the browser. Here's my code:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>CBB — Creative By Becky</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script src="scripts/jquery.js" type="text/javascript"></script>
<script src="scripts/twitter_search.js" type="text/javascript"></script>
<script src="scripts/jquery-1.6.min.js" type="text/javascript"></script>
<script src="scripts/jquery.cycle.all.js" type="text/javascript"></script>
<link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
<script type="text/xml">
<!--
<oa:widgets>
  <oa:widget wid="2125523" binding="#twitter" />
  <oa:widget wid="2559022" binding="#slideshow" />
</oa:widgets>
-->
</script>
<style type="text/css">
/* BeginOAWidget_Instance_2125523: #twitter */
                    #twitter {
          height: 200px;
          width: 200px
</style>
<style type="text/css">
/* BeginOAWidget_Instance_2559022: #slideshow */
                              #slideshow { 
                                  padding: 0px;
                                        margin:0; 
                              #slideshow-caption{
                                        padding:0;
                                        margin:0;
                              #slideshow img, #slideshow div { 
                                  padding: 0px;
                                  background-color: transparent;
                                        -webkit-border-radius: 0px;
                                        -moz-border-radius: 0px;
                                        border-radius: 0px;
                                  margin: 0;
/* EndOAWidget_Instance_2559022 */
</style>
</head>
<body>
<div id="container">
  <div id="header"><img src="images/header.png" width="900" height="150" alt="cbb - creative by becky freelance print and web designer" /></div>
  <div id="logo">
    <script type="text/javascript">
// BeginOAWidget_Instance_2559022: #slideshow
                           slideshowAddCaption=false;
$(document).ready(function() {
          $('#slideshow').cycle({
                    after:                              slideshowOnCycleAfter, //the function that is triggered after each transition
                    autostop:                              false,     // true to end slideshow after X transitions (where X == slide count)
                    fx:                                        'fade,',// name of transition effect
                    pause:                              true,     // true to enable pause on hover
                    randomizeEffects:          true,  // valid when multiple effects are used; true to make the effect sequence random
                    speed:                              2000,  // speed of the transition (any valid fx speed value)
                    sync:                              false,     // true if in/out transitions should occur simultaneously
                    timeout:                    6000,  // milliseconds between slide transitions (0 to disable auto advance)
                    fit:                              true,
                    height:                       '400px',
                    width:         '900px'   // container width (if the 'fit' option is true, the slides will be set to this width as well)
function slideshowOnCycleAfter() {
          if (slideshowAddCaption==true){
                              $('#slideshow-caption').html(this.title);
// EndOAWidget_Instance_2559022
    </script>
    <div id="slideshow">
      <!--All elements inside this will become slides-->
      <img src="images/beach1.jpg" width="100" height="100" title="caption for image1" /> <img src="images/beach2.jpg" width="300" height="300" title="caption for image2" /> <img src="images/beach3.jpg" width="200" height="200" title="caption for image3" />
      <div title="sample title"> you can add blocks of text instead!</div>
      <img src="images/beach4.jpg" width="200" height="200" title="caption for image4" /> <img src="images/beach5.jpg" width="200" height="200" title="caption for image5" /> </div>
    <!--It is safe to delete this if captions are disabled-->
    <div id="slideshow-caption"></div>
  </div>
  <div id="menu">
    <ul id="crr_menu" class="MenuBarHorizontal">
      <li><a href="index.html">Home</a>      </li>
      <li><a href="#">About</a></li>
      <li><a href="#">Portfolio</a>      </li>
      <li><a href="contact.html">Contact</a></li>
    </ul>
  </div>
  <div id="leftcolumn">
    <div id="twitter"></div>
    <script type="text/javascript">
// BeginOAWidget_Instance_2125523: #twitter
$(document).ready(function() {
          $('#twitter').twitterSearch({
                    term: 'from%3Acreativebybecky',
                    title: 'creativebybecky twitterfeed',
                    titleLink: 'http://www.twitter.com/creativebybecky',
                    bird: true,                                                  // true or false (show or hide twitter bird image)
                    birdSrc: 'images/tweet.gif',                     // twitter bird image
                    birdLink: '',                    // url that twitter bird image should like to
                    avatar: false,                                        // true or false (show or hide twitter profile images)
                    anchors: true,                              // true or false (enable embedded links in tweets)
                    animOutSpeed: 500,          // speed of animation for top tweet when removed
                    animInSpeed: 500,          // speed of scroll animation for moving tweets up
                    pause: true,                                        // true or false (pause on hover)
                    time: false,                                                  // true or false (show or hide the time that the tweet was sent)
                    timeout: 8000,                              // delay betweet tweet scroll
                    css: {
                              a:     { textDecoration: 'none', color: '#990066', fontWeight: 'normal'},
                              container: { backgroundColor: '#000000' },
                              frame: { border: '10px solid #333333', borderRadius: '10px', '-moz-border-radius': '10px', '-webkit-border-radius': '10px' },
                              img:   { width: '30px', height: '30px' },
                              loading: { color: '#888' },
                              text:  {fontWeight: 'normal', fontSize: '12px', color:'#ffffff'},
                              time:  { fontSize: '12px', color: '#CCC' },
                              title: { backgroundColor: '#990066', padding: '5px 0 5px 0', textAlign: 'center', fontWeight: 'bold', fontSize: '12px'},
                              titleLink: { textDecoration: 'none', color: '#ffffff' },
                              user:  { fontSize: '12px'},
                              fail:  { background: '#6cc5c3 url(/images/failwhale.png) no-repeat 50% 50%'}
// EndOAWidget_Instance_2125523
    </script>
  </div>
  <div id="content">
    <h1>You've made it to my homepage.</h1>
    <p>That means I'm well on my way to expanding my creative portfolio beyond print design and setting foot into the world of digital. I think I'm getting the hang of it.</p>
    <p>This inaugural site, while not perfect, will showcase my progress in this new venture as well as highlight my current accomplishments. Thanks for visiting! </p>
  </div>
  <div id="footer">cbb — creative by becky — 2012</div>
</div>
<p>  </p>
<p>  </p>
<script type="text/javascript">
var MenuBar1 = new Spry.Widget.MenuBar("crr_menu", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
  </script>
</body>
</html>

Donna_d
Two script instances running how do you keep them from both running? I am trying to bring in a jSocial(1.0) and a Flexslider (2.1) thumbnail navigator both will not run with the other.  Can you help?
Thanks
widgetgeek

Similar Messages

  • C209n was working when second computer added it stopped

    I have a C209n that configured and worked perfectly.  After my wife added the software to her computer the printer stopped working for all computers.  Hers was connected by wireless to the router and mine is connected by cable to it.  I attempted to access the IP address via web browser and it tells me that it cannot find it.

    OK, well, I am not sure what happened, but a quick way to get it back is from the front of the printer:
    Setup > Network > Wireless Setup WIzard.  Follow the instructions.
    Before you do that, however, you may consider changing WEP security because, well, it is not secure.  It can be broken easily with freeware from the Internet.  I recommend WPA or WPA2 with a strong password you create (use at least 13 characters).
    If you decide to do this, change the security in your router first, then run the Wizard on the printer.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • AME stops responding when second file added to queue

    I'm running CS5 on a 64-bit Windows 7 system.
    Today, AME stops responding whenever I try to add a second file to the encoding/transcoding queue. I can add an .avi or a Premiere project timeline (either exported from Premiere or added straight into AME) but if I try to duplicate that item or add a second version, I instantly see the spinner and it the application goes to "not responding."
    I have no idea where to start looking. Any ideas?
    Thanks for the help.

    I have now done an uninstall and reinstall of the entire CS5 Master Collection suite. At first, the problem seemed to have persisted, or gotten worse.
    AME was able to launch and load, and could get to the point of selecting a Premiere Pro project timeline to import, without issue. However, AME would hang if I dragged an MPEG-2 into the queue or selected a timeline to import, and then quickly go to "not responding."
    I have an watch folder in my AME queue and I thought I'd delete it to see if I could do anything in AME. I was able to delete it without issue. I then tried dragging an MPEG-2 into the queue again and, predictably, it hung, went non-responsive and I killed AME. However, when I re-launched AME the watch folder was again in the queue. So I deleted the folder, exited AME and relaunched it. I was then able to import an After Effects comp and successfully encode it, as well as drag in some small MPEG-2s. Finally I risked importing a small Premiere Pro project timeline and it worked.
    Right now, AME is happily encoding a timeline from an old, large and messy project that gets messier every couple of weeks.
    My guess is that there was something wrong with way one of the files or projects I tried to import earlier and, since AME wasn't getting shut down, the troublesome item was persisting (and the problem possibly compounding) every time I launched AME.

  • Widgets Stopped Working!!!

    After reading a lot of articles on how people's widgets stopped working, and how there was no definitive answer, I would like to share what I did.
    I have a brand new MBP with Snow Leopard installed. All my widgets worked fine for a while.. Then they just froze up.
    I started researching, and trying various things, all with no success... I could see Dashboard eating 100% cpu in Activity Monitor, and when I would kill the process, it would come back.
    What I did was, delete all dashboard preferences, ~/Library/Preferences, killed the Dashboard process, opened terminal and typed:
    killall Dock(as my research suggested the Dock hold on to the dashboard preferences)
    After that, I then added back my widgets and all worked.

    Doesn't work for me - no stalled processes that I can find. There are four items called DashboeardClient that keep vanishing and then reappearing for a few seconds at a time. They have a number from 259 to 262 next to them
    Also, in the WIDGET MANAGER some have a white '-' sign in a red circle next to them that does not seem to indicate anythng unusual - i.e. some of these widgets are still working.
    If I turn widgets off, I can't turn them on again. Even doing a restart and Permissions repair doesn't restart them.
    Some Widgets are on the desktop but are empty and do nothing.
    You may click on the picture if you need to see it larger. As yo can see, although some are checked again, they haven't returned.

  • I get a message that itunes has stopped working when I try to sync photos

    I get a message that itunes has stopped working when I try to sync photos. Error message says "APPCRASH ..."
    Can anyone help? Thanks.

    I found the file but when I added it to the  list for the Data  Execution Program to ignore , I received a message that the Program.x86/itunes file must have the DEP on in order to run. Anyone else having this problem ?

  • IPod touch stopped working when charging now won't turn on at all

    iPod touch stopped working when charging now won't turn on at all

    Try in order:
    - After charging or half an hour, reset the iPod:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Connect the iPod to the computer and if it shows in iTunes, restore the iPod via iTunes.
    - See if placing the iPod in recovory mode will allow iTunes to see the iPod so you can restore the iPod. For recovery mode see:
    iPhone and iPod touch: Unable to update or restore
    - Make an appointment at the Genius Bar of an Apple store since you likely have a hardware problem.

  • Reader stops working when newest GTK2.0 installed - bug report and proposed fix

    Adobe Reader 7.0.9 (Linux i386) stopped working when I installed a batch of updates on Xubuntu Feisty Fawn (7.04). The updates included GTK 2.0, version 2.10.11. The symptom was that upon startup, Reader ended up in a seemingly infinite loop, printing out "expr: syntax error" (when started from terminal emulator). A few debug "echo"'s revealed that the loop concerned function get_gtk_file_ver().
    The bug itself is on line 418. The original line is as follows:
    echo $mfile| sed 's/libgtk-x11-\([0-9]*\).0.so.0.\([0-9]\)00.\([0-9]*\)\|\(.*\)/\1\2\3/g'
    - note that there is no '*' in the middle number-matching regexp, so the full expression matches only strings in which the "middle" group is 100, 200, ..., 900.
    At this point in the execution, $mfile contains the name of the gtk library .so, in this case, libgtk-x11-2.0.so.0.1000.11. In prior versions (e.g. 2.8.20, which is the current version in Ubuntu Dapper Drake LTS), the minor version had only one digit, and the regexp matched. When the minor version got incremented to two digits, the regexp no longer match because of the missing '*'! As an additional bonus, somehow this leads to the infinite loop (which is *not* good).
    A working fix is to add the missing '*' into the regexp. I'd say that a lot of Linux users will be tripping on this issue soon, at least those who keep current on security updates.
    I found no sensible way to contact the developers, i.e. a way that wouldn't have to pass a gazillion of customer-service and tech support people, who are most likely just as unaware of the issue as the users...
    I hope this issue will be fixed ASAP - after all, it's only one added character, and that'll save a lot of users a lot of hassle.
    (and btw, to have the intended effect, the dots in the sed expression should all be escaped with a backslash - now e.g. "libgtk-x11-2.0.sog0.1000.11" matches the sed regexp as well as "libgtk-x11-2.0.so.0.1000.11", but this probably isn't too critical...)

    The solutions provided here work, but by accident. The script compares 2104 (2.10.4) to 240 (2.4.0) and sees that it's greater. Adobe will have problems in future releases if the minimum GTK release is, say, 2.10.4 and the user has 2.4.0.
    I've crafted a more elegant solution, shown here in "patch" format. I think the reformatting and tab elimination done by HTML will preclude you from pasting this into a file and running "patch", but it's pretty easy to read and is short...
    --- /usr/local/Adobe/Acrobat7.0/bin/acroread~ 2007-01-05 14:56:39.000000000 -0500
    +++ /usr/local/Adobe/Acrobat7.0/bin/acroread 2007-08-03 09:33:08.000000000 -0400
    @@ -409,13 +409,13 @@ get_gtk_file_ver()
    fi
    mfile=`basename $ifile`
    - echo $mfile | grep -q "libgtk-x11-\([0-9]*\).0.so.0.\([0-9]*\).\([0-9]*\)" 2>/dev/null
    + echo $mfile | grep -q "libgtk-x11-\([0-9]*\)\.0\.so\.0\.\([0-9]*\)\.\([0-9]*\)" 2>/dev/null
    if [ $? -ne 0 ]; then
    return 1
    fi
    - echo $mfile| sed 's/libgtk-x11-\([0-9]*\).0.so.0.\([0-9]\)00.\([0-9]*\)\|\(.*\)/\1\2\3/g'
    + echo $mfile| sed 's/libgtk-x11-\([0-9]*\)\.0\.so\.0\.\([0-9]*\)00\.\([0-9]*\)/\1.\2.\3/'
    return 0
    fi
    @@ -455,16 +455,25 @@ check_gtk_ver_and_set_lib_path()
    continue
    fi
    - len_version=`expr length $version`
    - base_version=`expr substr "${base_version}0000000000" 1 $len_version`
    - len_base_version=`expr length $base_version`
    - while [ $len_version -gt $len_base_version ]; do
    - base_version=`expr substr "${base_version}0000000000" 1 $len_version`
    - len_base_version=`expr length $base_version`
    + ok=true
    +
    + while [ -n "$base_version" ]
    + do
    + base_subversion=`echo $base_version | sed 's/\..*$//'`
    + subversion=`echo $version | sed 's/\..*$//'`
    + if [ $subversion -lt $base_subversion ]
    + then
    + ok=
    + break
    + elif [ $subversion -gt $base_subversion ]
    + then
    + break
    + fi
    + base_version=`echo $base_version | sed 's/^[0-9]*\.*//'`
    + version=`echo $version | sed 's/^[0-9]*\.*//'`
    done
    - if [ $version -ge $base_version ]; then
    + if [ -n "$ok" ]; then
    export LD_LIBRARY_PATH="$idir":"$LD_LIBRARY_PATH"
    IFS="$OLD_IFS"
    OLD_IFS=""
    @@ -640,7 +649,7 @@ fi
    # Check the version of gtk and update the LD_LIBRARY_PATH if required.
    if [ "`uname -s`" = "Linux" ]; then
    - MIN_GTK_VERSION="240"
    + MIN_GTK_VERSION="2.4.0"
    check_gtk_ver_and_set_lib_path "$MIN_GTK_VERSION" ### returns 0 if found gtk >= 2.4
    fi

  • Why does my MacBook stop working when I tr to plug in my iPad to do some file syncing?

    Why does my MacBook stop working when I try to plug in my iPad to do some file syncing? This is the second time I have had it happen to my MacBook. The computer just shuts down and cannot be restarted. When I plug it into the charger I get a faint Green light where it plugs into the MacBook. When I took the computer into my local Mac store last time this happened (Nov 2012) they reckoned they couldn't find anything wrong with it. Has any body else encountered a similar issue?

    That would be a filter, yes. Didn't know Verizon handed out phone/DSL wall split filters. I would honestly take a look at the physical jack it is connected to for corrosion or lose connections as I doubt the filter is bad out of the box. Anyways, what was the original problem you had with the Phone and DSL that prompted Verizon to send out a filter?
    ========
    The first to bring me 1Gbps Fiber for $30/m wins!

  • Stop working when converting media type

    I can't convert my music using itunes, it will just stopped working when I try to do so
    Please teach me what should I do.
    [email protected]

    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    Please report back soon.

  • Premiere pro 5.5 stops working when playing a sequence, saving a project or closing,any ideas why?

    I can open a project, import files or other projects, but when I want to play the sequence the program stops working and closes. When I try to save the project or close the program I get a "software not responding" message.
    I hope someone can help me with this as I cannot work on any projects.
    thanks.

    Hi john,
    thanks for taking the time to help me. I have updated the software and rendered the files and now I am able to play them, but still neither the sequence nor the clip play/show on the corresponding screens, I can only hear the audio file. I also continue having problems when saving the project, the software stops working and I get the "non responding" error from microsoft.
    As you suggested, and I have to say I am pretty much a dummy with the codecs and alike, I installed the mediainfo and run one of the files.
    This is the info that appears on the screen
    I am not getting any error messages from Premiere, so I am kind of stock. If you need other info let me know.
    Thanks for your help and patience.
    Arantza
    Date: Mon, 23 Apr 2012 09:12:15 -0600
    From: [email protected]
    To: [email protected]
    Subject: premiere pro 5.5 stops working when playing a sequence, saving a project or closing,any ideas why?
        Re: premiere pro 5.5 stops working when playing a sequence, saving a project or closing,any ideas why?
        created by John T Smith in Premiere Pro CS5, CS5.5, & CS6 - View the full discussion
    Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037What is a CODEC... a Primer http://forums.adobe.com/thread/546811What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037.Report back with the codec details of your file, use the programs below... a screen shot works well to SHOW people what you are doing.For PC http://www.headbands.com/gspot/ or http://mediainfo.sourceforge.net/enFor Mac http://mediainspector.massanti.com/.http://blogs.adobe.com/premiereprotraining/2011/02/red -yellow-and-gree n-render-bars.html.If you have a red line over the timeline after importing a video and before adding any effects... your project is wrong for your video... read above about codecs.Once you know exactly what it is you are editing, report back with that information... and your project setting, and if there is a red line above the video in the timeline, which indicates a mismatch between video and project.H.264 will NOT work inside an AVI http://forums.adobe.com/thread/854115.More information needed for someone to help... click these links and provided the requested information-http://forums.adobe.com/message/4200840-http://forums.adobe.com/thread/416679.For CS5 and later, the easy way to insure that your video and your project matchSee 2nd post for picture of NEW ITEM process http://forums.adobe.com/thread/872666
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4354727#4354727
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4354727#4354727. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Premiere Pro CS5, CS5.5, & CS6 by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • When I am listening to music whether through pandora  or the music ap it stops working when I bring up safari. It worked before I updated, is there a solution in fixing this?

    When I am listening to music whether through pandora  or the music ap it stops working when I bring up safari. It worked before I updated, is there a solution in fixing this?

    Reboot your iPad and see if that helps.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • TS1398 my wi-fi stops working when I am in my office...I get an SSL interruption or similar?

    my wi-fi stops working when I am in my office...I get an SSL interruption or similar?

    1. Close all apps in the Task Bar. Double-click the Home button and hold apps down for a second or two. Tap the minus sign to close app.
    2. Hold the Sleep and Home button down until you see the Apple Logo.

  • Hi Team, Showing Yellow icons after every 15 to 20 Min and internet stop working.when we enable- disbale the network connection then will internet start working fine.Some time network connection is disable but when we renable that connection it will st

    Hi Team,
    Showing Yellow icons after every 15 to 20 Min and internet stop working.when we enable- disbale the network connection then will internet start working fine.Some time network connection is disable but when we renable that connection it will stuck on enabling
    and will not renable till i am not restart that machine. I have 350 Machine in network but facing this issue in 25 machines. Kindly help me on this issue .
    Regards
    Sahil bhateja

    Hi,
    So switch a LAN card fix this issue...seems a compatibility issue or maybe some packs or programs you installed recently cause this issue.
    Have you manually check the network adapter driver from the PC's manufacture website? sometimes, it will be a time delay before Microsoft push out the driver update.
    Check if issue exists in safemode with network, this mode will launch Windows with limited sets of files and drivers. 
    if you have a restore point, restore the pc to a previous point at which the pc is functioning fine.
    Yolanda Zhu
    TechNet Community Support

  • AirPlay mirror on Apple TV stops working when a Skype or Google conversation is started (iOS 7)

    I thought it would be nice to see Skype contacts on the large screen and realised this should be possible using my Apple TV, but AirPlay (in mirror mode) on Apple TV stops working when a Skype or Google + conversation is started after showing all right on the TV till that point. I'm using iOS 7 and the problem occurs on my iPad 2 and iPhone 5. Facetime seems to be OK, and Skype works over Apple TV when using my daughter's MacBook Pro (though I haven't tried Google + on it), so I deduce that the issue is with iOS 7. I have had success one or twice with using Skype in this manner on my iPhone so it is not consistant, but this is rare and hasn't happened in my latest attempts. Unfortunately some of my Skype contacts don't have an Apple device so I often can't use Facetime.
    Is there a work around, or has Apple acknowledged this issue and said there will be a fix?

    Same problem here.
    iPhone 5s + apple TV + Skype all are up to date. Mirroring is working until the video signal starts, after that the Apple TV goes back to the Apple TV starting screen.

  • Can anyone tell me why my collusion .27 add-on stopped working when I updated to firefox 20 (and now 21?).

    Can anyone tell me why my collusion .27 add-on stopped working when I updated to firefox 20 (and now 21?). I've tried removing and reinstalling to no avail. I even deleted my profile files and had firefox repopulate those automatically to no avail. And it's not the only add-on to have stopped working.

    see here
    *https://support.mozilla.org/en-US/kb/re-enable-add-ons-disabled-when-updating
    Addons are enabled or disabled?

Maybe you are looking for