I have many Certificates listed. Don't know how they all came about and wondering I need all of them.

In looking at my Certificates file, I find many and I am unable to identify what these are for. Should I delete those that don't make sense to me? If I delete them and they are needed, will the site that I am trying to access reload them? Second, where can I educate myself about the use of Certificates. Thanks.

Hi cathyw11,
probably you have 3 shortcuts on your desktop, if it is shortcuts they will have a small arrow on the firefox icon (see the [http://en.wikipedia.org/wiki/Screenshot screenshot]). Right click on each shortcut you want to delete and select delete(don't be afraid, you delete only the shortcut, not the program, the program you can find it in windows start > all programs).
thank you

Similar Messages

  • I have Modzilla Firefox, Modzilla Firefox 2 and modzilla firefox copy on my desktop. I don't know how they all got there but I need to get rid of them. How?

    i need to get rid of Modzilla Firefox 2 and modzilla firefox copy on my desktop. I only need one Modzilla Firefox, I now have 3, I don't know how they got there. grandchildren probably , but I don't know how to delete the other 2. Please help me.

    Hi cathyw11,
    probably you have 3 shortcuts on your desktop, if it is shortcuts they will have a small arrow on the firefox icon (see the [http://en.wikipedia.org/wiki/Screenshot screenshot]). Right click on each shortcut you want to delete and select delete(don't be afraid, you delete only the shortcut, not the program, the program you can find it in windows start > all programs).
    thank you

  • Gantt chart: Don't know how to use the tooltipkeys and toolkeylabel

    I have a problem. Don't know how to use the tooltipkeys and toolkeylabel. I used jquery to select the gantt bars and on mouse over i was getting the task id "tid" then passing it to adf bean with serverlistener and showing a popup that is adf component with javascript. For positioning of the popup I used a button that has width and height 0 and has position absolute and gets the coordinates of the mouse.
    "div[et]" is a jquery selector that selects all the elements that have attribute et. I noticed that all the bars have that attribute as a few other attributes as well "part"...
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
            xmlns:dvt="http://xmlns.oracle.com/dss/adf/faces">
        <af:document title="untitled1.jsf" id="d1">
            <af:resource type="javascript" source="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"/>
            <af:resource type="javascript" source="resources/js/home.js"/>
            <af:messages id="m1"/>
            <af:form id="f1">
               <af:commandButton text="commandButton 1" id="cb1" inlineStyle="visibility:hidden; width:0; height:0" />
                <af:popup id="noteWindow" contentDelivery="lazyUncached" binding="#{homeBean.popup}">
                    <af:noteWindow id="popupWindow">
                        <af:panelFormLayout id="pfl2">
                            <af:panelLabelAndMessage label="Task id" id="plam5">
                                <af:outputText value="#{homeBean.taskId1}" id="ot64"/>
                            </af:panelLabelAndMessage>
                            <af:panelLabelAndMessage label="Start Location Name" id="plam6">
                                <af:outputText value="#{homeBean.startLocation}" id="ot7"/>
                            </af:panelLabelAndMessage>
                            <af:panelLabelAndMessage label="Stop Location Name" id="plam7">
                                <af:outputText value="#{homeBean.stopLocation}" id="ot8"/>
                            </af:panelLabelAndMessage>
                            <af:panelLabelAndMessage label="tasktype" id="pla2m7">
                                <af:outputText value="#{homeBean.taskType}" id="ot9"/>
                            </af:panelLabelAndMessage>
                        </af:panelFormLayout>
                    </af:noteWindow>
                </af:popup>
                <af:serverListener type="jsServerListener" method="#{homeBean.serverEventHandler}"/>
                <dvt:schedulingGantt id="gantt1" value="#{bindings.PersonView1.schedulingGanttModel}" var="row"
                                     startTime="2011-07-04 00:00:00" endTime="2011-07-04 23:00:00" summary="gsg"
                                     showMenuBar="false" showToolbar="false" iconPlacement="left"
                                     showTasksAsDailyBar="false">
                    <f:facet name="major">
                        <dvt:timeAxis scale="days" id="ta1"/>
                    </f:facet>
                    <f:facet name="minor">
                        <dvt:timeAxis scale="hours" id="ta2"/>
                    </f:facet>
                    <f:facet name="nodeStamp">
                        <af:column sortProperty="#{bindings.PersonView1.hints.PersonId.name}" sortable="false"
                                   headerText="#{bindings.PersonView1.hints.PersonId.label}" id="c1">
                            <af:outputText value="#{row.PersonId}" id="ot1">
                                <af:convertNumber groupingUsed="false"
                                                  pattern="#{bindings.PersonView1.hints.PersonId.format}"/>
                            </af:outputText>
                        </af:column>
                    </f:facet>
                </dvt:schedulingGantt>            
            </af:form>
        </af:document>
    </f:view>javascript:
    $(document).ready(bindEvents());
    function bindEvents() {
        $("div[et]").live('mouseover', function (e) {
             $('#cb1').css("position", 'absolute');
             $('#cb1').css("top", e.pageY-4);
             $('#cb1').css("left", e.pageX);
            var popup = AdfPage.PAGE.findComponentByAbsoluteId("noteWindow");
            var element = AdfPage.PAGE.findComponent("f1");
            var taskIdToPass = null;
            if ($(this).attr("tid") !=undefined) {
                 taskIdToPass = $(this).attr('tid').toString();
            } else {
                taskIdToPass = $(this).parent().attr('tid').toString();
            var param = {            taskId : taskIdToPass        };
            AdfCustomEvent.queue(element, "jsServerListener", param, true);
            if (!popup.isPopupVisible()) {
                var hints = {};
                hints[AdfRichPopup.HINT_LAUNCH_ID] = "cb1";
                hints[AdfRichPopup.HINT_ALIGN_ID] =  "cb1";
                hints[AdfRichPopup.HINT_ALIGN] = AdfRichPopup.ALIGN_AFTER_START;
                popup.show(hints);
        }).live("mouseout", function () {
            var popup = AdfPage.PAGE.findComponentByAbsoluteId("noteWindow");
            popup.hide();
    };My bean that is session bean:
    package view;
    import oracle.adf.model.BindingContext;
    import oracle.adf.model.binding.DCDataControl;
    import oracle.adf.view.rich.component.rich.RichPopup;
    import oracle.adf.view.rich.render.ClientEvent;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.Key;
    import oracle.jbo.Row;
    import oracle.jbo.RowSetIterator;
    import oracle.jbo.ViewObject;
    public class HomeBean {
        private RichPopup popup;
        private String taskId1;
        private String startLocation;
        private String stopLocation;
        private long taskId;
        private String taskType;
        public HomeBean() {
            super();
        public void serverEventHandler(ClientEvent clientEvent) {    
            String taskIdString = clientEvent.getParameters().get("taskId").toString();
            this.taskId = Long.parseLong(taskIdString);
            DCDataControl dc1 = BindingContext.getCurrent().findDataControl("AppModuleDataControl");
            ApplicationModule am = dc1.getApplicationModule();
            ViewObject vo = am.findViewObject("PdTrfDayView1");  
            RowSetIterator rowSetIterator = vo.createRowSetIterator(null);
            Row[] rows = rowSetIterator.findByKey(new Key(new Object[] {taskId}), 1);
            Row row = rows[0];
           this.taskId1 =  row.getAttribute("PdTrfDayId").toString();
           this.startLocation = row.getAttribute("StartLocation").toString();
           this.stopLocation = row.getAttribute("StopLocation").toString();
           this.taskType = row.getAttribute ("PdTrfTypeId").toString();
            RichPopup.PopupHints ph = new RichPopup.PopupHints();
            vo.closeRowSetIterator();
        public long getTaskId() {
            return taskId;
        public void setPopup(RichPopup popup) {
            this.popup = popup;
        public RichPopup getPopup() {
            return popup;
        public String getTaskId1() {
            return taskId1;
        public String getStartLocation() {
            return startLocation;
        public String getStopLocation() {
            return stopLocation;
        public String getTaskType() {
            return taskType;
    }I am wondering If i can use setCurrentRow on the iterator that i create and use it for displaying on the popup instead of binding startLocation and stopLocation to the bean and if there is any benefit of that at all...
    Edited by: 897833 on Nov 24, 2011 11:37 AM

    Hi,
    To use tooltipkeys and tooltiplabel in gantt, you can add following code in managed bean
    public String[] getTooltipKeys()
    return new String[]{"columnA", "columnB", "StartDate", "EndDate"};
    public String[] getTooltipLabels()
    return new String[]{"A", "B", "Start Date", "End Date"};
    where , the string array in the ToolTipKeys represents the columns, of the table you have in the gantt component , and the string array in TooltipLabels displays the label you want to display for the table columns.
    In the jsff, you could call the bean methods as follows:
    tooltipKeys="#{GanttBean.tooltipKeys}"
    tooltipKeyLabels="#{GanttBean.tooltipLabels}"

  • In my iPhoto library i have photos of web pages i don't know how they got there there are hundreds of them ,how do i get rid of them and stop them please help me

    in my iPhoto library i have photos of web pages i don't know how they got there there are hundreds of them ,how do i get rid of them and stop them please help me as i have no idea many thanks

    im sorry to be a bit thick here i didnt know this was happening until i looked through all my photoes i use an sd card to put pictures on lap top and icloud from my phone but in library there are all web pages i have ever been to ie face book ebay etc i didnt know if there was any thing i should be turning off many thanks for ur last answer though

  • I have like 4-5 teeny tiny dots in the screen of my iphone i don't know what they are from. I can only see some of them when I tilt my phone a certain way. And they are little bitty but I am wondering what they are from

    I have like 4-5 teeny tiny dots in the screen of my iphone i don't know what they are from. I can only see some of them when I tilt my phone a certain way. And they are little bitty but I am wondering what they are from

    my total library is 680 mb, nowhere close to the 2.08 in the pictures folder. I am obviously messing up.
    Actually you’re not.
    The iPhoto Window reports the size of the library that would result if you exported all the current versions +and nothing else+ to a folder on the desktop.
    The iPhoto Library Folder contains the Original, Modified and thumbnail versions of your pics. It also contains various cache and database files +all of which are necessary+ for the working of the Library.
    Don't change anything in the iPhoto Library Folder via the Finder or any other application. iPhoto depends on the structure as well as the contents of this folder. Moving things, renaming things or otherwise making changes will prevent iPhoto from working and could even cause you to damage or lose your photos.
    You can run a Library on an external disk:
    1. Quit iPhoto
    2. Copy the iPhoto Library Folder as an entity from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Regards
    TD

  • Hello, i have a problem. My boyfriend has got an iPhone 3gs but we have a problem, we don't know how to get iMessage on his phone. Do you know how we could do ?

    Hello, i have a problem. My boyfriend has got an iPhone 3gs but we have a problem, we don't know how to get iMessage on his phone. Do you know how we could do ?

    Then you should have iMessage.  Go to Settings > Messages to turn it on and set your Receive At address.  Note that iMessage uses the Messages app... standard texts are gree, iMessages are blue.
    http://support.apple.com/kb/HT3529

  • I'm trying to transfer the music from my iPhone 3G to my iPod shuffle but I don't know how. I checked on websites but i dont really trust them cause I don't want all my music to be erased (cause i spent a lot of money on them) can someone PLEASE help me.

    'm trying to transfer the music from my iPhone 3G to my iPod shuffle using iTunes but I don't know how. I checked on websites but i dont really trust them cause I don't want all my music to be erased (cause i spent a lot of money on them) can someone PLEASE help me. Why is iTunes so complicated.

    iTunes match - http://www.apple.com/itunes/itunes-match/ - see FAQ at end too
    http://arstechnica.com/apple/2011/11/itunes-match-your-questions-answered/
    http://ipod.about.com/od/UsingiOS5/a/Itunes-Match-Frequently-Asked-Questions.htm
    http://forums.macrumors.com/showthread.php?t=1277415 - deleting items from your computer but saving them in iCloud.  Yes, but risky.

  • My ipad is not being recognized by the new iTunes update that just came  out about a week ago it worked fine till the update I have windows 8.1 does anyone know how to fix this problem and I just bought my ipad mini about a month ago

    My ipad mini is not being recognized by the new iTunes update that just came  out about a week ago it worked fine till the update I have windows 8.1 does anyone know how to fix this problem and I just bought my ipad mini

    I found this is another thread - same issue.
    Re: iTunes has stopped working. Why? 
    Sep 11, 2013 6:07 AM (in response to thurdy)
    Resolved!
    After contacting Apple, I received a reply from their engineers:
    Copy QTMovieWin.dll from:  C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    to: C:\Program Files (x86)\iTunes
    And that did the trick.
    Message was edited by: Stryder777

  • I find dotted circles in my text.  I don't know how they got there or what they're for.

    I find dotted circles in my text.  I don't know how they got there or what they're for.  These dotted "o" characters print out, too.

    Thanks for taking the time to suggest the screen shot.  Actually, I neglected to say that I was working in a Thai font and, after posting my question, it dawned on me that I should check the keyboard template again.  Well, in Thai, vowel and accent symbols show on the template with the dotted zeroes below as place setters, They don't show IF one doesn't make a typing error, which is what I did.  Sorry for the false alarm, and thanks, again.

  • Settlers 7; I don't know how to rotate camera on macbook pro. Please Help!

    Can anyone tell me how to rotate the camera in settlers 7 on my mac book pro 15" track pad or keyboard? The game wont let me play until I've done this first test.
    Also is it worth buying Sims 3 or will I have just as much trouble as I've had with Settlers 7?

    Thanks for your reply Kappy but I did not mean the camera that is in the lap top lid that is used to take photos of yourself with photo booth. I mean rotating the camera view in the game of Settlers 7. I can zoom in and out and move horizontally and vertically but don't know how to rotate the view.

  • Please help, I don't know how to overclock my proccessor, and ramm..

    hye..i'm new here..as u can see, i have a good rig..but the problem is, i don't know how to utilize it..i even don't know how to start overclock my pc...huhuh..somebody, can give me some suggestion...

    Quote from: HU16E on 26-May-09, 19:27:17
    Yes, Prime 95 is a system stress testing utility. Here is the link to a bunch of useful utilities. You will need to screen them for the ones that only apply to your needs & system. Forum 'Sticky' OCUBA - OC Utilities & Benchmarking Apps. https://forum-en.msi.com/index.php?topic=107133.0
    thanks bro.. :biggthumbsup:omg..after i applied it..my temp becomes 41 on idle..before this, it is 38-39...i've ran the intel burn test and it tells me that my system is running stable on 3.33GHz...  ..
    by the way, when i let it on stock (3.0GHz), my cpu-z shows my core speed 2400 GHz and only 6.0 for my multiplier, wherelse in the bios stated my core speed is 3.0ghz and multilplier is 9.0..this is acutually the stock one...why is that in the cpu-z is different from the actual...
    your 3dmark test for your first rig is 21000... ..how do you make it till 21000..i've just test it on mine and it was only 16000... ...is it only depends on our graphic card..??..i'm using only GECube HD4870 512MB..

  • In the last week, Safari is unexpectedly quitting.  I'm running mac 10.4.11 system and Safari 4.1.3 version.  I have looked for the files listed on other helps in my library/cache and do not see them.  I have copy of report-don't know how to send it here.

    Date/Time:      2011-12-26 10:40:24.451 -0500
    OS Version:     10.4.11 (Build 8S2167)
    Report Version: 4
    Command: Safari
    Path:   /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [374]
    Version:        4.1.3 (4533.19.4)
    Build Version: 1
    Project Name:  WebBrowser
    Source Version: 75331904
    PID:   398
    Thread: 0
    Exception: EXC_BAD_ACCESS (0x0001)
    Codes:      KERN_PROTECTION_FAILURE (0x0002) at0x00000000
    Thread 0 Crashed:
    0  libobjc.A.dylib                           0x90a59387objc_msgSend + 23
    1  com.apple.WebKit                          0x0102483e-[WebHTMLView(WebPrivate) close] + 156
    2  com.apple.WebKit                          0x0102475c-[WebHTMLView dealloc] + 74
    3  com.apple.AppKit                          0x9329354b-[NSView release] + 180
    4  com.apple.Foundation                       0x927e72cfNSPopAutoreleasePool + 530
    5  com.apple.Foundation                       0x92867904-[NSURLConnection(NSURLConnectionInternal) _sendCallbacks] + 951
    6  com.apple.Foundation                       0x928674d6_sendCallbacks + 201
    7  com.apple.CoreFoundation                   0x9082cf06CFRunLoopRunSpecific + 1213
    8  com.apple.CoreFoundation                   0x9082ca42CFRunLoopRunInMode + 61
    9  com.apple.HIToolbox                        0x92e01878RunCurrentEventLoopInMode + 285
    10 com.apple.HIToolbox                        0x92e00f82ReceiveNextEventCommon + 385
    11 com.apple.HIToolbox                        0x92e00dd9BlockUntilNextEventMatchingListInMode + 81
    12 com.apple.AppKit                          0x93286f45_DPSNextEvent + 572
    13 com.apple.AppKit                          0x93286b37-[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    14 com.apple.Safari                          0x0000f6f90x1000 + 59129
    15 com.apple.AppKit                          0x932808c4-[NSApplication run] + 512
    16 com.apple.AppKit                          0x93274820NSApplicationMain + 573
    17  com.apple.Safari                          0x0000749b0x1000 + 25755
    18 com.apple.Safari                          0x0010e5120x1000 + 1103122
    19 com.apple.Safari                          0x000072190x1000 + 25113
    Thread 1:
    0  libSystem.B.dylib                         0x90024407semaphore_wait_signal_trap + 7
    1  com.apple.JavaScriptCore                   0x0050ade0***::ThreadCondition::wait(***::Mutex&) + 24
    2  com.apple.WebCore                         0x015eadd0WebCore::IconDatabase::syncThreadMainLoop() + 256
    3  com.apple.WebCore                         0x015e8856WebCore::IconDatabase::iconDatabaseSyncThread() + 192
    4  libSystem.B.dylib                         0x90023d67_pthread_body + 84
    Thread 2:
    0  libSystem.B.dylib                         0x90009817mach_msg_trap + 7
    1  com.apple.CoreFoundation                   0x9082d227CFRunLoopRunSpecific + 2014
    2  com.apple.CoreFoundation                   0x9082ca42CFRunLoopRunInMode + 61
    3  com.apple.Foundation                       0x9285f5da+[NSURLCache _diskCacheSyncLoop:] + 206
    4  com.apple.Foundation                       0x92802cfcforkThreadForFunction + 123
    5  libSystem.B.dylib                         0x90023d67_pthread_body + 84
    Thread 3:
    0  libSystem.B.dylib                         0x90009817mach_msg_trap + 7
    1  com.apple.CoreFoundation                   0x9082d227CFRunLoopRunSpecific + 2014
    2  com.apple.CoreFoundation                   0x9082ca42CFRunLoopRunInMode + 61
    3  com.apple.Safari                          0x00026c6d0x1000 + 154733
    4  com.apple.Safari                          0x00026b260x1000 + 154406
    5  com.apple.Safari                          0x00026aab0x1000 + 154283
    6  libSystem.B.dylib                         0x90023d67_pthread_body + 84
    Thread 4:
    0  libSystem.B.dylib                         0x90024407semaphore_wait_signal_trap + 7
    1  com.apple.JavaScriptCore                   0x00510742***::ThreadCondition::timedWait(***::Mutex&, double) + 74
    2  com.apple.Safari                          0x002ddd660x1000 + 3001702
    3  com.apple.Safari                          0x002dde5c0x1000 + 3001948
    4  com.apple.Safari                          0x0003a0cd0x1000 + 233677
    5  com.apple.Safari                          0x0003a02f0x1000 + 233519
    6  libSystem.B.dylib                         0x90023d67_pthread_body + 84
    Thread 5:
    0  libSystem.B.dylib                         0x90024407semaphore_wait_signal_trap + 7
    1  com.apple.Foundation                       0x92858c60-[NSConditionLock lockWhenCondition:] + 39
    2  com.apple.Syndication                      0x998ce79e-[AsyncDB _run:] + 181
    3  com.apple.Foundation                       0x92802cfcforkThreadForFunction + 123
    4  libSystem.B.dylib                         0x90023d67_pthread_body + 84
    Thread 6:
    0  libSystem.B.dylib                         0x90009817mach_msg_trap + 7
    1  com.apple.CoreFoundation                  0x9082d227CFRunLoopRunSpecific + 2014
    2  com.apple.CoreFoundation                   0x9082ca42CFRunLoopRunInMode + 61
    3  com.apple.Foundation                       0x9283839c+[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
    4  com.apple.Foundation                       0x92802cfcforkThreadForFunction + 123
    5  libSystem.B.dylib                         0x90023d67_pthread_body + 84
    Thread 7:
    0  libSystem.B.dylib                         0x90019d0cselect + 12
    1  libSystem.B.dylib                         0x90023d67_pthread_body + 84
    Thread 8:
    0  libSystem.B.dylib                         0x90024407semaphore_wait_signal_trap + 7
    1  com.apple.JavaScriptCore                   0x00510742***::ThreadCondition::timedWait(***::Mutex&, double) + 74
    2  com.apple.WebCore                         0x018bb8d2WebCore::LocalStorageThread::threadEntryPoint() + 170
    3  libSystem.B.dylib                         0x90023d67_pthread_body + 84
    Thread 9:
    0  libSystem.B.dylib                         0x90024407semaphore_wait_signal_trap + 7
    1  com.apple.ColorSync                        0x915a96abpthreadSemaphoreWait(t_pthreadSemaphore*) + 35
    2  com.apple.ColorSync                        0x915c3ddcCMMConvTask(void*) + 60
    3  libSystem.B.dylib                         0x90023d67_pthread_body + 84
    Thread 10:
    0  libSystem.B.dylib                         0x90009817mach_msg_trap + 7
    1  com.apple.CoreFoundation                   0x9082d227CFRunLoopRunSpecific + 2014
    2  com.apple.CoreFoundation                   0x9082ca42CFRunLoopRunInMode + 61
    3  com.apple.audio.CoreAudio                  0x91469356HALRunLoop::OwnThread(void*) + 158
    4  com.apple.audio.CoreAudio                  0x91469171CAPThread::Entry(CAPThread*) + 93
    5  libSystem.B.dylib                         0x90023d67_pthread_body + 84
    Thread 11:
    0  libSystem.B.dylib                         0x90009817mach_msg_trap + 7
    1  com.apple.CoreFoundation                   0x9082d227CFRunLoopRunSpecific + 2014
    2  com.apple.CoreFoundation                   0x9082ca42CFRunLoopRunInMode + 61
    3  com.apple.Foundation                       0x928386ca-[NSRunLoop runMode:beforeDate:] + 182
    4  com.apple.Foundation                       0x928385c6-[NSRunLoop run] + 75
    5  com.apple.Safari                           0x000792ff0x1000 + 492287
    6  com.apple.Foundation                       0x92802cfcforkThreadForFunction + 123
    7  libSystem.B.dylib                         0x90023d67_pthread_body + 84
    Thread 12:
    0  libSystem.B.dylib                         0x90024407semaphore_wait_signal_trap + 7
    1  ...lashPlayer-10.4-10.5.plugin             0x120de30funregister_ShockwaveFlash + 47503
    2  ...lashPlayer-10.4-10.5.plugin             0x11cb6f9f0x11c9d000 + 106399
    3  ...lashPlayer-10.4-10.5.plugin             0x120de3fcunregister_ShockwaveFlash + 47740
    4  ...lashPlayer-10.4-10.5.plugin             0x120de440unregister_ShockwaveFlash + 47808
    5  ...lashPlayer-10.4-10.5.plugin             0x120de566unregister_ShockwaveFlash + 48102
    6  libSystem.B.dylib                         0x90023d67_pthread_body + 84
    Thread 13:
    0  libSystem.B.dylib                         0x90024407semaphore_wait_signal_trap + 7
    1  ...lashPlayer-10.4-10.5.plugin             0x120de30funregister_ShockwaveFlash + 47503
    2  ...lashPlayer-10.4-10.5.plugin             0x11cb6f9f0x11c9d000 + 106399
    3  ...lashPlayer-10.4-10.5.plugin             0x120de3fcunregister_ShockwaveFlash + 47740
    4  ...lashPlayer-10.4-10.5.plugin             0x120de440unregister_ShockwaveFlash + 47808
    5  ...lashPlayer-10.4-10.5.plugin             0x120de566unregister_ShockwaveFlash + 48102
    6  libSystem.B.dylib                         0x90023d67_pthread_body + 84
    Thread 14:
    0  libSystem.B.dylib                         0x90047927semaphore_timedwait_signal_trap + 7
    1  ...lashPlayer-10.4-10.5.plugin             0x120de2d7unregister_ShockwaveFlash + 47447
    2  ...lashPlayer-10.4-10.5.plugin             0x11fc45480x11c9d000 + 3306824
    3  ...lashPlayer-10.4-10.5.plugin             0x120de3fcunregister_ShockwaveFlash + 47740
    4  ...lashPlayer-10.4-10.5.plugin             0x120de440unregister_ShockwaveFlash + 47808
    5  ...lashPlayer-10.4-10.5.plugin             0x120de566unregister_ShockwaveFlash + 48102
    6  libSystem.B.dylib                         0x90023d67_pthread_body + 84
    Thread 0 crashed with X86 Thread State (32-bit):
      eax:0x00000000  ebx: 0x010249c6  ecx: 0x90aa344c  edx: 0x101973a0
      edi:0x00000008  esi: 0x0ee3f790  ebp: 0xbfffecb8  esp: 0xbfffec74
       ss:0x0000001f  efl: 0x00010206  eip: 0x90a59387   cs: 0x00000017
       ds:0x0000001f   es:0x0000001f   fs:0x00000000   gs: 0x00000037
    Binary Images Description:
       0x1000 -   0x330fffcom.apple.Safari 4.1.3 (4533.19.4)            /Applications/Safari.app/Contents/MacOS/Safari
      0x505000-   0x6ddfffcom.apple.JavaScriptCore 4533.19 (4533.19.1)            /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x1008000-  0x10f5fff com.apple.WebKit4533.19 (4533.19.4)            /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x119a000-  0x1448fff com.apple.QuartzCore1.4.13            /System/Library/PrivateFrameworks/Safari.framework/Frameworks/QuartzCore.framew ork/Versions/A/QuartzCore
    0x14dc000-  0x15bafff libxml2.2.dylib             /usr/lib/libxml2.2.dylib
    0x15e6000-  0x20a7fff com.apple.WebCore4533.19 (4533.19.4)            /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x11593000 - 0x11596fff com.macromedia.Flash Player.plugin10.3.183.11            /Library/InternetPlug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x11c9d000 - 0x126ebfffcom.macromedia.FlashPlayer-10.4-10.5.plugin 10.3.183.11            /Library/InternetPlug-Ins/FlashPlayer.plugin/Contents/PlugIns/FlashPlayer-10.4- 10.5.plugin/Contents/MacOS/FlashPlayer-10.4-10.5
    0x8fe00000 - 0x8fe4afff dyld 46.16            /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib             /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib             /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.3 (???)            /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS             /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.85(???)            /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.11(368.35)            /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???)            /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib             /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib             /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib             /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib             /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???)            /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib             /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore682.31 (682.32)            /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices4.1            /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.24            /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0)            /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.8            /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36)            /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91158000 - 0x91166fff libz.1.dylib             /usr/lib/libz.1.dylib
    0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774)            /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.2            /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91415000 - 0x9141cfff libbsm.dylib             /usr/lib/libbsm.dylib
    0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6            /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.5            /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4(???)            /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91521000 - 0x9154dfff com.apple.AE 316.3            /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91560000 - 0x91634fff com.apple.ColorSync 4.4.13            /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166f000 - 0x916ecfff com.apple.print.framework.PrintCore4.6 (177.13)            /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91719000 - 0x917c2fff com.apple.QD 3.10.28 (???)            /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917e8000 - 0x91833fff com.apple.HIServices 1.5.2 (???)            /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91852000 - 0x91868fff com.apple.LangAnalysis 1.6.3            /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91874000 - 0x9188efff com.apple.FindByContent 1.5            /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91898000 - 0x918d5fff com.apple.LaunchServices 183.1            /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e9000 - 0x918f5fff com.apple.speech.synthesis.framework3.5            /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918fc000 - 0x9193cfff com.apple.ImageIO.framework 1.5.9            /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9194f000 - 0x91a01fff libcrypto.0.9.7.dylib             /usr/lib/libcrypto.0.9.7.dylib
    0x91a47000 - 0x91a5dfff libcups.2.dylib             /usr/lib/libcups.2.dylib
    0x91a62000 - 0x91a80fff libJPEG.dylib             /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a85000 - 0x91ae4fff libJP2.dylib             /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91af6000 - 0x91afafff libGIF.dylib             /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91afc000 - 0x91b84fff libRaw.dylib             /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b88000 - 0x91ba3fff libPng.dylib             /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91ba8000 - 0x91baafff libRadiance.dylib             /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91ca7000 - 0x91ce6fff libTIFF.dylib             /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91cec000 - 0x91cecfff com.apple.Accelerate 1.3.1(Accelerate 1.3.1)            /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cee000 - 0x91d7cfff com.apple.vImage 2.5            /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d83000 - 0x91d83fff com.apple.Accelerate.vecLib 3.3.1(vecLib 3.3.1)            /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d85000 - 0x91ddefff libvMisc.dylib             /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91de7000 - 0x91e0bfff libvDSP.dylib             /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e13000 - 0x9221cfff libBLAS.dylib             /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92256000 - 0x9260afff libLAPACK.dylib             /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92637000 - 0x92724fff libiconv.2.dylib             /usr/lib/libiconv.2.dylib
    0x92726000 - 0x927a4fff com.apple.DesktopServices 1.3.7            /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927e5000 - 0x92a1dfff com.apple.Foundation 6.4.12 (567.42)            /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b3d000 - 0x92b54fff libGL.dylib             /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b5f000 - 0x92bb7fff libGLU.dylib             /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bcb000 - 0x92bcbfff com.apple.Carbon 10.4 (???)            /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bcd000 - 0x92bddfff com.apple.ImageCapture 3.0.4            /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92beb000 - 0x92bf3fffcom.apple.speech.recognition.framework 3.6            /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bf9000 - 0x92bfefff com.apple.securityhi 2.0.1 (24742)            /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92c04000 - 0x92c95fff com.apple.ink.framework 101.2.1 (71)            /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92ca9000 - 0x92cacfff com.apple.help 1.0.3 (32.1)            /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92caf000 - 0x92ccdfff com.apple.openscripting 1.2.7 (???)            /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cdf000 - 0x92ce5fff com.apple.print.framework.Print 5.1(192.3)            /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92ceb000 - 0x92d4efff com.apple.htmlrendering 66.1 (1.1.3)            /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d72000 - 0x92db3fff com.apple.NavigationServices 3.4.4(3.4.3)            /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dda000 - 0x92de7fff com.apple.audio.SoundManager 3.9.1            /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dee000 - 0x92df3fff com.apple.CommonPanels 1.2.3 (73)            /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92df8000 - 0x930edfff com.apple.HIToolbox 1.4.10 (???)            /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931f3000 - 0x931fefff com.apple.opengl 1.4.16            /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93203000 - 0x9321efff com.apple.DirectoryService.Framework3.2            /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9326e000 - 0x9326efff com.apple.Cocoa 6.4 (???)            /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93270000 - 0x93926fff com.apple.AppKit 6.4.10 (824.48)            /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93ca7000 - 0x93d22fff com.apple.CoreData 91 (92.1)            /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d5b000 - 0x93e14fff com.apple.audio.toolbox.AudioToolbox1.4.7            /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e57000 - 0x93e57fff com.apple.audio.units.AudioUnit1.4.2            /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94060000 - 0x940a1fff libsqlite3.0.dylib             /usr/lib/libsqlite3.0.dylib
    0x940a9000 - 0x940e3fff libGLImage.dylib             /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940e8000 - 0x940fefff com.apple.CoreVideo 1.4.2            /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94198000 - 0x941d6fff com.apple.vmutils 4.0.2 (93.1)            /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9421a000 - 0x9422afff com.apple.securityfoundation 2.2.1(28150)            /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94237000 - 0x94274fff com.apple.securityinterface 2.2.1(27695)            /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94290000 - 0x9429ffff libCGATS.A.dylib             /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x942a6000 - 0x942b1fff libCSync.A.dylib             /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942fd000 - 0x94317fff libRIP.A.dylib             /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9431d000 - 0x9463cfff com.apple.QuickTime 7.6.4 (1327.73)            /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94700000 - 0x9470efff com.apple.framework.Apple80211 4.5.5(455.2)            /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x947c2000 - 0x94908fff com.apple.AddressBook.framework4.0.6 (490)            /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94994000 - 0x949a3fff com.apple.DSObjCWrappers.Framework1.1            /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x949aa000 - 0x949d3fff com.apple.LDAPFramework 1.4.2(69.1.1)            /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x949d9000 - 0x949e8fff libsasl2.2.dylib             /usr/lib/libsasl2.2.dylib
    0x949ec000 - 0x94a11fff libssl.0.9.7.dylib             /usr/lib/libssl.0.9.7.dylib
    0x94a1d000 - 0x94a3afff libresolv.9.dylib             /usr/lib/libresolv.9.dylib
    0x94f5c000 - 0x94f94fff com.apple.PDFKit 1.0.4            /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x95ec0000 - 0x95ec0fff com.apple.vecLib 3.3.1 (vecLib3.3.1)            /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96598000 - 0x9659dfff com.apple.agl 2.5.9 (AGL-2.5.9)            /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96f69000 - 0x97040fff com.apple.QuartzComposer 1.2.6(32.25)            /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x970c9000 - 0x970c9fff com.apple.quartzframework 1.0            /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x978a0000 - 0x98797fffcom.apple.QuickTimeComponents.component 7.6.4 (1327.73)            /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98f2c000 - 0x98f55fff com.apple.CoreMediaPrivate 15.0            /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x998cb000 - 0x99902fff com.apple.Syndication 1.0.8 (56.1)            /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9b518000 - 0x9b558fff com.apple.CoreMediaIOServicesPrivate20.0            /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x9b8e1000 - 0x9b8f3fff com.apple.SyndicationUI 1.0.8 (56.1)            /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x9fefc000 - 0x9ffaafff com.apple.QTKit 7.6.4 (1327.73)            /System/Library/Frameworks/QTKit.framework/QTKit
    Model: iMac4,1, BootROM IM41.0055.B08, 2 processors, IntelCore Duo, 1.83 GHz, 512 MB
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 128 MB
    Memory Module: BANK 1/DIMM1, 512 MB, DDR2 SDRAM, 667 MHz
    AirPort: spairport_wireless_card_type_airport_extreme(0x14E4, 0x89), Broadcom BCM43xx 1.0 (4.170.46.9)
    Bluetooth: Version 1.9.5f4, 2 service, 1 devices, 1 incomingserial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: ST3160023AS, 149.05 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-846
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500mA
    USB Device: MP500, Canon, Up to 480 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Upto 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Mitsumi Electric, Up to1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12Mb/sec, 250 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Upto 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12Mb/sec, 500 mA

    Hello,
    There are no files like that in that folder (com.apple.safari).  They all have long numbers with .jpeg or .png at the end.  That's what I meant by I cannot find any files like those mentioned in all the helps I read today.  BTW-it's still crashing - no particular pattern to it at all.
    The only two things I have downloaded recently is a new version of Flash and a Mac-driven update to Office.
    Thank you very much for your attempt to help us.
    J.

  • In a class for dreamweaver cs6 but have Creative cloud I don't know how to use dreamweaver

    I am in a web design class where the book is on CS6 Dreamweaver but I have Creative Cloud so everything is different. I am afraid I am going to fail this class that is required for my degree because I do not know how to use Dreamweaver. Can anybody help me?

    If you're a Creative Cloud Subscriber, you can download & install CS6 alongside CC. 
    NOTE: Follow the VERY IMPORTANT instructions or it won't work.
    http://prodesigntools.com/adobe-cs6-direct-download-links.html
    The problem with text books is that they were not updated to reflect changes/improvements Adobe made to the software. It's worth noting that DW CS6 has 6 versions -- all a little different depending on how you obtained it.
    CS6 Perpetual Licensed (or boxed version) -  12.0, update 12.01, update 12.02, update 12.03
    CS6 Cloud (subscription version) - 12.0, update 12.1, update 12.2
    Nancy O.

  • Have reformatted MacBook but don't know how to reinstall my Office

    Hi
    I have a MacBook Pro from 2011, i bought it in the UK and we got the latest software put onto it including Microsoft office.
    I have had to reformat the macbook as it was just running realy slow and i had too much on it.  I have done ther reformat fine.  It all looks great, apart from i don't appear to have Microsoft office anymore.  I was never given a CD/DVD for this, it was just something the macbook came with.
    Any idea how to sort this out.  Is it a purchased item in the itunes or something? I do have an Microsoft office key saved onto my external hard drive and assume this is for my Microsoft office, so need to get it installed somehow?
    Any help would be appreciated.
    Thanks
    Carroll Family.

    Go to the Microsoft Office website and look for a link to download Office 2011 for Mac. You will need to enter your License Key Code to start the download and again once you install Office on your Mac.
    Here's the link.
    http://www.microsoft.com/mac/office-2011-digital-download

  • I have iCloud but I don't know how to access my documents from my iPad on my Macbook Pro.

    I have Mac OS X Lion 10.7.3. I have read some things as to how to access files from iCloud in iTunes; but this didn't work or maybe I am not doing it correctly. i just started a doument on my ipad and I want to know how to access it now on my MacBook Pro. Help!

    Go to www.icloud.com with Safari on the Mac. You will have to enter your username and password. iCloud will open to your account and there will be an iWorks icon that you can click on. Then you can click on Pages, Numbers or Keynote at the top. All of your documents should be in there. You can click on a document to download it. Follow the prompts if it asks what format you want.
    As far as I know - only the iWorks applications currently work with this feature.

Maybe you are looking for

  • External display HD LCD monitor vs HD LCD TV  ??

    Hello All I'm needing to up-grade me second display and, have been shopping around. In my shopping I'm getting mixed thoughts, I finding HD monitors and HD TV's so, I'm hoping somebody can point me in the right direction, I'm finding HD monitors in t

  • Sales information system-customer report

    Hi!,SAP gurus, Brief description about the project:I am in a support project,and facing the issue that the standard sis reports are not running properly. Analysis:On analysing the problem i found that the reports based on sales organisation-transacti

  • Back Button on JSP page

    Dear All; I am new to JSF. I have built a small sample application on JSF that is integrated with jetspeed which takes user name and password. If password is true it goes to successPage else goes to errorPage. This functionality is working fine. I wa

  • Dreamweaver 8 errors on Application - Databases - Viewing Table (MySQL)

    I have the database setup for DW8 to use and it works it just gives me errors when I go into Application-Databases and open up a table to inspect the keys inside it. Dreamweaver 8.0.2 with CF8extensions Coldfusion 8,0,1,195765 mysql 5.0.67 win2000pro

  • Mail, returned mail, blacklisted ISPS and port selection

    I live in Spain and my e-mail, especially to US friends and colleagues, is increasingly being returned to me, even though I have been e-mailing them for years, because it is now being identified as spam. E-mail to family, friends and colleagues in Sp