Remove MovieClip with event.target.content

Hi every one please i need your help i have this code and i want to remove baresClip but i cante removeit please helpme
var loaderBares:Loader = new Loader();
    loaderBares.unload();
    loaderBares.load(new URLRequest("negocio/bares.swf"));
loaderBares.contentLoaderInfo.addEventListener(Event.COMPLETE,loadBares);
function loadBares(event:Event){
          var baresClip:MovieClip = event.target.content;
          baresClip.x= -474;
          baresClip.y= -135;
          addChild(baresClip);
baresClip.over1.receta1.addEventListener(MouseEvent.CLICK, prueba);
          function prueba(event:MouseEvent):void{
                              gotoAndStop("receta1");
                              removeChild(baresClip); /*Here is working*/
MovieClip(root).mc_negocio.menu_negocio.btn_botanas.addEventListener(MouseEvent.CLICK, goToBotanas);
function goToBotanas(event:MouseEvent):void
  removeChild(baresClip);   /*Here is not working*/
          gotoAndPlay("botanas");

oh, i see what you're doing.  you made baresClip local to loadBares.
to remedy, use:
var baresClip:MovieClip
var loaderBares:Loader = new Loader();
    loaderBares.unload();
    loaderBares.load(new URLRequest("negocio/bares.swf"));
loaderBares.contentLoaderInfo.addEventListener(Event.COMPLETE,loadBare s);
function loadBares(event:Event){
          baresClip = event.target.content;
          baresClip.x= -474;
          baresClip.y= -135;
          addChild(baresClip);
baresClip.over1.receta1.addEventListener(MouseEvent.CLICK, prueba);
          function prueba(event:MouseEvent):void{
                              gotoAndStop("receta1");
                              removeChild(baresClip); /*Here is working*/
MovieClip(root).mc_negocio.menu_negocio.btn_botanas.addEventListener(M ouseEvent.CLICK, goToBotanas);
function goToBotanas(event:MouseEvent):void
  removeChild(baresClip);   /*Here is not working*/
          gotoAndPlay("botanas");

Similar Messages

  • Help with event.target.name

    I am very green with actionscript and coding in general so please forgive me if I am asking something that sounds super simple.
    Is it possible to take "event.target.name" value which in my case would be something like "SW5005_mc" and change that value.
    I use that value right now to tell another clip to gotoAndStop(event.target.name); which I have frames labeled the same as the event.target.name.
    I would like to take the value of event.target.name for instance "SW5005_mc" and remove the "_mc" and put a dash in between the "SW" and the "5005"
    to get "SW-5005" which then I would pass into a text field.
    I really don't know where to begin or if this is possible.
    Thanks for any help or suggestions,
    Chris

    yes you can do it with String manipulation, check out the various String Class methods, some examples here:
    http://www.wuup.co.uk/as3-basics-string-manipulation-in-actionscript-3/
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/String.html

  • I am also looking to get whether or not the document is open in a browser window which can be done with event

    I am also looking to get whether or not the document is open in a browser window which can be done with event.target.external, but I want it to happen without any user interaction and all the events that I tried while loading the document cause an error. I also tried xfa.host.name, but it always returns "Acrobat" whether the doc is in Reader or the browser, so I guess that is not it. If I put the call to event.target.external in a button, it works (I guess those libraries might not be initialized yet, they are legacy, but I don't know if there is an event that happens on load after that lib is initialized).

    // Check the document URL to determine if the form is open in the browser (online) or not (offline)
    var MyDoc = event.target;
    var MyURL = MyDoc.URL;
    if ((MyURL.indexOf("http:") >=0) || (MyURL.indexOf(".tmp") >= 0))
    ONLINE_STATUS_SAVE.rawValue = "ONLINE";
    else
    ONLINE_STATUS_SAVE.rawValue = "OFFLINE";

  • AS 3.0 event target problem!!!

    I have an interesting problem regarding event.target in Flex
    2/ActionScript 3.0. I am using the Flex Grocer app in order to try
    something out. I am attaching listeners to all the click events and
    then printing out event.target to keep track of my events and where
    we clicked, nothing revolutionary here very easy stuff. Once I get
    the paths I would like to run code that will execute my steps and
    play the clicks back based on the event.target information that I
    got and I was able to do that except when we have popups. Here is
    the problem:
    When I execute a click on a button with event.target =
    DataEntry0._UpdateDeleteProd1.Form10.FormItem102.HBox103.Button104
    A poupup appears and then I click on the close button on that
    popup with event.target=
    ConfirmScreen464.UIComponent494.Button498
    COUPLE OF PROBLEMS HERE:
    1) I don’t have the path to the root (DataEntry0) even
    though I use the standard event.target.
    2) This is even a bigger problem, the DOM path
    (ConfirmScreen464.UIComponent494.Button498) is dynamically
    generated (the numbers are dynamically generated) so when I use
    that path that I got during the time I was monitoring the app, when
    I use my code to play the events that very same target does not
    correspond to the popup that the fist event caused.
    I tried using IDs but in Flex I have not found anything like
    document.getElementById() that is available in JavaScript. Any help
    on this will be greatly appreciated.
    Thanks
    p.s. I looked at the automation library that Flex has (and
    Mercury QTP uses) but that will not work for me.

    zoran,
    Sorry,I didn't explain what to do very clearly :).
    Básically, the event.taget parameter is set when you use the
    dispatchEvent function, so if you want an event to be dispatched
    from a Object you must call the dispatchEvent from this function.
    The line I gave you wont work by itself since I don't know
    how you reference
    DataEntry0._UpdateDeleteProd1.Form10.FormItem102.HBox103.Button104
    in your application.
    But what you need to do is call the dispatchEvent function in
    the Button104 object with the specific event you want to trigger.

  • Why can't I remove event.target?

    My parent class adds bonus_mc
    It then adds an event listener to bonus_mc to listen for a custom event
    When the custom event is dispatched I want the parent_mc to remove event.target. But it wont, it's says 1118: Implicit coercion of a value with static type Object to a possibly unrelated type flash.display: DisplayObject.

    Well here is my class's code.  It's the last function that is causing me problems - remove bonus.  The bonus object is dispatching an event when it's y position is>390, so the event listener is working.  It's a problem with how am I trying to remove the bonus.
    I just tried casting it to no avail.
    package {
         import flash.display.*;
         import flash.events.*;
         public class GameScreen extends MovieClip {
              var paddle:Paddle;
              var ball:Ball;
              var bonusType:Array;
              var brick:Brick;
              var hitBrick:Brick;
              var level:Level;
              var levelNum:Number=1;
              var bonus:Bonus;
              var brickArray:Array;
              var hitTest:Boolean;
              var hitArray:Array;
              var bonusToBeRemoved:Bonus;
              public function GameScreen() {
                   setUpGame(levelNum)
                   //this.addEventListener
              private function setUpGame(frameNo:Number){
                   ball=new Ball();
                   paddle=new Paddle();
                   addChild(paddle)
                   paddle.x=300;
                   paddle.y=380;level=new Level(frameNo)
                   addChild(level)
                   addChild(ball);
                   this.addEventListener(Event.ENTER_FRAME,updateGame)
              private function updateGame(e:Event):void{
                   testPaddleCollision();
                   paddle.movePaddle();
                   checkBrickHit()
              private function checkBrickHit():void{
                        for(var i:int=0;i<level.numChildren;i++){
                             if(level.getChildAt(i) is Brick){
                                   brick=Brick(level.getChildAt(i))
                                       if(brick.hitTestPoint(ball.x,ball.y,true)){
                                            brick.noOfHits++
                                            hitArray=brick.respondToHit()
                                            if(hitArray["removeBrick"]){
                                                      level.removeChild(brick)
                                            if(hitArray["isBonus"]){
                                                      addBonus(hitArray["xPos"],hitArray["yPos"])
              private function testPaddleCollision():void{
                   if (ball.hitTestObject(paddle)){
                             ball.bounceOnPaddle(1); 
              private function addBonus(xPos:Number,yPos:Number){
                   bonus=new Bonus();
                   bonus.x=xPos
                   bonus.y=yPos
                   addChild(bonus)
                   bonus.addEventListener(Bonus.OFFSCREEN,removeBonus)
                   if(paddle.hitTestObject(bonus)){
                        applyBonus()
              private function applyBonus(){
              private function removeBonus(e:Event){
                   bonusToBeRemoved=Bonus(e.target)
                   removeChild(DisplayObject(e.target))

  • How do I use the event.target.name String with an external dispatchEvent?

    ...I hope the title question makes sense...
    On my stage I have an externally loaded SWF with a button. When clicked the button dispatches an event to the main stage.
    On the main stage a listener then loads an SWF into a loader called gallery.
    The gallery loader is also being shared by buttons on the main stage which use the event.target.name String to call in SWFs with corresponding names.
    I am using Tweens to fade-out and -in content to the gallery when a button is pressed.
    Loading the SWFs was working until I tried to create a universal button function for the dispatchEvent buttons...
    The problem I have is that I don't know how to define the String to tell the newSWFRequest where to find the SWF when triggered by the external buttons.
    (I may be doing this all wrong... but figured the best way to load an SWF on to the main stage from an external SWF was by using dispatchEvent??)
    My code triggers the Event and the gallery loader fades out, but then it cannot find the new SWF:
    Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found.
    Please can someone help me understand the way to make the String point in the right direction? (I think the only errors are in bold below)
    Code:
    var myTweenIn2:Tween;
    var myTweenOut2:Tween;
    var nextLoadS2:String;
    // Listen for external event dispatched from external btns
    addEventListener("contactStage", btnClickExtrnl);
    function btnClickExtrnl(e:Event):void {
    nextLoadS2 = ?????
    myTweenOut2=new Tween(gallery,"alpha",None.easeOut,gallery.alpha,0,0.2,true);
    myTweenOut2.addEventListener(TweenEvent.MOTION_FINISH,tweenOutCompleteF2);
    // Btns Universal function
    function tweenOutCompleteF2(e:TweenEvent){
    myTweenOut2.removeEventListener(TweenEvent.MOTION_FINISH,tweenOutCompleteF2);
    myTweenOut2=null;
        var newSWFRequest:URLRequest = new URLRequest("swfs/" + nextLoadS2 + ".swf");
    myTweenIn2 = new Tween(gallery, "alpha", None.easeOut, gallery.alpha, 1, 0.2, true);
        gallery.load(newSWFRequest);
        gallery.x = Xpos;
        gallery.y = Ypos;
    Thank you.

    That works – thank you!
    I'm now using this code to fade in each of the SWFs:
    function contactStage(e:MouseEvent):void {
        var newSWFRequest:URLRequest = new URLRequest("swfs/"+e.currentTarget.name+".swf");
        myTweenIn = new Tween(gallery,  "alpha", None.easeOut, 0, 1, 0.2, true);
        gallery.load(newSWFRequest);
        gallery.x = Xpos;
        gallery.y = Ypos;
    But I cannot add the fade out function. I have amended the above code to create:
    var myTweenOutX:Tween;
    var myTweenInX:Tween;
    function contactStage(e:MouseEvent):void {
    myTweenOutX=new Tween(gallery,"alpha",None.easeOut,gallery.alpha,0,0.2,true);
    myTweenOutX.addEventListener(TweenEvent.MOTION_FINISH,tweenOutCompleteFX);
    function tweenOutCompleteFX(e:TweenEvent){
    myTweenOutX.removeEventListener(TweenEvent.MOTION_FINISH,tweenOutCompleteFX);
    myTweenOutX=null;
        var newSWFRequest:URLRequest = new URLRequest("swfs/"+e.currentTarget.name+".swf");
    myTweenInX = new Tween(gallery,  "alpha", None.easeOut, 0, 1, 0.2, true);
        gallery.load(newSWFRequest);
        gallery.x = Xpos;
        gallery.y = Ypos;
    But get this error:
    ReferenceError: Error #1069: Property name not found on fl.transitions.Tween and there is no default value.
    at ACOUSTIC_fla::MainTimeline/tweenOutCompleteFX()[ACOUSTIC_fla.MainTimeline::frame1:110]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at fl.transitions::Tween/set time()
    at fl.transitions::Tween/nextFrame()
    at fl.transitions::Tween/onEnterFrame()
    Where am I going wrong?

  • Event.target movieclip

    I have a movieclip named button1 that contains a dynamic text named txt in it.
    My problem is that if i try
    if(event.target==button1)
    it will only recognize the click when it dosent intersect the dynamic textfield
    So i have to do:
    if(event.target==button1||event.target==button1.txt)
    do you have any explanation for why i cant only check if the target is button1? because the textfield is inside the button so normally it is considered as a part of it
    because the movieclip button1 is the container

    Use currentTarget instead of target.
    The difference between them is that target is the object that dispatched the event, while currentTarget is the object with the listener assigned to it.  Sometimes they are the same object, but target can often be another object within the object that has the listener assigned to it.
    If you would like an explanation/with examples...
    http://www.wastedpotential.com/?p=10

  • Remove or Disable Events

    I received hundreds of photos from many different photographers each month for publication in a magazine. The date the image was taken is totally irrelevant to me - I need to store them in a folder for the month of publication, ie, June. Later, when I select the 30 or so photos I want to actually use, I have to edit the size and resolution of each separately for 1) print, 2) website, and 3) a newsletter. In all this editing, I've got way too many "events" that I never use and later have to delete. I just want to remove or disable "Events" from iPhoto entirely, so that when I receive an image, I can store it where I want without risking all duplicates I'll have to delete later. How do I remove or disable the "Events" part of iPhoto?

    You can not
    Events are one view of the contents of the library - by default they are date time based - you can combine events and delete events and change the sort order of events
    You also can see your library in Photo view (with or with out event titles displayed) and the photos view also offers several sort options
    I would use albums for storing the Photos according to month of publication -- or use a more powerful (and much more expensive) Digital Asset Manager - iPhoto is a consumer program designed for consumers with digital cameras - it is not a full fledged DAM (although it is a darned good one for its target audience) for a magazine publisher
    Since you are using it for a purpose it was not designed for you will need to wither switch or adapt
    LN

  • Takes up to 5 min "Applying User Settings" with events ID 6005 6006 after a reboot - Win Server 2008 R2 Standard 64bit

    Hi,
    Has anybody seen the issue below showing in the logs? The time for the logs messages switch from the real time (17:57) to some random time (10:55). There seem to be a disconnect with the time. I noticed right when the status message while logging in switches
    to "apply user settings", the time get screwed up on the gpsvc.log file and switches to the random time (10:55) and keeps reporting that random time till "apply user settings" process completes and switches back to regular real time (17:57).
    I made sure the server is synced up with w32tm /resync command. Tried different DNS settings. Tried dis joining and rejoining to the domain. tried to block inheritance on GPMC to that OU. Created new domain user. Deleted local profiles. All with no luck and
    same behavior which is taking up to 5 min "applying user setting" only after a reboot. If I log in and out without reboot, it would log in just fine within seconds.
    Any thoughts or suggestions are appreciated!
    Thanks,
    Here is a copy from the gpsvc.log:
    GPSVC(338.354) 17:57:08:406 -------------------------------------------
    GPSVC(338.354) 17:57:08:406 Use the Event Viewer to analyze the Group Policy operational log for details on Group Policy service activity.
    GPSVC(338.354) 17:57:08:406 -------------------------------------------
    GPSVC(338.354) 17:57:08:406  
    GPSVC(338.354) 17:57:08:406 InitializeProductType: Product Type: 2
    GPSVC(338.354) 17:57:08:406 Register for connectivity notification is Enabled.
    GPSVC(338.354) 17:57:08:406 Connectivity manager class initialized with for IntranetAuth connectivity
    GPSVC(338.354) 17:57:08:640 Target = Machine
    GPSVC(338.350) 17:57:08:640 Target = Machine, ChangeNumber 0
    GPSVC(338.39c) 17:57:09:232 bMachine = 1 
    GPSVC(338.39c) 17:57:09:232 Setting GPsession state = 1
    GPSVC(338.27c) 17:57:09:232 Waiting for connectivity before applying policies
    GPSVC(338.27c) 17:57:09:232 Waiting for SamSs with timeout 8264
    GPSVC(338.39c) 17:57:09:232 Message Status = <Applying computer settings...>
    GPSVC(338.39c) 17:57:09:232 Target = Machine
    GPSVC(338.39c) 17:57:09:232 Target = Machine, ChangeNumber 0
    GPSVC(338.39c) 17:57:09:248 Setting GPsession state = 1
    GPSVC(338.27c) 17:57:09:357 Waiting for NTDS.IndexRecreateEvent with timeout 8139
    GPSVC(338.27c) 17:57:09:357 Waiting for NlaSvc with timeout 8139
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 1
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:591 UnLocked successfully
    GPSVC(338.350) 17:57:09:591 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:591 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Async Lock called
    GPSVC(338.350) 17:57:09:591 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:591 Sid = (null)
    GPSVC(338.350) 17:57:09:591 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:591 UnLocked successfully
    GPSVC(338.350) 17:57:09:591 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:591 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Async Lock called
    GPSVC(338.350) 17:57:09:591 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:591 Sid = (null)
    GPSVC(338.350) 17:57:09:591 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:591 UnLocked successfully
    GPSVC(338.350) 17:57:09:591 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:591 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Async Lock called
    GPSVC(338.350) 17:57:09:591 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:591 Sid = (null)
    GPSVC(338.350) 17:57:09:591 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:591 UnLocked successfully
    GPSVC(338.350) 17:57:09:591 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:591 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Async Lock called
    GPSVC(338.350) 17:57:09:591 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:591 Sid = (null)
    GPSVC(338.350) 17:57:09:591 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:591 UnLocked successfully
    GPSVC(338.350) 17:57:09:669 Sid = (null)
    GPSVC(338.350) 17:57:09:669 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:669 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:669 Setting lock state as notLocked
    GPSVC(338.350) 17:57:09:669 UnLocked successfully
    GPSVC(338.27c) 10:55:29:426 Waiting for NETLOGON with timeout 6392
    GPSVC(338.27c) 10:55:29:426 Waiting for MUP with timeout 6392
    GPSVC(338.27c) 10:55:29:426 Waiting for wkssvc to signal MUP event
    GPSVC(338.5bc) 10:55:29:519 Target = Machine
    GPSVC(338.5bc) 10:55:29:519 Target = Machine, ChangeNumber 0
    GPSVC(3b0.67c) 10:55:29:535 CGPNotify::RegisterForNotification: Entering with target Machine and event 0x16c
    GPSVC(3b0.67c) 10:55:29:535 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.5bc) 10:55:29:535 Target = Machine
    GPSVC(3b0.67c) 10:55:29:535 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(3b0.67c) 10:55:29:535 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.6c4) 10:55:29:535 Target = Machine
    GPSVC(338.5b0) 10:55:29:535 Target = Machine, ChangeNumber 0
    GPSVC(338.5b0) 10:55:29:535 Sid = (null), dwTimeout = 600000, dwFlags = 268435456
    GPSVC(338.5b0) 10:55:29:535 LockPolicySection called for user <Machine>
    GPSVC(338.5b0) 10:55:29:535 Async Lock called
    GPSVC(338.5b0) 10:55:29:535 Reader Lock got immediately. m_cReadersInLock : 1
    GPSVC(338.5bc) 10:55:29:535 Sid = (null)
    GPSVC(338.5bc) 10:55:29:535 UnLockPolicySection called for user <Machine>
    GPSVC(338.5bc) 10:55:29:535 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.5bc) 10:55:29:535 Setting lock state as notLocked
    GPSVC(338.5bc) 10:55:29:535 UnLocked successfully
    GPSVC(338.754) 10:55:29:816 CGPNotify::RegisterForNotification: Entering with target Machine and event 0xc18
    GPSVC(338.754) 10:55:29:816 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.350) 10:55:29:816 Target = Machine
    GPSVC(338.754) 10:55:29:816 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.754) 10:55:29:816 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.27c) 10:55:29:987 Done waiting for MUP
    GPSVC(338.27c) 10:55:29:987 Waiting for DS with timeout 5830
    GPSVC(338.27c) 10:55:29:987 Registered for NLA notification successfully
    GPSVC(338.27c) 10:55:29:987 NlaGetIntranetCapability returned Not Ready error. Consider it as NOT intranet capable.
    GPSVC(338.27c) 10:55:29:987 There is no connectivity. Waiting for connectivity again...
    GPSVC(338.27c) 10:55:30:455 There is connectivity.
    GPSVC(338.27c) 10:55:30:455 We have network connectivity... proceeding to apply policy.
    GPSVC(338.27c) 10:55:30:455 NlaQueryNetSignatures returned 1 networks
    GPSVC(338.27c) 10:55:30:455 Found a intranet+auth network
    GPSVC(338.27c) 10:55:30:455 # of interfaces : 1
    GPSVC(338.27c) 10:55:30:455 Interface ID: {9538E3E7-197E-4A34-82B6-F457DC25D35D}
    GPSVC(338.27c) 10:55:30:455 Compartment ID: 1
    GPSVC(338.27c) 10:55:30:455 Setting the CompartmentId [1] on the current thread
    GPSVC(338.27c) 10:55:30:455 GetDomainControllerConnectionInfo: Enabling bandwidth estimate.
    GPSVC(338.27c) 10:55:30:502 Started bandwidth estimation successfully
    GPSVC(338.27c) 10:55:30:502 GetDomainControllerConnectionInfo: Getting Ldap Handles.
    GPSVC(338.27c) 10:55:30:502 GetLdapHandle:  Getting ldap handle for host: DC-MLIB.DOMAIN-NAME in domain: DOMAIN-NAME.
    GPSVC(338.27c) 10:55:30:502 GetLdapHandle:  Server connection established.
    GPSVC(338.27c) 10:55:30:502 GetLdapHandle:  Binding using only kerberos.
    GPSVC(338.27c) 10:55:30:518 GetLdapHandle:  Bound successfully.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\dskquota.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.27c) 10:55:30:518 ProcessGPOs:  No site name defined.  Skipping site policy.
    GPSVC(338.27c) 10:55:30:518 GetGPOInfo:  ********************************
    GPSVC(338.27c) 10:55:30:518 GetGPOInfo:  Entering...
    GPSVC(338.27c) 10:55:30:533 GetMachineToken:  Looping for authentication again.
    GPSVC(338.27c) 10:55:30:580 GetMachineToken:  Looping for authentication again.
    GPSVC(338.27c) 10:55:30:596 GetMachineToken:  InitializeSecurityContext failed with 0x80090324
    GPSVC(338.27c) 10:55:30:596 GetGPOInfo:  Failed to get the machine token with  -2146893020
    GPSVC(338.27c) 10:55:30:596 GetGPOInfo:  Leaving with 0
    GPSVC(338.27c) 10:55:30:596 GetGPOInfo:  ********************************
    GPSVC(338.27c) 10:55:30:596 ProcessGPOs: GetGPOInfo failed.
    GPSVC(338.27c) 10:55:30:596 ProcessGPOs: No WMI logging done in this policy cycle.
    GPSVC(338.27c) 10:55:30:596 ProcessGPOs: Processing failed with error -2146893020.
    GPSVC(338.27c) 10:55:30:596 ProcessGPOs: Boot/Logon Policy processing - checking if UBPM trigger events need to be fired
    GPSVC(338.27c) 10:55:30:596 CheckAndFireGPTriggerEvent: Fired Policy present UBPM trigger event for Machine.
    GPSVC(338.27c) 10:55:30:596 Application complete with bConnectivityFailure = 0.
    GPSVC(338.27c) 10:55:30:596 Application complete with bConnectivityFailure = 0.
    GPSVC(338.4d0) 10:55:32:281 CGPNotify::RegisterForNotification: Entering with target Machine and event 0xd94
    GPSVC(338.4d0) 10:55:32:281 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.4f0) 10:55:32:281 Target = Machine
    GPSVC(338.4d0) 10:55:32:281 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.4d0) 10:55:32:281 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.384) 10:55:32:281 Target = Machine, ChangeNumber 0
    GPSVC(338.384) 10:55:35:900 SID = S-1-5-21-1599696121-1964574698-334091239-301107
    GPSVC(338.384) 10:55:35:900 bMachine = 0 
    GPSVC(338.384) 10:55:35:900 Setting GPsession state = 1
    GPSVC(338.384) 10:55:35:900 Message Status = <Applying user settings...>
    GPSVC(338.6c4) 10:55:35:900 Setting GPsession state = 1
    GPSVC(338.718) 10:55:35:900 StartTime For network wait: 11200ms
    GPSVC(338.718) 10:55:35:900 Current Time: 19546ms
    GPSVC(338.718) 10:55:35:900 MaxTimeToWaitForNetwork: 7034ms
    GPSVC(338.718) 10:55:35:900 TimeRemainingToWaitForNetwork: 0ms
    GPSVC(338.718) 10:55:35:900 UserPolicy: Waiting for machine policy wait for network event with timeout 0 ms
    GPSVC(338.718) 10:55:35:915 GPLockPolicySection: Sid = (null), dwTimeout = 30000, dwFlags = 65538
    GPSVC(338.718) 10:55:35:915 LockPolicySection called for user <Machine>
    GPSVC(338.718) 10:55:35:915 Sync Lock Called
    GPSVC(338.718) 10:55:35:915 Reader Lock got immediately. m_cReadersInLock : 1
    GPSVC(338.718) 10:55:35:915 Lock taken successfully
    GPSVC(338.718) 10:55:35:915 UnLockPolicySection called for user <Machine>
    GPSVC(338.718) 10:55:35:915 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.718) 10:55:35:915 Setting lock state as notLocked
    GPSVC(338.718) 10:55:35:915 UnLocked successfully
    GPSVC(338.718) 10:55:35:915 GetDomainControllerConnectionInfo: Enabling bandwidth estimate.
    GPSVC(338.718) 10:55:36:430 Started bandwidth estimation successfully
    GPSVC(338.718) 10:55:36:430 GetDomainControllerConnectionInfo: Getting Ldap Handles.
    GPSVC(338.718) 10:55:36:430 GetLdapHandle:  Getting ldap handle for host: DC-MLIB.DOMAIN-NAME in domain: DOMAIN-NAME.
    GPSVC(338.718) 10:55:36:430 GetLdapHandle:  Server connection established.
    GPSVC(338.718) 10:55:36:430 GetLdapHandle:  Bound successfully.
    GPSVC(338.718) 10:55:36:430 ProcessGPOs: Computer's domain is same as user's domain so using user's domain DC
    GPSVC(338.718) 10:55:36:430 GetLdapHandle:  Getting ldap handle for host: DC-MLIB.DOMAIN-NAME in domain: <Unspecified>.
    GPSVC(338.718) 10:55:36:430 GetLdapHandle:  Server connection established.
    GPSVC(338.718) 10:55:36:446 GetLdapHandle:  Bound successfully.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\dskquota.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.718) 10:55:36:446 ProcessGPOs:  No site name defined.  Skipping site policy.
    GPSVC(338.718) 10:55:36:446 GetGPOInfo:  ********************************
    GPSVC(338.718) 10:55:36:446 GetGPOInfo:  Entering...
    GPSVC(338.718) 10:55:36:446 SearchDSObject:  Searching <OU=People,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 10:55:36:446 SearchDSObject:  Found GPO(s):  < >
    GPSVC(338.718) 10:55:36:446 SearchDSObject:  Searching <DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 10:55:36:446 SearchDSObject:  Found GPO(s):  <[LDAP://CN={31B2F340-016D-11D2-945F-00C04FB984F9},CN=Policies,CN=System,DC=ad,DC=*****,DC=****;0]>
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  ==============================
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  Deferring search for <LDAP://CN={31B2F340-016D-11D2-945F-00C04FB984F9},CN=Policies,CN=System,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 10:55:36:446 EvaluateDeferredGPOs:  Searching for GPOs in cn=policies,cn=system,DC=ad,DC=*****,DC=****
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  ==============================
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  Searching <CN={31B2F340-016D-11D2-945F-00C04FB984F9},CN=Policies,CN=System,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  User has access to this GPO.
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  GPO passes the filter check.
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  Found functionality version of:  2
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  Found file system path of:  <\\DOMAIN-NAME\sysvol\DOMAIN-NAME\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}>
    GPSVC(418.430) 17:59:09:821 CGPNotify::RegisterForNotification: Entering with target Machine and event 0x3dc
    GPSVC(418.430) 17:59:09:821 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.6b8) 17:59:09:821 Target = Machine
    GPSVC(418.430) 17:59:09:821 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(418.430) 17:59:09:821 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.30c) 17:59:09:821 Target = Machine, ChangeNumber 0
    GPSVC(418.430) 17:59:09:837 CGPNotify::RegisterForNotification: Entering with target Machine and event 0x448
    GPSVC(418.430) 17:59:09:837 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.30c) 17:59:09:837 Target = Machine
    GPSVC(418.430) 17:59:09:837 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(418.430) 17:59:09:837 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.6b8) 17:59:09:837 Target = Machine, ChangeNumber 0
    GPSVC(3b0.3c0) 17:59:11:085 CGPNotify::UnregisterNotification: Entering with event 0x16c
    GPSVC(3b0.3c0) 17:59:11:085 CGPNotify::AbortAsyncRegistration: No asyn registration is pending
    GPSVC(3b0.3c0) 17:59:11:085 CGPNotify::UnregisterNotification: Canceling pending calls
    GPSVC(3b0.3c0) 17:59:11:288 Client_CompleteNotificationCall: failed with 0x71a
    GPSVC(3b0.3c0) 17:59:11:288 CGPNotify::UnregisterNotification: Cancelled pending calls
    GPSVC(3b0.3c0) 17:59:11:288 CGPNotify::UnregisterNotification: Exiting with dwStatus = 0x0
    GPSVC(338.30c) 17:59:12:380 Target = Machine
    GPSVC(338.30c) 17:59:12:380 Target = Machine, ChangeNumber 0
    GPSVC(338.30c) 17:59:13:051 Target = Machine
    GPSVC(338.30c) 17:59:13:051 Target = Machine, ChangeNumber 0
    GPSVC(338.30c) 17:59:13:285 Target = Machine
    GPSVC(338.30c) 17:59:13:285 Target = Machine, ChangeNumber 0
    GPSVC(338.5a0) 17:59:14:143 CGPNotify::RegisterForNotification: Entering with target Machine and event 0xf04
    GPSVC(338.5a0) 17:59:14:143 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.6b8) 17:59:14:143 Target = Machine
    GPSVC(338.5a0) 17:59:14:143 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.5a0) 17:59:14:143 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(204.228) 17:59:59:897 CGPNotify::RegisterForNotification: Entering with target Machine and event 0xb50
    GPSVC(204.228) 17:59:59:897 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.6b8) 17:59:59:897 Target = Machine
    GPSVC(204.228) 17:59:59:897 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(204.228) 17:59:59:897 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  Found common name of:  <{31B2F340-016D-11D2-945F-00C04FB984F9}>
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  Found display name of:  <Default Domain Policy>
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  Found user version of:  GPC is 1, GPT is 1
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  Found flags of:  0
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  Found extensions:  [{3060E8D0-7020-11D2-842D-00C04FA372D4}{3060E8CE-7020-11D2-842D-00C04FA372D4}]
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:58:941 ProcessLocalGPO:  Local GPO's gpt.ini is not accessible, assuming default state.
    GPSVC(338.718) 18:01:58:941 ProcessLocalGPO:  GPO Local Group Policy doesn't contain any data since the version number is 0.  It will be skipped.
    GPSVC(338.718) 18:01:58:941 GetGPOInfo:  Leaving with 1
    GPSVC(338.718) 18:01:58:941 GetGPOInfo:  ********************************
    GPSVC(338.718) 18:01:58:941 GetGPOInfo:  ********************************
    GPSVC(338.718) 18:01:58:941 GetGPOInfo:  Entering...
    GPSVC(338.718) 18:01:59:097 SearchDSObject:  Searching <OU=FM-Security Video Servers,OU=FM-Servers,OU=FM,OU=Department OUs,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:097 SearchDSObject:  Found GPO(s):  <[LDAP://cn={B957D759-2AF4-4592-95B8-5B7C62F9B340},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0]>
    GPSVC(338.718) 18:01:59:097 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={B957D759-2AF4-4592-95B8-5B7C62F9B340},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Searching <OU=FM-Servers,OU=FM,OU=Department OUs,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Found GPO(s):  <[LDAP://cn={E8A9990E-57AD-4B7B-BAE4-C56E20FB6314},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={251254DD-27DC-419F-816D-C51CDB309D8F},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0]>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={E8A9990E-57AD-4B7B-BAE4-C56E20FB6314},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={251254DD-27DC-419F-816D-C51CDB309D8F},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Searching <OU=FM,OU=Department OUs,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Found GPO(s):  <[LDAP://cn={1A42DA26-38F9-491C-940B-9D37895BE92A},cn=policies,cn=system,DC=ad,DC=*****,DC=****;1][LDAP://cn={F3D0434D-3EFF-4713-908C-3D8AB8189FB9},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={F03FA73B-A5B5-496B-94E5-5315D1D8F5F3},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={386C2C68-BB18-483B-AF36-92E76C1178D2},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={3D83F7A1-D4C2-4F8E-8808-CD5415D5A91E},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={462C2912-2318-4F46-A082-8BCC07EBDA29},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={7690B141-A1C2-4381-BD63-1AF5C09B4456},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={62C29217-3E25-42FC-8469-78312109323E},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={E795AC88-A750-45AF-870C-7EEDF00AA64A},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={B7C7410F-A3C0-4F12-8C3A-245C317EDFBA},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={CE1F85C1-DF2D-4E34-898B-2D6E3D0B55BE},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={D1B4C3BE-41CD-41B2-8A26-BE2EFD6953D0},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={E2673882-F33C-4879-AE75-583829D8BDA8},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={074DE127-4DBA-43F2-9C19-5953AD76CE9F},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={F4BAB9C5-0B6E-426B-93D3-1950A7002DC7},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={4A2C73AF-509F-4434-AF58-1AB3888959B4},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0]>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  The link to GPO LDAP://cn={1A42DA26-38F9-491C-940B-9D37895BE92A},cn=policies,cn=system,DC=ad,DC=*****,DC=**** is disabled.  It will be skipped for processing.
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={F3D0434D-3EFF-4713-908C-3D8AB8189FB9},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={F03FA73B-A5B5-496B-94E5-5315D1D8F5F3},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={386C2C68-BB18-483B-AF36-92E76C1178D2},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={3D83F7A1-D4C2-4F8E-8808-CD5415D5A91E},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={462C2912-2318-4F46-A082-8BCC07EBDA29},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={7690B141-A1C2-4381-BD63-1AF5C09B4456},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={62C29217-3E25-42FC-8469-78312109323E},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={E795AC88-A750-45AF-870C-7EEDF00AA64A},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={B7C7410F-A3C0-4F12-8C3A-245C317EDFBA},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={CE1F85C1-DF2D-4E34-898B-2D6E3D0B55BE},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={D1B4C3BE-41CD-41B2-8A26-BE2EFD6953D0},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={E2673882-F33C-4879-AE75-583829D8BDA8},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={074DE127-4DBA-43F2-9C19-5953AD76CE9F},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={F4BAB9C5-0B6E-426B-93D3-1950A7002DC7},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={4A2C73AF-509F-4434-AF58-1AB3888959B4},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Searching <OU=Department OUs,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  No GPO(s) for this object.
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Searching <DC=ad,DC=*****,DC=****>

    > GPSVC(338.350) 17:57:09:669 UnLocked successfully
    > GPSVC(338.27c) 10:55:29:426 Waiting for NETLOGON with timeout 6392
    The numbers in parenthesis are PID.TID of gpsvc.exe. So we see a thread
    change, and this usually indicates that a different logon process has
    begun. Could you try to map this log entries to events in the group
    policy event log?
    But to be honest: No, I've never seen such a behavior in gpsvc.log :(
    I'm almost sure that a service is responsible, but how to identify it -
    I don't know. There's no auditing for system time changes, AFAIK.
    Greetings/Grüße,
    Martin
    Mal ein
    gutes Buch über GPOs lesen?
    Good or bad GPOs? - my blog…
    And if IT bothers me -
    coke bottle design refreshment (-:

  • How do I use event.target.name in AS2?

    Thanks to kglad I was able to see how event.target.name in AS3 could make a button load a movieclip with the same namesake.
    I'm doing the same thing now in AS2 but don't know what to write instead of event.target.name.
    And so at the moment each button pushes info into an array and then a function uses that to decide which movieclip to attach to a holder after it has faded out once, and then fades in again...
    // ***** IMAGE GALLERY START ***** //
    // Add image to holder
    imgholder.attachMovie("img0", "image0_0", 1)
    // Array
    var nextLoad = ["img0"];
    // Btn listeners
    img5.onRelease = function() { trace (nextLoad); nextLoad.pop(); nextLoad.push("img5"); btnClick() } // Written on 1 line
    img4.onRelease = function() { trace (nextLoad); nextLoad.pop(); nextLoad.push("img4"); btnClick() }
    img3.onRelease = function() { trace (nextLoad); nextLoad.pop(); nextLoad.push("img3"); btnClick() }
    img2.onRelease = function() { trace (nextLoad); nextLoad.pop(); nextLoad.push("img2"); btnClick() }
    img1.onRelease = function() {
    nextLoad.pop();
    nextLoad.push("img1");
    btnClick()
    img0.onRelease = function() {
    nextLoad.pop();
    nextLoad.push("img0");
    btnClick()
    // The btn function
    function btnClick() {
    trace ("click");
    var myImgTween:Object = new Tween(imgholder, "_alpha", Strong.easeOut, 100, 0, 1, true);
    myImgTween.onMotionFinished = function() {
    fadeOutImg();
    // The btn function part II
    function fadeOutImg() {
    trace ("fadeOutImg");
    imgholder.attachMovie(nextLoad, "image1_1", 1);
    var myImgTween:Object = new Tween(imgholder, "_alpha", Strong.easeOut, 0, 100, 1, true);
    I know I should be able to push the button name into the array, but am having to use a string... I'm sure my code is cumbersome!! But it works. I've tried pushing the button name but it end up including the full stage reference.
    Is there a cleaner way of doing this using event.target.name?
    Thanks for looking!

    There is no event.target in AS2. However since AS2 has no way of remembering the scope object where the target object resides, you can use this to your advantage to retrieve the name of the target by using the "this" command in the function whenever you use the above format "mc.onPress = myfunc". FYI, the popular workaround Delegate, made it possible that when you called "this" in the function, you could retrieve the scope object where the target instance resides. So without its use, "this" will return the name of the target object. Anyway this is the code you can use:
    imgholder.attachMovie("img0","image0_0",1);
    var nextLoad = ["img0"];
    img5.onRelease = onImgRelease;
    img4.onRelease = onImgRelease;
    img3.onRelease = onImgRelease;
    img2.onRelease = onImgRelease;
    img1.onRelease = onImgRelease;
    img0.onRelease = onImgRelease;
    function onImgRelease():Void {
       nextLoad.pop();
       nextLoad.push(this._name);
       btnClick();
    // The btn function
    function btnClick() {
       trace("click");
       var myImgTween:Object = new Tween(imgholder, "_alpha", Strong.easeOut, 100, 0, 1, true);
       myImgTween.onMotionFinished = function() {
          fadeOutImg();
    // The btn function part II
    function fadeOutImg() {
       trace("fadeOutImg");
       imgholder.attachMovie(nextLoad,"image1_1",1);
       var myImgTween:Object = new Tween(imgholder, "_alpha", Strong.easeOut, 0, 100, 1, true);

  • Remove Child and Event.SOUND_COMPLETE not working inside movie clip. What's the problem?

    I have a movie clip that is called to the stage. The user then clicks a button and music plays. As the music starts, another movie clip is called, a simulation of  an equilizer. There are several things that should happen:
    1) When the user closes the movie clip the music is supposed to stop playing and the equilizer movie clip is removed. What actually happens is the music stops playing but  the equilzer movie clip is not removed.
    2) When the music is finished playing the equilzer is supposed to be removed from the stage and the play button is reactivated. But none of that happens. When I click on the movie clip a second time equilizer is still there and the play button is not reactivated.
    Here's the code that calls the movie clip to the stage.
    stage.addEventListener(MouseEvent.MOUSE_DOWN, goButtons);
    function goButtons(event:MouseEvent):void
        if (event.target == Song_bnt)
            SoundMixer.stopAll();
            addChild(myPlaySong);
            myPlaySong.x = 304;
            myPlaySong.y = 105;
            //event.stopImmediatePropagation();
    Here's the code in the movie clip:
    import flash.media.Sound;
    import flash.events.Event;
    stop();
    var playRayJaySong:RJSong;
    var playRayJaySongChannel:SoundChannel;
    var equilizer:Equilizer;
    equilizer = new Equilizer();
    playRayJaySong = new RJSong();
    //Plays music, inactivates buttons, and adds the equilizer to the stage.
    PlaySongRJClip.addEventListener(MouseEvent.MOUSE_DOWN, songPageButton);
    function songPageButton(event:Event):void
        playRayJaySongChannel = playRayJaySong.play();
        PlaySongRJClip.visible = false;
        ClicktoPlaySong.visible = false;
        addChild(equilizer);
        equilizer.x = 269;
        equilizer.y = 246;
    //Removes the equilizer from the stage when the music is complete.
    PlaySongRJClip.addEventListener(Event.SOUND_COMPLETE, rjSoundComplete);
        function rjSoundComplete(e:Event):void
        PlaySongRJClip.visible = true;
        ClicktoPlaySong.visible = true;
        removeChild(equilizer);
    //Removes the equilizer and event listeners from stage and calls dispatch event to close the movie clip.
    closeSong_bnt.addEventListener(MouseEvent.MOUSE_DOWN, CloseSong);
    function CloseSong(event:MouseEvent):void
        removeChild(equilizer);
        dispatchEvent(new Event("RemoveMSong"));
        PlaySongRJClip.removeEventListener(MouseEvent.MOUSE_DOWN, songPageButton);
        PlaySongRJClip.removeEventListener(Event.SOUND_COMPLETE, rjSoundComplete);
    //Removes the MovieClip from the stage when the user clicks on the close button inside the MovieClip.
    myPlaySong.addEventListener("RemoveMSong", RemoveSongClip);
    function RemoveSongClip(e:Event):void
        SoundMixer.stopAll();
        removeChild(myPlaySong);
    Any thoughts?

    I figured out the problem. Here's how I reorganized the code (all in one frame).
    //Code for Ray Jay song.
    var playRayJaySong:RJSong;
    var playRayJaySongChannel:SoundChannel;
    playRayJaySong = new RJSong();
    myPlaySong.equilizer_inst.visible = false;
    //Plays the song.
    myPlaySong.PlaySongRJClip.addEventListener(MouseEvent.MOUSE_DOWN, songPageButton);
    function songPageButton(event:Event):void
        playRayJaySongChannel = playRayJaySong.play();
        playRayJaySongChannel.addEventListener(Event.SOUND_COMPLETE, rjSoundComplete);
        myPlaySong.equilizer_inst.visible = true;
        myPlaySong.PlaySongRJClip.visible = false;
        myPlaySong.ClicktoPlaySong.visible = false;
    //Removes the MovieClip from the stage when the user clicks on the close button inside the MovieClip.
    myPlaySong.closeSong_bnt.addEventListener(MouseEvent.CLICK,RemoveSongClip);
    function RemoveSongClip(e:Event):void
        SoundMixer.stopAll();
        removeChild(myPlaySong);
        myPlaySong.equilizer_inst.visible = false;
        myPlaySong.PlaySongRJClip.visible = true;
        myPlaySong.ClicktoPlaySong.visible = true;
        playRayJaySongChannel.removeEventListener(Event.SOUND_COMPLETE, rjSoundComplete);
    //Resets all of the movieclips to their orginal state.
    function rjSoundComplete(e:Event):void
        myPlaySong.equilizer_inst.visible = false;
        myPlaySong.PlaySongRJClip.visible = true;
        myPlaySong.ClicktoPlaySong.visible = true;
    Thanks all for your suggests and input.

  • TypeError: Error #1006 - Removing MovieClip from the stage

    I have a movie clip that is called to the stage and once the movieclip is finished it calls a function that removes it from the stage. The code works but I get an error message about 4 seconds after the movie clip ends.
    Here’s the error message:
    TypeError: Error #1006: exitWordMicroscopic is not a function.
                    at ASvocabulary_microscopic/frame110()[ASvocabulary_microscopic::frame110:1]
    Here’s the stage code:
    //************************Removes the movieclip from the stage and enables the button.*************************
    function exitWordMicroscopic():void
                    bnt_vocab_microscopic.mouseEnabled = true;
                    removeChild(word_Microscopic);
    //******************************Stage buttons**************************************
    stage.addEventListener(MouseEvent.MOUSE_DOWN, goButtonsHomeRead_1);
    function goButtonsHomeRead_1(event:MouseEvent):void
                    //Vocabulary buttons
                    if (event.target == bnt_vocab_microscopic)
                                    bnt_vocab_microscopic.mouseEnabled = false;
                                    SoundMixer.stopAll();
                                    addChild(word_Microscopic);
                                    word_Microscopic.x = 47;
                                    word_Microscopic.y = 120;
    Here’s the code inside the movie clip. This is what the error message is referring to:
    //****************** Calls function to remove itself from the stage****************************
    Object(parent).exitWordMicroscopic();
    What am I doing wrong?

    Here' how the code looks now:
    Objective: To remove the current movieclip while it's playing so that it does not show on the next (or previous) frame.
    Here’s the stage code:
    var word_Microscopic:ASvocabulary_microscopic = new ASvocabulary_microscopic();
    //Removes the movieclip from the stage and enables the button.
    function exitWordMicroscopic():void
        bnt_vocab_microscopic.mouseEnabled = true;
        removeChild(word_Microscopic);
    //******************************Stage buttons**************************************
    stage.addEventListener(MouseEvent.MOUSE_DOWN, goButtonsHomeRead_1);
    function goButtonsHomeRead_1(event:MouseEvent):void
        //Vocabulary buttons
        if (event.target == bnt_vocab_microscopic)
            SoundMixer.stopAll();
            bnt_vocab_microscopic.mouseEnabled = false;
            addChild(word_Microscopic);
            word_Microscopic.x = 47;
            word_Microscopic.y = 120;
            word_Microscopic.play();
    //This button takes the user to the Main Screen
        if (event.target == bnt_ReadGoHome_1)
           // exitWordMicroscopic(); [If I use this function I get this error ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.]
            SoundMixer.stopAll();
            gotoAndPlay("1","Main");
            stage.removeEventListener(MouseEvent.MOUSE_DOWN, goButtonsHomeRead_1);
    //This takes the user to the next frame.
    if (event.target == GoNext_1)
            SoundMixer.stopAll();
            gotoAndPlay("2");
            stage.removeEventListener(MouseEvent.MOUSE_DOWN, goButtonsHomeRead_1);
    Here’s the code inside the movie clip.
    //****************** Calls function to remove itself from the stage****************************
    Object(parent).exitWordMicroscopic();

  • How to check event.target type in "if" statement

    Hi, i have "roll over" event listener and i would like to that works only with MovieClips (without textfields etc.). I would like to write something like that:
    if(event.target == MovieClip){ do something }
    else { do something else}
    This doesn`t work properly.
    How to check type of event.target in "if" statement?
    Thanks for any help.


    if(getQualifiedClassName(event.target) == "flash.display::MovieClip"){ do something }
    else { do something else}
     .

  • Embedding a Button that contains a MovieClip with a filter on it causes a build error in Flex

    I'm trying to embed (via [Embed(...)] code) a button that
    contains a movieclip with a blur filter on it. This causes Flex to
    stop compiling my project (actually it says that it cannot find
    another symbol that I'm also embedding). I've narrowed it down to
    this problem though.
    As soon as I remove the filter on the movieClip, Flex likes
    it again.
    Does anybody have experience with this or found a workaround?
    thanks, Frank Hermes

    This is really a SQL issue, not SharePoint. After 5000 rows, SQL does a lock escalation from a row lock to a table lock. The table lock prevents operations on the entire table, hence why you want to stay under 5000 rows, especially for a busy content database.
    One way to mitigate this scenario is to dedicate the content database to the Site Collection. This way only the Site Collection is impacted by the lock escalation.
    You can also set specific Lists/Libraries to disable the throttle entirely by using PowerShell to set the EnableThrottling property to $false. Alternatively, you can use a sandbox or full trust solution to display the data where it also ignores the throttle.
    To answer your question, yes it will fail after 20,000 items.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Event.Target issue

    Hi, I think I wrote this wrong but can't find a solution.
    This works:
    Parts1_mc.addEventListener(MouseEvent.CLICK, RunTraining);
    function RunTraining(e:MouseEvent):void
    Global.run = Parts1_mc.Parts1.text;
    trace(Global.run);
    When I do this, I get a undefined error message:
    Parts1_mc.addEventListener(MouseEvent.CLICK, RunTraining);
    function RunTraining(e:MouseEvent):void
    Global.run = Parts1_mc.event.target.text;
    trace(Global.run);

    Simpler is a relative thing, so I may miss since my understanding of this is also simple (more of an acceptance than an understanding)... greater minds might prevail here with a better explanation (or possibly a more confusing one).
    From what you just quoted, the simplest way of stating part of it was just as it is stated...
         “currentTarget” is the Movieclip (object) that you applied the listener to.
    So if you assigned the listener to Parts1_mc, the currentTarget of the event is Parts1_mc.  That will not vary.
    But Parts1_mc contains other objects, in your case a textfield, which is an interactive object and if interacted with will trigger the event.  Since it is a child of Parts1_mc it still gets detected by the listener that is assigned to Parts1_mc.
    You should go thru the explanation you linked and try to see how different elements can end up being the target under different conditions.  That same link is where I was going to point you to to explain things.
    Another thing you could do is just create a simple movieclip object (named container below) that contains various different types of objects.... a button, a movieclip, a dynamic textfield, a static textfield, a raw shape... and use the code below to see what comes up each time as far as currentTarget and target go...
    container.addEventListener(MouseEvent.CLICK, showTargets);
    function showTargets(evt:MouseEvent):void {
        trace(evt.currentTarget.name);
        trace("     "+evt.target.name);
    Sometimes you will see they both identify the same object (the container), but other times the target will be different.
    The "target" property of the event can end up being helpful in different scenarios, such as if you have a drop down menu.  You can assign the listeners to the parent movieclip to make coding the rollover/rollout functionality a quick couple of lines, and then use the target to determine which button within was clicked.  Beats the hoops one usually jumps thru when making a drop down menu in AS2.
    If the intention is to manipulate the object that has the listener assigned, then using currentTarget will always point you there.

Maybe you are looking for

  • Restrict a folder to take only pdf or doc files

    Hi, Is there any way that we can restrict a folder to contain only specific files. i.e while copying, or uploading files in to a folder the folder should take only the files with specif format( say word or pdf or txt etc..). Mr.Chowdary

  • Problem in loading "SYSDATE" through the sql loader

    Hi experts, I have problems in inserting the sysdate while loading the data from the flatfile. The details of the control file is as follows: OPTIONS (ERRORS=100, SILENT=(FEEDBACK)) LOAD DATA INFILE 'c:\sample.dat' APPEND INTO TABLE RTD_TMO_MODEL_SCO

  • SO_NEW_DOCUMENT_ATT_SEND_API1 - attachment contains only first character

    Hi, we use the FM SO_NEW_DOCUMENT_ATT_SEND_API1 to send a report as txt attachment. The problem is that the attachment in the email contains only the first character of the origin text. But the atttachment in the transaction SOST has definitely more

  • Bug Report - Hang when run query and then click on connection

    SQL Developer hangs if you run a query in a SQL Worksheet, then while it's still running, right-click on the connection in the Connections window. It will come back again once the query finishes, but usually you want to open another sql worksheet whi

  • Sub report linking question

    Post Author: Crystal Fire CA Forum: General Using Crystal Reports 8.5 - I have report in which the main report shows the customers orders that are ready to ship. In this main report I have a subreport in which it shows customers that are on hold for