Loss of color labels and other assorted bad things...

My G5 seems to be acting a little weird lately- nothing I can pin down but lots of little things.
• Beachballs spinning at odd times and places.
• If I have assigned a color label to a TextEdit document, all of a sudden resaving the document causes the color label to reset to "no color". This seems to be a new trick, and I'll bet nothing good will come of that.
• When opening some (but not all) graphic files with GraphicConverter, all of a sudden a "ghost image" of the picture paints itself on my right screen (of a two-screen setup). The actual GraphicConverter window itself is located on the left screen real estate, which is where I want it, but this "ghost image", without any framing, appears right in the middle of the right screen just after the normal GraphicConverter window opens on the left screen. Suspiciously, the size of the "ghost image" seems to be the same size as the actual legitimate image showing in the GraphicConverter window. I have my screen set to change the background picture every minute or so, and when it repaints the "ghost image" disappears. Moving any other window over the "ghost image" also erases it (like using a blackboard eraser).
Just to make this REALLY challenging, this problem seems to be inconsistent, as it does not do this every time. If there is a pattern here, I'm missing it.
So far (I think, but can't be sure) all of the graphics which fall victim to this phenomena have been scans by my Cannon scanner. Have had this scanner for a long time with no previous problems. If I open the same files which cause GraphicConverter to misbehave with other graphics-handling apps, there doesn't seem to be any problem with the other apps.
Some general background info:
• Have reinstalled the GraphicConverter app, and discarded it's preference files, but no help.
• Have also reinstalled the Cannon driver app, and discarded it's preference files, but again no help.
• If I boot the computer from a different (backup) external HD the same situation seems to exist. However, since I backup pretty often (using SuperDuper), if there is some sort of OS issue which has been building up it may be possible that the backup HD now simply has the same problem as the main internal HD.
• I did rebuild my directories with DiscWarrior a few weeks ago, for what that's worth. Have done that in the past with no problems occurring.
• The main internal HD is a fast 10000 rpm, and is partitioned into two sections: one section holds all of the OSX-10.4.10 and related operating files (apps, utilities, libraries and associated hooga-booga), with about 9.2gb still open. The other partition holds everything else, also with about 9.2gb still open. Three separate external HDs hold pretty much nothing but music files for iTunes.
All ideas will be appreciated!
Thanks- 0db
Message was edited by: Daniel Banchero
Message was edited by: Daniel Banchero

Have just noticed activity monitor is indicating very unusual activity in something called "TruBlueEnvironment", whatever that is. It is currently accounting for over 95% of CPU activity, and these spikes may be the cause of the beachballs appearing at rather odd times.
For anyone who knows what this may be all about, here are some current stats from the Activity Monitor:
Threads: 15
Ports: 227
Context Switches: 3994556 and going up rapidly
Faults: 19059 (and stationary)
Page Ins: 2245 (and stationary)
Mach Messages In: 56585 and going up fast
Mach Messages Out: 122817 and going up fast
Unix System Calls: 80243 and going up
Can anyone give me some guidance on all of this?
Thanks-
0db

Similar Messages

  • Lightroom 5 and Bridge 6- Color Label and Keyword compatibility

    I've added color labels and keywords to images in Lightroom 5 but I'm not seeing them in Bridge CC.
    Lightroom Metadata > Color Label Set is set to Lightroom Default (Red-Yellow etc.
    And Bridge Preferences > Labels is also set with "Red, Yellow etc" text. 
    In other words they are the same,  But I'm not seeing the color labels or the keywords in Bridge. 
    Thanks,

    The answer to this problem is that, in order for Bridge and Lightroom to share labels etc. Lightroom has to write its metadata into xmp sidecar files.
    To do this go to: Lightroom > Catalog Settings > Metadata Tab and check : Automatically write changes into XMP.

  • Automator: Apply Color Label and Copy to Folder

    I'm trying my hand at Automator, and I need help with one of my workflows (⇪). Basically, it's a service (accessible via right-click) that will apply a color label on an image file, and then copy that image file to a corresponding folder with the same color label. My current version works fine, except for the fact that I had to create seven versions to accommodate all seven colors.
    Is there any way to turn the color into a variable? I want the workflow to prompt me for a color, and then use that choice to run a search for the appropriate folder. I'd rather not hard code the color choice into separate services that all do the same thing.
    Also, the service currently assumes that it will run fast enough before I can deselect the target file. I'm sure it's possible that the folder search could lag out while I select another file, and the service will ultimately copy the newly selected item, rather than the initial target. Is there a way to ensure the service acts on whatever was selected when it was first triggered?
    I don't know AppleScript beyond copying-and-pasting other people's codes, so that limits my automation quite a bit. I don't know how to prompt for a label index choice and then feed the result into a find function. I also don't know how to record the file path of the selected item, and then feed that into the copy function at the end to ensure it doesn't copy the wrong file.

    Typically a list of items is passed to a workflow, so you will usually (depending on what you are doing with the items) need to step through the items in that list. If there is only one destination folder with the target label, you can just search for it, otherwise you will need to specify the destination in some other way.
    The following Service workflow example assumes that there is only one destination folder that has a given label color. It gets the label index of one of the input items and finds a folder with the same index at a specified base location (to limit the search range).
    1) Input items are automatically passed to an application or service, otherwise another action to get FInder Items can be used
    2) *Label Finder Items* (show the action when the workflow runs)
    3) *Run AppleScript* (paste the following script)
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #DAFFB6;
    overflow: auto;"
    title="this text can be pasted into an Automator 'Run AppleScript' action">
    on run {input, parameters} -- copy to a labelled folder
    This action is designed to follow a "Label Finder Items" action.  It will get the
    first folder of the base folder that has the same label and copy the input items
    to that folder.
    input: a list of Finder items received from a "Label Finder Items" action
    output: a list of Finder items to be passed on to a following action
    set output to {}
    set skippedItems to {} -- this will be a list of skipped items (errors)
    set baseFolder to (((path to pictures folder) as text) & "Shelley:Mary:") as alias -- a place to start looking for the destination folder
    tell application "Finder"
    set theLabel to label index of (the first item of the input) -- just pick one, they should all be the same
    get folders of (entire contents of baseFolder) whose label index is theLabel -- include subfolders
    -- get folders of  baseFolder whose label index is theLabel -- no subfolders
    if the result is not {} then
    set theDestination to the first item of the result
    else -- no folder
    error number -128 -- cancel
    end if
    end tell
    repeat with anItem in the input -- step through each item in the input
    try
    tell application "Finder" to duplicate anItem to theDestination
    set the end of the output to (the result as alias)
    on error number errorNumber -- name already exists, etc
    set errorNumber to "  (" & (errorNumber as text) & ")"
    -- any additional error handling code here
    set the end of skippedItems to (anItem as text) & errorNumber
    end try
    end repeat
    showSkippedAlert for skippedItems
    return the output -- pass the result(s) to the next action
    end run
    to showSkippedAlert for skippedItems
    show an alert dialog for any items skipped, with the option to cancel the rest of the workflow
    parameters - skippedItems [list]: the items skipped
    returns nothing
    if skippedItems is not {} then
    set {alertText, theCount} to {"Error with AppleScript action", count skippedItems}
    if theCount is greater than 1 then
    set theMessage to (theCount as text) & space & " items were skipped:"
    else
    set theMessage to "1 item was skipped:"
    end if
    set {tempTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, return}
    set {skippedItems, AppleScript's text item delimiters} to {skippedItems as text, tempTID}
    if button returned of (display alert alertText message (theMessage & return & skippedItems) alternate button "Cancel" default button "OK") is "Cancel" then error number -128
    end if
    return
    end showSkippedAlert
    </pre>

  • Aperture Olympus E-PL2 Raw Color Distortion and other issues

    Hello there, Olympus Micro Four Thirds Fans!
    So finally, Apple introduced Olympus E-PL2 Raw Support in Aperture 3. After some testing and troubleshooting there are still some issues remaining that sort of still leave the Raw option unusable for me:
    The Apple Raw developer does not seam to read Olympus gradation curve settings properly. I usually leave the cameras color mode to "natural" which in JPEG gives the Olympus-typical beautiful documentary-style color accuracy. However, in Raw, colors get distorted in the most unpleasant way! Especially the greens get horribly oversaturated.
    Noise reduction settings also are not correctly translated. I'm the type of Raw user who always wants to start from the camera settings chosen and who then wants to be able to tweak settings to perfection just a little bit. But all in all I chose an Olympus camera, because it does deliver superb white balance metering, decent noise reduction and beautiful color gradation right out-of-the-box.
    SPEED! Aperture seems to be horribly horribly slow with Olympus .orf files. Lightroom is easily ten times faster in real-time developing of Raw files.
    Did someone observe the same behaviour? How do you work around these issues, what is the best setup for the apple raw developer?
    Greetings from Esslingen am Neckar!

    Hi there!
    I am now developing my raw files with Olympus Viewer. It is the only software solution that would deliver results close or identical to Olymus built in JPEG engine. Most of the time I need to get color reproduction that is as subtle and fine as the Olympus engine, but I do want to benefit from all the other postprocessing advantages that RAW has to offer.
    Within Aperture I have not been able to get comparable color rendering.

  • How to transmit color proofs and other settings without activation?

    Hallo!
    I crashed my computer weeks ago and installed PS CS2 at a new system with a new activation (earlier activations have been made because of hard disc changes)
    The activation was ok but when I tried to load my color proofs made at the first computer I was asked to make a new activation.
    Is there any possibility to use the proofs without a next activation? (I´m not sure if I have a new one left)
    Please help
    Anna

    Anna,
    Your situation would be a good one to call Adobe Tech Support (installation issues are free). They can tell you how many activations you have, and help you get up and running.
    Hunt

  • Add Label (and other things like SequenceCall, Statement etc) in Main Sequence ?

    Hi all,
    I try to add Label in Main sequence, but problem is how to refer there. Successfully were done subsequences and their content, but now want to add content in main sequence (labels, SequenceCall, Statement etc). Can you someone help me with this code ? (CVI/LabWidows). This code in intended to add Label (szName) into Main sequence.
    Before entering Label, need to refered to Main in Sequence file. This part missing.
    tsErrChkMsgPopup( TS_EngineGetSeqFileEx (EngineHandle, &errorInfo, SeqTemplate_path, TS_GetSeqFile_DoNotRunLoadCallback, TS_ConflictHandler_Prompt, &SequenceFileHandle));
    tsErrChkMsgPopup( TS_EngineNewStep (EngineHandle, &errorInfo, "","Label",&labelStep));
    tsErrChkMsgPopup( TS_StepSetName (labelStep, &errorInfo, szName));
    error = TS_SequenceInsertStep (SequenceFileHandle, &errorInfo, labelStep, indexL, TS_StepGroup_Main);
     I've tryed with TS_SeqContextGetMain(), but does not work.
    Best regards,
    branar
    Solved!
    Go to Solution.

    Hi Ray,
    Still does not work. I've tried first to add Sequence, but it was add subsequence (not is MainSequence)
    tsErrChkMsgPopup( TS_EngineGetSeqFileEx (EngineHandle, &errorInfo, SeqTemplate_path,
    TS_GetSeqFile_DoNotRunLoadCallback, TS_ConflictHandler_Prompt, &SequenceFileHandle));
    // tsErrChkMsgPopup( TS_EngineNewSequence (EngineHandle, &errorInfo, &newSequence));
    // tsErrChkMsgPopup(TS_SequenceSetName (newSequence, NULL, "Main"));
    // tsErrChkMsgPopup( TS_SeqFileInsertSequence (SequenceFileHandle, &errorInfo, newSequence));
    tsErrChkMsgPopup( TS_EngineNewStep (EngineHandle, &errorInfo, "","Label",&labelStep));
    tsErrChkMsgPopup( TS_StepSetName (labelStep, &errorInfo, szName));
    error = TS_SequenceInsertStep (SequenceFileHandle, &errorInfo, labelStep, indexL, TS_StepGroup_Main);
     After that, I was tried with:
    tsErrChkMsgPopup( TS_EngineGetSeqFileEx (EngineHandle, &errorInfo, SeqTemplate_path,
    TS_GetSeqFile_DoNotRunLoadCallback, TS_ConflictHandler_Prompt, &SequenceFileHandle));
    tsErrChkMsgPopup( TS_SeqFileGetSequence (SequenceFileHandle, &errorInfo, 0, &Sequence));
    tsErrChkMsgPopup( TS_EngineNewStep (EngineHandle, &errorInfo, "","Label",&labelStep));
    tsErrChkMsgPopup( TS_StepSetName (labelStep, &errorInfo, szName));
    error = TS_SequenceInsertStep (SequenceFileHandle, &errorInfo, labelStep, indexL, TS_StepGroup_Main);
     Problem is probably in defining seq. file's MainSequence. So, I use two files (one default where i get normal subsequencies, and second (target), created with new formed subsequencies and default file. New subsequencies are copied into a target file. Adding context in MainSequence seems to be problematically, at least for me. I want first to "fulfill" mainSequence (trying to get code for this) and after that rest of subsequences and default context. My code currently create subsequences and their context succesfully.
    best regards,
    branara

  • Issues with color panel and other windows on right side of flash

    Ok the issue I'm having with flash is that the windows on the right side of my flash window do not snap up when I collapse a window. I am attaching a screen shot to better explain this issue.
    As you can see I have the color panel collapsed up, when I expand this panel and it goes down everything shifts down. however when I collapse it back up a huge gap is left behind in CS5.5 as is displayed in screen shot number 2. In CS4 I never had this problem. I could expand and collapse panels as I saw fit with no problems what so ever. Everytime now that I expand a panel and collapse it, the library or other panels do not move up with the collapsing. This causes a workspace issue. and forces me to drag up the library via the black line that is just above it but below the align panel so that I have better access to my library or properties panel for when I'm working. I find this highly annoying and would like it if there could be a fix produced to make it so this collapsing issue can be fixed and I don't have to waste time dragging up the library/properties panel everytime I need to access stuff in my library when I have a huge list of graphics I'm going through.
    Thanks
    h_cline2

    I already tried that, first thing I thought of before coming to the forums for a solution.
    Thanks anyways.
    Any other ideas?

  • Monday Morning Woes -- Pointer Exceptions and other assorted aggravation

    Gotta love Mondays.
    Anyway, here's my latest issue:
    A DataTable grabs all of the information from my database that I request AND it calculates a value based on two colums and throws them into a temporary column, which is exactly what I want it to do.
    HOWEVER -- I want to take that information from the temporary column and transfer it to another column for storage. I've received a fair amount of errors, ranging from 'execute() not called' to the current one, nullPointerException.
    Enclosed is a snippet of my greatly messed-up code, since I've been tinkering with this for quite some time.
    po_itemsRowSet.setObject(1,getSessionBean1().getCurr_Item());
    po_itemsRowSet.execute();
    getSessionBean1().setTempPrice(new Integer(po_itemsRowSet_table.getInt("ext_price2")));
    po_itemsRowSet.updateInt("ext_price", getSessionBean1().getTempPrice().intValue());
    po_itemsRowSet.updateRow();
    po_itemsRowSet.commit();
    po_itemsRowSet.execute();
    As you can see, I'm trying to store the information in the SessionBean and then implement it into the primary RowSet, similar to the methods I used for row insertion and updates. But also, as you can see, while the code is valid, something is missing that I'm not understanding.
    Any insight on the issue would be absolutely wonderful.
    Thanks, in advance.

    Alright, let's simplify the issue, then.
    If I can get the following code to work, my problem will be resolved.
    getSessionBean1().setCurr_Item(((Integer) getValue("#{currentRow.ID}")));
    po_itemsRowSet.setCommand(" update po_items SET ext_price = qty * unit_price where ID = ?");
    po_itemsRowSet.setObject(1,getSessionBean1().getCurr_Item());
    po_itemsRowSet.execute();
    The error:
    java.sql.SQLException: Can not issue data manipulation statements with executeQuery(). [                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • There seems to be a visual problem on all webpages, links are missing or invisible, no color on a normally colored page and other visual bits messed up. Tried upgrading and checked all addons and plug ins. Ran virus scans.

    Running Mozilla Firefox 3.6.8 on a Toshiba Satellite laptop
    MS Windows XP Media Center Edition Version 2002 Service pack 3
    The problem started about 2 to 3 weeks ago

    See:
    *http://kb.mozillazine.org/Website_colors_are_wrong
    *http://kb.mozillazine.org/Websites_look_wrong

  • It wont show my music it only shows top songs and other types of things on the iTunes store. how do i fix this?

    how do i make it so i can see my music again. it only shows songs i can buy and it shows songs that are related to music that i i already have on my iTunes library,but it will not show my library anymore.

    robcharlus wrote:
    The old iTunes libraries do not restore any playlists or song counts.
    They should you if you do the roll back properly... Opening files from the Previous iTunes Libraries folder in Windows Explorer simply opens the current library. If you don't see the .itl file extension then don't give your copied and renamed file the extention or iTunes will create an empty library rather than using the renamed file.
    If you had a complete pre-problem backup of your library you could restore that. On the assumption that isn't possible I have a script called ExportImport that could in principle be adjusted to save the relevant data from a backup of the library database and then reimport that data into the current library. See this thread for details.
    tt2

  • I can select a rating and a color label for my images, but I can not sort by rating and color label.

    I can select a rating and a color label for my images, but I can not sort by rating and color label. when I click on the filter drop down, color label is not one of the options.  how do I get both ratings and color lables as an option to sort with.

    You can Filter (not sort) on both color label and rating if you want, open the Filter Bar with the backslash key, then click on Attribute, and then select the stars and color label of interest. If you really meant "sort" and not filter, then you can't do this in Lightroom.

  • Changing color label of edits coming back from photoshop

    I am currently using lightroom 3.2 RC.  The issue is when sending a raw file out to photoshop then at the conclusion of editing as the file arrives back to lightroom, it now keeps it original color label (yeah), but if I now attempt to change it's color label from one color to another that I use to denote a completed PSD file, the file losses it color label completely and ends up without a color label at all (similar to what use to happen in 3.0), and I have to go find it and relabel it again.
    hopefully I explained that well enough to catch the fault that exists
    mike

    I only have PSE8 and not Photoshop, but I cannot reproduce this behaviour by externally editing a Raw file in PSE8 from LR. When using PSE, you have to have LR render the PSD on the way to PSE already, which is a difference to Photoshop.
    What technique are you using to assign the new color label when coming back from PS (keyboard shortcur, Metadata panel, ...)?
    I'm using LR3.2RC on WinXP SP3.
    Beat Gossweiler
    Switzerland

  • Problems importing photos with a color label.

    Hello:
    I'm trying to import photos and assign a color label at the same time. My idea is to know what pics are just imported and put they into "status 0" of my workflow, that is, the pic is just imported and need to be accepted/rejected, then be classified, then made basic corrections, etc, etc. I'm going to change color labels to go from red to green status... a tipical workflow.
    OK, this is what I did:
    Import pics:
    * I select the directory and create/assign a new metadata preset.
    * In this metadata preset I set author/creator and some other IPTC fields.
    * Also I put the word "red" in Label field.
    * Do the import...
    What I can see then:
    The photos are imported and the red label is visible. You can see the red label in the grid view (at every photo's bottom) and also, at the bottom toolbar, you can see that the red label is checked. If you click at the small label at the photo's bottom you can see the small menu with the red label checked.
    OK, it seems that the color label is imported but...
    In the filmstring, if you filter to see only the red labeled pics... nothing is selected !! You have to unassign and assign again the red label and this time you can filter by color label.
    What is happening ? Does Lightroom read the color label from two different fields from the metadata ? Is something not synched during the import process ?
    Regards,
    Javier.

    Sorry if I couldn't explain correctly. English is not my main language...
    I know you can assign names to the existing colors label and create different sets. I just create my own set.
    What I'm refering to is to the Label field that is part of the basic IPTC data into a metadata preset. I'm not sure if it's the same field that is used to assign color labels.
    What I did was to create a metadata preset, assign the word "red" as the value of the IPTC Label field and then apply this preset into an import. All the pics were imported with the red label set, so yes, it is possible to do the import and set the color label. The problem is that you can't use the filters that are into the filmstring view. So there is some mismatch here: the red color is shown at the bottom of the pics imported, but the filmstring filters can't "see" that the pics have this color label assigned.

  • Lightroom color labels lost on transition from one pc to another

    I started using a mac laptop in the field and always used windows pc at home. A portable hard drive holds the lightroom catalog. It's fat32 formatted so it can be used by both mac and windows.
    A catalog made by the mac lightroom opens fine in windows. However, all the color labels are lost. The flags and stars are retained.
    If a color label is changed on a photo by the windows version of lightroom, then when that catalog is opened on the mac, that photo has no color label. (even though the mac originally gave it a color label)
    And all the original color labels that were made by the mac magically return as they were assigned.
    To trouble shoot this, I installed the Lightroom 3.6 trial on 2 other pcs - one runs windows 7 32 bit and the other windows 7 64 bit. These installs see the mac created catalog properly.
    All the color labels are there and changing one on a windows box is properly reflected on the mac when that catalog is opened.
    This is so annoying.
    My main pc must have an allergy to my mac.
    I removed and reinstalled lightroom on my pc-same problem.
    Now i have to figure out what is interfering with my main pc lightroom install.
    It cant be lightroom cause i removed it and reinstalled it. but it might be one of the plug ins i use. these magically reappearred even after i reinstalled lightroom after removing it.
    Anyone have suggestions?

    The color labels are preserved between different programs (for instance between Bridge and Lightroom) and I imagine between different LRs on two different computers only when the texts entered as description for the color labels in >Metadata >Color Label Set >Edit is absolutely identical on both computers down to upper / lower case, spaces, numbers, hyphens, etc. If one dexcription for - lets say the red label - deviates from the other by only a semicolon the label will not display properly.
    WW

  • Filter Import by Number of Rating Stars and other such

    My work flow is to look at the card with Nikon ViewNX2, and assign rating stars to the keepers, then import the keepers
    into Lightroom.  I  can't see the stars in the import dialog, though I can see them once I  do the import.  LR clearly
    understands the rating stars because it can import them.  I'd like to be able to see the rating stars in the import dialog and
    filter on them at import time.  I suspect that there are others out there that would like to filter on color labels and the flags.
    Why not use Lightroom for the review?  I sometimes don't have the Lightroom computer with me, or any computer at all.
    Nikon ViewNX2 is free, and I can install it on whatever computer is handy.  It's also fast, and understands dual monitors.
    Simliar logic applies to BreezeBrowser and even the free Microsoft software.
    There was some discussion of this in http://forums.adobe.com/thread/724396?tstart=0.
    Chuck

    My work flow is to look at the card with Nikon ViewNX2, and assign rating stars to the keepers, then import the keepers
    into Lightroom.  I  can't see the stars in the import dialog, though I can see them once I  do the import.  LR clearly
    understands the rating stars because it can import them.  I'd like to be able to see the rating stars in the import dialog and
    filter on them at import time.  I suspect that there are others out there that would like to filter on color labels and the flags.
    Why not use Lightroom for the review?  I sometimes don't have the Lightroom computer with me, or any computer at all.
    Nikon ViewNX2 is free, and I can install it on whatever computer is handy.  It's also fast, and understands dual monitors.
    Simliar logic applies to BreezeBrowser and even the free Microsoft software.
    There was some discussion of this in http://forums.adobe.com/thread/724396?tstart=0.
    Chuck

Maybe you are looking for

  • Itunes 6 homesharing

    I cannot get homesharing to work on ITUNES 10.6.  My apple TV is 5.0 and works fine with my ipad remote.  However, neither my Ipad nor my apple tv can see the itunes library via homesharing.  I have tried everything i know.  I have disabled my firewa

  • Aperture...won't even load on MacBook Pro???

    I just upgraded my (new) Macbook Pro 15" from 1G to 2G of memory. I have the 2.1Ghz processor. When I try to start Aperture, it says "Your computer does not meet the minimum requirements for Aperture..." So, what's the deal here? When I had 1G of mem

  • Identifier is too long error when creating a new summary

    I get the following error when trying to create a new summary 'Database Error - ORA-00972: identifier is too long'. Looking at the error message on the web says that the maximum length is 30 char, so I gave it a name of '1', but I still get the error

  • Photoshop not saving pngs properly

    My team and I have been having issues with generate image assets not saving png files correctly. Photoshop has been saving them with the png extension, but the file has a white background like a jpg. Has there been in recent updates that may be causi

  • Flash Player won't install even after a clean install (Attn: Chris Campbell)

    Hi there, I'm using IE on a 64 bit Windows 7 system and am having the worst time trying to get Flash Player to work.  It was working fine before and then one day, just stopped working, so not sure if that was due to an update or not.  I've followed C