Please, HELP to convert code from AS2 to AS3!!!

there is source code from paint application, thank to human who will convert this code, it's codeimportant for us.
stop();
var arrSloy:Array = new Array();
//Initial
//OnMove
_root.onMouseMove = function() {
          if (checkPole() && onTool) {
                    Mouse.hide();
                    _root.kist._visible = true;
                    _root.eras._visible = true;
                    _root.pen._visible = true;
                    _root.line._visible = true;
          } else {
                    Mouse.show();
                    _root.kist._visible = false;
                    _root.eras._visible = false;
                    _root.pen._visible = false;
                    _root.line._visible = false;
          updateAfterEvent();
//OnMove
//New
_root.panelMane.butNew.onRelease = function() {
          _root.newClip1.removeMovieClip();
          _root.clipMask.removeMovieClip();
          onTool = false;
          Mouse.show();
          _root.pen.removeMovieClip();
          _root.line.removeMovieClip();
          _root.gotoAndStop("newImg1");
_global.XO = null;
_global.YO = null;
_global.WO = null;
_global.HO = null;
//creatNewPalitra
function creatNewPalitra(color:String, w:Number, h:Number) {
          XO = 120;
          YO = 130;
          WO = w;
          HO = h;
          gotoAndStop(51);
          _root.createEmptyMovieClip("newClip1",0);
          newClip1.lineStyle(0,"0xFFFFFF");
          newClip1.beginFill(color);
          newClip1.moveTo(XO,YO);
          newClip1.lineTo(XO+w,YO);
          newClip1.lineTo(XO+w,YO+h);
          newClip1.lineTo(XO,YO+h);
          newClip1.lineTo(XO,YO);
          newClip1.endFill();
          _root.createEmptyMovieClip("clipMask",1);
          clipMask.lineStyle(0,"0xFFFFFF");
          clipMask.beginFill("0xFFFFFF");
          clipMask.moveTo(XO,YO);
          clipMask.lineTo(XO+w,YO);
          clipMask.lineTo(XO+w,YO+h);
          clipMask.lineTo(XO,YO+h);
          clipMask.lineTo(XO,YO);
          clipMask.endFill();
          newClip1.setMask(clipMask);
function checkPole() {
          if (WO == null) {
                    return false;
          if ((_xmouse>=XO && _xmouse<=XO+WO) && (_ymouse>=YO && _ymouse<=YO+HO)) {
                    return true;
          } else {
                    return false;
//New
_root.panelTool.butCursor.onRelease = function() {
          onTool = false;
          Mouse.show();
          _root.kist.removeMovieClip();
          _root.pen.removeMovieClip();
          _root.line.removeMovieClip();
//PEN
creatClip = 10;
_root.panelTool.butPen.onRelease = function() {
          onTool = true;
          _root.attachMovie("pensil","pen",1000000);
          Mouse.hide();
          _root.pen.startDrag(true);
          function drawPen() {
                    creatClip++;
                    lineSize = _root.panelProperties.poleSizeLine.text;
                    lineColor = _root.panelProperties.poleColorLine.text;
                    lineAlpha = _root.panelProperties.poleAlphaLine.text;
                    clip = _root.newClip1.createEmptyMovieClip("newClip"+creatClip, creatClip);
                    arrSloy.push(clip);
          _root.pen.onMouseDown = function() {
                    if (checkPole()) {
                              drawPen();
                              pen_draw_flag = true;
                              clip.lineStyle(lineSize,lineColor,lineAlpha);
                              clip.moveTo(this._x,this._y);
          _root.pen.onMouseUp = function():Void  {
                    pen_draw_flag = false;
          _root.pen.onMouseMove = function():Void  {
                    if (pen_draw_flag) {
                              if (checkPole()) {
                                        clip.lineTo(this._x,this._y);
                              updateAfterEvent();
//BRUSH
_root.panelTool.butkist.onPress = function() {
          onTool = true;
          _root.attachMovie("kister","kist",1000000);
          Mouse.hide();
          _root.kist.startDrag(true);
          function drawKist() {
                    creatClip++;
                    lineSize = _root.panelProperties.poleSizeLine.text;
                    lineColor = _root.panelProperties.poleFill.text;
                    lineAlpha = _root.panelProperties.poleAlphaLine.text;
                    clip = _root.newClip1.createEmptyMovieClip("newClip"+creatClip, creatClip);
                    arrSloy.push(clip);
          _root.kist.onMouseDown = function() {
                    if (checkPole()) {
                              drawKist();
                              kist_draw_flag = true;
                              clip.lineStyle(lineSize,lineColor,lineAlpha);
                              clip.moveTo(this._x,this._y);
          _root.kist.onMouseUp = function():Void  {
                    kist_draw_flag = false;
          _root.kist.onMouseMove = function():Void  {
                    if (kist_draw_flag) {
                              if (checkPole()) {
                                        clip.lineTo(this._x,this._y);
                              updateAfterEvent();
//LINE
_root.panelTool.butLiner.onRelease = function() {
          onTool = true;
          _root.attachMovie("liner","line",1000000);
          _root.line.startDrag(true);
          Mouse.hide();
          function drawLine() {
                    creatClip++;
                    lineSize = _root.panelProperties.poleSizeLine.text;
                    lineColor = _root.panelProperties.poleColorLine.text;
                    lineAlpha = _root.panelProperties.poleAlphaLine.text;
                    clip = _root.newClip1.createEmptyMovieClip("newClip"+creatClip, creatClip);
                    arrSloy.push(clip);
                    thisx = thisy=null;
          _root.line.onMouseDown = function() {
                    if (checkPole()) {
                              drawLine();
                              line_draw_flag = true;
                              thisx = this._x;
                              thisy = this._y;
          _root.line.onMouseUp = function():Void  {
                    line_draw_flag = false;
          _root.line.onMouseMove = function():Void  {
                    if (line_draw_flag) {
                              if (checkPole()) {
                                        clip.clear();
                                        clip.lineStyle(lineSize,lineColor,lineAlpha);
                                        clip.moveTo(thisx,thisy);
                                        clip.lineTo(this._x,this._y);
                              updateAfterEvent();
//ERASER
_root.panelTool.butEras.onPress = function() {
          onTool = true;
          _root.attachMovie("eraser","eras",1000000);
          Mouse.hide();
          _root.eras.startDrag(true);
          function drawEras() {
                    creatClip++;
                    lineSize = _root.panelProperties.poleSizeLine.text;
                    lineColor = "0xFFFFFF";
                    lineAlpha = "100";
                    clip = _root.newClip1.createEmptyMovieClip("newClip"+creatClip, creatClip);
                    arrSloy.push(clip);
          _root.eras.onMouseDown = function() {
                    if (checkPole()) {
                              drawEras();
                              eras_draw_flag = true;
                              clip.lineStyle(lineSize,lineColor,lineAlpha);
                              clip.moveTo(this._x,this._y);
          _root.eras.onMouseUp = function():Void  {
                    eras_draw_flag = false;
          _root.eras.onMouseMove = function():Void  {
                    if (eras_draw_flag) {
                              if (checkPole()) {
                                        clip.lineTo(this._x,this._y);
                              updateAfterEvent();
//CURV
_root.panelTool.butCurv.onRelease = function() {
          onTool = true;
          _root.attachMovie("liner","line",1000000);
          _root.line.startDrag(true);
          Mouse.hide();
          anchor1X = anchor2X=controlX=null;
          anchor1Y = anchor2Y=controlY=null;
          onClic = 0;
          function drawCurv() {
                    creatClip++;
                    lineSize = _root.panelProperties.poleSizeLine.text;
                    lineColor = _root.panelProperties.poleColorLine.text;
                    lineAlpha = _root.panelProperties.poleAlphaLine.text;
                    clip = _root.newClip1.createEmptyMovieClip("newClip"+creatClip, creatClip);
                    arrSloy.push(clip);
          _root.line.onMouseDown = function() {
                    if (onClic == 0) {
                              if (checkPole()) {
                                        drawCurv();
                                        anchor1X = this._x;
                                        anchor1Y = this._y;
                                        onClic = 1;
                                        _root.attachMovie("point","point1",1000001);
                                        point1._x = anchor1X;
                                        point1._y = anchor1Y;
                    } else if (onClic == 1) {
                              if (checkPole()) {
                                        anchor2X = this._x;
                                        anchor2Y = this._y;
                                        onClic = 2;
                                        _root.attachMovie("point","point2",1000002);
                                        point2._x = anchor2X;
                                        point2._y = anchor2Y;
                    } else if (onClic == 2) {
                              if (checkPole()) {
                                        controlX = this._x;
                                        controlY = this._y;
                                        onClic = 0;
                                        curv_draw_flag = true;
                                        point1.removeMovieClip();
                                        point2.removeMovieClip();
                                        clip.lineStyle(lineSize,lineColor,lineAlpha);
                                        clip.moveTo(anchor1X,anchor1Y);
                                        clip.curveTo(this._x,this._y,anchor2X,anchor2Y);
          _root.line.onMouseUp = function():Void  {
                    curv_draw_flag = false;
          _root.line.onMouseMove = function():Void  {
                    if (curv_draw_flag) {
                              if (checkPole()) {
                                        clip.clear();
                                        clip.lineStyle(lineSize,lineColor,lineAlpha);
                                        clip.moveTo(anchor1X,anchor1Y);
                                        clip.curveTo(this._x,this._y,anchor2X,anchor2Y);
                              updateAfterEvent();
//STAR
_root.panelTool.butStar.onRelease = function() {
          onTool = true;
          _root.attachMovie("liner","line",1000000);
          Mouse.hide();
          _root.line.startDrag(true);
          function drawStar() {
                    creatClip++;
                    lineSize = _root.panelProperties.poleSizeLine.text;
                    lineColor = _root.panelProperties.poleColorLine.text;
                    lineAlpha = _root.panelProperties.poleAlphaLine.text;
                    clip = _root.newClip1.createEmptyMovieClip("newClip"+creatClip, creatClip);
                    arrSloy.push(clip);
          thisx = thisy=null;
          _root.line.onMouseDown = function() {
                    if (checkPole()) {
                              drawStar();
                              star_draw_flag = true;
                              clip.lineStyle(lineSize,lineColor,lineAlpha);
                              thisx = this._x;
                              thisy = this._y;
                              clip.moveTo(thisx,thisy);
          _root.line.onMouseUp = function():Void  {
                    star_draw_flag = false;
          _root.line.onMouseMove = function():Void  {
                    if (star_draw_flag) {
                              if (checkPole()) {
                                        clip.moveTo(thisx,thisy);
                                        clip.lineTo(this._x,this._y);
                              updateAfterEvent();
//KVADRAT
_root.panelTool.butRecttangle.onRelease = function() {
          onTool = true;
          _root.attachMovie("liner","line",1000000);
          _root.line.startDrag(true);
          Mouse.hide();
          function drawRecttangle() {
                    creatClip++;
                    lineSize = _root.panelProperties.poleSizeLine.text;
                    lineColor = _root.panelProperties.poleColorLine.text;
                    lineAlpha = _root.panelProperties.poleAlphaLine.text;
                    fillColor = _root.panelProperties.poleFill.text;
                    clip = _root.newClip1.createEmptyMovieClip("newClip"+creatClip, creatClip);
                    arrSloy.push(clip);
                    thisx = thisy=null;
          _root.line.onMouseDown = function() {
                    if (checkPole()) {
                              drawRecttangle();
                              kvadrat_draw_flag = true;
                              thisx = this._x;
                              thisy = this._y;
          _root.line.onMouseUp = function():Void  {
                    kvadrat_draw_flag = false;
          _root.line.onMouseMove = function():Void  {
                    if (kvadrat_draw_flag) {
                              if (checkPole()) {
                                        clip.clear();
                                        clip.lineStyle(lineSize,lineColor,lineAlpha);
                                        clip.beginFill(fillColor,lineAlpha);
                                        clip.moveTo(thisx,thisy);
                                        clip.lineTo(this._x,thisy);
                                        clip.lineTo(this._x,this._y);
                                        clip.lineTo(thisx,this._y);
                                        clip.lineTo(thisx,thisy);
                                        clip.endFill();
                              updateAfterEvent();
//Clear
_root.panelMane.butClear.onRelease = function() {
          for (a=0; a<arrSloy.length; a++) {
                    clip = arrSloy[a];
                    clip.removeMovieClip();
                    delete arrSloy[a];
//Back
_root.panelMane.butBack.onRelease = function() {
          i = arrSloy.length-1;
          clip = arrSloy[i];
          clip.removeMovieClip();
          arrSloy.pop();
Thank you very much!!!

Zhanbolat,
In theory, conversion of this code is not difficult, especially because it is clear what the logic is designed to do. The issue is that you will not have an expected result once only this code is converted in isolation. This puppy uses some other objects that are written in AS2 including entities in the FLA library.
In short, it looks like this application needs a total overhaul at every level in order for it to properly function as an AS3 program.
With that said, although this is, again, not a difficult task, it is unlikely to find someone to do it for free. You may have a better luck if you start conversion yourself and post focused questions as you go.

Similar Messages

  • Please help 'Translate' These codes from AS2 to AS3 for me

    Hi, i need help 'translating' these codes from Action Script 2 to Action Script 3. Please Do it for me:
    toc    loadText = new LoadVars();
        loadText.load("Curie.txt");
        loadText.onLoad = function(success) {
            if (success) {
                // trace(success);
                Curie.html = true;
                Curie.htmlText = this.Curie;
    Please translate it for me, i need it ASAP thanks
    Kenneth

    Thank you for helping me
    Kenneth
    Date: Thu, 15 Oct 2009 05:49:14 -0600
    From: [email protected]
    To: [email protected]
    Subject: Please help 'Translate' These codes from AS2 to AS3 for me
    Take a look at that:
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/migration.html
    There is a LoadVars section on that.
    There is also a tutorial here:
    http://www.republicofcode.com/tutorials/flash/as3externaltext/
    Cheers,
    CaioToOn!
    >

  • Converting code from as2 to as3 and getting errors

    I am trying to get a counter that I found in as2 to work in as3 but I am getting errors when I publish.
    Here is my code:
    stop();
    var currSlide;
    addEventListener(Event.ENTER_FRAME, onEnterFrame);
    function onEnterFrame(evt:Event):void
    currSlide = root.rdinfoCurrentSlide +1;
    this.curSlide_txt.text = currSlide;
    this.totSlide_txt.text = root.rdinfoSlideCount;
    any suggestions?

    no code should be attached to objects.
    most of that looks like it's useless or worse than useless.   in particular, everything in the enterframe loop looks like it serves no purpose and repeatedly does useless things.  if it is doing something useful, it doesn't need to be done in a loop.
    and setting the rgb of a color instance does nothing useful.
    the only thing useful is setting brushColor when that brush movieclip is clicked.
    so, if you have a movieclip with class = "brush" in your library, you can use:
    var brushColor:uint;
    var blackBrush:brush=new brush();
    blackBrush.col = 0x000000;
    addChild(blackBrush);
    blackBrush.addEventListener(MouseEvent.CLICK,clickF);
    function clickF(e:MouseEvent):void{
    brushColor = MovieClip(e.currentTarget).col

  • Convert simple animation code from as2 to as3

    Hi everyone,
    I have a simple animation that is controlled by the y movement of the mouse. The code for the animation is put in frame 1 and is as follows:
    var animationDirection:Boolean = false;
    var prevMousePosition:Boolean = false;
    var mouseListener = new Object();
    mouseListener.onMouseMove = function () {
    var curMousePosition = _ymouse;
    if(curMousePosition > prevMousePosition) {
    animationDirection = false;
    }else if(curMousePosition < prevMousePosition) {
    animationDirection = true;
    prevMousePosition = curMousePosition;
    Mouse.addListener(mouseListener);
    function onEnterFrame() {
    if(animationDirection && _currentframe < _totalframes) {
    nextFrame();
    }else if(!animationDirection && _currentframe > 1) {
    prevFrame();
    Is it possible to use this code in as3 or do I need to convert it? I am grateful for any help. Best wishes

    Yes, you need to convert the code. Here is what looks like a similar logic in AS3:
    import flash.events.Event;
    import flash.events.MouseEvent;
    var animationDirection:Boolean = false;
    var prevMousePosition:Boolean = false;
    addEventListener(Event.ENTER_FRAME, onEnterFrame);
    addEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);
    function onMouseMove(e:MouseEvent):void {
        var curMousePosition = mouseX;
        if (curMousePosition > prevMousePosition)
            animationDirection = false;
        else if (curMousePosition < prevMousePosition)
            animationDirection = true;
        prevMousePosition = curMousePosition;
    function onEnterFrame(e:Event):void
        if (animationDirection && _currentframe < _totalframes)
            nextFrame();
        else if (!animationDirection && _currentframe > 1)
            prevFrame();

  • Converting short code from as2 to as3

    Some of these functions wont work in as3, and i would like it to be using gestures instead of mouse clicks.. Any help please?
        _root.attachMovie("brush","brush",10)
        _root.brush.onEnterFrame=function()
              Mouse.hide()
              startDrag(this,true)
              new Color (this.brushColor).setRGB(_root.brushColor)
        on(press)
              new Color(this).setRGB(_root.brushColor)
        onClipEvent (load) {
              myColor = 0x0000CC
              new Color(this).setRGB(myColor);
        on (release) {
              _root.brushColor= myColor;

    no code should be attached to objects.
    most of that looks like it's useless or worse than useless.   in particular, everything in the enterframe loop looks like it serves no purpose and repeatedly does useless things.  if it is doing something useful, it doesn't need to be done in a loop.
    and setting the rgb of a color instance does nothing useful.
    the only thing useful is setting brushColor when that brush movieclip is clicked.
    so, if you have a movieclip with class = "brush" in your library, you can use:
    var brushColor:uint;
    var blackBrush:brush=new brush();
    blackBrush.col = 0x000000;
    addChild(blackBrush);
    blackBrush.addEventListener(MouseEvent.CLICK,clickF);
    function clickF(e:MouseEvent):void{
    brushColor = MovieClip(e.currentTarget).col

  • Convert simple code from as2 to as3

    Hello, i am looking for some help here for something simple (i think)
    var txt:String = link1;
    btn.onRelease = function():Void {
    if( sample_id )
    getURL("http://www.website.com/registration?partner_id=" + sample_id + "sampleURLCode", "_blank");
    else
    getURL("http://www.website.com/registration?sampleURLCode", "_blank");
    Is there a way to make this simple code into AS3?

    Hi, Apparantly that's because the 'link1' and 'sample_id' variables are not within the scope of the code you posted above, Perhaps you have defined them outside on a different frame or class. You can either define them with the same code like:
    var sample_id:Number=1234;  //Use your own variable type and value here
    var link1:String = "your string or link URL here";
    var txt:String = link1;
    btn.addEventListener(MouseEvent.CLICK, gotoURL);
    function gotoURL(e:MouseEvent)
    if( sample_id )
          navigateToURL(new URLRequest("http://www.website.com/registration?sample_id=" + sample_id + "sampleURLCode"),"_blank");
    else
          navigateToURL(new URLRequest("http://www.website.com/registration?sampleURLCode"),"_blank");
    Or you can put a direct reference to your existing variable like (If your variables are defined on root/frame 1) :
    var link1:String = "your string or link URL here";
    var txt:String = MovieClip(this.root).link1;
    btn.addEventListener(MouseEvent.CLICK, gotoURL);
    function gotoURL(e:MouseEvent)
    if( MovieClip(this.root).sample_id )
          navigateToURL(new URLRequest("http://www.website.com/registration?sample_id=" + sample_id + "sampleURLCode"),"_blank");
    else
          navigateToURL(new URLRequest("http://www.website.com/registration?sampleURLCode"),"_blank");
    try that, or you can share your .fla !
    cheers

  • Please help me convert format from MP4 to WAV

    I need help converting MP4 files to WAV . I purchased songs on ITunesbut can't record them to a CD I can use.

    http://support.apple.com/kb/HT1550
    Regards.

  • Declare new color from AS2 to AS3

    Hi All,
    Could you let me know how to "convert" the following code from AS2 to AS3:
    var distracterBkgdColor = new Color(this.distracterBkgd_mc);
    Thanks!

    var ct:ColorTransform = this.distracterBkgd_mc.transform.colorTransform;ct.color = 0xrrbbgg;
    this.distracterBkgd_mc.transform.colorTransform=ct;

  • Help! Convert simple Flash AS2 code to AS3

    Hi everyone,
    I'm a Flash beginner and followed a tutorial: http://www.webwasp.co.uk/tutorials/018/tutorial.php ... to learn how to make a "live paint/draw" effect. I didn't realize  that if I made something in AS2, I wouldn't be able to embed it (and  have it work) into my root AS3 file, where I've got a bunch of other  stuff going on. I've tried following tips on how to change AS2 code to  AS3, but it just doesn't work. I know it's simple code, and that some  genius out there can figure it out, but I'm at a loss. Please help!
    Here's the AS2 code:
    _root.createEmptyMovieClip("myLine", 0);
    _root.onMouseDown = function() {
       myLine.moveTo(_xmouse, _ymouse);
       ranWidth = Math.round((Math.random() * 10)+2);
       myLine.lineStyle(ranWidth, 0xff0000, 100);
       _root.onMouseMove = function() {
          myLine.lineTo(_xmouse, _ymouse);
    _root.onMouseUp = function() {
       _root.onMouseMove = noLine;
    Thanks in advance!
    Signed,
    Nicolle
    Flash Desperado

    Considering the code is on timeline:
    var myLine:Sprite = new Sprite();
    addChild(myLine);
    var g:Graphics = myLine.graphics;
    addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown);
    function onMouseDown(e:MouseEvent):void {
         var ranWidth:Number = Math.round((Math.random() * 10) + 2);
         g.clear();
         g.lineStyle(ranWidth, 0xFF0000, 1);
         addEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);
         addEventListener(MouseEvent.MOUSE_UP, onMouseUp);
    function onMouseMove(e:MouseEvent):void {
         g.lineTo(mouseX, mouseY);
    function onMouseUp(e:MouseEvent):void {
         removeEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);
         removeEventListener(MouseEvent.MOUSE_UP, onMouseUp);

  • Issues converting scroll bar components from AS2 to AS3

    I am working on editing a document that has scroll bar components that I would like to convert from AS2 to AS3 since everytime I try to open the document it shows a WARNING and won't convert them and when I publish and look at the final document the scroll bar seems to act unusally since it is obviously still on AS2.
    Here are two of the scripts I finally was able to find within it. Should I fix it and how so? This first is for the "Creative Scroll Area" and the second is for the "Creative Scrollbar"
    package  {
              import flash.display.MovieClip;
              public class Creative Scroll Area extends MovieClip {
                        public function Creative Scroll Area() {
                                  // constructor code
    package  {
              import flash.display.MovieClip;
              public class Creative Scrollbar extends MovieClip {
                        public function Creative Scrollbar() {
                                  // constructor code

    Okay, well I know the code is making a scroll bar and a scroll area and under the "type" it says they are "compiled..." which is unusual since most of the other components I've worked with have been movie clips or bitmaps. Do I need to look up what AS3 components I need to replace the script from above? Because when I looked for that I couldn't specifically find what I needed or really understood if I was looking at the right information.
    Here is something I found when trying to "debug" it:
    WARNING: The component 'UIScrollBar' requires ActionScript 2.0, which is not supported in this version of Flash Professional.
    WARNING: The component 'Creative Scrollbar' requires ActionScript 2.0, which is not supported in this version of Flash Professional.
    WARNING: The component 'Creative Scroll Area' requires ActionScript 2.0, which is not supported in this version of Flash Professional.

  • BCM 2007 error: "To help prevent malicious code from running, one or more objects"

    Recently we changed our e-mail accounts around to a new domain name. After this switch, BCM no longer allows adding, editing or any other manipulation of contact records. I get an error message saying "To help prevent malicious code from running, one
    or more objects in this form were not loaded."
    I have tried clearing the forms cache, uninstalling and reinstalling BCM and even adding the old e-mail address back into the Outlook profile and nothing works.
    Is there something I have missed somewhere or am I looking at a complete reinstall of Outlook and BCM?
    Jon

    Hi Jon
    Thank you for the update.  It could be another Active X Component - BCM 2007 calls several of them
    On thing you could do is run a Process Monitor Log to see if perhaps another component is Blocked. To do that try the following:
    1. Close Outlook and as many other programs as possible
    2. Download and Extract Process Monitor from here -
    http://technet.microsoft.com/en-us/sysinternals/bb896645
    3. Start Process Monitor
    4. Start Outlook
    5. Reproduce the error in BCM
    6. Stop Process Monitor by going to the File menu and unchecking "Capture Events"
    At this point you can try filtering by clicking the Filter Icon (the Funnel) on the menu bar.  Click on the Left Drop down at the top of the Dialog and Select "Path"
    For the second dropdown select "Contacts" and then filter on "ActiveX Compatibility" (without the quotes)
    in my lab, every GUID under HKLM\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility came up with a result of "Name Not Found"
    On your system, are there any are present (the Result Column will show "Success")?
    If so, then I would check the Compatibility Flag for that one (Hint - if you right-click on an Entry you can select "Jump To" to open Regedit to that location)
    - or -
    If you would like for me to take a look at it, in Process Monitor Go to the File > Save Menu and save it as a .PML file. Then send it to me at cts-larrymei at live.com
    Note - Please ZIP the file prior to sending it
    Thanks!
    Larry - MSFT
    Larry Meinstein

  • Please help me convert the SQL to HQL

    select
    count(*) as col_0_0_
    from
    edu.hr_people_all hrpeopleal0_
    left outer join
    edu.conditions_journal conditions1_
    on hrpeopleal0_.people_id=conditions1_.people_id
    and conditions1_.personal_number like '%'
    where
    hrpeopleal0_.status=11

    Hibernate version: 3
    HQL as I 've done
    FROM PMSProjectsORO pjt LEFT JOIN PMSChecklistORO pcl
    ON pjt.projectId = pcl.projectId order by
    pjt.projectCode ascHQL is probably incorrect.
    Try this:
    FROM
    PMSProjectsORO pjt
    LEFT JOIN
    PMSChecklistORO pcl
    ORDER BY
    pjt.projectCode asc>
    Original SQL for MSQL5:
    FROM PMSProject LEFT JOIN PMSCheckList ON
    PMSProject.PROJECT_ID = PMSCheckList.PROJECT_ID order
    by PMSProject.PROJECT_CODE desc
    Name and version of the database you are using:
    MYSQL 5
    Please help me convert the sql to hql since what i
    've done is throwing error like unexpected token...
    Please reply ASAPLet me know if that's better.
    %

  • HT201493 How do I get my old apple ID/email from popping up and asking to verifie it's getting annoying? I've change everything to my new email an my old one keeps popping up please help me stop it from popping up all the time?

    How do I get my old apple ID/email from popping up and asking to verifie it's getting annoying? I've change everything to my new email an my old one keeps popping up please help me stop it from popping up all the time?

    Did you change the ID you are using for iCoud?  If so, did you delete the account, then sign back in with your new ID on your device?

  • Please help my ipod disconnected from the Internet and wont reconnect and i did the right password

    please help my ipod disconnected from the Internet and wont reconnect and i did the right password

    - Do other devices still connect to the network?
    - Does the iPod connect to other networks?
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router.
    - Reset networks settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - iOS: Recommended settings for Wi-Fi routers and access points

  • My notebook is simply death, so I cannot sync my Ipod with another notebook. What can I do? Please help me! Greetings from Austria

    My main notebook crushes and now I would like to sync my Ipod with annother notebook! So what ca I do? Please help me! Greetings from Austria

    See Recover your iTunes library from your iPod or iOS device.
    tt2

Maybe you are looking for

  • No module named csv

    Hi All, I'm a newbie to ODI and I'm trying to write a Jython script that manipulates CSV files. I tried to use the csv module of Python and on a Python script it works OK. Now I tried to create a procedure with a Jython step but when I try to execute

  • Help please - Broadband not activated

    Hi I've just moved to BT from another broadband provider. My broadband was due to be activated last Friday (28th Feb) but apparently there has been a "delay" with the order. Now that I've been on these boards I can see that it's not just me (I wish I

  • Convert layer in smart object

    How to convert a layer in a smart object in Photoshop 7?

  • Unable to print PDFs in Abode 8 or 9.

    I am using adobe reader.  I am unable to PDF of greater than 2 pages.  the error message indicates the program is not responding.  Please help.

  • Laptop froze during software update now it won't boot?

    I can get in into disk utility and have erased my disk, but cannot reinstall OS X. I believe the issue is that cannot erase, partition, or unmount or "OS X Base System" in terminal. I've tried restoring a backup from Time Machine and even inserting a