Canvas drawing combined arc s bug?

Hello,
I'm working on a HTML5 canvas game, where some areas should be drawn connceted in some kind of "blob" of circles.
The code im using to draw looks like this, and an example can be found on github:
https://github.com/jrie/Connect
The error is visible when a fleet is navigated outside the main circle, to archive that:
Click on fleet icon, click on planet, pressing T to make a turn and see the fleet moves
At some point, some strange graphic error, looking like a triangle or extension occurs.
Please try different distances, destionations as possible, its always producing this strange effect.
The code in question producing the result is:
Line 2340 until 2348
gameScreen.beginPath();
for (area in env.scanAreas) {
scanArea = env.scanAreas[area];
scanX = scanArea[1] + env.offsetX;
scanY = scanArea[2] + env.offsetY;
gameScreen.arc(scanX, scanY, scanArea[0], 0, 6.28);
gameScreen.closePath();
gameScreen.fill();
If the beginPath and closePath and fill are all stuffed into the for loop, it draws well, but its a different effect and not one "blob" as requested in this case.

Hello Patrick,
thanks for coming back to me. For some reason I did find my problem, it was not really related to the order of the code, but that drawing one circle, then drawing another circle further away, without using a "canvasObject.moveTo" - there is another line draw as the "pencil" moves to the location of the new circle, creating some kind of intersection.
I thought first that this was some kind rendering but, but now it does make some sense - thinking of a turtle drawing engine.
Anyhow, thank you for answering!

Similar Messages

  • How to draw an Arc in java3D

    My problem is..i wan to draw an arc in java3D..on the canvas..which is on the simpleuniverse..
    plz help me

    As far as I know there is no simple way to draw an arc in java3d. you could calcultate the points by hand and then put them into a LineArray.

  • How to draw an arc in the image window?

    Now I try to draw an arc in the image window, but when I try to use IMAQ Overlay Arc.vi, it need Bounding Rectangle that made a problem because the arc I draw has a big size whose bounding rectangle was out of the image window. What should I do?

    Hello,
    Bounding rectangle parameters will allow you to enter larger values than your image size as well as negative numbers in order to position your arc properly.
    I hope this helps!
    Regards,
    Yusuf C.
    Applications Engineering
    National Instruments

  • Draw a arc with 3 points.

    Hi all,
    If you want to draw a arc in LabVIEW, You need star angle and angle, angle can - or +, that means your need know the direction,
    if CW angle is +;
    if CCW angle is -;
    We can use cross product to get Z to get direction:
    Welcome to QQ Group: LabVIEW_Home  213985957
    Boone
    Solved!
    Go to Solution.

    Boone301 wrote:
    Yes, it is a solttion.
    As we kown a lot of CNC have G02 and G03, but without G05, we can use this as G05.
    Boone
    A screenshot does not make a solution.
    It is useless!
    Post your VI.
    How many times do we have to say it????

  • Any one could help me out in writing a code in VB for drawing an arc.

    Any one could help me out in writing a code in VB for drawing an arc.

    Here's the link to the scripting guides. http://www.adobe.com/devnet/illustrator/scripting.html

  • How to draw an arc with width more than 1

    Hi!
    I got the following problem:
    I need to draw an arc under JDK1.1.
    It works fine, but I need to be able to adjust the
    thickness. I didn't find anything in the graphics-
    class.
    Who knows?
    Valentin

    I think you're just gunna have to draw multiple arcs with start/end points that are pixel increments away from each other. In Java2 you could use set the "stroke" with Java 2D, but that's not availale in 1.1.

  • Draw an arc with three point

    A . .C
    B.
    Hi all, i try to draw an arc A-B-C but i only has these three point, can anybody tell me how to do this and if these three point is almost colinear can i do this,
    thanks!

    I would think the Parabolic version would be able to
    make a Circular arc as well as a Parabolic one.By a parabolic arc in this case I meant the arc of a parabola whose axis is the line bisector of AC and that passes through the points A, B, and C. You will get infinitely many parabolic arcs by choosing the axis differently. Generally a circular arc and a parabolic arc through three points are different.
    But even though there are infinitely many arcs that pass through three points, it seems quite probable that the OP wants a circular one....

  • Is there a way to simply draw combined shapes ?

    Hi,
    I try to draw a popup like that:
    Popup
    I'm searching for the simplest way to draw this shape, and I think it's by combined a Rectangle whith round corners and 2 ArcTo Shapes.
    My question is: can I merge these shapes to create the popup ?
    Thanks.

    Reviving an old thread after a little discovery!
    Actually, the ShapeCombine was there, but hidden...
    I found that by seeing the bug report [ShapeSubtract is poorly named and its fields obscure|http://javafx-jira.kenai.com/browse/RT-3153].
    Looking at the reference, I saw the object subtracts not two shapes, but two sets of shapes.
    I tried to put a pair of shapes only in the first field, and it worked!
    def BASE_SIZE = 500;
    def MARGIN = BASE_SIZE / 30;
    def RADIUS = BASE_SIZE / 2 - MARGIN * 4;
    Stage
      title:   "T"
      visible: true
      scene:   Scene
        width:   BASE_SIZE
        height:  BASE_SIZE
        fill:    Color.web('#00BABE')
        content:
          ShapeSubtract
            fill:    Color.YELLOW
            stroke:  Color.RED
            onMouseClicked: function (evt: MouseEvent)
              println("Ouch! {evt}");
            strokeWidth: 5
            a:
              Circle
                centerX: BASE_SIZE / 2
                centerY: BASE_SIZE / 2
                radius:  RADIUS
              Rectangle
                x:       MARGIN * 2
                y:       BASE_SIZE / 2 - BASE_SIZE / 6
                width:   BASE_SIZE - MARGIN * 4
                height:  BASE_SIZE / 3
                arcWidth:    50
                arcHeight:   30
    }So I can give a variant of my code above:
    class Popup extends CustomNode
      // As above
    // Simpler one!
    class SimplerPopup extends CustomNode
      var arcSize = 15;
      var width = 100;
      var height = 60;
      var fill = Color.LIGHTGRAY;
      var stroke = Color.DARKGRAY;
      override public function create(): Node
        ShapeSubtract
          fill: fill
          stroke: stroke
          a:
            Rectangle
              width:   width
              height:  height
              arcWidth:  arcSize
              arcHeight: arcSize
            // The stem
            Path
              elements:
                MoveTo { x: width - arcSize + arcSize / 1.7, y: arcSize / 4 }
                QuadCurveTo
                  absolute: false
                  x: arcSize / 1.5, y: -arcSize / 4
                  controlX: arcSize / 3, controlY: -arcSize / 3
                QuadCurveTo
                  absolute: false
                  x: -arcSize / 2.8, y: arcSize / 1.4
                  controlX: -arcSize / 2.7, controlY: arcSize / 3
    Stage
      title: "Popup with Stem"
      width:  300 * 2
      height: 300
      scene: Scene
        content:
          Popup
            translateX: 30, translateY: 30
            arcSize: 48, width: 200, height: 160
            fill: Color.YELLOW, stroke: Color.ORANGE
          Popup { translateX: 75, translateY: 20 }
          Popup { translateX: 10, translateY: 175, arcSize: 9, fill: Color.LIGHTBLUE }
          SimplerPopup
            translateX: 330, translateY: 30
            arcSize: 48, width: 200, height: 160
            fill: Color.YELLOW, stroke: Color.ORANGE
          SimplerPopup { translateX: 375, translateY: 20 }
          SimplerPopup { translateX: 310, translateY: 175, arcSize: 9, fill: Color.LIGHTBLUE }
    }Good to know!

  • Problems creating a Office 2013 combined installation share, bug?

    I have tried to combine Office 2013 x86 (English), with Norwegian Language Pack, and the full Proofing Tools except IMEs. However, I ran in to some problems which might be bugs?
    I create a network share and copy the Office 2013 x86 files to it, the Norwegian LIP, then the Proofing Tools files (without overwrite).
    Setup.exe works fine for the initial Office 2013 installation, however it will not work for the Proofing Tools installation.
    I run the setups like this:
    Office: setup.exe /adminfile admin.msp /config proplus.ww\config.xml
    This works just fine, Office installs without any problem.
    Proofing: setup.exe /config proofkit.ww\config.xml
    This however did not work. The setup crashes with the error:
    Setup halts at the beginning of the installation bar, then breakes out with a an unexpected error, installation failed, rolling back (roughly translated)
    My current workaround is to have one folder on the share for "Office 2013" and one for the "Proofing Tools".
    The "problem" I get then, is that I need to keep both "updates" folder up to date and identical in order to get a fully updated Office installation.
    I have also tried to copy the setup.exe/dll files + catalog from both the LIP iso, and Proofing tools ISO, but non of them gives me a "one installation source to rule them all". They all brake in some way.
    Is it somehow possible to get a fully working "combined" Office installation source on a network share?
    This is the config.xml for the Office 2013 installation, I've skipped a few lines because I have only added 2 lines to the original config.xml
    <Configuration Product="ProPlus">
    <AddLanguage Id="nb-no" ShellTransform="yes"/>
    <AddLanguage Id="en-us" />
    <!-- <Display Level="full" CompletionNotice="yes" SuppressModal="no" AcceptEula="no" /> -->
    <!-- <Logging Type="standard" Path="%temp%" Template="Microsoft Office Professional Plus Setup(*).txt" /> -->
    </Configuration>
    This is the config.xml for the Proofing Tools:
    <Configuration Product="ProofKit">
    <Display Level="Basic" CompletionNotice="No" SuppressModal="Yes" AcceptEula="Yes" /> -->
    <!-- <Logging Type="standard" Path="%temp%" Template="Microsoft Office Proofing Tools Kit Setup(*).txt" /> -->
    <!-- <OptionState Id="OptionID" State="absent" Children="force" /> -->
    <OptionState Id="IMEMain_1028" State="Absent" Children="force"/>
    <OptionState Id="IMEMain_1041" State="Absent" Children="force"/>
    <OptionState Id="IMEMain_1042" State="Absent" Children="force"/>
    <OptionState Id="IMEMain_2052" State="Absent" Children="force"/>
    <OptionState Id="ProofingTools_1025" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1026" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1027" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1028" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1029" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1030" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1031" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1032" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1033" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1035" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1036" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1037" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1038" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1040" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1041" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1042" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1043" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1044" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1045" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1046" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1048" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1049" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1050" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1051" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1053" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1054" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1055" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1056" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1058" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1060" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1061" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1062" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1063" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1069" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1081" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1087" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1094" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1095" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1097" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1099" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1102" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_1110" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_2052" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_2068" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_2070" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_2074" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_3076" State="Local" Children="force"/>
    <OptionState Id="ProofingTools_3082" State="Local" Children="force"/>
    <!-- <Setting Id="Setup_Reboot" Value="IfNeeded" /> -->
    </Configuration>
    In my admin.msp file, I have basically just added:
    Organization name
    License (KMS)
    I accept the tems in the License Agreement
    Display level: Basic
    Suppress modal
    No cancel
    Full feature installation, except Microsoft SkyDrive Pro and Microsoft InfoPath
    Anyone know how to get this to work? It worked just fine with Office 2010, how can I get it to work with Office 2013?
    Regards,
    Øistein

    Here is a copy of the SetupError log from when the Proofing Tools installation is run:
    2013/12/22 23:12:53:377::[2084] PERF: TickCount=935312265 Name=OBootStrapper::Run Description=Begin function
    2013/12/22 23:12:53:377::[2084] Terminal Server detected
    2013/12/22 23:12:53:377::[2084] Operating System version: 6.2.9200 . Platform ID: 2
    2013/12/22 23:12:53:377::[2084] Running 32-bit setup on a 64-bit operating system.
    2013/12/22 23:12:53:377::[2084] Command line: "\\server\share\Microsoft\Office 2013 x86 - Copy\setup.exe" /config "\\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\config.xml"
    2013/12/22 23:12:53:377::[2084] Parsing command line.
    2013/12/22 23:12:53:377::[2084] Config XML file specified: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\config.xml
    2013/12/22 23:12:53:377::[2084] Parsing config.xml at: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\config.xml
    2013/12/22 23:12:53:392::[2084] Preferred product specified in config.xml to be: PROOFKIT
    2013/12/22 23:12:53:392::[2084] Display level basic specified in config.xml.
    2013/12/22 23:12:53:392::[2084] Suppression of modal dialogs specified in config.xml.
    2013/12/22 23:12:53:392::[2084] Hide completion notice specified in config.xml.
    2013/12/22 23:12:53:392::[2084] Auto accept license specified in config.xml.
    2013/12/22 23:12:53:877::[2084] Verify file signature in "\\server\share\Microsoft\Office 2013 x86 - Copy\setup.exe"
    2013/12/22 23:12:53:908::[2084] \\server\share\Microsoft\Office 2013 x86 - Copy\setup.exe is trusted.
    2013/12/22 23:12:53:908::[2084] Verify file signature in "\\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\OSETUP.DLL"
    2013/12/22 23:12:54:049::[2084] \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\OSETUP.DLL is trusted.
    2013/12/22 23:12:54:174::[2084] Using setup controller dll at [\\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\OSETUP.DLL].
    2013/12/22 23:12:54:174::[2084] PERF: TickCount=935313062 Name=OBootStrapper::Run Description=Calling RunSetup
    2013/12/22 23:12:54:174::[2084] PERF: TickCount=935313062 Name=RunSetup Description=Begin function
    2013/12/22 23:12:54:174::[2084] WER element [P2] is set to value [OSETUP.DLL]
    2013/12/22 23:12:54:174::[2084] WER element [P3] is set to value [15.0.4481.1001]
    2013/12/22 23:12:54:174::[2084] Terminal Server detected
    2013/12/22 23:12:54:174::[2084] Catalyst execution began: 12/22/2013 23:12:54.
    2013/12/22 23:12:54:174::[2084] Parsing config.xml at: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\config.xml
    2013/12/22 23:12:54:174::[2084] Preferred product specified in config.xml to be: PROOFKIT
    2013/12/22 23:12:54:174::[2084] Display level basic specified in config.xml.
    2013/12/22 23:12:54:174::[2084] Suppression of modal dialogs specified in config.xml.
    2013/12/22 23:12:54:174::[2084] Hide completion notice specified in config.xml.
    2013/12/22 23:12:54:174::[2084] Auto accept license specified in config.xml.
    2013/12/22 23:12:54:174::[2084] Setupexe Resiliency Mode is set to [PerformIfApplicable]; thus Resiliency is [disabled] for the [InstallExecutionMode]
    2013/12/22 23:12:54:174::[2084] Searching for updated versions of resource files under the 'updates' folder [\\server\share\Microsoft\Office 2013 x86 - Copy\updates].
    2013/12/22 23:12:54:174::[2084] Found [0] resource files under the update folder.
    2013/12/22 23:12:54:174::[2084] Searching for default versions of resource files under the folder [\\server\share\Microsoft\Office 2013 x86 - Copy].
    2013/12/22 23:12:54:189::[2084] Found [2] resource files under the default folder.
    2013/12/22 23:12:54:189::[2084] Running in [InstallExecutionMode]. Run from TEMP folder at [C:\Users\user\AppData\Local\Temp\Setup00000260].
    2013/12/22 23:12:54:205::[2084] Loaded resource file [C:\Users\user\AppData\Local\Temp\Setup00000260\OSETUPUI.DLL] (CultureTag=nb-NO).
    2013/12/22 23:12:54:205::[2084] WER element [SuppressModal] is set to value [false]
    2013/12/22 23:12:54:205::[2084] WER element [P1] is set to value [15.0.4420.1017]
    2013/12/22 23:12:54:205::[2084] Loaded Dll : \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\OSETUP.DLL.
    2013/12/22 23:12:54:205::[2084] Catalyst version is : 15.0.4481.1001
    2013/12/22 23:12:54:205::[2084] JobExecutionMode is InstallExecutionMode.
    2013/12/22 23:12:54:252::[2084] Check if Office is supported on Windows 6.2.9200
    2013/12/22 23:12:54:502::[3524] Product: PROOFKIT
    2013/12/22 23:12:54:502::[3524] AddOnGroup Culture: en-us
    2013/12/22 23:12:54:502::[3524] AddOnId: PROOFMUI.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnGroup Culture: fr-fr
    2013/12/22 23:12:54:502::[3524] AddOnId: PROOFMUI.FR-FR
    2013/12/22 23:12:54:502::[3524] Product: PROPLUS
    2013/12/22 23:12:54:502::[3524] AddOnGroup Culture: en-us
    2013/12/22 23:12:54:502::[3524] AddOnId: WORD.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: OSMUX.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: OSM.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: PROOFING.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: ONENOTE.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: OFFICE64.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: GROOVE.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: OUTLOOK.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: DCF.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: PUBLISHER.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: POWERPOINT.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: EXCEL.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: OFFICE.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: LYNC.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: INFOPATH.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnId: ACCESS.EN-US
    2013/12/22 23:12:54:502::[3524] AddOnGroup Culture: nb-no
    2013/12/22 23:12:54:502::[3524] AddOnId: WORD.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: POWERPOINT.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: OUTLOOK.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: OSMUX.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: OSM.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: PROOFING.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: GROOVE.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: ONENOTE.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: EXCEL.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: ACCESS.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: INFOPATH.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: DCF.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: PUBLISHER.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: OFFICE64.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: OFFICE.NB-NO
    2013/12/22 23:12:54:502::[3524] AddOnId: LYNC.NB-NO
    2013/12/22 23:12:55:292::[2084] No upgradable applications found
    2013/12/22 23:12:55:292::[2084] Not parsing product config.xml file: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\config.xml because one has already been parsed.
    2013/12/22 23:12:55:292::[2084] Found AddOn Culture: CultureTag=[en-us], NativeCltureName=[English].
    2013/12/22 23:12:55:292::[2084] Found AddOn Culture: CultureTag=[fr-fr], NativeCltureName=[français].
    2013/12/22 23:12:55:292::[2084] Product Deployment Mode: PerMachineManaged
    2013/12/22 23:12:55:292::[2084] Target Deployment Account Security Identifier: S-1-5-18
    2013/12/22 23:12:55:292::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofmui.en-us\ProofMUI.xml
    2013/12/22 23:12:55:292::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\ProofKitWW.xml
    2013/12/22 23:12:55:292::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.en\Proof.xml
    2013/12/22 23:12:55:307::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.fr\Proof.xml
    2013/12/22 23:12:55:307::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.es\Proof.xml
    2013/12/22 23:12:55:323::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ar\Proof.xml
    2013/12/22 23:12:55:323::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.zh-tw\Proof.xml
    2013/12/22 23:12:55:339::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ja\Proof.xml
    2013/12/22 23:12:55:339::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ko\Proof.xml
    2013/12/22 23:12:55:339::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.th\Proof.xml
    2013/12/22 23:12:55:354::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.zh-cn\Proof.xml
    2013/12/22 23:12:55:354::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.pt-br\Proof.xml
    2013/12/22 23:12:55:370::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.de\Proof.xml
    2013/12/22 23:12:55:370::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.it\Proof.xml
    2013/12/22 23:12:55:370::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.nl\Proof.xml
    2013/12/22 23:12:55:386::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ca\Proof.xml
    2013/12/22 23:12:55:386::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.eu\Proof.xml
    2013/12/22 23:12:55:401::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.gl\Proof.xml
    2013/12/22 23:12:55:403::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.sv\Proof.xml
    2013/12/22 23:12:55:403::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.fi\Proof.xml
    2013/12/22 23:12:55:418::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.cs\Proof.xml
    2013/12/22 23:12:55:418::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.da\Proof.xml
    2013/12/22 23:12:55:418::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.he\Proof.xml
    2013/12/22 23:12:55:434::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.hi\Proof.xml
    2013/12/22 23:12:55:434::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.hu\Proof.xml
    2013/12/22 23:12:55:434::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.mr\Proof.xml
    2013/12/22 23:12:55:451::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.nb\Proof.xml
    2013/12/22 23:12:55:451::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.pa\Proof.xml
    2013/12/22 23:12:55:451::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.pl\Proof.xml
    2013/12/22 23:12:55:466::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ru\Proof.xml
    2013/12/22 23:12:55:466::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.te\Proof.xml
    2013/12/22 23:12:55:482::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.tr\Proof.xml
    2013/12/22 23:12:55:482::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.el\Proof.xml
    2013/12/22 23:12:55:482::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.sk\Proof.xml
    2013/12/22 23:12:55:498::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.uk\Proof.xml
    2013/12/22 23:12:55:498::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.nn\Proof.xml
    2013/12/22 23:12:55:513::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.pt\Proof.xml
    2013/12/22 23:12:55:513::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.bg\Proof.xml
    2013/12/22 23:12:55:513::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ro\Proof.xml
    2013/12/22 23:12:55:529::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.hr\Proof.xml
    2013/12/22 23:12:55:529::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.sl\Proof.xml
    2013/12/22 23:12:55:529::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.et\Proof.xml
    2013/12/22 23:12:55:545::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.lv\Proof.xml
    2013/12/22 23:12:55:545::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.lt\Proof.xml
    2013/12/22 23:12:55:560::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.gu\Proof.xml
    2013/12/22 23:12:55:560::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ta\Proof.xml
    2013/12/22 23:12:55:560::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.kn\Proof.xml
    2013/12/22 23:12:55:577::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.sr\Proof.xml
    2013/12/22 23:12:55:577::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ur\Proof.xml
    2013/12/22 23:12:55:577::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.kk\Proof.xml
    2013/12/22 23:12:55:592::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.sr-cyrl-cs\Proof.xml
    2013/12/22 23:12:55:592::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.id\Proof.xml
    2013/12/22 23:12:55:608::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ms\Proof.xml
    2013/12/22 23:12:55:608::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.ms-bn\Proof.xml
    2013/12/22 23:12:55:608::[2084] Loading package metadata: \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\Proof.vi\Proof.xml
    2013/12/22 23:12:55:624::[2084] Searching for patches for the current chained install in: \\server\share\Microsoft\Office 2013 x86 - Copy\updates
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-ar-sa.msp
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-bg-bg.msp
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-ca-es.msp
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-cs-cz.msp
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-da-dk.msp
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-de-de.msp
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-el-gr.msp
    2013/12/22 23:12:57:882::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-en-us.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-es-es.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-et-ee.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-eu-es.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-fi-fi.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-fr-fr.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-gl-es.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-he-il.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-hi-in.msp
    2013/12/22 23:12:57:897::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-hr-hr.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-hu-hu.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-it-it.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-ja-jp.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-ko-kr.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-lt-lt.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-lv-lv.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-nb-no.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-nl-nl.msp
    2013/12/22 23:12:57:913::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-nn-no.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-pl-pl.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-pt-br.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-pt-pt.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-ro-ro.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-ru-ru.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-sk-sk.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-sl-si.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-sr-cyrl-cs.msp
    2013/12/22 23:12:57:929::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-sr-latn-cs.msp
    2013/12/22 23:12:57:944::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-sv-se.msp
    2013/12/22 23:12:57:944::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-th-th.msp
    2013/12/22 23:12:57:944::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-tr-tr.msp
    2013/12/22 23:12:57:944::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-uk-ua.msp
    2013/12/22 23:12:57:944::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-zh-cn.msp
    2013/12/22 23:12:57:944::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\proof-zh-tw.msp
    2013/12/22 23:12:58:038::[2084] Applicable patch: \\server\share\Microsoft\Office 2013 x86 - Copy\updates\setupexe-x-none.msp
    2013/12/22 23:12:58:492::[2084] Error: Default ProductName not found for 00cc
    2013/12/22 23:12:58:492::[2084] No branding information found, using catalystProductId for ARP DisplayName: PROOFKIT
    2013/12/22 23:12:58:492::[2084] No Visio 15 product is detected
    2013/12/22 23:12:58:492::[2084] No Project 15 product is detected
    2013/12/22 23:12:58:570::[2084] Reading value of unintialized setting!
    2013/12/22 23:12:58:601::[2084] BRANDING: Parsing Branding Data...
    2013/12/22 23:12:58:617::[2128] Error: Unable to set a system restore point
    2013/12/22 23:12:58:617::[2128] Kicking off chained install...
    2013/12/22 23:12:58:617::[2128] Terminal Server detected
    2013/12/22 23:12:58:617::[2128] PERF: TickCount=935317500 Name=Job::DoCacheWork Description=Begin function
    2013/12/22 23:13:00:645::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:00:645::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:00:645::[2128] Running Source Engine process detected
    2013/12/22 23:13:00:645::[2128] Running version: 15.0.4454.1000
    2013/12/22 23:13:00:645::[2128] OSE is running
    2013/12/22 23:13:00:645::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:02:348::[2128] PERF: TickCount=935321234 Name=Job::DoCacheWork Description=End function
    2013/12/22 23:13:02:348::[2128] Final Option Tree:
    2013/12/22 23:13:02:348::[2128] AlwaysInstalled:local
    2013/12/22 23:13:02:348::[2128] OSpp:local
    2013/12/22 23:13:02:348::[2128] OSpp_Core:local
    2013/12/22 23:13:02:348::[2128] Gimme_OnDemandData:local
    2013/12/22 23:13:02:348::[2128] ProductFiles:local
    2013/12/22 23:13:02:348::[2128] SHAREDFiles:local
    2013/12/22 23:13:02:348::[2128] ProofingTools:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1025:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1025:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1025:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1025:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1026:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1026:local
    2013/12/22 23:13:02:348::[2128] OCR_1026:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1026:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1026:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1027:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1027:local
    2013/12/22 23:13:02:348::[2128] OCR_1027:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1027:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1027:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1028:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1028:local
    2013/12/22 23:13:02:348::[2128] OCR_1028:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1028:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1028:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1029:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1029:local
    2013/12/22 23:13:02:348::[2128] OCR_1029:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1029:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1029:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1030:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1030:local
    2013/12/22 23:13:02:348::[2128] OCR_1030:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1030:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1030:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1031:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1031:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1031:local
    2013/12/22 23:13:02:348::[2128] OCR_1031:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1031:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1031:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1031:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1032:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1032:local
    2013/12/22 23:13:02:348::[2128] OCR_1032:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1032:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1032:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1033:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1033:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1033:local
    2013/12/22 23:13:02:348::[2128] OCR_1033:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1033:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1033:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1035:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1035:local
    2013/12/22 23:13:02:348::[2128] OCR_1035:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1035:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1035:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1036:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1036:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1036:local
    2013/12/22 23:13:02:348::[2128] OCR_1036:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1036:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1036:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1036:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1037:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1037:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1037:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1037:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1037:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1038:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1038:local
    2013/12/22 23:13:02:348::[2128] OCR_1038:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1038:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1038:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1040:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1040:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1040:local
    2013/12/22 23:13:02:348::[2128] OCR_1040:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1040:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1040:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1040:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1041:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1041:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1041:local
    2013/12/22 23:13:02:348::[2128] OCR_1041:local
    2013/12/22 23:13:02:348::[2128] RRLoc_1041:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1041:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1042:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1042:local
    2013/12/22 23:13:02:348::[2128] OCR_1042:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1042:local
    2013/12/22 23:13:02:348::[2128] HangulHanjaConversion:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1042:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1043:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1043:local
    2013/12/22 23:13:02:348::[2128] OCR_1043:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1043:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1043:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1044:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1044:local
    2013/12/22 23:13:02:348::[2128] OCR_1044:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1044:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1044:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1045:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1045:local
    2013/12/22 23:13:02:348::[2128] OCR_1045:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1045:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1045:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1046:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1046:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1046:local
    2013/12/22 23:13:02:348::[2128] OCR_1046:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1046:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1046:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1048:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1048:local
    2013/12/22 23:13:02:348::[2128] OCR_1048:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1048:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1048:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1049:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1049:local
    2013/12/22 23:13:02:348::[2128] OCR_1049:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1049:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1049:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1050:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1050:local
    2013/12/22 23:13:02:348::[2128] OCR_1050:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1050:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1050:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1051:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1051:local
    2013/12/22 23:13:02:348::[2128] OCR_1051:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1051:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1051:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1053:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_1053:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1053:local
    2013/12/22 23:13:02:348::[2128] OCR_1053:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1053:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1053:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1054:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1054:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_1054:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1055:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1055:local
    2013/12/22 23:13:02:348::[2128] OCR_1055:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1055:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1055:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1056:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1056:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1057:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1057:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1058:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1058:local
    2013/12/22 23:13:02:348::[2128] OCR_1058:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1058:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1058:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1060:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1060:local
    2013/12/22 23:13:02:348::[2128] OCR_1060:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1060:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1060:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1061:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1061:local
    2013/12/22 23:13:02:348::[2128] OCR_1061:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1061:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1061:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1062:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1062:local
    2013/12/22 23:13:02:348::[2128] OCR_1062:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1062:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1062:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1063:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1063:local
    2013/12/22 23:13:02:348::[2128] OCR_1063:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1063:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1063:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1066:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1066:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1069:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1069:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1069:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1081:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1081:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_1081:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1086:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1086:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1087:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1087:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1087:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1094:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1094:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1095:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1095:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1097:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1097:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1098:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1098:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1099:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1099:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1102:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1102:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_1110:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_1110:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_1110:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_2052:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_2052:local
    2013/12/22 23:13:02:348::[2128] OCR_2052:local
    2013/12/22 23:13:02:348::[2128] RRLoc_2052:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_2052:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_2052:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_2068:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_2068:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_2068:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_2070:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_2070:local
    2013/12/22 23:13:02:348::[2128] OCR_2070:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_2070:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_2070:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_2074:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_2074:local
    2013/12/22 23:13:02:348::[2128] OCR_2074:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_2074:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_2074:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_2110:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_2110:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_3082:local
    2013/12/22 23:13:02:348::[2128] FindAllWordFormsFiles_3082:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_3082:local
    2013/12/22 23:13:02:348::[2128] OCR_3082:local
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_3082:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_3082:local
    2013/12/22 23:13:02:348::[2128] TranslationFiles_3082:local
    2013/12/22 23:13:02:348::[2128] ProofingTools_3098:local
    2013/12/22 23:13:02:348::[2128] HyphenationFiles_3098:local
    2013/12/22 23:13:02:348::[2128] OCR_3098:absent
    2013/12/22 23:13:02:348::[2128] SpellingAndGrammarFiles_3098:local
    2013/12/22 23:13:02:348::[2128] ThesaurusFiles_3098:local
    2013/12/22 23:13:02:348::[2128] "Installed" sku component file \\server\share\Microsoft\Office 2013 x86 - Copy\proofkit.ww\setup.xml to C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Office Setup Controller\PROOFKIT\setup.xml.
    2013/12/22 23:13:02:348::[2128] "Installed" sku component file \\server\share\Microsoft\Office 2013 x86 - Copy\proofmui.en-us\setup.xml to C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Office Setup Controller\ProofMUI.en-us\setup.xml.
    2013/12/22 23:13:02:348::[2128] Determining ARP entry registry values.
    2013/12/22 23:13:02:364::[2128] PERF: TickCount=935321250 Name=Verify MSI local install source Description=Begin function
    2013/12/22 23:13:02:364::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:364::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:380::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:02:395::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:395::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:411::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:02:411::[2128] LIS: wait for package "{90150000-00C2-0409-0000-0000000FF1CE}" to complete caching
    2013/12/22 23:13:02:427::[2128] LIS: package "{90150000-00C2-0409-0000-0000000FF1CE}" caching completed
    2013/12/22 23:13:02:427::[2128] PERF: TickCount=935321312 Name=Completed verify local install source Description=End function
    2013/12/22 23:13:02:473::[2128] Executing chained package: ProofMUI.en-us
    2013/12/22 23:13:02:473::[2128] Reading value of unintialized setting!
    2013/12/22 23:13:02:473::[2128] 12/22/2013 23:13:02 Installing chained package: ProofMUI.en-us
    2013/12/22 23:13:02:473::[2128] PERF: TickCount=935321359 Name=Verify MSI local install source Description=Begin function
    2013/12/22 23:13:02:473::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:473::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:505::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:02:505::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:505::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:02:536::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:02:536::[2128] LIS: wait for package "{90150000-00C2-0409-0000-0000000FF1CE}" to complete caching
    2013/12/22 23:13:02:536::[2128] LIS: package "{90150000-00C2-0409-0000-0000000FF1CE}" caching completed
    2013/12/22 23:13:02:536::[2128] PERF: TickCount=935321421 Name=Completed verify local install source Description=End function
    2013/12/22 23:13:02:536::[2128] Catalyst Package Install..
    2013/12/22 23:13:02:536::[2128] Package: ProofMUI.en-us
    2013/12/22 23:13:02:536::[2128] File: C:\MSOCache\All Users\{90150000-00C2-0409-0000-0000000FF1CE}-C\ProofMUI.msi
    2013/12/22 23:13:02:536::[2128] Command Line: ADDLOCAL=PSetupControllerIntl_1033,Gimme_OnDemandData,PSetupController,SetupXmlFiles,ProofKitFiles,SetupControllerFiles,MsoInstalledPackagesScopedIntl_1033 ARPENTRY_UNINSTALLSTRING="""C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Office Setup Controller\setup.exe"" /uninstall PROOFKIT /dll OSETUP.DLL" ARPENTRY_DISPLAYICON="C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Office Setup Controller\OSETUP.DLL,1" SETUPEXEINSTALLUICULTURE="nb-NO" ARPENTRY_SHELLUITRANSFORMLANGUAGE="nb-NO" ACCEPTEDEULA="1" REMOVEPREVIOUS="" BRANDING_XML="C:\Users\user\AppData\Local\Temp\Setup00000260\BRANDING.XML" ARPENTRY_MODIFYPATH="""C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Office Setup Controller\setup.exe"" /modify PROOFKIT /dll OSETUP.DLL" REMOVESAMEVERSION="" COMPANYNAME="Sveio kommune" ARPENTRY_PRODUCTCODES="[~]{90150000-00C2-0409-0000-0000000FF1CE}[~]{90150000-001F-043E-0000-0000000FF1CE}[~]{90150000-001F-0421-0000-0000000FF1CE}[~]{90150000-001F-043F-0000-0000000FF1CE}[~]{90150000-001F-0420-0000-0000000FF1CE}[~]{90150000-001F-044B-0000-0000000FF1CE}[~]{90150000-001F-0449-0000-0000000FF1CE}[~]{90150000-001F-0447-0000-0000000FF1CE}[~]{90150000-001F-0427-0000-0000000FF1CE}[~]{90150000-001F-0426-0000-0000000FF1CE}[~]{90150000-001F-0425-0000-0000000FF1CE}[~]{90150000-001F-0424-0000-0000000FF1CE}[~]{90150000-001F-041A-0000-0000000FF1CE}[~]{90150000-001F-0418-0000-0000000FF1CE}[~]{90150000-001F-0402-0000-0000000FF1CE}[~]{90150000-001F-0422-0000-0000000FF1CE}[~]{90150000-001F-041B-0000-0000000FF1CE}[~]{90150000-001F-0408-0000-0000000FF1CE}[~]{90150000-001F-041F-0000-0000000FF1CE}[~]{90150000-001F-044A-0000-0000000FF1CE}[~]{90150000-001F-0419-0000-0000000FF1CE}[~]{90150000-001F-0415-0000-0000000FF1CE}[~]{90150000-001F-0446-0000-0000000FF1CE}[~]{90150000-001F-0414-0000-0000000FF1CE}[~]{90150000-001F-044E-0000-0000000FF1CE}[~]{90150000-001F-040E-0000-0000000FF1CE}[~]{90150000-001F-0439-0000-0000000FF1CE}[~]{90150000-001F-040D-0000-0000000FF1CE}[~]{90150000-001F-0406-0000-0000000FF1CE}[~]{90150000-001F-0405-0000-0000000FF1CE}[~]{90150000-001F-040B-0000-0000000FF1CE}[~]{90150000-001F-041D-0000-0000000FF1CE}[~]{90150000-001F-0456-0000-0000000FF1CE}[~]{90150000-001F-042D-0000-0000000FF1CE}[~]{90150000-001F-0403-0000-0000000FF1CE}[~]{90150000-001F-0413-0000-0000000FF1CE}[~]{90150000-001F-0410-0000-0000000FF1CE}[~]{90150000-001F-0407-0000-0000000FF1CE}[~]{90150000-001F-0416-0000-0000000FF1CE}[~]{90150000-001F-041E-0000-0000000FF1CE}[~]{90150000-001F-042A-0000-0000000FF1CE}[~]{90150000-001F-0409-0000-0000000FF1CE}[~]{90150000-001F-040C-0000-0000000FF1CE}[~]{90150000-001F-0401-0000-0000000FF1CE}[~]{90150000-001F-0404-0000-0000000FF1CE}[~]{90150000-001F-0411-0000-0000000FF1CE}[~]{90150000-001F-0412-0000-0000000FF1CE}[~]{90150000-001F-0C1A-0000-0000000FF1CE}[~]{90150000-001F-0C0A-0000-0000000FF1CE}[~]{90150000-001F-083E-0000-0000000FF1CE}[~]{90150000-001F-081A-0000-0000000FF1CE}[~]{90150000-001F-0816-0000-0000000FF1CE}[~]{90150000-001F-0814-0000-0000000FF1CE}[~]{90150000-001F-0804-0000-0000000FF1CE}[~]{90150000-00CC-0000-0000-0000000FF1CE}[~]" INSTALLLOCATION="C:\Program Files (x86)\Microsoft Office\" SLD_TRIALTYPE="0" ACIDS="86E17AEA-A932-42C4-8651-95DE6CB37A08" USERNAME="" SLD_PKU="0" SLD_PID="00216-60000-00000-AA472" SLD_DPID="#xF804000004000000380032003500300033002D00300032003100360036002D003000300030002D003000300030003000300030002D00300030002D0031003000340034002D0039003200300030002E0030003000300030002D0033003500360032003000310033000000000000000000000000000000000000000000000000000000000000000000380036006500310037006100650061002D0061003900330032002D0034003200630034002D0038003600350031002D00390035006400650036006300620033003700610030003800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500054004B004E006F006E006500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007608000000000C660646ED6028DB0800F963228D4DF4D7E66DCE6300666E5DC7BBCA3F62F099E5D16D5D54B8B14A0D4F7E634B904BD5706748E3B01FB3C58876B96CD63C0AF6DD9263D20EF6D7FAA5335800310038002D00330033003300320034000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520065007400610069006C0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006C00740046007200650065000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" SLD_SUPPORTSBYPASS="0" SLD_OEMPIDKEY="0" SLD_LICENSETYPE="0" SLD_ACID="86E17AEA-A932-42C4-8651-95DE6CB37A08" USERINITIALS="" NOUSERNAME="1" ARPENTRY_SPPSKUID="[~]86E17AEA-A932-42C4-8651-95DE6CB37A08[~]" ARPENTRY_URLINFOABOUT="" ARPENTRY_CONTACT="" ARPENTRY_NOREMOVE="#0" ARPENTRY_NOMODIFY="#0" ARPENTRY_NOELEVATEONMODIFY="#0" ARPENTRY_NOREPAIR="#1" ARPENTRY_URLUPDATEINFO="" ARPENTRY_HELPLINK="" ARPENTRY_INSTALLLOCATION="C:\Program Files (x86)\Microsoft Office\" ARPENTRY_HELPTELEPHONE="" ARPENTRY_DISPLAYNAME="Microsoft Office Proofing Tools Kit Compilation 2013" ARPENTRY_DISPLAYVERSION="15.0.4481.1005" ARPENTRY_VERSIONMAJOR="#15" ARPENTRY_VERSIONMINOR="#0" ARPENTRY_CACHELOCATION="C:\MSOCache\All Users" ARPENTRY_SKUCOMPONENTS="[~]C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Office Setup Controller\PROOFKIT\setup.xml[~]C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\Office Setup Controller\ProofMUI.en-us\setup.xml[~]" ARPENTRY_PACKAGEREFS="[~]ProofMUI.en-us[~]Proof.ar-sa[~]Proof.et-ee[~]Proof.pt-pt[~]Proof.vi-vn[~]Proof.eu-es[~]Proof.en-us[~]Proof.es-es[~]Proof.fr-fr[~]Proof.cs-cz[~]Proof.it-it[~]Proof.ko-kr[~]Proof.zh-tw[~]Proof.ja-jp[~]Proof.th-th[~]Proof.ms-my[~]Proof.zh-cn[~]Proof.pt-br[~]Proof.id-id[~]Proof.gu-in[~]Proof.de-de[~]Proof.sv-se[~]Proof.nl-nl[~]Proof.ca-es[~]Proof.pl-pl[~]Proof.gl-es[~]Proof.el-gr[~]Proof.fi-fi[~]Proof.da-dk[~]Proof.he-il[~]Proof.hi-in[~]Proof.hu-hu[~]Proof.ms-bn[~]Proof.mr-in[~]Proof.nn-no[~]Proof.nb-no[~]Proof.pa-in[~]Proof.ru-ru[~]Proof.ur-pk[~]Proof.ta-in[~]Proof.te-in[~]Proof.tr-tr[~]Proof.uk-ua[~]Proof.sk-sk[~]Proof.bg-bg[~]Proof.kk-kz[~]Proof.ro-ro[~]Proof.lv-lv[~]Proof.hr-hr[~]Proof.sl-si[~]Proof.lt-lt[~]Proof.sr-cyrl-cs[~]Proof.kn-in[~]Proof.sr-latn-cs[~]ProofKitWW[~]" SETUPEXE_DOARPWRITE="1" REBOOT=ReallySuppress LAUNCHEDBYSETUPEXE=1 MSIRESTARTMANAGERCONTROL="Disable" SETUPEXEINSTALLUILANGUAGE=1044 SETUPINTLDLLDIRECTORY="C:\Users\user\AppData\Local\Temp\Setup00000260\" ARPSYSTEMCOMPONENT=1 ALLUSERS="1"
    2013/12/22 23:13:02:536::[2128] PERF: TickCount=935321421 Name=MsiPackage::Install Description=Calling OMsiInstaller::InstallProduct for package file "C:\MSOCache\All Users\{90150000-00C2-0409-0000-0000000FF1CE}-C\ProofMUI.msi"
    2013/12/22 23:13:03:583::[2128] PERF: TickCount=935322468 Name=MsiPackage::Install Description=Returned from OMsiInstaller::InstallProduct
    2013/12/22 23:13:03:583::[2128] Successfully installed package: ProofMUI.en-us path:C:\MSOCache\All Users\{90150000-00C2-0409-0000-0000000FF1CE}-C\ProofMUI.msi
    2013/12/22 23:13:03:598::[2128] Executing chained package: Proof.vi-vn
    2013/12/22 23:13:03:598::[2128] Reading value of unintialized setting!
    2013/12/22 23:13:03:598::[2128] 12/22/2013 23:13:03 Installing chained package: Proof.vi-vn
    2013/12/22 23:13:03:598::[2128] PERF: TickCount=935322484 Name=Verify MSI local install source Description=Begin function
    2013/12/22 23:13:03:598::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:03:598::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:03:645::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:03:661::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:03:661::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:03:708::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:03:724::[2128] OSE is detected as a registered service. Service binary is reported at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:03:724::[2128] OSE service binary is detected at location: C:\Program Files (x86)\Common Files\Microsoft Shared\Source Engine\OSE.EXE
    2013/12/22 23:13:03:786::[2128] Running OSE version 15.0.4454.1000
    2013/12/22 23:13:03:802::[2128] LIS: wait for package "{90150000-00CC-0000-0000-0000000FF1CE}" to complete caching
    2013/12/22 23:13:34:771::[2128] LIS failed to cache download "{90150000-00CC-0000-0000-0000000FF1CE}-C" resource "setup.dll". Cache Error 0x80070017
    2013/12/22 23:13:34:771::[2128] SupressModal flag is set. Skip showing Source Resolution Dialog
    2013/12/22 23:13:34:771::[2128] Source Resolution aborted
    2013/12/22 23:13:43:576::[2128] LIS failed to cache download "{90150000-00CC-0000-0000-0000000FF1CE}-C" resource "setup.exe". Cache Error 0x80070017
    2013/12/22 23:13:43:576::[2128] SupressModal flag is set. Skip showing Source Resolution Dialog
    2013/12/22 23:13:43:576::[2128] Source Resolution aborted
    2013/12/22 23:13:47:466::[2128] LIS failed to cache download "{90150000-00CC-0000-0000-0000000FF1CE}-C" resource "setup.dll". Cache Error 0x80070017
    2013/12/22 23:13:47:466::[2128] SupressModal flag is set. Skip showing Source Resolution Dialog
    2013/12/22 23:13:47:466::[2128] Source Resolution aborted
    2013/12/22 23:13:47:466::[2128] WER element [SuppressModal] is set to value [true]
    2013/12/22 23:13:47:466::[2128] WER element [P4] is set to value [0x80070017]
    2013/12/22 23:13:47:466::[2128] WER element [P7] is set to value [0x80070017]
    2013/12/22 23:13:47:466::[2128] WER element [P6] is set to value [LIS: Failed to cache download "%s" resource "%s".]
    2013/12/22 23:13:47:466::[2128] WER element [P6] is converted to [FB4645EA]
    2013/12/22 23:13:47:466::[2128] Error: LIS: Failed to cache download "{90150000-00CC-0000-0000-0000000FF1CE}-C" resource "setup.dll". HResult: 0x80070017.
    2013/12/22 23:13:47:466::[2128] Log level changed from: Standard to: Verbose
    2013/12/22 23:13:47:466::[2128] Rolling back chain
    2013/12/22 23:13:47:466::[2128] Error attaching to OSE, error 0x00000000
    2013/12/22 23:13:47:466::[2128] Stopping running ose
    2013/12/22 23:13:48:158::[2128] LIS: start uncaching for download "{90150000-00C2-0409-0000-0000000FF1CE}-C"
    2013/12/22 23:13:49:264::[2128] LIS: finished uncaching for download "{90150000-00C2-0409-0000-0000000FF1CE}-C"
    2013/12/22 23:13:49:264::[2128] LIS: start uncaching for download "{90150000-00CC-0000-0000-0000000FF1CE}-C"
    2013/12/22 23:13:49:420::[2128] LIS: finished uncaching for download "{90150000-00CC-0000-0000-0000000FF1CE}-C"
    2013/12/22 23:13:49:420::[2128] Error attaching to OSE, error 0x00000000
    2013/12/22 23:13:49:420::[2128] Stopping running ose
    2013/12/22 23:13:49:998::[2128] 12/22/2013 23:13:49 Rolling back MSI transaction.
    2013/12/22 23:13:49:998::[2128] MSI(INITIALIZE): '<NULL>'
    2013/12/22 23:13:49:998::[2128] MSI(COMMONDATA): '1: 2 2: 0 '
    2013/12/22 23:13:49:998::[2128] MSI(COMMONDATA): '1: 2 2: 0 '
    2013/12/22 23:13:49:998::[2128] MSI(COMMONDATA): '1: 0 2: 1033 3: 65001 '
    2013/12/22 23:13:49:998::[2128] MSI(COMMONDATA): '1: 1 2: Microsoft Office ProofMUI (English) 2013 '
    2013/12/22 23:13:50:045::[2128] MSI(COMMONDATA): '1: 2 2: 1 '
    2013/12/22 23:13:50:045::[2128] MSI(COMMONDATA): '1: 2 2: 1 '
    2013/12/22 23:13:50:061::[2128] MSI(TERMINATE): '<NULL>'
    2013/12/22 23:13:50:061::[2128] 12/22/2013 23:13:49 MSI transaction rolled back.
    2013/12/22 23:13:50:061::[2128] Unable to cancel a system restore point.
    2013/12/22 23:13:50:061::[2084] Not showing completion dialog because it was not requested.
    2013/12/22 23:13:50:061::[2084] Reboot requested if needed.
    2013/12/22 23:13:50:061::[2084] No reboot is needed.
    2013/12/22 23:13:50:061::[2084] Catalyst execution finished: 12/22/2013 23:13:50. Return code: -2147024873.
    2013/12/22 23:13:50:061::[2084] PERF: TickCount=935368953 Name=RunSetup Description=End function
    Hopefully it could help someone to detect and solve the problem.

  • Unicode line-drawing characters - possible Java bug?

    Hi all, I am trying to draw a box using line drawing characters in UTF-8. I make the UTF-8 box file in Microsoft Word where it looks aligned. However, when I run my Java program to display the box in a JTextArea, it is all out of alignment like below. Is this a bug in Java that prevents it from displaying aligned line-drawing characters? I am tearing my hair out over this so your help is much appreciated.
    Regards,
    Rianmal.
    &#9556;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9559;
    &#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;
    &#9553; &#9553;
    &#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;
    &#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;
    &#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;
    &#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;
    &#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;
    &#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;
    &#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;
    &#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;
    &#9562;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9565;

    sabre,
    Looks like monospaced isn't found on windows (vista)... So I used "Courier New" instead.
    Sabre20090412a.java is saved with encoding=UTF-8 (i.e. CP1252) instead of the default ASCII, which doesn't support the extended characters.
    package forums;
    import java.awt.Font;
    import javax.swing.JFrame;
    import javax.swing.JTextArea;
    public class Sabre20090412a
      private static final String text;
      static {
        String t;
        t =  "&#9556;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9559;\n"; // LINE 12
        t += "&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;&#9553;\n";
        t += "&#9553;                   &#9553;\n";
        t += "&#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;\n";
        t += "&#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;\n";
        t += "&#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;\n";
        t += "&#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;\n";
        t += "&#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;\n";
        t += "&#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;\n";
        t += "&#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;\n";
        t += "&#9553;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#8729;&#9553;\n";
        t += "&#9562;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9565;\n"; // LINE 23
        text = t;
      public static void createAndShowGUI() {
        final JFrame frame = new JFrame("Test");
        final JTextArea ta = new JTextArea();
        ta.setFont(new Font("Courier New", Font.PLAIN, 14)); // <<<<< Note font-name="Courier New"
        ta.setText(text);
        frame.setContentPane(ta);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
      public static void main(String[] args) {
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
          public void run() {
            createAndShowGUI();
    build (NOTE the -encoding utf-8)*
    cd /d C:\Java\home\src\forums
    "C:\Program Files\Java\jdk1.6.0_12\bin\javac.exe" -encoding utf-8 -Xlint -d C:\Java\home\classes -cp c:\java\home\src;.;C:\Java\home\classes C:\Java\home\src\forums\Sabre20090412a.java
    run
    cd /d C:\Java\home\src\forums
    "C:\Program Files\Java\jdk1.6.0_12\bin\java.exe" -cp C:\Java\home\classes forums.Sabre20090412a
    References:
    http://www.google.com/search?q=warning%3A+unmappable+character+for+encoding+Cp1252&hl=en
    http://en.wikipedia.org/wiki/Windows-1252 #says 1252== IANIA UTF-8 except
    http://www.utf8-chartable.de/unicode-utf8-table.pl #page for 2500 onwards
    http://forums.sun.com/thread.jspa?threadID=5185338 #-encoding
    http://www.java2s.com/Code/Java/2D-Graphics-GUI/Listallavailablefontsproviedinthesystem.htm
    Roedy Green rocks!
    http://mindprod.com/jgloss/font.html#AVAILABLEJ
    http://mindprod.com/applet/fontshower.html
    Thanx for the fish!
    Cheers. Keith.

  • Is it possible to have an Infinite canvas drawing program

    Hi
    Is it possible to have an Infinite canvas in a drawing program?
    The sort of Features that make sense would be
    Zoom In and out
    All other basic drawing tool capabilities

    That's not right, hereafter. So long as the canvas is virtualized it can be theoretically infinite. It only needs memory and disk space for the sections actually displayed.
    Major Solutions, there are low level facilities to enable what you describe, but you'd need to implement the details (in particular the drawing tools) yourself. As hereafter notes there are some practical issues depending on your definition of infinite.
    For very large canvases take a look at Direct2D and the VirtualSurfaceImageSource.
    --Rob

  • Openoffice spreadsheet draw combination charts  programatically

    hi all,
    we need to develop a project that is an extension in OO so that it could display a mutitype chart we have drawn in Excel.
    Essentially, we have a combination chart consists of a candle stick chart and a line chart appearing together. OO could not display it!
    (see http://qa.openoffice.org/issues/show_bug.cgi?id=27363).
    We have research the problem for a while and figure that the easiest way is to develop an extension in Java using the Netbean Integration tool. Probably, adding a new chart type so that it is matched to the excel version. In chart2, it appears that they have changed the structure to a MVC model and under the diagram service, a coordinate system could have a list of charttype. So it appears that it is possible to draw a chart with different charttype on it even without the extension. However, we have not tried the chart2 API as we can't find a working example and SUN is not very helpful either and they discourage us to use chart2.
    (see http://graphics.openoffice.org/chart/chart2codestructure.html)
    can you give us advise how to approach this problem ?
    documentation resources , code snippets to call chart2 api from java code and any other helpful suggestion will be very welcomed.
    thanks.

    ok let me put it simply :
    com:sun:star:chart2 is not written in java, it is all written in C++ with those horrible IDL files which I don�t want to know about.
    However, i do think UNO make it possible to be used in a java environment.
    i searched the OOo website and also the web for an example snippet of a java program that calls com:sun:star:chart2 ; but i didn't found anything.
    it would be great if SUN engineers in this forum show me an example of how to use the OOo chart2 API in a java program.
    thanks.

  • When I view some canvas3d/webgl content, the toolbar is mirrored on the canvas. Is this a bug?

    I'm experiencing a weird issue with canvas tags using webgl. When I open some pages with webgl, my top toolbar (back/forward buttons, awesome bar and all the rest) is mirrored in the bottom of the canvas element instead of showing the expected content. Focusing any other window causes the mirrored image to be replaced with the actual content.
    I have tested this with several webgl pages, the problem only appears on some of them, and I have no idea why. An example page that does show the problem: http://alteredqualia.com/three/examples/webgl_cubes.html.
    I have also tested this under a default profile with none of my addons installed, and still experienced the problem. I'm running Firefox 25, under OSX 10.6. Screenshot here: http://imgur.com/TZcABYN
    I've searched around and not found any reference to a problem like this. Is this an unreported bug?

    Try to disable hardware acceleration in Firefox.
    *Firefox > Preferences > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • AI importation - when is a drawing too 'compex' (errors & bugs)

    Hello there...
    I am undertaking a project to make a basic 'interactive' campus map using Catalyst based on the tutorial by Terry White at the 'Adobe Creative Suite Podcast' on making an interactive map with Catalyst. Link: 'Create an Interactive Map using Adobe Flash Catalyst CS5'
    However, as this is the first time I have used Catalyst (or FLASH) for a project I am experiencing some import problems which seem to be to do with the complexity of my Adobe Illustrator map drawing. Here is what the map looks like when it is imported...
    Ignoring my rudamentary test navigation (!) you get an idea of how complex the map is - my problems are:
    1) On attempting to import Catalyst does warn me about teh complexity and asks me to optomize the graphics from teh HUD once it does go in (which takes a few minutes)...
    2) Even once it is imported and has been optomized the map seems to cause Catalyst problems and there have been a few crashes when I have attempted to move and resize the map to show zoomed views on new pages.
    3) On importing I am finding bugs in some of the vector lines - some line come in at the wrong stroke weight and even when I try round-tripping back to Illustrator the weight will not change and I have had to simply delete them.
    4) All of the lines appear to be very heavy in the 100% Flash view, even though in reality they are only 0.25pts in weight!
    BASICALLY - am I asking too much from Catalyst? Is this complex isometric map just not going to work?
    I should say I have a 'plan B' which is that I have redrawn the map as a simplified top down diagram instead, would this be more suitable?
    Size of the iso map is 694 pixels wide and teh ai file is 401kb big.
    Thanks,
    Steve

    I think that plan B would be the go. That looks like a fairly complex AI file, and I can imagine that translating the vectors into FXG (the format that Catalyst uses) could be problematic.
    Without knowing the full design, could you consider using rendered bitmap versions and using cross-fades for the zoom in & outs?
    Good luck,
    Chris

  • Microsoft Arc Mouse bug?

    Hey forum,
    I just thought I would report a rather interesting "bug" in OS X.
    When using the original Microsoft Arc Mouse plugged directly into my Macbook's USB Port, it has an incredible amount of lag. Installing the official drivers actually does not help, but makes it worse.
    Interestingly enough, using a Rocketfish USB hub (no other kind works), these problems go away. I wonder why that is. Drivers also cause problems.
    Anyone else have this issue? Only a bug in 10.6.xx. I suppose going to the feedback pages for Apple and MS would be a suggestion but won't do much.
    Just wondering what you guys think of this.

    Hi,
    I'm having the same problem with same mouse too (Microsoft Arc Mouse). I though it was because my computer is very close to thw wireless hotspot and both use the same frquency (2.4 Ghz), but, when I use it on Windows it works very well. I don't know what is happening.

Maybe you are looking for

  • Error while doing VKM1 SD Document - Credit Release

    Hi Guys, Its a very unusual situation. I am Trying to VKM1 an Sales order. It gets released but when i try to save it it gives a pop up window displaying  Project Network order and gives message List of orders cannot be Locked? I try to process it ..

  • ERROR ITMS-9000: "File given does not match type JPEG ... Image is likely corrupt

    Hi ALl, On compliing my book  get these errors with ITunes producer...I've resaved the files out with photoshop and they seems fine? Package Summary: 1 package(s) were not uploaded because they had problems:           /Users/Umran/Music/iTunes Produc

  • Vendor account group sensitive field mail trigger

    Dear All, We have configured the sensitive field in vendor master so that whenever someone change the sensitive field mail get trigger to that users. Here problem is for employee vendors also that mail gets triggerd. So we want excluse those vendor a

  • How do I print a list of just albums?

    I want to print a simple list of albums.  File->Print is almost what I want, but it prints a separate line for every artist on compilation albums.  I want one and only one line for each actual album.  Is there any way to do this? The closest answer I

  • ICElim Code

    In IC Elim code there are two statement to choose the IC Account:      *SELECT(%ELIM_ACCS%, "[ID]", "ACCOUNTDIM","[ELIMACC] <>''")        *SELECT(%PLUG_ACCS%, "[ELIMACC]", "ACCOUNTDIM","[ELIMACC] <>''") There are two IC accounts: ICAccRec and ICAccPa