Fox news slideshows are not working in Vista Home 64 bit.

All fox news slideshows are not working since firefox 3.6 started. I can't get them to work in Internet explorer either.
== URL of affected sites ==
http://

Error: $.ad is undefined
Source File: http://www.foxnews.com/static/all/js/slideshows-pack.js
Line: 850
// Slideshows - updated: 04/30/2010
// Dependencies: jQuery, jfoxCarousel plugin
(function($){
function SlideShows() {
this._data = {}; // slideshow data
this._info = {}; // current slideshow info
this._relatedMedia = {}; // related media data
this._trackData = false;
this.initialized = false;
this.toolTipId = "carousel-tooltip";
this.defaultTrackFrequency = 1; // tracker trigger
this._preloaderSrc = "/static/all/img/slideshow/slideshow-preloader.gif";
this._timer = { // timers
main: { fadeIn:800 },
carousel: { fadeIn:300 },
overlay: { onLast:10000,fadeIn:300,fadeOut:300 }
this.currentFocus = 1; // current item in focus
this.holderObj = {}; // holder for elements
this.hashObj = {}; // hash location holder
this.imgPreloadObj = {}; // holder for preloaded images
// carousel object controllers
this.carouselControlObj = {};
this.overlayControlObj = {};
this.trigger = { // listeners
main: false,
carousel: false,
overlay: false
this.overlayTimeout = false; // overlay timeout holder
SlideShows.prototype = {
init: function(config) {
for (i in config) { this['_'+i] = config[i]; }
this.main.root = this.carousel.root = this.overlay.root = this;
this.hashObj = this.helper.getHash();
if (typeof $.fn.jfoxCarousel<u>'undefined') {
showToConsole("[init] Error: carousel plugin not found!");
if (this._trackData) { // set tracking data
sTracker.set(this._trackData);
sTracker.track("pageLoad"); // page load tracker
this.preload();
this.setHolders();
this.initialized = true;
preload: function() {
var preloadImg = new Image();
preloadImg.src = this.preloadSrc;
setHolders: function() {
var SH = this;
var slideshowElm = $("#slideshow");
this.holderObj = {
doc: $(document),
body: $("body"),
intro: $("#section-intro"),
main: slideshowElm.find("#main-img"),
mainHolder: slideshowElm.find(".slideshow-placeholder"),
mainControl: slideshowElm.find(".slideshow-controller"),
description: slideshowElm.find(".slideshow-desc"),
relatedMedia: slideshowElm.find(".slideshow-related"),
carousel: slideshowElm.find(".slideshow-feature .slideshow")
this.holderObj.intro.each(function(){
var intro = $(this);
intro.find("h1:first").html(SH._info.title);
intro.find("p:first").html(SH._info.dek);
if (this.holderObj.main.size()>0) {
this.main.properties.minHeight = this.holderObj.mainHolder.innerHeight(); // get set height as "min-height"
this.main.build();
if (this.holderObj.carousel.size()>0) {
this.carousel.build();
$(document).ready(function(){ // wait for page load for the overlay
SH.holderObj.overlay = $("#slideshow-overlay");
var set = (SH.holderObj.overlay.size()>0) ? (typeof $.fn.jfoxCarousel!=='undefined') ? SH.overlay.set() : false : false;
SH.setDocReadyListeners();
this.setListeners();
setListeners: function() {
var SH = this;
var control = this.holderObj.mainControl;
// main image controls
control.find(".prev").click(function(){
SH.main.prev();
return false;
control.find(".next").click(function(){
SH.main.next();
return false;
if (typeof touchEventListener!=="undefined") {
var listenerConfig = {
elm: SH.holderObj.mainHolder,
moveSensitivity: 15,
eventsCallback: {
touchmoveMoveOnce: function(direction,moveProperties,rawEvent) {
// move callback - sensitivity
var directions = direction.join("|");
if (directions.indexOf("left")>-1) {
control.find(".next").trigger("click");
if (directions.indexOf("right")>-1) {
control.find(".prev").trigger("click");
touchEventListener.append(listenerConfig);
setDocReadyListeners: function() {
var SH = this;
// browse slideshow overlay
$(document).ready(function(){
$("#section-intro .additional-slides a").click(function() {
SH.overlay.show();
return false;
SH.holderObj.overlay.find(".close a").click(function(){
SH.overlay.hide();
return false;
replaySlideshow: function() {
var SH = this;
//TODO: build replay
this.overlay.hide(); // hide overlay
this.main.build(this.currentFocus = 1); // reset focus
sTracker.track("replaySlideshow");
// main image holder
SlideShows.prototype.main = {
properties: {},
build: function(slide,origin) {
var SH = this;
var root = this.root;
if (root.trigger.main) { return false; }
root.trigger.main = true;
slide = slide || false;
origin = origin || "main";
var control = root.holderObj.mainControl;
var data = root._data;
var initData = false;
var desc = [];
var helper = root.helper;
if (slide) {
if (slide 0) { desc.push('Source: ' + data.items[slide].source + ''); }
root.holderObj.description.html(desc.join(""));
// load related media
if (root._relatedMedia.items) {
var rmItems = root._relatedMedia.items;
if (rmItems.length>0) {
var rel = [];
rel.push('Related Articles');
for (var x=0; x 0) {
root.currentFocus--;
SH.build(root.currentFocus);
sTracker.track("clickPrevMain"); // tracker
if (!SH.isLast() && root.overlayTimeout) { clearTimeout(root.overlayTimeout); } // clear overlay timeout
isLast: function() {
var root = this.root;
return (root.currentFocus+1 > root._data.items.length) ? true : false;
// carousel
SlideShows.prototype.carousel = {
build: function() {
var SH = this;
var root = this.root;
var carousel = root.holderObj.carousel;
var data = root._data;
var list = [];
for (var x=0;x 0) {
var li = $(".slideshow > ul",carousel).children();
li.each(function(i){
var el = $(this);
var setClass = (i == eventObj.target-1) ? el.addClass("active") : el.removeClass("active");
controlsCallback: function(control) { // callback to set up controls
root.carouselControlObj = control;
carousel.find(".prev").click(function(){ // previous link
control.stopAutoScroll();
control.slide('prev');
sTracker.track("clickPrevCarousel"); // tracker
return false;
carousel.find(".next").click(function(){ // next link
// show overlay on last carousel link
//var lastLink = (!currentEventObj) ? false : (currentEventObj.batch.current+1 > currentEventObj.batch.max) ? $(document).ready(function(){ root.overlay.show(false,true); }) : false;
control.stopAutoScroll();
control.slide('next');
sTracker.track("clickNextCarousel"); // tracker
return false;
carousel.jfoxCarousel(config);
if (typeof touchEventListener!=="undefined") {
var listenerConfig = {
elm: carousel,
moveSensitivity: 15,
eventsCallback: {
touchmoveMoveOnce: function(direction,moveProperties,rawEvent) {
// move callback - sensitivity
var directions = direction.join("|");
if (directions.indexOf("left")>-1) {
carousel.find(".next").click();
if (directions.indexOf("right")>-1) {
carousel.find(".prev").click();
touchEventListener.append(listenerConfig);
// overlay
SlideShows.prototype.overlay = {
set: function() {
var root = this.root;
var overlay = root.holderObj.overlay;
overlay.find(".slideshow-feature").each(function(){
var carousel = $(this);
var allItems = carousel.find(".slideshow ul").children().children();
allItems.each(function(){
var div = $(this);
var link = div.find("a:first").attr("href");
div.hover(function(){
div.css("cursor","pointer");
},function(){
div.css("cursor","");
}).unbind("click").click(function(){
window.location.replace(window.location.hostname + link);
var config = {
auto: { set:false,speed:3000 }, // auto scroll
slide: "horizontal", // horizontal or vertical
scroll: 3, // number of items to scroll per event
show: 3, // items shown
speed: "slow", // scroll speed
rotate: false, // rotate back to star if end
//focus: { item:0,animate:false }, // focus to target item on load
eventCallback: function(eventObj) {
if (eventObj.batch.current</u>1) {
carousel.find(".prev").addClass("inactive");
} else {
carousel.find(".prev").removeClass("inactive");
if (eventObj.batch.current<u>eventObj.batch.max) {
carousel.find(".next").addClass("inactive");
} else {
carousel.find(".next").removeClass("inactive");
controlsCallback: function(control) { // callback to set up controls
root.overlayControlObj = control;
carousel.find(".prev").click(function(){ // previous link
control.stopAutoScroll();
control.slide('prev');
sTracker.track("clickPrevOverlay"); // tracker
return false;
carousel.find(".next").click(function(){ // next link
control.stopAutoScroll();
control.slide('next');
sTracker.track("clickNextOverlay"); // tracker
return false;
carousel.jfoxCarousel(config);
if (typeof touchEventListener!=="undefined") {
var listenerConfig = {
elm: carousel,
moveSensitivity: 15,
eventsCallback: {
touchmoveMoveOnce: function(direction,moveProperties,rawEvent) {
// move callback - sensitivity
var directions = direction.join("|");
if (directions.indexOf("left")>-1) {
carousel.find(".next").click();
if (directions.indexOf("right")>-1) {
carousel.find(".prev").click();
touchEventListener.append(listenerConfig);
show: function(delay,isReplay) {
isReplay = isReplay || false;
delay = delay || false;
var root = this.root;
if (root.trigger.overlay) { return false; } // if already open
var SH = this;
delay = (isNaN(delay)) ? 0 : delay; // delayed show
root.overlayTimeout = setTimeout(function(){
SH.setReplay(isReplay);
if (root.main.isLast()) {
root.holderObj.overlay.fadeIn(root._timer.overlay.fadeIn,function(){ root.trigger.overlay = true; });
sTracker.track("showOverlay"); // tracker
else {
root.holderObj.overlay.fadeIn(function(){ root.trigger.overlay = true; });
},delay);
hide: function(delay) {
delay = delay || false;
var root = this.root;
if (!root.trigger.overlay) { return false; } // if already closed
delay = (isNaN(delay)) ? 0 : delay; // delayed hide
setTimeout(function(){
root.holderObj.overlay.fadeOut(root._timer.overlay.fadeOut,function(){ root.trigger.overlay = false; });
sTracker.track("hideOverlay"); // tracker
},delay);
setReplay: function(isReplay) {
var root = this.root;
var overlay = root.holderObj.overlay;
var firstList = overlay.find(".slideshow-feature .slideshow ul").children().filter(":first");
var divs = firstList.children();
var replayDiv = divs.filter(":first");
var cloneDiv = replayDiv.next();
function configInfo(elm) {
var currentSS = root._data.items;
var info = root._info;
var count = currentSS.length;
var first = currentSS[0];
var slideshowTitle = (info.title.length > 16) ? info.title.substring(0,16) + "..." : info.title;
var slideshowImg = first.media.tm;
var slideshowDate = info.title.date;
function replay() {
root.replaySlideshow();
var items = elm.children();
items.filter("p.photo-count").html(count + " image" + [[count>1) ? "s" : ""]];
items.filter("p.date").html(slideshowDate);
items.filter("p.photo").each(function(){
var item = $(this);
item.find("a").attr({ href: "#", title: slideshowTitle });
item.find("img").attr({ alt: slideshowTitle, src: slideshowImg });
items.filter("h4").each(function(){
var item = $(this);
item.find("a").attr("href","#").html(slideshowTitle);
items.find("a").unbind("click").click(function(){
replay();
return false;
elm.hover(function(){
elm.css("cursor","pointer");
},function(){
elm.css("cursor","");
}).unbind("click").click(function(){
replay();
return false;
if (replayDiv.children().size()</u>0) {
replayDiv.html(cloneDiv.html());
configInfo(replayDiv);
if (isReplay) {
replayDiv.addClass("active").show();
cloneDiv.hide();
} else {
replayDiv.hide();
cloneDiv.show();
SlideShows.prototype.helper = {
toNum: function(item) {
item = (isNaN(item)) ? parseInt(item.replace(/[a-zA-z]/gi,""),10) : item;
return isNaN(item)?0:item;
imgLoad: function(obj,fn) {
var SH = this;
obj.alt = obj.alt || "";
if (obj.preload && !$.browser.opera) { // opera =/= img.onload
if (obj.mainHolder) { obj.mainHolder.css({ background:"url("+obj.preloaderSrc+") no-repeat center" }); }
var img = new Image();
obj.holder.css({ display:"inline", opacity:"0" });
img.onload = function() {
if (obj.outer) {
if (img.height > SH.toNum(obj.outer.minHeight)) { obj.outer.holder.css("height","auto"); }
else { obj.outer.holder.css("height",obj.outer.minHeight); }
obj.holder.attr("src",obj.src).animate({ opacity:"1"},obj.speed,"linear",function(){
if (obj.mainHolder) { obj.mainHolder.css({ backgroundImage:"none" }); }
$(this).attr("alt",obj.alt);
fn();
img.src = obj.src;
} else {
if (obj.mainHolder) { obj.mainHolder.css({ backgroundImage:"none" }); }
obj.holder.css({ display:"inline", opacity:"0" });
obj.holder.attr({
src: obj.src,
alt: obj.alt
}).animate({ opacity:"1"},obj.speed,"linear",function(){ fn(); });
getHash: function() {
var hash = (window.location.hash).substr(1);
if (hash) {
var pairs = hash.split('&');
var valuePair = {};
for (var x=0;x 1 && callback && count%freq<u>0) {
callback(data);
var sTracker = new Trackers(); // private
function showToConsole(str) {
if (typeof window.console</u>'object') { console.log(str); }
var slideShowsPack = window.slideShowsPack = new SlideShows();
})(jQuery);
// Tracking Data Here
var trackData = {
ads: {
buildSlide: {
frequency: 1,
callback: function() {
$(document).ready(function(){
if (typeof $.ad.dc.load!=="undefined") {
$.ad.dc.load();
omni: {
buildSlide: {
frequency: 1,
callback: function(data) {
data = data || false;
if (!data) { return false; }
if (!data.slideNumber) { return false; }
if (typeof $.ad.omni.load!=="undefined") {
$.ad.omni.load({ "slide": data.slideNumber });
var initializeSlideShow = window.initializeSlideshow = function() {
if (typeof slideshowData!=="undefined") {
if (!slideShowsPack.initialized) {
slideShowsPack.init({
data: slideshowData,
info: slideshowInfo,
relatedMedia: relatedsData,
trackData: trackData
} else {
if (typeof window.console==='object') { console.log("[error] No Data found for: slideshowData"); }
This the line highlighted:
if (typeof $.ad.dc.load!=="undefined") {

Similar Messages

  • All of my apps on my new ipad2 are not working. I had this iPad about 4 months and nothing bad has happened before this. I need help on how to make my apps stop crashing. All my built in apps are fine though.

    All of my apps on my new ipad2 are not working. I had this iPad about 4 months and nothing bad has happened before this. I need help on how to make my apps stop crashing. All my built in apps are fine though. WHATBCAN I DO TO MAKE MY APPS STOP CRASHING. I ALREADY TURNED IT OFF THEN ON AGAIN AN IT STILL CRASHES. HELPPP!!!!

    Try a reset. Hold the Sleep and Home button down for about 10 seconds until you see the Apple logo. Ignore the red slider.

  • Itunes not working with Vista Home Premium 32-bit

    Itumes 10.6.3 version will not work with Vista Home Premium. I have a 32-bit operating system. I'm not sure what to do next. It appears in trying to update it deleted the old itumes, as I can't find a copy of it when I search the computer.

    Then I installed Quicktime on its own - still get the same error 'Quicktime has stopped working;
    Okay. That will be the source of the iTunes problem. (Without a properly working QuickTime, iTunes won't work correctly.)
    Checking on things that can cause QuickTime launch errors now.
    Have you at any stage installed any Codec Packs, any copies of the programs QT Alternative, QT Lite or Storm Codec, or any media converter programs that can convert files into QuickTime readable formats?
    (I'm checking on these things because depending on the versions of the programs/codec-packs, these can install earlier versions of QuickTime componentry on a PC, which can interfere with the running of a higher version of QuickTime.)

  • X-Fi Audio - Subwoofer NOT working in Vista 32-bit Ultimate!

    <X-Fi Audio - Subwoofer NOT working in Vista 32-bit Ultimate!I I have WIndows Vista 32-bit Ultimate and Sound Blaster X-Fi Audio installed and with the factory drivers (I tried another set earlier and they did not work, so I reinstalled the original drivers which worked, at least partially). Until now I only listened to music using my headphones, but I tried today to plug-in my 5. Genius system (50W RMS) and everything works fine EXCEPT the subwoofer does not produce any sound at all!! The ONLY way to make it work is go to Control Panel -> Sound -> Speakers -> press Configure and then click the Test button in the dialog that appears (or click the subwoofer icon to make it produce a very nice bass sound - which I absolutely love, but it's the only way to make my subwoofer work!!!). Please guys, help me find out what the problem is. All help is much appreciated. Thank you!

    cipriansk7 wrote:
    Thank you my friend,I have done as you have mentioned (made sure the DLL did not stay there when I rebooted before I installed your version), and now I have the version which you have built. However, I am still unable to hear the subwoofer I am so sad... even my default on-board card supports the 5. just great, and I love the sound of that, but I was hoping for something better from Creative - instead, all I got was a soundcard I can only use with my headphones at the moment because of a faulty driver...
    Did you enable Bass Redirection?
    Run Console Launcher, click on Speakers and Headphone -> choose 5. Speakers.
    Then click on Bass (Bass Management) and enable Bass Redirection.

  • Photo Booth new effects are not working on Lion

    The new face-tracking effects for Photo Booth are not working for some reason. They just look like there's no effect for them. I've tried rebooting my iMac and I know my mac can support Lion because everything else works fine. Is ther any way i could fix this? Maybe uninstall then reinstall Photo Booth? I was really excited for this feture and im so dissapointed that it's not working

    In my case, IMac OS 10.7 Lion, I can't use Photo booth which it said "Check with the developer to make sue Photo Booth works with this version of Mac OS X. You may need to reinstll the application. Be sure to install any available updates for the application and Mac OS X."
    Should I reinstall the program?

  • LInks in Flash CC after automatic transition to new scene are not working

    I have a flash file containing three scenes- Scene1, Scene2 and Scene3. In Frame1 I have a loading screen animated with motion tween. I also include a function, which automatically transfer me to Scene2 after 10 sec. However after I go to Scene2 the buttons to go to Scene3 are not working. I've tried to remove Frame1 and then the buttons that are linking Scene2 and Scene3 are working, Do you have an idea where the problem might come from? Here is my code:
    var loadNumber = 0;  stop();  loadingPercents.text = loadNumber.toString() + "%";   /* Countdown Timer Counts down from a specified number of seconds.  Instructions: 1. To change the length of the countdown, change the value 10 in the first line below to the number of seconds you want. */  var fl_SecondsToCountDown:Number = 10;  var fl_CountDownTimerInstance:Timer = new Timer(1000, fl_SecondsToCountDown); fl_CountDownTimerInstance.addEventListener(TimerEvent.TIMER, fl_CountDownTimerHandler); fl_CountDownTimerInstance.start();  function fl_CountDownTimerHandler(event:TimerEvent):void { trace(fl_SecondsToCountDown + " seconds"); fl_SecondsToCountDown--; loadNumber +=10; loadingPercents.text = loadNumber.toString() + "%";  }    stage.addEventListener(Event.ENTER_FRAME, fl_EnterFrameHandler);  function fl_EnterFrameHandler(event:Event):void { if (loadNumber > 99) {  gotoAndPlay(1,"Frame2"); } }
    and for scene3:
    import fl.motion.MotionEvent;  stop();   BackFromPrizes.addEventListener(MouseEvent.MOUSE_UP, goBackFromScene3);  function goBackFromScene3(event: MouseEvent): void {  gotoAndStop(1, "Scene2");  }
    Thanks

    if the code you showed fails (and it's executing), you have no scene named "Scene2".
    btw, "Scene2" is not the same as "Scene 2" or "scene2 or "scene 2", which would all be common typos.

  • Internet Security Suite does not work with Vista 64 bit

    After attempting to use the Chat Help, twice, and spending hours in queue before getting kicked off, I finally called Support to find out why my new Vista computer was not running the Internet Security Suite that I downloaded.  Yes, I found the link to "download to a second computer" and went thru all the steps.  Got lots of positive feedback: little bars were filling in letting me know I was 40%, 72%, 100% done, etc..  Was given a window allowing me to Run or Don't Run the software.  It all seemed to go very well.  However, when the "download and installation" was complete, there was no new software running anywhere on my computer.  Couldn't find it in the Control Panel, the Start menu, or the system tray.  Called Support and spent at least 30 minutes on the phone with a "technician" (and I use that term VERY loosely) who had to have major assistance from a co-worker before he could even start screen-sharing with me and, during the course of our time together, made the following brilliant remarks:
    Upon seeing my desktop wallpaper (which is a lovely photo of some cliffs and a lake - and it came with Vista), he wanted to know what the picture was.  Not where it was taken, but just what it was.  His exact comment was "Does your screen always look like that?".  I had to dig deeper to determine if he was asking about a particular icon or some other computer related concern that he saw (he was "technical support", after all), but he was just asking about the stupid photo.
    He couldn't find the Control Panel in the Start Menu until after trying several times, and then he couldn't navigate to the Programs area very well (I had to give verbal hints as to where it was), and his brilliant comment then was "I really need to go to my mom's house and get on her new laptop and try out Vista."  Can you believe that Verizon has technical support folks who have never used Vista?  It's not like Vista just came on the market yesterday!!
    So, when he finally decided that he was not going to be able to help me, he didn't offer me any other recourse.  He just stated over and over that he was not sure how to solve this issue.  Oh, and this was after I re-downloaded ISS (again, "successfully").  I had to ask if there was someone else there who could possibly help me.  He offered to put me on hold (for the 2nd or 3rd time at this point) to check around.  When he returned to the phone, it was obvious that someone else was operating the mouse in the screen sharing mode because the operator moved confidentially around the screen and went immediately to system properties and saw that I am running Windows 64 bit.  The other operator then told my guy to tell me that ISS only works with Windows 32 bit.  Their final resolution was that I should call billing on Monday and end my subscription.  I think that may be the only good advice I was given that day.
    So, am probably going to renew my trial version of Norton on this new computer and remove ISS from the laptop and put Norton on there as well.  Apparently, they are up to date with this fancy new technology.  At least they probably know about sophisticated and highly technical stuff like desktop wallpaper.

    I have been trying to get somewhere with this Internet Security Suite...and now have come to the conclusion this is not going to work.  Now running Vista 64 bit, and have gotten nothing but the run around to try to complete the downloading of the program.  I've contacted Verizon Tech Support...then tell me that this works with the 64 bit but I need to contact Windows as there is a glitch and they give you the steps to get thru it.  Windows advises me to contact Verizon again as there are no problems with the OS.  Also have contacted Radialpoint and once again nothing...Obviously the Secuirty is not compatible with Vista 64 bit yet, which I just can't believe like you said...it's not like it was just yesterday this OS came out.  My frusteration comes from nobody steps up to take any responsibility as to what the problem is.  If it is not compatible yet then say so and not waste my whole weekend trying to get a straight answer.  I have other computers that I am currently using the service on and do like the program, but as for my Vista 64 bit looks like I may go to Macafee for protection.  It just amazes me as big as Verizon is and as popular this Vista has become they are not on the ball in keeping up with technology.

  • Power Manager 4.42 Not Working T61p Vista 64-bit

    ThinkVantage Power Manager is not working on my machine.  I first noticed this after System Update added several new ThinkVantage programs, including PM version 4.41a several weeks ago, but I can't point with any certainty a specific cause or beginning to the problem. 
    PM now stops working every time during initial (power-on) machine boot-up showing message: "Power Manager Stopped Working".  This seems to happen whenver it is installed by system update.  When I have tried installing PM manually, it simply refuses to install, giving a short message saying it cannot run on my system.  Earlier versions ran OK before.  Microsoft Problem Reports and Solutions is of course clueless about this (and most other crashes).
    I have tried uninstalling, rebooting, and reinstalling both PM and the latest PM driver in several different sequences, but nothing seems to work.  I was hopeful that a recent upgrade to PM version 4.42 (via System Update) might solve the problem, but same thing happens and manually installation still doesn't work.  I also uninstalling Access Connections (which has given me other problems), rebooted, and tried loading both PM and PM Driver, but with the same results.  Something funny going on...
    I have ThinkPad 61p (6459-CTO) with 4GB RAM, running Vista Ultimate 64-bit with NIS 2009.  I have installed the most recent BIOS and have other up-to-date Lenovo software via System Update. 
    Any suggestions?
    Thanks

    I have tried several more things, including upgrading to Visual C++ 2008 in an attempt to get my system to install TV Power Manager 4.42 (or earlier versions).  I still get the same message when I attempt to install manually: "cannot run on this system". Same thing happens when trying to load an older version 4.20a that I found through the forum.
    I have been successful in loading the version that came pre-installed on my computer (found in SWTools folder), and that seems to work, though with very basic functionality.  It appears to be Version 2.11.
    I would really like to find a way to install a newer version (preferably 4.42), as it seems this is needed to run later versions of other TV software.  I have T61p (6459-CTO) running Vista Ultimate 64-bit, and the BIOS and drivers are all up to date, as per Lenovo site.
    Thanks for any advice.

  • Firefox 15.0.1 not working on Vista 32-bit nor Windows XP after update. Server Not Found error.

    I recently updated to Firefox 15.0.1 on 2 separate PCs. One PC is Windows Vista 32-bit with Comodo Internet Security. Other PC is Windows XP with Avast. Previous version of Firefox was operating fine on both before update. I have exhausted all suggestions from this site to get the new update to work but it does not.
    On Vista PC, Chrome and IceDragon also have the same server error but IE works. And I've followed all the suggestions to allow access. I've uninstalled and reinstalled. Changed to no proxy. Tried the network.dns... changes and nothing.
    Has Microsoft banned every other browser from operating with their systems via a recent update? I'm wondering if this is not the case since everything was fine prior to this.
    I also have a Mac that uses Firefox 15.0.1 just fine since the update so this is exclusively a PC issue.
    Windows Firewall and Defender are deactivated. Thanks for any insight you can share.

    Does deactivating Comodo Internet Security or the other security software help anything? It might be that your security software is blocking Firefox from accessing the internet.
    --Tobbi

  • ITunes v7.6 still NOT working w/Vista 64-bit

    I believe it's not working because AppleMobileDeviceSupport.msi WON'T install.
    It gives me a "The installer encountered errors before Apple Mobile Device Support could be configured." error.
    Is there ANY WAY around this at all?
    Also I've installed & uninstalled iTunes v7.6 multiple times now, rebooting between installs also but still no luck.
    I've also extracted the 6 installation files out of iTunesSetup.exe and I'm trying to get AppleMobileDeviceSupport.msi to install, but it just won't install.
    When I start the iTunesSetup.exe package and finish installation, iTunes Setup Assistant also gives me a warning that says "iTunes was not properly installed. If you wish to import or burn CDs, you need to reinstall iTunes."
    And under Event Viewer I see this "Windows Installer installed the product. Product Name: Apple Mobile Device Support. Product Version: 1.1.3.26. Product Language: 1033. Installation success or error status: 1603."
    Help please! I would really like for iTunes to work with my iPhone!

    Well at least up and til today, there never was a solution to activate or even synch Vista 64 bit OS, iTunes, and the iPhone - for anyone, anywhere - period. Not unless you used some VMware solution (which I've heard mixed results on).
    This new version of iTunes (7.6) did today for the first time, correct the ability to burn CDs from my collection of music in iTunes. Before this version it wasn't possible.
    My Mobile Device Support program did update and install correctly today along with the other apps that got updated. So now I wonder if it is truly possible to activate and synch with an iPhone?!? Anyone try this yet?
    Cyanide regarding your install, I had to go through something similar back in one of the earliest versions designed for Vista 64bit OS. The trick is not only uninstalling, but removing all references in the registries, left over file folders, etc. after uninstall. Then begin a clean install.
    BUT, it's entirely possible that the iPhone still is still not capable of syncing with Vista 64 bit.
    If you think you've had this ability before, than I'm 99.9% sure you only have Vista 32 bit OS.
    Reference this thread for more info - towards the bottom...
    http://discussions.apple.com/thread.jspa?threadID=1319119

  • Flash Player not working on Vista 64 Bit

    I too am having extreme difficulty w/ installing the new flash player.  At first I didn't know I had too.  Two days ago I was watching a show on YouTube, and last night it said I needed to install the latest version.
    Windows Vista Home Edition 64 Bit
    Preferred browser Mozilla Foxfire / secondary browser Internet Explorer
    I did all the uninstalls and removed files from the download directory.
    I followed all instructions making sure I chose the appropriate download version for 64 bit.
    Below is what I chose:
    Adobe Flash Player 11.8.800.94 (16.9 MB)
    Your system: Windows 64-bit , English, Firefox
    Do you have a different operating system or browser?
    I downloaded, saved and ran it.  Made sure all Firefox windows were closed including weather network.  Then it stated 'installation complete'.
    I went to YouTube and then it said I had to install the Flash Player.  I did this too.  Still, nothing worked.  I am somehow being forced to upgrade a perfectly good computer?
    I hope this can be resolved.  I read through everyones comments, tried them all and still nothing.
    Donna
    Message was edited by: Itneverworks
    Surprise to me!!! It worked!!!
    I decided to try for the 87th time and it finally worked.  What I did was (incase someone else wants to try this) well, it worked for me ... thought I did this before ...
    Uninstalled all flash players
    Deleted all flash players from download directory
    Deleted deleted items from garbage bin (you never know)
    Re-started the PC
    Went to YouTube and it prompted me to install a Flash Player - did this and guess what ... it worked!  Only 5 hours in ...
    Now, if I can just figure out how to properly use my new sewing machine hem foot and try to finish measuring (after 8 times) the duvet I am sewing then I will be well on my way!
    They say it comes in three's.  Had mine.  Done !
    Good luck everyone!
    Donna

    @silkstocking47
    The following information would be useful:
    - A direct link to the video / videos where you encountered the crash
    - Your Operating System and Version
    - Your Browser and Version
    - The Version of Flash Player (right-click on Flash content, look in the context menu)
    Do you see the crash in only your preferred browser, or all browsers.  (The Flash Player for Firefox/Safari/Opera, Chrome and Internet Explorer are all significantly different.  Isolating it to one or more browsers is useful in understanding the root cause.)
    Have you tried the video troubleshooting guide?  If so, please detail the steps you took and the results you saw.  This is extremely useful in isolating a root-cause.
    Video playback issues
    If you're encountering the crash in Firefox, a direct link to the crash report would be extremely useful:
    In the address bar, type about:crashes
    You'll see a list of links with random letters and numbers
    Click the first link.  It will take you to a crash report page.  Hit back, and the link will change to start with bp- and a new set of letters and numbers.
    Right-click that link, and choose Copy Link Location.
    Paste it into a reply here.
    Repeat for the first few if you have multiple crashes.
    Thanks!

  • Air apps not working on Vista 64 bit since 1.5

    The Adobe Air 1.5 update went fine on my Vista 64 bit system,
    both apps (Thwirl and Spaz) worked fine. Then both apps released an
    update and they crash when attempting to update. Download manually
    the .air file and it can't find the software to open the file and
    will not install. Uninstall Air, reinstall Air. Go to Adobe's Air
    site and try to install any Air app, not a single one will install.
    Air shows up in Add/Remove Programs but now I cannot use a single
    Air application. Have installed (as administrator) and unstalled
    Air a few times, same result. The result I get when I try to
    install something from the Adobe site:
    "Something went wrong trying to install this application.
    Please install the latest version of Adobe Air"

    Unfortunately I can only generate a log for the Air install
    itself. Once Air 1.5 is installed and I try to install any Air
    Application, it fails immediately with the error message in my
    initial post. I created the .airappinstall.log following the
    procedures in kb403123 and echo was on when I went to the Thwirl
    site and clicked "Install Thwirl" and the error message comes up
    instantly and no data is added to .airappinstall.log. And when I
    download the .air file manually Windows cannot find Air at all to
    associate with the .air file. Here is the text from the fresh Air
    install I performed right before trying to install Thwirl (taken
    from the .airinstall.log file):
    Performing runtime install
    UI SWF load is complete
    UI initialized
    starting user confirmation
    Installation type: new
    starting elevated install
    subinstaller: starting install
    subinstaller: Scheduling runtime installation operations
    subinstaller: uninstall scheduled for 1.0.5, 1.0.4
    subinstaller: Installed Product GUID: is same:false
    subinstaller: Beginning runtime installation
    subinstaller: Beginning install
    subinstaller: Installing
    c:\users\brian\appdata\local\temp\air3489.tmp\setup.msi
    subinstaller: Execution complete; beginning commit phase
    subinstaller: Commit complete
    subinstaller: install complete
    subinstaller: begin quitting
    Elevated install completed
    begin quitting

  • Boot Camp Wifi Not Working; Windows Vista 32 Bit

    Hey, alright, I got this huge problem. I installed Windows Vista 32-Bit edition on Boot Camp 2.0. I installed the drivers on my Leopard CD. For some reason I can connect to the net on the Leopard side (which I am using right now) and I just can't get a connection on the Windows side. So remember I did install the drivers on the Leopard disc. Also, when I go to device support on Vista, the drivers have yellow triangles beside them. I tried to hook the ethernet cable up and it still won't have an internet connection. I do have the Macbook Pro Aluminum model (newest one) so can someone please help me and tell me what I am doing wrong? Maybe you can tell me a driver I can download to get this working? Thanks!

    Boot Camp will not support Vista on newer iMacs, you will need to upgrade to Windows 7. Also as an FYI there is a Boot Camp forum, you can locate it by clicking Apple Support Communities and then in the search field type Boot Camp.
    Best of luck,
    Roger

  • Safari 5.1 not working on Vista 64 bit?

    I recently downloaded safari 5.1 onto my windows vista 64 bit pc (never had safari before at all on this pc) and when I start it, all I get is a blank page. I tried typing in websites, still a blank page.
    I have no idea what to do, any help?

    I'm curious, are you also having trouble connecting to the iTumes store with iTunes 10.5?  I'm having the same Safari problem and also can't connect to the store.  Tons of people are having the store connection problem, but I haven't seen any others mention the connection issue wth Safari as well.
    As for me, I've tried everything on these forums so far and haven't found a good solution.
    Matt

  • CD drive not working in vista home edition! HELP!

    Hey,
    I'm running vista home ed. on my macbook pro. for some reason the disk drive stopped working. I've tried re-installing the drivers from my leopard disc but that isn't fixing the problem. any suggestions? Basically I'll put a cd/dvd in the drive and then nothing will happen. I won't even be able to eject the disc.
    this is the error that I get from the device manager:
    This device cannot start. (Code 10)
    Click 'Check for solutions' to send data about this device to Microsoft and to see if there is a solution available.
    thanks for your help

    anyone?

Maybe you are looking for

  • Error while starting resin 3.0.14  after installing coherence evaluation

    I am getting the following error... java.lang.SecurityException: The necessary license to perform the operation is not available; a license for "com.tangosol.run.xml.SimpleParser@e3 570c" is required. As I see the license file is in the tangosol.jar,

  • How to synchronize with Oracle 11 g

    Hi @ all, since a longer time I try to synchronize a Oracle Database Lite with Oracle 11 g over Mobile Server. But I still hadn't any success. I wanna use C# 3.5 and ADO.NET. Oracle Lite documentation is very bad, did not helped me. I cannot understa

  • Flex files in Non-Flex Project

    I use Eclipse for developing in Java. I have been trying out the Flex 3 (public beta) plugin for Eclipse. I can create a new Flex project and all of the Flex files compile and work correctly. But how do I add Flex files to an existing project (non Fl

  • Using Dynamic Visibility with Accordian Menu

    Hiya.  I am trying to use dynamic visibility with an accordian menu.  My menu categories are years, 2005 - 2010. My categories items are key performance indicators such as abandon percentage,  first call resolution, customer satisfaction percentage,

  • ALLOCATION LOGIC Issue

    Hi,      I have a scenario where I need to do allocation from one account to multiple accounts.  I have data for DEC.2009 for Account :017, Costcenter1  in ACTUAL(10,000) and I want to allocate the data to DEC.2010 to all accounts(015,016,017) to all