FtpConnection and palette window problem

I've tried to implement a progress bar for handling FtpConnection puts and gets.
My progress bar code works; I use it in PSCS2 and PSCS3 just fine. My ftp code
is also working in Bridge CS3: my progress bar and text is getting updated
correctly, the files are getting transferred, I am just locked out of doing
anything with it, like hit the cancel key.
I've tried doing this with ftp sync and async, I've pumping and not pumping.
Nothing I do will let the palette window acquire focus while FtpConnection is
doing a get or a put.
Has anybody got a progress bar/palette working with FtpConnection yet?
-X

Hi,
You can create a scheduled task and call pump() on the ftp object from within that, then use the ftp call back to update your progress bar. With the Asynch demo Bridge/dialog will lock because the main thread is sleeping and writing to the console inside the while loop.
Try the following, you will have to adjust the timings and what not to get exactly what you are after but this works. I 'quickly' tested with a 100mb zip file using Bridge/ESTK CS3 and plain old ftp server.
Make sure a selection is made in Bridge and then run the script from ESTK - hope it helps.
Cheers,
// Load the webaccess library
if( webaccesslib == undefined )
if( Folder.fs == "Windows" ) {
var pathToLib = Folder.startup.fsName + "/webaccesslib.dll";
} else {
var pathToLib = Folder.startup.fsName + "/webaccesslib.bundle";
// verify that the path is valid
var libfile = new File( pathToLib );
var webaccesslib = new ExternalObject("lib:" + pathToLib );
// Create the progress dialog
var win = new Window("palette", "FTP Dialog");
// Add a panel to contain the components
win.pnl = win.add("panel", undefined, "FTP Status");
// Add a progress bar with a label and initial value of 0, max value of 100.
var pBar = win.pnl.add("progressbar", undefined, 0, 100);
// Add buttons
win.cancelButton = win.add("button", undefined, "Cancel");
win.cancelButton.onClick = function()
$.writeln("FTP Cancelled");
ftpServer.cancel();
app.cancelTask(MyTask.id);
win.close();
// This task will be scheduled to control the progress bar upddate
MyTask = {};
MyTask.id = 0;
MyTask.updateStatus = function()
//$.writeln("updateStatus() called");
ftpServer.pump();
var ftpAddress = "";
var ftpUsername = "";
var ftpPassword = "";
var ftpDir = "";
// Create ftp object and assign username/password
var url = "ftp://" + ftpAddress;
var ftpServer = new FtpConnection(url);
ftpServer.timeout = 30;
// We don't want a blocking connection
ftpServer.async = true;
ftpServer.username = ftpUsername;
ftpServer.password = ftpPassword;
ftpServer.onCallback = function(reason,p_log,total)
if(reason == FtpConnection.reasonProgress)
pBar.value += 10;
if( reason == FtpConnection.reasonStart ) {
$.writeln("AsyncFTP: Upload started");
if( reason == FtpConnection.reasonComplete ) {
$.writeln("AsyncFTP: Upload finished");
app.cancelTask(MyTask.id);
win.close();
if(reason == FtpConnection.reasonFailed ) {
$.writeln("AsyncFTP: Upload failed");
app.cancelTask(MyTask.id);
win.close();
ftpServer.open(url);
if(ftpServer.isOpen)
// Move to a directory (if needed)
ftpServer.cd = "bridge"
// Create the destination directory on the server
//ftpServer.mkdir(ftpDir);
// Move to the new directory
ftpServer.cd = ftpDir;
if(app.document.selections.length == 1)
win.show();
// The selected thumbnails in Bridge
var sels = app.document.selections;
ftpServer.put(sels[0].spec, sels[0].name);
// Rerun this task every 100 ms
MyTask.id = app.scheduleTask("MyTask.updateStatus()", 100, true);
"End"

Similar Messages

  • Why does my 08 iMac display flashing and partial window problems?

    I have a 2008 iMac with OS X 10.9.2 with 4Gb memeory. In the past week we have experienced partial windows pop up and have unable to close the windows. The problem is resolved by restarting the computer. This has happened about four times in the last week. Today I was using a window and notice flashing when I clicked the mouse with partial windows I had been using previously began appearing on the screen. Any input would be appreciated. Up until this point I have had no problems with this iMac.

    Update - I spent a half hour on the phone with AppleCare this morning and we were unable to resolve the issue. I then took both my display and iMac to the Apple Store today and the Genius Bar not only replaced my iMac - they replaced my 24" Cinema Display with a BRAND NEW 27" Cinema Display! The Genius said that Apple's engineers wanted to research why my display was flickering using the exact display and iMac. Incredible service! And a brand new display!

  • WebObjects Java Client-JNLP fine on OS X and Linux, Windows problem

    Hi,
    I have been making a somewhat fruitful exploration into WebObjects Java Client development in order to get my nice IB interfaces for prototypes functional and deployed in a cross platform environment.
    I have made some good strides in figuring out the semi-documented process of Java/IB integration, and how to build (including adding external libraries) and deploy onto a server (if anyone else is interested I will share; perhaps a blog is deserved), and though I am able to run it from both Mac OSX and Linux clients on the network (the Linux interface currently looks like garbage but will work on that), when I try to run it on windows I immediately get the following error tab in General:
    An error occurred while launching/running the application.
    Title: ProfessionalTradingRAD
    Vendor: Vendor
    Category: Download Error
    Unable to load resource: http://g5.nl.imc.local:2002/cgi-bin/WebObjects/ProfessionalTradingRAD.woa/eowebs tart/com.webobjects.eodistribution._EOWebStartAction/webStart/JavaClient.jnlp
    and in the Exception tab it reads:
    JNLPException[category: Download Error : Exception: java.io.IOException: rename failed in cache to: C:\Documents and Settings\alko\Application Data\Sun\Java\Deployment\javaws\cache\http\Dg5.nl.imc.local\P2002\DMcgi-bin\DMW ebObjects\DMProfessionalTradingRAD.woa\DMeowebstart\DMcom.webobjects.eodistribut ion._EOWebStartAction\DMwebStart\AMJavaClient.jnlp : LaunchDesc: null ]
    at com.sun.javaws.cache.DownloadProtocol.doDownload(Unknown Source)
    at com.sun.javaws.cache.DownloadProtocol.getLaunchFile(Unknown Source)
    at com.sun.javaws.LaunchDownload.getUpdatedLaunchDesc(Unknown Source)
    at com.sun.javaws.Launcher.downloadResources(Unknown Source)
    at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
    at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
    at com.sun.javaws.Launcher.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    It looks to me like the problem is with trying to rename the directory to a name with multiple periods, which works on UNIX but not on Windows. Is this a familiar problem? Is there any workaround/solution or any intent to fix?
    Thanks
    --Alex Kogon
      Mac OS X (10.4.6)  

    open terminal and run runinstaller again...
    don't double click and execute runinstaller....
    From Achi Cheng

  • Hyper link of public image(hyperlink or image) can not be saved on windows server 2012 and sharepoint 2010 problem

    hyper link of public image(hyperlink or image) can not be saved on windows server 2012 and sharepoint 2010 problem, is this a bug?
    thanks for any reply.
    Rosone

    It is not a bug, you might be using IE in Windows server 2012 and and browser might be restricting your site actions to respond properly.
    Check this in a different browser or access site in a differ OS.
    Adnan Amin MCT, SharePoint Architect | If you find this post useful kindly please mark it as an answer.

  • Dumb Q: problem with Find And Replace window in Flash 8

    Dear Flash Group,
    apologies if this is trivial, it's my first day using Flash.
    I downloaded a Flash project from
    http://www.flashorb.com/articles/benchmark_files/flash-benchmark.zip.
    This
    flash calls into a web service at localhost:8080. I used the
    'Find and
    Replace' window within Flash Professional 8 to locate the
    string
    'localhost:8080' and replaced it with plain 'localhost'.
    However, when I 'Debug the Movie' (Ctrl-Shift-Enter), it
    still tries to
    access port 8080! Obsiously, my replace command did not do
    what I thought it
    would do. I opened the FLA file in a binary editor, and saw 4
    more
    references to 8080, One if them in 'Properties' of a
    WebServicesConnector,
    but I cannot figure out how to find the other occurences.
    Checking on google, I see lots of people having similar
    problems, but no
    solutions
    Any ideas?
    Regards, /george
    PS. What do you guys do for code completion - is there a tool
    that would
    bring Flash on par with an professional IDE?

    george,
    > when I 'Debug the Movie' (Ctrl-Shift-Enter), it still
    > tries to access port 8080! Obsiously, my replace
    > command did not do what I thought it would do.
    Agreed.
    > I opened the FLA file in a binary editor, and saw 4
    > more references to 8080, One if them in 'Properties'
    > of a WebServicesConnector, but I cannot figure out
    > how to find the other occurences.
    Might they be the result of that WebServicesConnector
    reference?
    > Checking on google, I see lots of people having
    > similar problems, but no solutions
    That's really odd, actually. I'm on these boards every day,
    and I've
    never heard of this issue. I don't *think* the Find/Replace
    dialog visits
    panel contents, such as the Component Inspector panel, but I
    wouldn't swear
    to that.
    > What do you guys do for code completion - is there
    > a tool that would bring Flash on par with an
    professional IDE?
    Well, Flash is a professional IDE, of course. By definition,
    if you pay
    for something, you have acquired a professional product or
    service. I know
    what you mean, though. Flash itself rocks, but the Actions
    panel can be
    glaringly weak. Personally, I use SE|PY to edit ActionScript.
    http://www.sephiroth.it/python/sepy.php
    Sorry I can't speak to your other issue. :-/
    David
    stiller (at) quip (dot) net
    Dev essays:
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Having problems connecting iMac(late 2006) running 10.7.5 to a Samsung Flat Screen TV using separate audio/speaker cable and HDMI standard cable, mini-DVI to HDMI video converter.  TV displays generic Apple galaxy background and "some" windows (e.g. scree

    Not sure that I have selected the correct forum.  Hope my questions are clearly stated.
    Having problems connecting iMac(late 2006) running 10.7.5 to a Samsung Flat Screen TV using separate audio/speaker cable and HDMI standard cable, mini-DVI to HDMI video converter.  TV displays generic Apple galaxy background and "some" windows (e.g. screen resolution choices).   It does not show Mail or Safari menus.  System preferences'  display "gathered" the Samsung and chose its resolution.  I did not find a way to select the Samsung as my display.
    In addition to having old hardware, we have Verizon FIOS providing internet and TV access.  Is there any way to make this work for us?  We would like to stream video (Netflix) and view shows from the Web.  Do we need Apple TV to do this?  Or is it not possible with our old iMac?  My husband thinks that our Airport could be a factor. 
    Thank you

    Lately, I have been seeing a lot of posts with users trying to use their Macs/iMacs to mirror their streaming video from their Macs to an HDTV.
    There are, actually, many alternatives to choose from than just from a Mac.
    You need to have or invest in a WiFi capable router for all of these examples.
    Apple TV only integrates with WiFi and newer Mac hardware. So, if you want to have total integrated experience, if you have a 2011 Mac or newer, you might as well pay the $100 for the AppleTV box.
    If you have a older Mac, like I have noticed many users do, then you have other options.
    If you want to elimate long cable clutter and having your Mac at the mercy of your TV all of the time,  you can still use the AppleTV box independently or purchase cheaper alternative media streaming boxes from Roku, Sony, Boxee or any number of electronics manufacturers that now have media streaming boxes and media streaming capability built into DVD/Blu-ray players.
    These eliminate long cable clutter by being close to the HDTV where shorter, less expensive cables can be used.
    Another alternative for iPad users is to use an iPad with the USB/HDMI video adapter and use your iPad as the streaming box. This ties up your iPad in much the same way as it does with your Mac, but again the iPad can be close to the TV and use minimal cables to the TV.
    Another alternative to is to use a combination of an iPad and your Mac to stream content that is only available to stream online from a computer. In this case, you can use a desktop remote app on your iPad and Mac. A good and cheap Desktop Remote app is Splashtop Remote. This allows you to completely connect your iPad remotely, over Wifi, to your iMac desktop. The app streams both video and sound to the iPad which is still connected to your HDTV. The resultant stream video picture will be smaller than the size of your HDTV, but it will still be plenty large enough to watch. Again, if you own a iPad and an Intel Mac, this method also allows minimal cabling to the TV.

  • I am having a problem with pop pups and small windows with ads constantly opening up on my safari?? Thought that macs didn't get virus? this looks like one- any experts around? please help me fix it with your instructions? really don't know what to do...

    Hi everyone,
    I am having a problem with my Mac OS X 10.7.5 mac book air , there are constant pop pups and small windows with ads blinking constantly opening up on my safari in front of everything?? it is constantly interupting me and makes me mistakingly click on it then another new windows open behind the one im using..
    I am not too sure if thats a virus or trojan.. I always thought that macs didn't get virus? this looks like one to me… any experts around? please help me fix it with your instructions? really don't know what to do... thanks

    Those are not viruses. You have probably installed some malware:
    The Safe Mac » Adware Removal Guide
    Helpful Links Regarding Malware Protection
    An excellent link to read is Tom Reed's Mac Malware Guide.
    Also, visit The XLab FAQs and read Detecting and avoiding malware and spyware.
    See these Apple articles:
              Mac OS X Snow Leopard and malware detection
              OS X Lion- Protect your Mac from malware
              OS X Mountain Lion- Protect your Mac from malware
              About file quarantine in OS X
    If you require anti-virus protection Thomas Reed recommends using Dr.Web Light from the App Store. It's free, and since it's from the App Store, it won't destabilize the system. If you prefer one of the better known commercial products, then Thomas recommends using Sophos.(Thank you to Thomas Reed for these recommendations.) If you already use Sophos, then be aware of this if you are using Mavericks: OS X Mavericks- Sophos Anti-Virus on-access scanner versions 8.0 - 9.1 may cause unexpected restarts
    From user Joe Bailey comes this equally useful advice:
    The facts are:
    1. There is no anti-malware software that can detect 100% of the malware out there.
    2. There is no anti-malware that can detect anything targeting the Mac because there
         is no Mac malware in the wild, and therefore, no "signatures" to detect.
    3. The very best way to prevent the most attacks is for you as the user to be aware that
         the most successful malware attacks rely on very sophisticated social engineering
         techniques preying on human avarice, ****, and fear.
    4. Internet popups saying the FBI, NSA, Microsoft, your ISP has detected malware on
        your computer is intended to entice you to install their malware thinking it is a
        protection against malware.
    5. Some of the anti-malware products on the market are worse than the malware
        from which they purport to protect you.
    6. Be cautious where you go on the internet.
    7. Only download anything from sites you know are safe.
    8. Avoid links you receive in email, always be suspicious even if you get something
        you think is from a friend, but you were not expecting.
    9. If there is any question in your mind, then assume it is malware.

  • If you're having problems updating firmware and have Windows Media Player 11 B

    I've seen a number of problems with people updating their firmware with WMP installed and it turns out that's the problem. WMP has a bug in it that will not allow the firmware update to recognize the player. So, here's what to do to roll back to a previous version:
    These instructions will only work for Windows XP
    You must be logged on as an administrator or a member of the Administrators group to perform the following procedure.
    . Disconnect any portable music or video devices that might be attached to your computer.
    2. Click Start, and then click Control Panel.
    3. In the Category View of Control Panel, click Add or Remove Programs, and then click Remove a program.
    4. Click Windows Media Player , and then click Remove.
    If Windows Media Player is not displayed in the list of currently installed programs, then try the following:
    . At the top of the list, select the Show updates check box.
    2. In the Windows XP - Software Updates section, click Windows Media Player , and then click Change/Remove.
    5. In each of the two confirmation dialog boxes that appear, click OK.
    6. When the rollback process is complete (it might take several minutes), click Restart.
    7. Click Start, and then click Control Panel.
    8. In the Category View of Control Panel, click Add or Remove Programs, and then click Remove a program.
    9. Click Windows Media Format Runtime, and then click Remove.
    If Windows Media Format Runtime is not displayed in the list of currently installed programs, then try the following:
    . At the top of the list, select the Show updates check box.
    2. In the Windows XP - Software Updates section, click Windows Media Format Runtime, and then click Change/Remove.
    If you installed a non-US English version of Windows Media Player , the instructions in the dialog boxes that are mentioned in steps 9, 0, and might appear in English.
    0. In the first confirmation dialog box that appears, click OK.
    . In the second confirmation dialog box that appears, select the Do you want to continue with the rollback? check box, and then click OK.
    2. When the rollback process is complete (it might take several minutes to complete), click Restart.
    3. Click Start, and then click Control Panel.
    4. In the Category View of Control Panel, click Add or Remove Programs, and then click Remove a program.
    5. Click Microsoft User-Mode Driver Framework Feature Pack .0.0, and then click Remove.
    6. Follow the instructions that appear in the Software Update Removal Wizard.
    If the Wudf0000 confirmation dialog box appears, click Yes to continue. When the software removal process is complete (it might take several minutes to complete), click Finish.
    If you are still having problems and all else fails, do a System Restore to before WMP was installed.
    *Note: If you remove Windows Media Player and the Windows Media Format Runtime, and then encounter error C00D27D ("A problem has occurred in the Digital Rights Management component. Contact Microsoft product support, you might be able to resolve the problem by installing the Windows Media Format 9.5 Runtime. For information about installing the Runtime, in the Microsoft Knowledge Base, see article 8922, "Update for Windows Media Digital Rights Management-enabled players."
    **You might not be able to roll back to a previous version of the Player if the hidden folder $NtUninstallwmp$ is deleted from your computer. Some non-Microsoft programs (such as CCleaner) delete this folder in an attempt to remove unwanted files from your computer.
    More information here:
    http://www.microsoft.com/windows/win...ionofthePlayer
    Some people have found these instructions to be a solution to the "Player Not Connected" Error when trying to update the firmware. (Your mileage may vary)
    Note to Mods: This would make a nice sticky

    OK. I've been having this problem and have probably read every post there is on the net concerning it. But it doesn't seem to be only a Media Player problem. I was only running Media Player 0 when it happened to me. I found the solution somewhere, I can't remember where, but it worked for me and it was easy.
    Here's what you do:
    . Download BOTH ZenXtra_PCFW_LA__20_08.exe and enXtraP4SAudible_PCFW_LB_2_0_03.exe
    2. Connect the Zen Xtra to your PC.
    3. Run ZenXtra_PCFW_LA__20_08.exe. When the window comes up and says that your device is not connected DON'T do ANYTHING! Just leave it there.
    4. Now run ZenXtraP4SAudible_PCFW_LB_2_0_03.exe
    5. It told me that I already had this version on my device did I still want to load it's I said yes and it went through the whole upgrade and now it works fine.

  • I cannot connect to the iTunes Store.  I receive Error Code -1202.  This problem began yesterday.  I have been successfully connecting to the store for months on this PC.  I am running Windows 7 and the Windows Security Center.  Thanks for any help

    TS1368 I cannot connect to the iTunes Store.  I receive Error Code -1202.  This problem began yesterday.  I have been successfully connecting to the store for months on this PC.  I am running Windows 7 and the Windows Security Center.  Thanks for any help.

    Hello alankilner,
    And welcome to Apple Discussions!
    Using Proxy: Yes
    Try temporarily disabling this setting by following the steps outlined in this Apple support document.
    http://support.apple.com/kb/TS1490
    B-rock

  • Intel iMac; upgraded adobe flash; bluetooth keyboard no longer pairs but magic mouse still OK. With Bluetooth switched on the screen splits into 4 areas and open windows seperate and shrink. Switch off Bluetooth and problem disappears and iMac works OK

    Intel iMac; upgraded adobe flash; bluetooth keyboard no longer pairs but magic mouse still OK. With Bluetooth switched on the screen splits into 4 areas and open windows seperate and shrink. Switch off Bluetooth and problem disappears and iMac works OK with plug-in keyboard and mouse

    Hi, Derek -
    ...the screen splits into 4 areas and open windows seperate and shrink.
    Sounds like Spaces is being activated somehow. With the wired keyboard and mouse in use, select the Exposé & Spaces control pane in System Preferences, click the choice in that pane for Spaces. See what the settings are. There are some activation settings in that pane - by default, F8 activates it.
    It could be that the bluetooth keyboard has some stuck keys and is activating Spaces; or that the activation command has somehow been reset to something that the bluetooth mouse, or bluetooth itself, is triggering.

  • I set up a new router and the windows machines have no problem with connectivity.  I go through the MacBook Pro's airport assistant and view my network and then enter the WPA2 password.  I get back a message saying the password is incorrect when it is

    I set up a new router and the windows machines connect fine.  My MacBook Pro does not.  I go through the airport assistant and see the network yet when I enter the router WPA password I get a message back saying that the password is incorrect.  And, it isn't!  Very frustrating.  What can I do as I had the same problem after I tried to reinstall my last router.  Again, only on the Mac.  Thanks!

    If you kept the same Base Station name and network name, that can confuse Keychain Access. Either change the Base Station and network name, or open Keychain Access Utility and delete any reference to your Base Station and network name. Make sure you delete from the Login and System keychains.

  • Hi, I download the latest version of itunes and i have problem now to sync my iphone with my computer, I have windows 7 home premium service pack 1, can somebody tell me how to fix it. thanks

    Hi, I download the latest version of itunes and i have problem now to sync my iphone with my computer, I have windows 7 home premium service pack 1, can somebody tell me how to fix it. thanks

    This forum is for questions from those managing sites on iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. You'll be most likely to get help with this issue if you ask in the general iTunes forums.
    Regards.

  • ImageCLASS D1120 Windows 8.1 driver issues and MF Toolbox problems

    I'm having some real problems getting several imageCLASS series multifunction units to work in the windows 8.1 x64 environment.  most recently, I've been working with a D1120, and I can't get it to do any more than print reliably - no scan functionality at all.  I realize there are two issues here, so I'll try to break them apart as best as possible.  For reference purposes, i'm running windows 8.1 on a 64-bit system.  I was able to download the correct drivers and program from the canon website, and extracted them with no issue.
    On the driver problem, I tried using the instructions found in this link, but windows went ahead and installed the 2009 series drivers regardless.  It's connecting via USB, and doesn't give me any option to update the drivers once "installed".
    On the MF Toolbox problem, I've gotten it to do one one scan job, and then it starts throwing a variety of error messages at me.  First, it will say there is a data transfer error.  Then it will say there are no documents in the queue.  Then it will simply lock up and not start the scan job at all.  I tried using the instructions in this link, but didn't get anywhere.  
    Any way you can help on one or both of these issues?  I have a feeling they are related somehow...
    Z

    Hi merliner.
    I will be glad to assist you.
    The drivers may not be installed correctly because the Windows operating system is automatically installing the driver.  First, we will need to disconnect the printer from the computer and uninstall the drivers.  Since the drivers are being installed by the Windows system, I recommend uninstalling the drivers from the 'Print Server Properties' window.  Please follow the instructions below:
    1.  Open the [Devices and Printers] window.
    2.  Left-click, one time, on the Microsoft XPS Document Writer or the Send To One Note devices.
    3.  Click Print Server Properties in the Menu Bar.  (You will see "Add a device", "Add a printer", "See what's printing" and "Print server properties".)
    4.  Click on the [Drivers] tab.
    5.  Select the Canon drivers, then click [Remove].
    6.  Select "Remove Driver and Driver Package".
    7.  Click "OK".  (You may receive a message stating that the Package could not be removed.  This is fine.  As long as the driver is deleted from the list, you can continue.)
    Once the drivers are deleted, restart the computer.  After the computer restarts, and leaving the USB cable disconnected, please follow the instructions below to install the drivers that you downloaded from the Canon USA website:
    The file that you download from the Canon website is .ZIP file.  When you select [RUN], it unpacks the setup folder. 
    1.  Please open your [Downloads] folder.
    2.  You will see two icons with the name: D1170_1150_1120_MFDrivers_W64_us_EN.exe . Double-click on the yellow folder icon with this name.
    3.  In the folder you will see two listings for [Setup].  Double-click on the [Setup] that has the type as [Application].
    4.  The "MF Drivers Setup Wizard" will open.  Proceed through the steps and restart the computer.
    After restarting the computer, connect the USB cable and allow the installation to complete.  Finally, scan a document by following the instructions below:
    1.  Verify that MF Toolbox is closed on the computer and press the [SCAN] button on the printer.
    2.  The screen will show, "Scanning mode...".
    3.  On the computer, open the MF Toolbox and select [PDF].
    4.  Click the green [START] button on the [PDF] window.  The machine will start processing the scan.
    I hope this information is helpful to you.  Should you need further assistance, please contact us at 1-800-OK-CANON (1-800-652-2666).
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Ok I am really a new user of Mac so here is my problem in the bar across the top of my screen when I bring up Safari there is a help box when I go to an answer and click it and the window pops up there is nothing there what happened to the answers? Help

    Ok I am really a new user of Mac so here is my problem when I bring up Safari and I go over to the Help word on the top of the screen to find a question when I pick a question and the window comes up there is a blank window nothing is there the help boxes work on my other Apps so whats wrong. Help

    Could you please give us a picture of what is going on. This is a picture of what the top of Safari looks like when I go to the Help menu. I typed in the word cache and a number of options appeared below. Is this not happening for you?

  • Dual Boot windows 32bit and 64bit overclocking problems

    Im pretty new to overclocking and this is my first try I manage to get my AMD Venice 3200 to hit 2500 with 250fsb X 10, HTT 4, vcore 1.44. I used memory divider 166/200 so the memory is running at 208MHz not alot of overclocking on the memory since it is some cheap brand.
    My problem is that I have dual boot and with windows xp everything is fine CPU-z reports the right speed for the cpu and memory when I overclock, and there is an increse in preformance with overclocking, But when I boot windows XP 64bit CPU-z reports the FSB as 200 so it is not showing any change, it does report the change in the memory divider 166/200 and the cpu voltage increased that I applied to overclock. The thing is that when I open systerm properties it shows the CPU speed as 2500MHz but when I test the preformance there isnt any increase. I used Superpi to test preformance and in windows XP 32bit it finishes the 1M test in 36seconds while in Windows XP 64bit it takes 42seconds.
    My system specs are
    AMD Venice 3200
    MSI K8N Platium bios 1.8
    1024MB Wintec Memory 3200
    Geforce 6800 GTO 400/1100
    OCZ ModStream OCZ52012U 520W Power Supply

      Im runing the final release of Windows xp 64 and cpu-z 1.30, I also have Everest Ultimate Edition and it only shows 3% overclock 205 FSB.  Im thinking of formating the HD with windows 64 and installing it again with the systerm already overclock.

Maybe you are looking for