Graphics re-draw bug in main Hyperdraw window?

Hi there,
I'm struggling to explain this one clearly, but I'll give it a go....:
When moving or copying a multiple-selection of events in Hyperdraw (e.g. copying 2 bars of pitchbend), the ghost-outlines created to show the potential new position of the events (before you let go of the mouse) get repeatedly drawn across the grid (as you move the mouse around) without the 'old' ghost-outlines clearing, thus making it very tricky to know where you're dropping the copied events to because the entire grid-line is filled with ghostlines....
Can anyone else replicate this problem? It looks like a bug from where I'm sitting....
Thanks,
Jason

bump...

Similar Messages

  • How can get a Graphics to draw line on screen?

    How can get a Graphics to draw line on screen?
    Now, I can get a Graphics to draw line based on component. For example JPanel, but I want to get a Graphics to draw line on screen.

    By drawing on the screen, I assume you mean drawing outside the bounds of a top-level window like
    JFrame or JDialog. You can't do that. At least, without going native and even then that's a dodgey thing
    for any platform to let you do. One thing you can do is simulate it with a robot's screen capture:
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import javax.swing.*;
    public class X {
        public static void main(String[] args) throws Exception {
            Rectangle bounds = GraphicsEnvironment.getLocalGraphicsEnvironment().getMaximumWindowBounds();
            BufferedImage image = new Robot().createScreenCapture(bounds);
            Graphics2D g2 = image.createGraphics();
            g2.setStroke(new BasicStroke(20));
            g2.setPaint(Color.RED);
            g2.drawLine(0, 0, bounds.width, bounds.height);
            g2.drawLine(bounds.width, 0, 0, bounds.height);
            g2.dispose();
            JLabel label = new JLabel(new ImageIcon(image));
            label.addMouseListener(new MouseAdapter(){
                public void mousePressed(MouseEvent evt) {
                    System.exit(0);
            JFrame f = new JFrame();
            f.setUndecorated(true);
            f.getContentPane().add(label);
            f.setBounds(bounds);
            f.setVisible(true);
    }

  • Drawing directly in the document window

    Can anybody provide sample code showing the basics of drawing directly in the document window? I'm thinking of something along the lines of the measure tool (pardon the pun).
    It looks like I'm supposed to use either the Annotator Suite or the Document View Suite to "invalidate" a rectangle in the document, followed by doing the actual drawing with the ADMDrawer Suite. But the documentation in this area is pretty sparse (for example GetDocumentViewInvalidRect and SetDocumentViewInvalidRect refer to a "fudged" invalid rect without explaining what that is) and I don't see anything in the Sample Code folder that explains this feature.
    Are the little text annotations ("path" "anchor") that pop up when using Smart Guides done using this method?
    Thanks,
    John

    (Sound of crickets chirping...)
    Boy, this forum is awfully dead in comparison to the InDesign SDK forum. Is no one writing Illustrator plug-ins anymore?
    But hey, I'll keep posting, if only for my own amusement, about my saga of writing a plug-in.
    I figured out some of the annotation stuff, but I'm still puzzled by some things.
    I started by simply trying to create a tool which would carry a 100x100 box around with it when moved on the screen -- no clicking or dragging yet -- much as the symbol sprayer, for example, has a nice circle (albeit of varying size) around it. I created the tool and added it as an annotator. When it receives a kSelectorAITrackToolCursor message, it simply captures the cursor location in a global and sets the PlatformCursor. When the tool receives a kCallerAIAnnotation message, I have this code:
    extern AIErr toolAnnotate( AIAnnotatorMessage *message ) {
        AIErr error = kNoErr;
        error = sView->ArtworkPointToViewPoint( message->view, &g->cursorPoint, &g->cursorPointScreen );
        g->annoBoundsScreen.top = g->cursorPointScreen.v - 50;
        g->annoBoundsScreen.bottom = g->cursorPointScreen.v + 50;
        g->annoBoundsScreen.left = g->cursorPointScreen.h - 50;
        g->annoBoundsScreen.right = g->cursorPointScreen.h + 50;
        ADMDrawerRef dr = sADMDrawer->Create(message->port, &g->annoBoundsScreen, kADMPaletteFont);
        ASRect myRect;
        myRect.top = 0;
        myRect.bottom = 100;
        myRect.left = 0;
        myRect.right = 100;
        sADMDrawer->SetDrawMode( dr, kADMXORMode );
        sADMDrawer->SetADMColor( dr, kADMBlackColor );
        sADMDrawer->DrawRect( dr, &myRect );
        sADMDrawer->Destroy( dr );
        sAnnotator->InvalAnnotationRect ( message->view, &g->annoBoundsScreen );
    This (should) convert the cursor location (in artwork coordinates) to screen coordinates, set the annotation boundaries based on this location, create the drawer reference, and draw the 100x100 rectangle within this reference. Finally, it invalidates this rectangle as per the Annotation suite documentation.
    I fired up the tool in Illy 10 and saw a single box created down at the 0, 0 point on the page. No box followed the cursor. Hmm. I added an sADMBasic->Beep() to the annotation code and realized what was happening -- my tool was getting an annotation message when first selected, but none when it was merely moved around the screen.
    After some futzing around I discovered that if I added a call to sView->SetDocumentViewInvalidDocumentRect in the TrackToolCursor code, I got an annotate message every time the mouse was moved! I captured the previous cursor position and invalidated the rectangle 50 points on all sides from it. and tried again. Success -- partially.
    At this point, the cursor could be moved around with the box following it. It suffers, however, from the following bugs:
    1) The SetDocumentViewInvalidDocumentRect is in artwork coordinates and so only works at 100% or greater. If I zoom out, my little box leaves trails all over the screen. In addition, if I zoom in, the cursor stutters noticeably -- I assume because Illustrator is forcing a redraw on large portions of the document. I think I can fix both these bugs by recalculating the SetDocumentViewInvalidDocumentRect into screen coordinates. However I note that the circle of the symbol sprayer can be made huge -- as large as the screen -- and it still moves smoothly. So maybe calling sView->SetDocumentViewInvalidDocumentRect is not the way to force annotations. But I haven't been able to discover another way.
    2) When the mouse moves into a palette, the square remains "hung up" at the last position where the cursor was in the document window. I think I can fix this by utilizing the Suspend and Resume notifiers and doing one last InvalAnnotationRect when I get the Suspend notification.
    3) For fun I tried clicking and dragging. Bad news. If I do this, thereafter the entire Illustrator window only redraws iself in the small rectangle that was set when I created the drawer port. By chance I found that if I use another tool that annotates such as the pencil *before* I use my tool, then everything is fine (although of course the box doesn't follow the cursor around anymore because my toolMouseDrag code is empty). How is using a previous tool "fixing" my code? I don't understand this one at all.
    Anyway, I suppose I could fork over a wad of cash and join the ADN and purchase a support case -- but hey, I'm just a hobbyist messing around at this point and facing some rather crappy documentation. Any tips will be much appreciated.
    John

  • Outlook2013 email message goes behind main Outlook window when opening PDF attachment with Reader 11

    Problem statement: Outlook 2013 email message goes behind main Outlook window when opening PDF attachment with Adobe Reader 11.0.3
    Environment: Windows 8 x64; Office 2013; Adobe Reader 11.0.3
    Steps to reproduce bug:
    1. Open Outlook 2013
    2. Open email message with PDF attachment
    3. Open PDF attachment (with Adobe Reader as default PDF viewer)
    4. Close Adobe Reader
    Results: Original email message with PDF attacment now sits behind the main Outlook window
    Expected results: Original email message should be on top of main Outlook window as it was when opening the PDF attachment
    Note: Adobe Acrobat Profession performs as expected - the original email is on top of the main Outlook window - This only seems to be a problem with Adobe Reader.
    Has anyone else experience this problem?  If so, have you found a work-around?
    Thanks,
    Mike

    From: new window opens behind existing window - how to modify?
    I had this problem happening in Outlook.
    If I tried to open an email, it would open behind the main Outlook window.
    The same happened if I opened a link in the email - it would open behind the mail.
    The fix that was suggested to me was so simple that I still don't believe it.
    Right click on the task bar and unlock the taskbar, then lock it again.
    Close down Outlook and re-start it.
    Problem solved! Just dont know how  or why.
    Proposed as answer byalfreelandTuesday, January 08, 2013 4:52 PM
    It worked for me with Win 7 and OL 2003. Why? Who cares ... It is working.
    Liviu 2014-09-17

  • Increase main oracle window size in forms 10g

    I am creating a form in 10g. The form has a window and a canvas. I have given scroll bar for the canvas which has multiple blocks (so that a user can scroll within the multiple records) and a scroll bar for the window so that the user can scroll at the bottom of the page.
    The main oracle window which displays the messages and errors (not my forms window) is not the full size, its a little small (there is white blank space at the bottom) and I want to increase its size to full so that the users may not necessarily need to use the window scroll bar.
    Can someone please tell me how to increase its size?
    Thanks.

    Hello
    I think that others user could have problems, above all, with 'SEPARATEFRAME=TRUE'.
    Here a note from metalink:
    Note:358468.1 How to Maximize the MDI Window correctly on Web showing the Status bar?
    When you try to Maximize MDI window in to form using
    set_Window_property(FORMS_MDI_WINDOW,WINDOW_STATE,MAXIMIZE) on web,
    even though the MDI window appears as Maximized it is not actually maximized,
    also it doesnt show the status cafe.
    This issue has been explained in BUG#4944285 Known and 181100.1
    Regards

  • How to change the style of the main application window shell

    Hello,
    I am migrating my application from eclipse 3.x to eclipse 4.3 and I want to set the style of the main application window i.e. the shell that is created in application MTrimmedWindow in e4.
    Earlier we were doing it using
    IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
    configurer.setInitialSize(new Point(0, 0));
    configurer.setShowCoolBar(false);
    configurer.setShowStatusLine(false);
    configurer.setShellStyle(SWT.DIALOG_TRIM | SWT.RESIZE);
    But now in e4 application after reading some forum replies I got to know that custom renderer needs to be created for that.
    I created my own renderer extending WBWRenderer and as I wanted to change the style of shell I am overriding createWidget method.
    Now the problem is that if I am just creating a new shell in this createWidget method then it is not working. Might be because this method has a lot of other code also.
    So I copied all this code into my overridden method of createWidget & just changed the style of shell according to my need. Then this worked but for this I have to put some private methods also into my custom renderer class from WBWRenderer.
    SO my question is to confirm that if I am doing it in a right way?
    or is there any other mechanism to do this in a more efficient way?
    Thanks

    This can now be solved with a specific "persisted state" key flag, as documented in https://bugs.eclipse.org/bugs/show_bug.cgi?id=386951 . For example to realize a NO_TRIM window, add the key/value styleOverride/8, where 8 is the value if you get the numeric of
    int val = SWT.NO_TRIM;
    System.out.println(val);
    Hey Zugi: Liebe Grüsse! Master UIBK/2010

  • HTMLLoader, main application window and scrollbars

    If I instantiate HTMLLoader with "new HTMLLoader.createRootWindow()," scrollbars show up correctly when text overflows the set width and height. I can add it to the stage, but I'm still left with an empty popped up native window
    If I instantiate HTMLLoader with simply "new HTMLLoader()," you can add it to the stage, but it doesn't include scrollbars when the window overflows with text.
    What I want to do is incredibly simple - create a new HTMLLoader instance, have as part of my main application's stage, and get the benefit of the built-in scrollbars.  Why is that so difficult?

    OK - my problem with the HTML Control is I can't seem to add it to a child custom class.
    i.e. - I have my main Air app and a custom class extending UIComponent. I add the custom class to the stage in the main app, and in the custom class, add an HTML Control.  I'm also adding a different HTML Control to the main app.
    Only the HTML in the main app actually shows up. No errors given. What am I missing here?
    Main Air app mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()">
    <mx:Script>
    <![CDATA[
    import mx.controls.HTML;
    var _myComp:Comp;
    private function init():void {
    _myComp = new Comp();
    _myComp.init();
    _myComp.x = 200;
    _myComp.y = 200;
    addChild(_myComp)
    var html:HTML = new HTML();
    html.htmlText = "Text on main application window"
    addChild(html);
    ]]>
    </mx:Script>
    </mx:WindowedApplication>
    Comp Class:
    package {
    import flash.display.Shape;
    import mx.controls.HTML;
    import mx.core.UIComponent;
    public class Comp extends UIComponent {
    public function Comp() {
    public function init():void {
    var shape:Shape = new Shape()
    shape.graphics.beginFill(0,1)
    shape.graphics.drawRect(0,0,200,400);
    shape.graphics.endFill();
    addChild(shape)
    var html:HTML = new HTML();
    html.htmlText = "Text Inside child component";
    html.x = 200
    this.addChild(html);
    trace(html.htmlText)

  • Safari opens, no main browser window, then closes unexpectedly

    I just recently upgraded, finally, to OS X 10.4.11. I tried opening safari right after, took forever for the icon to stop bouncing and have the black arrow underneath it, all the safari menus showed up, but no main browser window, though, and then it crashed.
    Now it crashes every time and says that it quit unexpectedly, here is the crash log, I am using firefox as a temporary fix, but i want safari back!
    any help is greatly appreciated, thanks.
    Date/Time: 2007-12-10 22:02:03.678 -0500
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [63]
    Version: 3.0.4 (523.12)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 45231200
    PID: 401
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000027
    Thread 0 Crashed:
    0 <<00000000>> 0xfffeff10 objcmsgSendrtp + 16
    1 com.apple.Safari 0x00014c54 0x1000 + 80980
    2 com.apple.Safari 0x00013db8 0x1000 + 77240
    3 com.apple.Safari 0x00013ca0 0x1000 + 76960
    4 com.apple.AppKit 0x9388a858 -[NSToolbarItemViewer configureForLayoutInDisplayMode:andSizeMode:inToolbarView:] + 768
    5 com.apple.AppKit 0x93889b88 -[NSToolbarView _layoutDirtyItemViewersAndTileToolbar] + 684
    6 com.apple.AppKit 0x9388897c -[NSToolbarView _syncItemSetAndUpdateItemViewersWithSEL:setNeedsModeConfiguration:sizeToFit:set NeedsDisplay:updateKeyLoop:] + 160
    7 com.apple.AppKit 0x93886c14 -[NSWindow _showToolbar:animate:] + 72
    8 com.apple.AppKit 0x938851b0 -[NSWindow setToolbar:] + 520
    9 com.apple.Safari 0x00010614 0x1000 + 62996
    10 com.apple.Safari 0x0000fc3c 0x1000 + 60476
    11 com.apple.AppKit 0x93873a1c -[NSWindowController _windowDidLoad] + 332
    12 com.apple.Safari 0x0000fb54 0x1000 + 60244
    13 com.apple.AppKit 0x938703f0 -[NSWindowController window] + 128
    14 com.apple.Safari 0x0000aef0 0x1000 + 40688
    15 com.apple.AppKit 0x9387d86c -[NSDocument showWindows] + 108
    16 com.apple.Safari 0x0000ae0c 0x1000 + 40460
    17 com.apple.AppKit 0x9387c018 -[NSDocumentController openUntitledDocumentAndDisplay:error:] + 344
    18 com.apple.AppKit 0x9387be7c -[NSDocumentController newDocument:] + 44
    19 com.apple.Safari 0x00009bb8 0x1000 + 35768
    20 com.apple.Safari 0x00009a74 0x1000 + 35444
    21 com.apple.Safari 0x000099bc 0x1000 + 35260
    22 com.apple.Safari 0x00009958 0x1000 + 35160
    23 com.apple.Safari 0x00009914 0x1000 + 35092
    24 com.apple.AppKit 0x937852bc -[NSApplication _doOpenUntitled] + 272
    25 com.apple.AppKit 0x93781a84 -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 224
    26 com.apple.AppKit 0x93781654 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 92
    27 com.apple.Foundation 0x92be4a10 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 380
    28 com.apple.Foundation 0x92be4870 _NSAppleEventManagerGenericHandler + 92
    29 com.apple.AE 0x914ff960 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 208
    30 com.apple.AE 0x914ff7fc dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    31 com.apple.AE 0x914ff654 aeProcessAppleEvent + 284
    32 com.apple.HIToolbox 0x9329e2e0 AEProcessAppleEvent + 60
    33 com.apple.AppKit 0x9377fd9c _DPSNextEvent + 856
    34 com.apple.AppKit 0x9377f888 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    35 com.apple.Safari 0x000095e0 0x1000 + 34272
    36 com.apple.AppKit 0x9377bdcc -[NSApplication run] + 472
    37 com.apple.AppKit 0x9386c974 NSApplicationMain + 452
    38 com.apple.Safari 0x0009bad4 0x1000 + 633556
    39 com.apple.Safari 0x000022fc 0x1000 + 4860
    Thread 1:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.WebCore 0x959aca30 WebCore::IconDatabase::syncThreadMainLoop() + 320
    3 com.apple.WebCore 0x959a8928 WebCore::IconDatabase::iconDatabaseSyncThread() + 424
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddad8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd3dc CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c0c738 +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92be40c0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000fffeff10 srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x44004244 xer: 0x0000000020000007 lr: 0x0000000000014c54 ctr: 0x0000000000014d70
    r0: 0x0000000000014c54 r1: 0x00000000bfffdb30 r2: 0x00000000a0001fac r3: 0x0000000000000027
    r4: 0x0000000090a52794 r5: 0x00000000004b09b0 r6: 0x00000000ffffffff r7: 0x0000000000000056
    r8: 0x000000000000004f r9: 0x0000000000000000 r10: 0x00000000000000b1 r11: 0x000000006f5b2794
    r12: 0x0000000000014d70 r13: 0x00000000a37a98dc r14: 0x00000000a37b98dc r15: 0x00000000a37a98dc
    r16: 0x00000000bfffdd20 r17: 0x00000000bfffdcd0 r18: 0x0000000000000001 r19: 0x00000000a37a98dc
    r20: 0x00000000bfffdd90 r21: 0x0000000000000002 r22: 0x00000000a37a98dc r23: 0x0000000000000001
    r24: 0x00000000a37a98dc r25: 0x00000000004c32d0 r26: 0x00000000004c1a00 r27: 0x00000000a37aa558
    r28: 0x000000000048cda0 r29: 0x0000000090ab0438 r30: 0x0000000000142f98 r31: 0x00000000004b09b0
    Binary Images Description:
    0x1000 - 0x134fff com.apple.Safari 3.0.4 (523.12) /Applications/Safari.app/Contents/MacOS/Safari
    0x1f2000 - 0x1f2fff com.yazsoft.SDEnhancer ??? (1.0) /Users/Harry/Library/InputManagers/SpeedDownload Enhancer/SpeedDownloadEnhancer.bundle/Contents/MacOS/SpeedDownloadEnhancer
    0x7af000 - 0x7b0fff com.yazsoft.SDSafariBundle ??? (1.0) /Users/Harry/Library/InputManagers/SpeedDownload Enhancer/SpeedDownloadEnhancer.bundle/Contents/Resources/SDSafariBundle.bundle/ Contents/MacOS/SDSafariBundle
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90894fff com.apple.CoreFoundation 6.4.8 (368.31) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dd000 - 0x908ddfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908df000 - 0x909e1fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3b000 - 0x90abffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae9000 - 0x90b5bfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b71000 - 0x90b83fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8a000 - 0x90e61fff com.apple.CoreServices.CarbonCore 681.17 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec7000 - 0x90f47fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f91000 - 0x90fd3fff com.apple.CFNetwork 4.0 (129.22) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe8000 - 0x91000fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91010000 - 0x91091fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d7000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918effff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91903000 - 0x91928fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193b000 - 0x9197dfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91999000 - 0x919adfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bb000 - 0x91a01fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a18000 - 0x91adffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2d000 - 0x91b42fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b47000 - 0x91b65fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6b000 - 0x91c22fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c71000 - 0x91c75fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c77000 - 0x91ce1fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce6000 - 0x91d23fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2a000 - 0x91d44fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d49000 - 0x91d4cfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4e000 - 0x91e2cfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e4c000 - 0x91e4cfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4e000 - 0x91f33fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3b000 - 0x91f5afff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc6000 - 0x92034fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203f000 - 0x920d4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ee000 - 0x92676fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a9000 - 0x929d4fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a04000 - 0x92af2fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af5000 - 0x92b7dfff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbe000 - 0x92de9fff com.apple.Foundation 6.4.9 (567.36) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f16000 - 0x92f34fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3f000 - 0x92f99fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb7000 - 0x92fb7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb9000 - 0x92fcdfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe5000 - 0x92ff5fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93001000 - 0x93016fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93028000 - 0x930affff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c3000 - 0x930cefff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d8000 - 0x93105fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311f000 - 0x9312efff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313a000 - 0x931a0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d1000 - 0x93220fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324e000 - 0x9326bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327d000 - 0x9328afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93293000 - 0x935a1fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f1000 - 0x936fdfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93702000 - 0x93722fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93775000 - 0x93775fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93777000 - 0x93daafff com.apple.AppKit 6.4.9 (824.44) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94137000 - 0x941a9fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e2000 - 0x942a7fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942fa000 - 0x942fafff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942fc000 - 0x944bcfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94506000 - 0x94543fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9454b000 - 0x9459bfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945a4000 - 0x945b8fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9464e000 - 0x94686fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946cb000 - 0x946e7fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x946fb000 - 0x9473ffff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94763000 - 0x94772fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9477a000 - 0x94787fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947cd000 - 0x947e6fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94bfb000 - 0x94c6cfff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94e07000 - 0x94f37fff com.apple.AddressBook.framework 4.0.6 (488) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fca000 - 0x94fd9fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fe1000 - 0x9500efff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95015000 - 0x95025fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x95029000 - 0x95058fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95068000 - 0x95085fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x957a6000 - 0x95861fff com.apple.WebKit 523.12 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x958ca000 - 0x9597dfff com.apple.JavaScriptCore 523.12 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x959a5000 - 0x95f22fff com.apple.WebCore 523.12 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9acff000 - 0x9ad35fff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9ad52000 - 0x9ad64fff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Model: PowerBook5,4, BootROM 4.8.4f1, 1 processors, PowerPC G4 (1.1), 1.5 GHz, 1 GB
    Graphics: ATI Mobility Radeon 9700, ATY,RV360M11, AGP, 64 MB
    Memory Module: SODIMM0/J25LOWER, 512 MB, DDR SDRAM, PC2700U-25330
    Memory Module: SODIMM1/J25UPPER, 512 MB, DDR SDRAM, PC2700U-25330
    AirPort: AirPort Extreme, 405.1 (3.90.34.0.p18)
    Modem: Jump, V.92, Version 1.0
    Bluetooth: Version 1.9.5f4, 2 service, 0 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: TXN,PCIXXXX-00, cardbus, PC Card
    Parallel ATA Device: MATSHITADVD-R UJ-825
    Parallel ATA Device: TOSHIBA MK8025GAS, 74.53 GB
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA

    HD/Users/Harry/Library/InputManagers/SpeedDownload Enhancer
    Get rid of it.

  • Main view window locked on 'one pic at a time'???

    My main view window ... somehow I locked it into displaying only one-pic-at-a-time. Can't seem to get back to the library mode, or whatever it might be called, when I can see all the pics in the folder at the same time. I can't for the life of me figure out how to change the view mode. And the scaling control, bottom right, has disappeared (or I've somehow disappeared it).
    Any help would be most appreciated...
    Ben

    Thank you Ian,
    Aie yie yie. I cycled through the V yesterday ... and somehow never got to that thumbnail view (go figure). But it worked first try this morning. Maybe my Mac was tired yesterday, like me.
    Much appreciated,
    Ben

  • Delete button in main Mail window doesn't seem to work with update to 10.5.

    Hi, I just upgraded to OSX 10.5.8 and now the delete button in the main mail window does not seem to be working. The other buttons work, and if you hit the delete key that works. The delete button at the top of a message window also seems to continue to work. This is strange behavior. I will try to reboot again to see if that helps.

    I am seeing the same issue. Very annoying. Tried resetting the toolbar too - did not work. Any help Apple?

  • Unsolicited ad inserted behind main browser window (pop-under)

    Unsolicited ad inserted behind main browser window (pop-under) every time TheBlaze.com is visited.
    ENVIRONMENT
    Win7 SP1
    Firefox 34.0 (Pop-up windows are blocked)
    DESCRIPTION OF PROBLEM
    Once the requested home page, from theBlaze.com server, is received by Firefox on your PC, your first mouse click will trigger the pop-under creation process. Pop-under ads are similar to pop-up ads, but the ad window appears hidden behind the main browser window rather than superimposed in front of it. The ad window is located in a new copy of Firefox. Additional mouse clicks may produce cumulative pop-under ad window creations. So, you may end up with multiple pop-under ad windows, each in a new copy of Firefox. According to many marketing “genius” this method of presenting unsolicited ads is much less abrasive than pop-ups used to be, and now recommend the use of pop-unders.
    The HTML source file received from TheBlaze.com server contains (in clear) between line 158 and line 202 , the JavaScript code needed to generate the pop-under windows and also contain the URL of the advertiser.
    Line numbers may vary from user to user, but look in the source file and locate the beginning and the end of the script at:
    BEGIN ADSUPPLY →
    the script is located here (approx 44 lines of code)
    <!-- END ADSUPPLY →
    The fact that the advertiser URL is contained in the source file indicates that, this is a well organized advertizing business. In the examined case the advertiser was "gorgonkil.com".
    SOLUTIONS TO STOP POP-UNDERS
    This pop-under unsolicited ad plague can originate from any Web site, not only from TheBlaze.com. This is not hidden malware, but highly visible in the HTML page received from the unscrupulous Web site. Be aware that using the “block pop-up windows” parameter in Firefox > Tools > Options > Content > will not solve this problem.
    InternetExplorer 11 also falls victim of the pop-under unsolicited ads. SlimBrowser7 survives elegantly and no pop-under windows are opened.
    In the proposed 2 solutions, you will need to receive a first unsolicited ad, then take note of the advertiser URL and insert it in the Win7 Firewall or in the BlockSite Firefox extension.
    If the unscrupulous Web site sends a large number of new and different advertiser URLs during one browsing session, then you will need to find a more elegant solution to the problem.
    WIN7 Firewall
    The received ad normally contains the advertiser URL (e.g. gorgonkil.com).
    The Win7 firewall has the capability to block IP addresses.
    The fact that Win7 Firewall requires IP addresses be expressed in dotted-decimal notation (e.g. 172.16.254.1) makes it less attractive. But, should you decide to use the dotted-decimal notation, it should work perfectly
    Block Site 1.1.8 Firefox extension
    Install Firefox extension “Block Site 1.1.8”. It is working very well for me.
    You need to go to Block Site “Options” and “add” the URL (e.g. gorgonkil.com) you want to block.
    Once enabled, the Block Site extension will display a small window for 3-4 seconds (lower right position) every time a pop-under creation is attempted by any unscrupulous offender and the pop-under will not be created.
    My own “Options” file now contains more then 18 advertiser URLs (over 3-4 months).
    I have stopped visiting TheBlaze.com Web site as of yesterday.
    WEB SITE REPUTATION & REVIEW SERVICE
    You may obtain a reputation rating for many Web sites by installing a Fiirefox extension: Web of Trust - WOT
    WOT adds intuitive traffic light-style icons next to search results and URLs to help you make informed decisions about whether to visit a site or not.
    A review has been submitted to WOT (12-19-2014) pertaining to TheBlaze.com. The rating is in bright red “I don't trust” (Ads/Pop-ups).
    deBeaujeu

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/viruses/disinfection/5350 Anti-Rootkit Utility - TDSSKiller]
    * [http://general-changelog-team.fr/en/downloads/viewdownload/20-outils-de-xplode/2-adwcleaner AdwCleaner] (for more info, see this [http://www.bleepingcomputer.com/download/adwcleaner/ alternate AdwCleaner download page])
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • How to set the dimension of main page windows for std dot matrix printer

    Hi All,
    I have to print a form in a pre- printed form which is coming from the standard dot matrix printer( 80 column).
    In the Sap script how i will define the dimensions of main page window .
    The printer is in US .  How i can sets the page dimensions .
    reward point will be provided.
    Regards

    Change SEQUENCE = "213" to SEQUENCE = "218" in the Task ID Field component. That will solve the issue.
    --Shiv                                                                                                                                                                                                                               

  • Bug in iCloud for Windows

    Bug in iCloud for Windows.
    Es gibt einen Bug in iCloud für Windows. In diesem Forum wird er beschrieben:
    https://forums.adobe.com/thread/1587466?start=200&tstart=0
    Please have a look to the Adobe Forum.
    Premiere Pro Project will be destroid when you install iCloud for Windows.
    After deinstalling Cloud - everything is ok.
    Please make a bugfix!
    Cu Jürgen

    On Bug in iCloud 4.0 control panel - decimal places Office 2013 / Outlook 2013
    they mentioned the same Bug.
    Apple do you hear us?

  • Main Viewer Window does not display correctly

    Ever since I upgraded to Aperture 3.3 through 3.4.1, the main viewer window does not display correctly.  Everything is justified to the right of the screen.  When viewing images, the are not in teh center, they are over to the right.  I can't even see the import controls when trying to import... actually I can't even press the import button or add metada.  I am really in a bad position here.  Need help with this... anyone out there have a solution please?  my clients are waiting for their photos.  Yikes!
    Right justified?
    No Import Controls?
    Faces -  Everything displayed in a single row, runs off the end of the right side of the screen

    Have a read through this page and follow the directions to delete your application preferences,
    Let us know how you go.
    Tony
    http://support.apple.com/kb/HT3805
    Message was edited by: Tony Gay

  • How can I get the cursor to appear in the main search window on the Google home page by default?

    The cursor in my Firefox appears in the address bar. I would like it to appear by default in the main search window on my default home page, Google.com. How?

    This is all very Greek to me. Is it really this hard just to get the cursor to appear in the main search window when Google.com is one's default home page?
    I don't really know much about Firefox extensions. My list includes Adblock Plus 1.3.8; Duplicate This Tab 1.2; Java Console 6.0.25; Java Quick Starter 1.0; Microsoft .NET Framework Assistant 0.0.0; New Tab Homepage 0.4.3. Nothing unusual is indicated for either Java item, Console having been updated 4/27/2011.
    What to do next?
    Thank you.

Maybe you are looking for

  • Wlst offline - create a new domain in weblogic portal 10.2

    Hi, Any one have automation script to create weblogic portal domain, create portlet data base ( not point base).and Domain resources: Machines,Servers, Clusters and data sources. I tried the one which comes with installation ( wlst offlie domain crea

  • Error in clicking save to local file button in alv grid? urgent

    >>>>>       if lr_tabledescr->applies_to_data( <coltab_any> ) eq 'X'.  exactly i am getting error here how to rectify this error Error in clicking save to local file button and mail receipt button in alv grid?

  • Nowuptodate won't launch in mavericks

    Now Up To Date will no longer work in mavericks.  It is my primary calendar program.  Won't uninstall, but I did a reinstall and still won't work

  • Can't connect to iTune Stores

    After clicking "iTunes Store" icon, iTunes always open another window. The progress bar, "Accessing iTunes Store" in both windows goes about half way through and stop a few minutes after that. iTunes is installed all of my devices including Mac and P

  • Post-Installation and Configuration of Solution Manager 7.1

    Dear community, we are a SAP Channel Partner and want to offer SAP BO support; therefore I am about to set up the Solution Manager 7.1 on a Windows 2008 R2 host with Oracle Database 11g. The installation has been completed successfully and I have app