"if currentframe = # gotoAndStop(blah)"

I'm tyring to make something happen when a certain frame is
hit, rather then if the certain frame is already on.
If there was such thing as a "when" statement, rather then an
"if" statement, I'd be using it right now.
In my mind, this is what I want to do:

Well that's cool and all, thank you. I really need this
because it's not working, could you please tell me where I'm
supposed to place this actionscript?
I have multiple buttons with that ActionScript and it works,
but when I press the first one, it passes a function, and then I
try to do a second button and it uses the first function because,
I'm guessing, it hasn't cleared it out before passing the new one.
Where do I put the piece of AS you've suggested?

Similar Messages

  • Trouble with timeline frames

    Hi,
    I have a timeline with 20 frames and an image in each of them.
    I added a button to step one frame forward for each time I click (mouse up) the button.
    But when I have stepped through all 20 frames for the first time and start a new "round" at frame 1 again, it seems like I get two steps (frames) forward instead of one as a result. And this accelerates to three three forward instead of one on the third "round". Can someone please help me to see the logical problem?
    This is my code:
    btn_forward.addEventListener(
      MouseEvent.MOUSE_UP,
      function(evt:MouseEvent):void {
        if (currentFrame == totalFrames)
            trace(currentFrame);
            gotoAndStop(1);
        else
            trace(currentFrame);
            gotoAndStop(currentFrame + 1);
    When I trace currentFrame on the first "round" I get this result:
    First click:
    1
    Second click:
    2
    Third click:
    3
    And so on..
    And when I trace currentFrame in the following (second) "round" I get this result:
    First click:
    1
    2
    Second click:
    3
    4
    Third click:
    5
    6
    And so on..
    Any ideas?

    you must add your event listener exactly once.  when you add it a 2nd time, you have two listeners etc.:
    var listenerAdded:Boolean
    if(!listenerAdded){
    listenerAdded=true;
    btn_forward.addEventListener(
      MouseEvent.MOUSE_UP,
      function(evt:MouseEvent):void {
        if (currentFrame == totalFrames)
            trace(currentFrame);
            gotoAndStop(1);
        else
            trace(currentFrame);
            gotoAndStop(currentFrame + 1);

  • How can I have keyframes on one layer proceed while using the gotoAndStop function?

    I have a Flash presentation that allows me to pair videos with the slides using a nice piece of ActionScript. The presentation advances to the slide on the next keyfram when the viweer clicks the "next button" and the video for that keyframe (on a separate layer) begins playing.
    owever, I am now trying to pair two slides with the same video without having the video restart or requiring the viewer to click the"next slide button" I was hoping I could just turn the two slides into a video clip, convert it into a symbol and insert the symbol in place of the static slide, but nothing seems to happen. I'm wondering if the "gotoAndStop" function in the ActionScript is preventing it from playing.
    Any thoughts on how I can have the presentation be controlled by the next and previous buttons most of the time, but have the exception of one slide that changes on its own? The relevant (I believe) code is below.
    Thanks!
    Julien
    // FUNCTIONS AND LOGIC
    function fl_prevSlide():void
              if(slides_mc.currentFrame > 1)
                        slides_mc.gotoAndStop(slides_mc.currentFrame-1);
                        if(transitionOn == true)
                                  fl_doTransition();
                        if(pageNumberOn == false)
                                  slideNumber_txt.text = "";
                        } else {
                                  slideNumber_txt.text = String(slides_mc.currentFrame + "/" + slides_mc.totalFrames);
    function fl_nextSlide():void
              if(slides_mc.currentFrame < slides_mc.totalFrames)
                        slides_mc.gotoAndStop(slides_mc.currentFrame+1);
                        if(transitionOn == true)
                                  fl_doTransition();
                        if(pageNumberOn == false)
                                  slideNumber_txt.text = "";
                        } else {
                                  slideNumber_txt.text = String(slides_mc.currentFrame + "/" + slides_mc.totalFrames);

    Try this code. Replace FLVmovie with the instance name of your FLV & set the time to when the frames shoudshould advance.
    import flash.events.Event;
    this.addEventListener(Event.ENTER_FRAME, checkTime);
    function checkTime(e:Event):void {
          if (this.FLVmovie.playheadTime >= 15)  // This is the playhead time in seconds
              this.gotoAndStop("frame label or frame #");
              this.removeEventListener(Event.ENTER_FRAME, checkTime);

  • CurrentFrame command not working with Else/If statement?

    The code below is part of a game in which the character moves through doors. On the current stage are three doors, all
    instances from the same symbol. The symbol contains nine frames- 1,2 and 3 are three doors of three diff colors doors. 21,22, and 23 are those same three doors with a certain power up and 31,32 and 33 are the same doors with yet another power up.
    Door1.addEventListener(MouseEvent.CLICK,dooraction);
                    function dooraction(event:MouseEvent){
        if (Door3.currentFrame ==Door1.currentFrame + 2 ) {
                  Door1.gotoAndStop(" door21");
                  Door2.gotoAndStop(" door22");
                  Door3.gotoAndStop(" door23");
    So, this code as written works fine, When I add the code below, it stops working.
         else if (Door3.currentframe == Door1.currentFrame +2){
                 Door1.gotoAndStop("door31");
                 Door2.gotoAndStop("door32");
                 Door3.gotoAndStop("door33");
    However, when I alter the code so that all of the code in the first part  gotoAndStop's at "door21", and then remove the "+2 " from the
    second part of the code, it works. What have I done incorrectly that causes the second "+2" to not work?

    the else-if branch of your conditional is identical to the if-branch so i wouldn't expect the else-if branch to ever execute.

  • Why does this code always gotoAndStop at the same frame?

    The symbol "alldoor" contains the following six frames in sequential order: "door1","red_door1","door2","red_door2","door3" and "red_door3".
    var doors:Array =["door1", "door2", "door3"];
    var doorSelector:String = doors[newDoors(0, doors.length - 1)]
    function newDoors (min:Number, max:Number):Number
    var  doorColors:Number = Math.round(Math.random() * (min - max) + max);
    return doorColors;
    alldoor.gotoAndStop(doorSelector);
    alldoor.addEventListener(MouseEvent.CLICK,changeColors );
    function changeColors(e:MouseEvent)
        if (e.currentTarget.currentLabel == doorSelector)
            e.currentTarget.gotoAndStop(currentFrame + 1);
         I am attempting to get this code select one of the frames starting with the string "door" at start up. Then, the door should move to the frame
    directly following it on the timeline when clicked. However, as the code is written, the frame always jumps to the second frame in the symbol,regardless of what the current label is. What should I change?

    either:
    1.  those frames aren't loaded when that code executes or
    2.  you don't have those labels on the timeline that contains that code or
    3.  there is other code executing after your goto changing your frame
    use the trace() function to debug and find which is your problem.

  • MovieClip.currentFrame traces to a different frame than it's displaying

    I have a movieclip on the stage with 3 frames. Each frame has a stop(); in the actions layer. I have double (and triple and quadruple) checked the label names.
    There is a button to toggle between the three frames of the movie clip. A Frame 1 button, a Frame 2 button, and a Frame 3 button. The movie clip (there are lots of them) is then spawned with a mouse click. The movie clips are already declared at the beginng. They are not unlimited so I can just have a for loop go through all of them and change the frame number even before they are spawned and added to the display list.
    Frame 2 and Frame 3 work just fine. But the button to go to Frame 1 will display Frame 1 on all of the pieces that are already on the stage, but on all new pieces that will be spawned, it just displays whatever other button was pressed last. For instance if I have a movie clip on the stage that's displaying Frame 2 and I hit the buttom for Frame 1, the movie clip will switch to Frame 1. But if I spawn a new movie clip, it will display Frame 2. If I then click back on the Frame 2 button and then again to Frame 1, the movie clip will correct itself.
    I can't find where on earth in the code it's going wrong. I've tried using traces but I can't find any problems or inconsistencies. Everywhere I put a trace to tell me what frame the object is at, it traces correctly. I'll click on Frame 1 button, then click on the stage, and it will trace to the output menu that the current spawned movie clip is on Frame 1 when it's very clearly displaying Frame 2.
    Does that make any sense?
    Here is the code that spawns the movie clip:
    function addNewPiece (e:MouseEvent): void {
        ri = Math.floor(Math.random()*(1+PuzzleGlobals.TOTAL_NUMBER_USA));
        if (PuzzleGlobals.statesOnBoardUSA == PuzzleGlobals.TOTAL_NUMBER_USA) {
            //play BOOP sound indicating no new pieces left
        else {
            if (usaPiece[ri] != null) {
                bmc.addChild(this[usaPiece[ri]]); //bmc is the blank movie clip all new spawns are attached to
                    trace (this[usaPiece[ri]].currentFrame + this[usaPiece[ri]].currentFrameLabel); // 1shape, but displaying 2
                if (PuzzleGlobals.currentLevel == "Shape") {
                    trace (this[usaPiece[ri]].currentFrame + this[usaPiece[ri]].currentFrameLabel); // 1shape, but displaying 2
                    this[usaPiece[ri]].height = this[usaPuzzle[ri]].height; //this is to match the size of the puzzle pieces
                    this[usaPiece[ri]].width = this[usaPuzzle[ri]].width;
                this[usaPiece[ri]].x = e.stageX;
                this[usaPiece[ri]].y = e.stageY;
                usaPiece[ri] = null;
                PuzzleGlobals.statesOnBoardUSA++;
            else {
                addNewPiece(e);
    Here is the code for the button switches:
    nameLevel.addEventListener(MouseEvent.CLICK, changeLevel);
    abbrevLevel.addEventListener(MouseEvent.CLICK, changeLevel);
    shapeLevel.addEventListener(MouseEvent.CLICK, changeLevel);
    function changeLevel (e:MouseEvent): void {
        trackUSAPiece = ["pieceAL", "pieceAK", "pieceAZ", "pieceAR", "pieceCA", "pieceCO", "pieceCT", "pieceDE", "pieceFL", "pieceGA", "pieceHI", "pieceID", "pieceIL", "pieceIN", "pieceIA", "pieceKS", "pieceKY", "pieceLA", "pieceME", "pieceMD", "pieceMA", "pieceMI", "pieceMN", "pieceMS", "pieceMO", "pieceMT", "pieceNE", "pieceNV", "pieceNH", "pieceNJ", "pieceNM", "pieceNY", "pieceNC", "pieceND", "pieceOH", "pieceOK", "pieceOR", "piecePA", "pieceRI", "pieceSC", "pieceSD", "pieceTN", "pieceTX", "pieceUT", "pieceVT", "pieceVA", "pieceWA", "pieceWV", "pieceWI", "pieceWY"]
        if (e.target == nameLevel) {
            PuzzleGlobals.currentLevel = "Name";
            nameLevel.gotoAndStop("Active"); //change appearance of the buttons
            abbrevLevel.gotoAndStop("Inactive");
            shapeLevel.gotoAndStop("Inactive");
            for (var j=0; j<(PuzzleGlobals.TOTAL_NUMBER_USA); j++) { //make all declared movie clips go to the right frame
                this[trackUSAPiece[j]].gotoAndStop("wholeName");
        else if (e.target == abbrevLevel) {
            PuzzleGlobals.currentLevel = "Abbrev";
            abbrevLevel.gotoAndStop("Active");
            nameLevel.gotoAndStop("Inactive");
            shapeLevel.gotoAndStop("Inactive");
            for (var k=0; k<(PuzzleGlobals.TOTAL_NUMBER_USA); k++) {
                this[trackUSAPiece[k]].gotoAndStop("abbrev");
        else if (e.target == shapeLevel) {
            PuzzleGlobals.currentLevel = "Shape";
            shapeLevel.gotoAndStop("Active");
            nameLevel.gotoAndStop("Inactive");
            abbrevLevel.gotoAndStop("Inactive");
            for (var l=0; l<(PuzzleGlobals.TOTAL_NUMBER_USA); l++) {
                this[trackUSAPiece[l]].gotoAndStop("shape");
    Thanks so much!
    Amber

    Bug report here in case someone thinks they know what's wrong
    https://bugbase.adobe.com/index.cfm?event=bug&id=2953829

  • Yikes. Messed up Xserver with testing blah....

    Hello.. I use Nvidia 96xx... blah blah.  I added the testing repo and updated everything in an attempt to install compiz-fusion.  Silly me!  Now X server fails to start up when I boot up. Using a Zen live disc right now because my command line skills are quite poor.  Help.
    This is what it shows
    (EE) Failed to load /usb/lib/xorg/modules/input//mouse_drv.so
    (EE) Failed to load module "mouse" (load failed, 7)
    (EE) module ABI major version (2) doesn't match the server's version (0)
    (EE) Failed to load module "kbd" (module requirement mismatch, 0)
    (EE) No input driver matching 'mouse'
    (EE) No input driver matching 'kbd'
    No core keyboard
    Fatal server error:
    Failed to initialize core devices
    I have my HD mounted via the live disc.  Where can I find the log of the boot message above in its entirety?  Eeep!  Ahh.  Ok found the below....
    X Window System Version 7.2.0
    Release Date: 22 January 2007
    X Protocol Version 11, Revision 0, Release 7.2
    Build Operating System: UNKNOWN
    Current Operating System: Linux bepogi 2.6.23-ARCH #1 SMP PREEMPT Mon Oct 15 16:46:31 UTC 2007 i686
    Build Date: 08 April 2007
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Module Loader present
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Tue Oct 16 13:45:11 2007
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Card0"
    (**) |-->Input Device "Mouse0"
    (**) |-->Input Device "Keyboard0"
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/100dpi").
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/75dpi").
    (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (**) RgbPath set to "/usr/share/X11/rgb"
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (**) Option "BlankTime" "0"
    (**) Option "StandbyTime" "0"
    (**) Option "SuspendTime" "0"
    (**) Option "OffTime" "0"
    (**) Extension "Composite" is enabled
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) Loader magic: 0x81c44a0
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.3
    X.Org Video Driver: 1.1
    X.Org XInput driver : 0.7
    X.Org Server Extension : 0.3
    X.Org Font Renderer : 0.5
    (II) Loader running on linux
    (II) LoadModule: "pcidata"
    (II) Loading /usr/lib/xorg/modules//libpcidata.so
    (II) Module pcidata: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 1.1
    (++) using VT number 7
    (II) PCI: PCI scan (all values are in hex)
    (II) PCI: 00:00:0: chip 8086,2560 card 8086,2560 rev 02 class 06,00,00 hdr 00
    (II) PCI: 00:01:0: chip 8086,2561 card 0000,0000 rev 02 class 06,04,00 hdr 01
    (II) PCI: 00:1d:0: chip 8086,24c2 card 8086,4232 rev 02 class 0c,03,00 hdr 80
    (II) PCI: 00:1d:1: chip 8086,24c4 card 8086,4232 rev 02 class 0c,03,00 hdr 00
    (II) PCI: 00:1d:2: chip 8086,24c7 card 8086,4232 rev 02 class 0c,03,00 hdr 00
    (II) PCI: 00:1d:7: chip 8086,24cd card 8086,4232 rev 02 class 0c,03,20 hdr 00
    (II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev 82 class 06,04,00 hdr 01
    (II) PCI: 00:1f:0: chip 8086,24c0 card 0000,0000 rev 02 class 06,01,00 hdr 80
    (II) PCI: 00:1f:1: chip 8086,24cb card 8086,4232 rev 02 class 01,01,8a hdr 00
    (II) PCI: 00:1f:3: chip 8086,24c3 card 8086,4232 rev 02 class 0c,05,00 hdr 00
    (II) PCI: 00:1f:5: chip 8086,24c5 card 8086,0107 rev 02 class 04,01,00 hdr 00
    (II) PCI: 01:00:0: chip 10de,0172 card 1043,805b rev a3 class 03,00,00 hdr 00
    (II) PCI: 02:03:0: chip 14e4,4212 card 14e4,0002 rev 00 class 07,03,00 hdr 00
    (II) PCI: 02:06:0: chip 105a,4d30 card 8086,4232 rev 02 class 01,04,00 hdr 00
    (II) PCI: 02:07:0: chip 11c1,5811 card 8086,4254 rev 04 class 0c,00,10 hdr 00
    (II) PCI: 02:08:0: chip 8086,1039 card 8086,301e rev 82 class 02,00,00 hdr 00
    (II) PCI: End of PCI scan
    (II) Intel Bridge workaround enabled
    (II) Host-to-PCI bridge:
    (II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 0 I/O range:
    [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) Bus 0 non-prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    (II) Bus 0 prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 1 non-prefetchable memory range:
    [0] -1 0 0xfc900000 - 0xfe9fffff (0x2100000) MX[b]
    (II) Bus 1 prefetchable memory range:
    [0] -1 0 0xec500000 - 0xf46fffff (0x8200000) MX[b]
    (II) Subtractive PCI-to-PCI bridge:
    (II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x0206 (VGA_EN is cleared)
    (II) Bus 2 I/O range:
    [0] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[b]
    [1] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[b]
    [2] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b]
    [3] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[b]
    (II) Bus 2 non-prefetchable memory range:
    [0] -1 0 0xfea00000 - 0xfeafffff (0x100000) MX[b]
    (II) Bus 2 prefetchable memory range:
    [0] -1 0 0xf4700000 - 0xf47fffff (0x100000) MX[b]
    (II) PCI-to-ISA bridge:
    (II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
    (--) PCI:*(1:0:0) nVidia Corporation NV17 [GeForce4 MX 420] rev 163, Mem @ 0xfd000000/24, 0xf0000000/26, 0xf4680000/19, BIOS @ 0xfe9e0000/17
    (II) Addressable bus resource ranges are
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) OS-reported resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) PCI Memory resource overlap reduced 0xf8000000 from 0xfbffffff to 0xf7ffffff
    (II) Active PCI resource ranges:
    [0] -1 0 0xfeacd000 - 0xfeacdfff (0x1000) MX[b]
    [1] -1 0 0xfeace000 - 0xfeacefff (0x1000) MX[b]
    [2] -1 0 0xfeae0000 - 0xfeafffff (0x20000) MX[b]
    [3] -1 0 0xfeacf000 - 0xfeacffff (0x1000) MX[b]
    [4] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[b]
    [5] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[b]
    [6] -1 0 0x30000000 - 0x300003ff (0x400) MX[b]
    [7] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[b]
    [8] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[b]O
    [9] -1 0 0xfe9e0000 - 0xfe9fffff (0x20000) MX[b](B)
    [10] -1 0 0xf4680000 - 0xf46fffff (0x80000) MX[b](B)
    [11] -1 0 0xf0000000 - 0xf3ffffff (0x4000000) MX[b](B)
    [12] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[b](B)
    [13] -1 0 0x0000d000 - 0x0000d03f (0x40) IX[b]
    [14] -1 0 0x0000d400 - 0x0000d43f (0x40) IX[b]
    [15] -1 0 0x0000d480 - 0x0000d483 (0x4) IX[b]
    [16] -1 0 0x0000d800 - 0x0000d807 (0x8) IX[b]
    [17] -1 0 0x0000d880 - 0x0000d883 (0x4) IX[b]
    [18] -1 0 0x0000dc00 - 0x0000dc07 (0x8) IX[b]
    [19] -1 0 0x0000d080 - 0x0000d08f (0x10) IX[b]
    [20] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[b]
    [21] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[b]
    [22] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[b]
    [23] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[b]
    [24] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [25] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [26] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [27] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [28] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[b]
    [29] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[b]
    [30] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[b]
    (II) Active PCI resource ranges after removing overlaps:
    [0] -1 0 0xfeacd000 - 0xfeacdfff (0x1000) MX[b]
    [1] -1 0 0xfeace000 - 0xfeacefff (0x1000) MX[b]
    [2] -1 0 0xfeae0000 - 0xfeafffff (0x20000) MX[b]
    [3] -1 0 0xfeacf000 - 0xfeacffff (0x1000) MX[b]
    [4] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[b]
    [5] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[b]
    [6] -1 0 0x30000000 - 0x300003ff (0x400) MX[b]
    [7] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[b]
    [8] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[b]O
    [9] -1 0 0xfe9e0000 - 0xfe9fffff (0x20000) MX[b](B)
    [10] -1 0 0xf4680000 - 0xf46fffff (0x80000) MX[b](B)
    [11] -1 0 0xf0000000 - 0xf3ffffff (0x4000000) MX[b](B)
    [12] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[b](B)
    [13] -1 0 0x0000d000 - 0x0000d03f (0x40) IX[b]
    [14] -1 0 0x0000d400 - 0x0000d43f (0x40) IX[b]
    [15] -1 0 0x0000d480 - 0x0000d483 (0x4) IX[b]
    [16] -1 0 0x0000d800 - 0x0000d807 (0x8) IX[b]
    [17] -1 0 0x0000d880 - 0x0000d883 (0x4) IX[b]
    [18] -1 0 0x0000dc00 - 0x0000dc07 (0x8) IX[b]
    [19] -1 0 0x0000d080 - 0x0000d08f (0x10) IX[b]
    [20] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[b]
    [21] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[b]
    [22] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[b]
    [23] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[b]
    [24] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [25] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [26] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [27] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [28] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[b]
    [29] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[b]
    [30] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[b]
    (II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1 0 0x00100000 - 0x2fffffff (0x2ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) All system resource ranges:
    [0] -1 0 0x00100000 - 0x2fffffff (0x2ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xfeacd000 - 0xfeacdfff (0x1000) MX[b]
    [5] -1 0 0xfeace000 - 0xfeacefff (0x1000) MX[b]
    [6] -1 0 0xfeae0000 - 0xfeafffff (0x20000) MX[b]
    [7] -1 0 0xfeacf000 - 0xfeacffff (0x1000) MX[b]
    [8] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[b]
    [9] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[b]
    [10] -1 0 0x30000000 - 0x300003ff (0x400) MX[b]
    [11] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[b]
    [12] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[b]O
    [13] -1 0 0xfe9e0000 - 0xfe9fffff (0x20000) MX[b](B)
    [14] -1 0 0xf4680000 - 0xf46fffff (0x80000) MX[b](B)
    [15] -1 0 0xf0000000 - 0xf3ffffff (0x4000000) MX[b](B)
    [16] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[b](B)
    [17] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [18] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [19] -1 0 0x0000d000 - 0x0000d03f (0x40) IX[b]
    [20] -1 0 0x0000d400 - 0x0000d43f (0x40) IX[b]
    [21] -1 0 0x0000d480 - 0x0000d483 (0x4) IX[b]
    [22] -1 0 0x0000d800 - 0x0000d807 (0x8) IX[b]
    [23] -1 0 0x0000d880 - 0x0000d883 (0x4) IX[b]
    [24] -1 0 0x0000dc00 - 0x0000dc07 (0x8) IX[b]
    [25] -1 0 0x0000d080 - 0x0000d08f (0x10) IX[b]
    [26] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[b]
    [27] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[b]
    [28] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[b]
    [29] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[b]
    [30] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [31] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [32] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [33] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [34] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[b]
    [35] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[b]
    [36] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[b]
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.1
    (II) NVIDIA GLX Module 96.43.01 Wed Sep 5 19:47:01 PDT 2007
    (II) Loading extension GLX
    (II) LoadModule: "xtrap"
    (II) Loading /usr/lib/xorg/modules/extensions//libxtrap.so
    (II) Module xtrap: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DEC-XTRAP
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension RECORD
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension SHAPE
    (II) Loading extension MIT-SUNDRY-NONSTANDARD
    (II) Loading extension BIG-REQUESTS
    (II) Loading extension SYNC
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XC-MISC
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-Misc
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension TOG-CUP
    (II) Loading extension Extended-Visual-Information
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "type1"
    (II) Loading /usr/lib/xorg/modules/fonts//libtype1.so
    (II) Module type1: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.0.2
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font Type1
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    compiled for 7.2.0, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font FreeType
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers//nvidia_drv.so
    (II) Module nvidia: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Video Driver
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    dlopen: /usr/lib/xorg/modules/input//mouse_drv.so: undefined symbol: GetMotionHistory
    (EE) Failed to load /usr/lib/xorg/modules/input//mouse_drv.so
    (II) UnloadModule: "mouse"
    (EE) Failed to load module "mouse" (loader failed, 7)
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.2.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
    (EE) module ABI major version (2) doesn't match the server's version (0)
    (II) UnloadModule: "kbd"
    (II) Unloading /usr/lib/xorg/modules/input//kbd_drv.so
    (EE) Failed to load module "kbd" (module requirement mismatch, 0)
    (II) NVIDIA dlloader X Driver 96.43.01 Wed Sep 5 19:14:11 PDT 2007
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 01:00:0
    (--) Assigning device section with no busID to primary device
    (--) Chipset NVIDIA GPU found
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.3
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Loading /usr/lib/xorg/modules//libramdac.so
    (II) Module ramdac: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 0.1.0
    ABI class: X.Org Video Driver, version 1.1
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0x00100000 - 0x2fffffff (0x2ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xfeacd000 - 0xfeacdfff (0x1000) MX[b]
    [5] -1 0 0xfeace000 - 0xfeacefff (0x1000) MX[b]
    [6] -1 0 0xfeae0000 - 0xfeafffff (0x20000) MX[b]
    [7] -1 0 0xfeacf000 - 0xfeacffff (0x1000) MX[b]
    [8] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[b]
    [9] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[b]
    [10] -1 0 0x30000000 - 0x300003ff (0x400) MX[b]
    [11] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[b]
    [12] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[b]O
    [13] -1 0 0xfe9e0000 - 0xfe9fffff (0x20000) MX[b](B)
    [14] -1 0 0xf4680000 - 0xf46fffff (0x80000) MX[b](B)
    [15] -1 0 0xf0000000 - 0xf3ffffff (0x4000000) MX[b](B)
    [16] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[b](B)
    [17] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [18] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [19] -1 0 0x0000d000 - 0x0000d03f (0x40) IX[b]
    [20] -1 0 0x0000d400 - 0x0000d43f (0x40) IX[b]
    [21] -1 0 0x0000d480 - 0x0000d483 (0x4) IX[b]
    [22] -1 0 0x0000d800 - 0x0000d807 (0x8) IX[b]
    [23] -1 0 0x0000d880 - 0x0000d883 (0x4) IX[b]
    [24] -1 0 0x0000dc00 - 0x0000dc07 (0x8) IX[b]
    [25] -1 0 0x0000d080 - 0x0000d08f (0x10) IX[b]
    [26] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[b]
    [27] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[b]
    [28] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[b]
    [29] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[b]
    [30] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [31] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [32] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [33] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [34] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[b]
    [35] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[b]
    [36] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0x00100000 - 0x2fffffff (0x2ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xfeacd000 - 0xfeacdfff (0x1000) MX[b]
    [5] -1 0 0xfeace000 - 0xfeacefff (0x1000) MX[b]
    [6] -1 0 0xfeae0000 - 0xfeafffff (0x20000) MX[b]
    [7] -1 0 0xfeacf000 - 0xfeacffff (0x1000) MX[b]
    [8] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[b]
    [9] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[b]
    [10] -1 0 0x30000000 - 0x300003ff (0x400) MX[b]
    [11] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[b]
    [12] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[b]O
    [13] -1 0 0xfe9e0000 - 0xfe9fffff (0x20000) MX[b](B)
    [14] -1 0 0xf4680000 - 0xf46fffff (0x80000) MX[b](B)
    [15] -1 0 0xf0000000 - 0xf3ffffff (0x4000000) MX[b](B)
    [16] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[b](B)
    [17] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [18] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [19] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [21] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [22] -1 0 0x0000d000 - 0x0000d03f (0x40) IX[b]
    [23] -1 0 0x0000d400 - 0x0000d43f (0x40) IX[b]
    [24] -1 0 0x0000d480 - 0x0000d483 (0x4) IX[b]
    [25] -1 0 0x0000d800 - 0x0000d807 (0x8) IX[b]
    [26] -1 0 0x0000d880 - 0x0000d883 (0x4) IX[b]
    [27] -1 0 0x0000dc00 - 0x0000dc07 (0x8) IX[b]
    [28] -1 0 0x0000d080 - 0x0000d08f (0x10) IX[b]
    [29] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[b]
    [30] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[b]
    [31] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[b]
    [32] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[b]
    [33] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [34] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [35] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [36] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [37] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[b]
    [38] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[b]
    [39] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[b]
    [40] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [41] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    (==) NVIDIA(0): RGB weight 888
    (==) NVIDIA(0): Default visual is TrueColor
    (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) NVIDIA(0): Option "NoLogo" "true"
    (**) NVIDIA(0): Option "RenderAccel" "true"
    (**) NVIDIA(0): Option "TripleBuffer" "True"
    (**) NVIDIA(0): Option "AddARGBGLXVisuals" "True"
    (**) NVIDIA(0): Enabling RENDER acceleration
    (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    (II) NVIDIA(0): enabled.
    (II) NVIDIA(0): NVIDIA GPU GeForce4 MX 420 at PCI:1:0:0 (GPU-0)
    (--) NVIDIA(0): Memory: 65536 kBytes
    (--) NVIDIA(0): VideoBIOS: 04.17.00.45.00
    (II) NVIDIA(0): Detected AGP rate: 4X
    (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    (--) NVIDIA(0): Connected display device(s) on GeForce4 MX 420 at PCI:1:0:0:
    (--) NVIDIA(0): Compaq (CRT-0)
    (--) NVIDIA(0): Compaq (CRT-0): 350.0 MHz maximum pixel clock
    (II) NVIDIA(0): Assigned Display Device: CRT-0
    (WW) NVIDIA(0):
    (WW) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    (WW) NVIDIA(0): will be used as the requested mode.
    (WW) NVIDIA(0):
    (II) NVIDIA(0): Validated modes:
    (II) NVIDIA(0): "nvidia-auto-select"
    (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
    (--) NVIDIA(0): DPI set to (98, 104); computed from "UseEdidDpi" X config
    (--) NVIDIA(0): option
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] 0 0 0xf4680000 - 0xf46fffff (0x80000) MX[b]
    [1] 0 0 0xf0000000 - 0xf3ffffff (0x4000000) MX[b]
    [2] 0 0 0xfd000000 - 0xfdffffff (0x1000000) MX[b]
    [3] -1 0 0x00100000 - 0x2fffffff (0x2ff00000) MX[b]E(B)
    [4] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [5] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [6] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [7] -1 0 0xfeacd000 - 0xfeacdfff (0x1000) MX[b]
    [8] -1 0 0xfeace000 - 0xfeacefff (0x1000) MX[b]
    [9] -1 0 0xfeae0000 - 0xfeafffff (0x20000) MX[b]
    [10] -1 0 0xfeacf000 - 0xfeacffff (0x1000) MX[b]
    [11] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[b]
    [12] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[b]
    [13] -1 0 0x30000000 - 0x300003ff (0x400) MX[b]
    [14] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[b]
    [15] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[b]O
    [16] -1 0 0xfe9e0000 - 0xfe9fffff (0x20000) MX[b](B)
    [17] -1 0 0xf4680000 - 0xf46fffff (0x80000) MX[b](B)
    [18] -1 0 0xf0000000 - 0xf3ffffff (0x4000000) MX[b](B)
    [19] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[b](B)
    [20] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [21] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [22] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [23] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [24] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [25] -1 0 0x0000d000 - 0x0000d03f (0x40) IX[b]
    [26] -1 0 0x0000d400 - 0x0000d43f (0x40) IX[b]
    [27] -1 0 0x0000d480 - 0x0000d483 (0x4) IX[b]
    [28] -1 0 0x0000d800 - 0x0000d807 (0x8) IX[b]
    [29] -1 0 0x0000d880 - 0x0000d883 (0x4) IX[b]
    [30] -1 0 0x0000dc00 - 0x0000dc07 (0x8) IX[b]
    [31] -1 0 0x0000d080 - 0x0000d08f (0x10) IX[b]
    [32] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[b]
    [33] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[b]
    [34] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[b]
    [35] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[b]
    [36] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [37] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [38] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [39] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [40] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[b]
    [41] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[b]
    [42] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[b]
    [43] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [44] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    (II) Loading extension NV-GLX
    (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (**) Option "dpms"
    (**) NVIDIA(0): DPMS enabled
    (II) Loading extension NV-CONTROL
    (==) RandR enabled
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension XAccessControlExtension
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension XFree86-Bigfont
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    (II) Initializing extension GLX
    (EE) No Input driver matching `mouse'
    (EE) No Input driver matching `kbd'
    (WW) No core pointer registered
    No core keyboard
    Fatal server error:
    failed to initialize core devices
    this is the pacman log of what I updated that changed things
    [2007-10-16 13:27] synchronizing package lists
    [2007-10-16 13:27] starting full system upgrade
    [2007-10-16 13:28] upgraded alsa-lib (1.0.14-5 -> 1.0.15rc3-2)
    [2007-10-16 13:28] upgraded alsa-utils (1.0.14-2 -> 1.0.15rc1-1)
    [2007-10-16 13:28] upgraded ffmpeg (20070505-4 -> 20071009-1)
    [2007-10-16 13:28] >>>
    [2007-10-16 13:28] >>> If you use the LILO bootloader, you should run 'lilo' before rebooting.
    [2007-10-16 13:28] >>>
    [2007-10-16 13:28] >>> Updating module dependencies. Please wait ...
    [2007-10-16 13:28] >>> MKINITCPIO SETUP
    [2007-10-16 13:28] >>> ----------------
    [2007-10-16 13:28] >>> If you use LVM2, Encrypted root or software RAID,
    [2007-10-16 13:28] >>> Ensure you enable support in /etc/mkinitcpio.conf .
    [2007-10-16 13:28] >>> More information about mkinitcpio setup can be found here:
    [2007-10-16 13:28] >>> http://wiki.archlinux.org/index.php/Mkinitcpio
    [2007-10-16 13:28]
    [2007-10-16 13:28] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2007-10-16 13:28] ==> Building image "default"
    [2007-10-16 13:28] ==> Running command: /sbin/mkinitcpio -k 2.6.23-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    [2007-10-16 13:28] :: Begin build
    [2007-10-16 13:28] :: Parsing hook [base]
    [2007-10-16 13:28] :: Parsing hook [udev]
    [2007-10-16 13:28] :: Parsing hook [autodetect]
    [2007-10-16 13:29] :: Parsing hook [ide]
    [2007-10-16 13:29] :: Parsing hook [scsi]
    [2007-10-16 13:29] :: Parsing hook [sata]
    [2007-10-16 13:29] :: Parsing hook [keymap]
    [2007-10-16 13:29] :: Parsing hook [filesystems]
    [2007-10-16 13:29] :: Generating module dependencies
    [2007-10-16 13:29] :: Generating image '/boot/kernel26.img'...SUCCESS
    [2007-10-16 13:29] ==> SUCCESS
    [2007-10-16 13:29] ==> Building image "fallback"
    [2007-10-16 13:29] ==> Running command: /sbin/mkinitcpio -k 2.6.23-ARCH -c /etc/mkinitcpio.d/kernel26-fallback.conf -g /boot/kernel26-fallback.img
    [2007-10-16 13:29] :: Begin build
    [2007-10-16 13:29] :: Parsing hook [base]
    [2007-10-16 13:29] :: Parsing hook [udev]
    [2007-10-16 13:29] :: Parsing hook [ide]
    [2007-10-16 13:29] :: Parsing hook [pata]
    [2007-10-16 13:29] :: Parsing hook [scsi]
    [2007-10-16 13:29] :: Parsing hook [sata]
    [2007-10-16 13:29] :: Parsing hook [usbinput]
    [2007-10-16 13:29] :: Parsing hook [raid]
    [2007-10-16 13:29] :: Parsing hook [filesystems]
    [2007-10-16 13:29] :: Generating module dependencies
    [2007-10-16 13:29] :: Generating image '/boot/kernel26-fallback.img'...SUCCESS
    [2007-10-16 13:29] ==> SUCCESS
    [2007-10-16 13:29] upgraded kernel26 (2.6.22.9-1 -> 2.6.23.1-2)
    [2007-10-16 13:29] upgraded klibc-udev (115-2 -> 116-1)
    [2007-10-16 13:29] -------------------------------
    [2007-10-16 13:29] By using this package you accept the NVIDIA license,
    [2007-10-16 13:29] which has been installed in /usr/share/licenses/nvidia/LICENSE
    [2007-10-16 13:29] If you do not accept this license, you must remove the package immediately.
    [2007-10-16 13:29] Dont forget to update your /etc/X11/xorg.conf
    [2007-10-16 13:29] In order to use nvidia-settings, you need to install gtk2 package.
    [2007-10-16 13:29] -------------------------------
    [2007-10-16 13:29] upgraded nvidia-96xx-utils (1.0.9639-1 -> 96.43.01-1)
    [2007-10-16 13:29] upgraded mesa (6.5.2-1 -> 7.0.1-1)
    [2007-10-16 13:29] In order to use the new nvidia module, exit Xserver and unload it manually.
    [2007-10-16 13:29] upgraded nvidia-96xx (1.0.9639-5 -> 96.43.01-3)
    [2007-10-16 13:29] upgraded pam (0.99.8.1-4 -> 0.99.9.0-1)
    [2007-10-16 13:29] upgraded renderproto (0.9.2-1 -> 0.9.3-1)
    [2007-10-16 13:29] ATTENTION UDEV:
    [2007-10-16 13:29] ----------
    [2007-10-16 13:29] udev >=098 rules syntax has changed, please update your own rules.
    [2007-10-16 13:29] udev >=099 Added persistent network and CD/DVD Symlink generator rules.
    [2007-10-16 13:29] Please read the instructions carefully before reboot.
    [2007-10-16 13:29] They are located in /etc/udev/readme-udev-arch.txt
    [2007-10-16 13:29] ----------
    [2007-10-16 13:29] upgraded udev (115-2 -> 116-1)
    [2007-10-16 13:29] upgraded wireless_tools (29pre22-2 -> 29-1)
    [2007-10-16 13:29] upgraded xf86-input-keyboard (1.1.1-1 -> 1.2.2-2)
    [2007-10-16 13:29] upgraded xf86-input-mouse (1.2.1-1 -> 1.2.3-1)
    [2007-10-16 13:29] upgraded xf86-video-vesa (1.3.0-1 -> 1.3.0-5)
    And lastly, this is my current Xorg
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 1.0 (buildmeister@builder3) Wed Sep 5 19:29:10 PDT 2007
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    Option "BlankTime" "0"
    Option "StandbyTime" "0"
    Option "SuspendTime" "0"
    Option "OffTime" "0"
    EndSection
    Section "Files"
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "glx"
    Load "xtrap"
    Load "record"
    Load "dbe"
    Load "extmod"
    Load "type1"
    Load "freetype"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "nvidia"
    VendorName "nVidia Corporation"
    BoardName "NV17 [GeForce4 MX 420]"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    Option "RenderAccel" "true"
    Option "NoLogo" "true"
    Option "TripleBuffer" "True"
    Option "AddARGBGLXVisuals" "True"
    SubSection "Display"
    Viewport 0 0
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    Last edited by darweth (2007-10-16 18:47:45)

    Try to install those, reinstall them if they are already installed:
    pacman -S xf86-input-mouse xf86-input-keyboard
    And change
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    to
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "keyboard"
    EndSection

  • HT4519 sometimes when I send a mail it will go regardless of location or whether it has attachments, but more often than not they won't go and the message " a copy has been placed in your outbox. The sender address "my email blah blah was rejected by the

    Sometimes when sending a mail it will go more often it won't go, it doesn't seem to be relevant  to my geographic position and the message" a copy has been placed in your Outbox. The sender address" my email blah blah" was rejected by the server"     . Any ideas?

    Check the outgoing mail server setting. Make sure that your username and password are in there.
    Settings>Mail, Contacts, Calendars>Your email account>Account>Outgoing mail server - tap the server name next to SMTP and check in the primary server and make sure your username and password are entered and correct - even if it says that the password is optional.

  • Ipad is not being recognized by Windows..I get a Code 43 error on any USB port I try. I have rebooted, restarted, blah blah til I am blue in the face.

    Ipad is not being recognized by Windows..I get a Code 43 error on any USB port I try. I have rebooted, restarted, blah blah til I am blue in the face. This is an Ipad not an Ipad2...I can't get this thing recognized by either my desktop or laptop. It used to work...not now.
    Any ideas?

    Did you already have a look at this article?
    iOS: Device recognized in iTunes for Mac OS X

  • GotoAndStop not working like it should (AS3 / CS4)

    Hi everyone, I've recently started using AS3 in flash and it's giving me some troubles. Here's the situation:
    On my first frame on the main timeline I  use a gotoAndStop("home") command to go to my homepage which is on frame 45 and labeled "home".
    From frame 2 up to frame 44 there are multiple movieclips with animations and sound in them, which stop at frame 45.
    When I use the gotoAndStop() command in my first frame it seems to work but the sounds of my movieclips in the previous frames keep looping.
    I don't understand why this is happening, since my movieclips aren't even on frame 45.
    Anyway, here's some of my code.
    first frame on main timeline code:
    [CODE]
    import flash.events.MouseEvent;    
    this.gotoAndStop("home");
    [/CODE]
    below that code are my buttons.
    here's the code from one of the buttons I use.
    [CODE]
    function mouse_over(e:MouseEvent){  
    e.currentTarget.gotoAndStop("_over");  
    function mouse_out(e:MouseEvent) {  
    e.currentTarget.gotoAndStop("_up");  
    function mouse_down_center(event:MouseEvent) {  
    btn_center.gotoAndStop("_down");  
    gotoAndStop("home");  
    btn_center.buttonMode = true;   
    btn_center.addEventListener(MouseEvent.MOUSE_DOWN, mouse_down_center);  
    btn_center.addEventListener(MouseEvent.ROLL_OVER,mouse_over);  
    btn_center.addEventListener(MouseEvent.ROLL_OUT,mouse_out);
    [/CODE]
    I've also tried putting "this." in the button code and making a variable out of "this" to then use that variable in the code. It didn't change anything.
    Any help with this would be greatly appreciated.

    Sorry for the somewhat late response, didn't expect people to respond this quickly.
    There are no sounds when I use stop() instead of gotoAndStop() so I guess that means my sounds are coming from the movieclips? Not sure if this helps.
    I looked into using the soundmixer.stopall() but the problem is that I also have a background music playing (which works perfectly by the way) so that code would stop my music as well.
    I guess I should look into loading my sounds via actionscript, do I do that from within my movieclips or from the main timeline frame?
    The problem is that I don't want my sounds to start right at the beginning of the movieclip animation.

  • ?I'm trying to download a free app and I keep getting a message that says; "Payment Type paypal is not supported on this device blah lah go to iTunes story on your computer. You must verify your payment info before you can make purchases.  I did all that

    ?I'm trying to download a free app and I keep getting a message that says; "Payment Type paypal is not supported on this device blah blah go to the iTunes Store  on your computer. You must verify your payment info before you can make purchases.  I did all that, updated payment info and checked paypal it is verified, and it still won't work. Im stumped

    If you still have problem, contact iTune Support
    https://ssl.apple.com/emea/support/itunes/contact.html

  • Trouble with calculating fields. Can't select (check) fields. Also can't figure out what's wrong with a division field (percent) that I created. Keep getting the pop up that format of the field doesn't allow blah blah blah... Help!

    Trouble with calculating fields. Can't select (check) fields. Also can't figure out what's wrong with a division field (percent) that I created. Keep getting the pop up that format of the field doesn't allow blah blah blah... Help!

    1. Use the mouse to select the field and then press the space bar.
    2. A null string is the same as zero. What is the result for division by zero?

  • Firefox 3.5.5 will not display gotoAndStop properly when a Mask is involved

    I've created a Flash CS3 animation that has a mask moving across a graphic to simulate a horizontal scrolling fade-in effect. I'm using ActionScript 3 to set a Shared Object and the gotoAndStop method to move to the last frame in the animation so it only plays the first time the user sees the website.
    However, in Firefox 3.5.5 the animation is not showing up properly when the page is reloaded. For whatever reason, the mask is acting as if it's never moved and therefore does not show anything after that point. In all other browsers the animation skips properly to the end, thus showing the correct end result.  It also works properly in the stand alone Flash player.
    I've posted this on the Firefox forums as well just in case it's something on Firefox's end of it.
    Anyone have any ideas on why this behavior is happening?

    I've been able to replicate this several times with a few different animations.  It seems that the problem lies with Firefox 3.5.5, however the folks on those forums seem to think it's a problem within Flash itself.  I'd appreciate an official inquiry/response as this is prohibiting me from using Flash in the capacity for which it's needed.

  • "A.swf" on level 0 to a "B.swf" on level 1 with an "gotoAndStop(5)????

    Has enybody an idea, how i can refer from a flash "A.swf" on level 0 to a "B.swf" on level 1 with an "gotoAndStop(5). I tried it with:
    loadMovieNum("B.swf", 9), gotoAndStop(5);
    and other variations. It didn´t work anytime. Has anybody an idea how it can work?

    If you are trying to tell the B swf to gotoAndStop(5) after it has loaded, you need to wait until it has loaded and you need to target it as well.  Look into using the MovieClipLoader class.  If you look at the MovieClipLoader.addListener section of the help documents it provides an example of how to listen for completion of loading.  After loading you need to target the loaded movie... just using gotoAndStop(5) alone is tagerting whatever timeline that code is in, not any specific object.

  • Memory Leak with GotoAndStop()

    I am trying to track down a solution to a memory leak within an embedded video.  If I embed a video on the timeline and then run gotoAndStop or gotoAndPlay to a specific frame every time the frame changes it takes in more memory until it crashes at about 1.7GB however if I run a straight play() on the same clip the memory usage remains constant.  I have also tried System.gc() as it is an AIR App and have tried unloadAndStop() with the embeded video being loaded into a Loader and neither can reclaim any memory.
    I am looking for a a way to resolve the memory leak or another way to be able to rapidly jump to specific frames of video as far as I know this is not possible with external flvs.
    Thanks
    Dave

    video is much like a .gif file.  if you start at frame 0 and jump to frame 30 it needs to redraw what it does nt have in frame 30  which means tellign it to start at frame 30 is the same as telling it to get all information from when it last changed which might be frame 27 to complete the frame of what should display on frame 30.
    this is why its slow to play backwards.  and best to play an flv forward.
    what i would suggest if you do not need video persay, would be to use png sequences.  but if your videos are long then i suppose it would be a greater advantage to keep it compressed.
    what is the quality as well of the video and its size and your frame rate?
    You mention that you are creating a 3d view, how is that?  do you use more than 1 swf ?
    I still think this does not sound like a play head issue, since the video is already compiled.

Maybe you are looking for

  • LE_SHP_DELIVERY_PROC in CNS0 not implemented

    Dear All, I am creating a delivery from project system using t-code CNS0, I am getting the following Error Message: Error during copy of partner: Partner role SP Message no. VL864 I found BADI LE_SHP_DELIVERY_PROC defined in CNS0(SAPLCNSH), but not i

  • Just upgraded to ISO8 and now my iphone 4s won't connect to home wifi - keeps telling me that the password is incorrect when it's not - help please.......

    Please help me - I've just upgraded my Iphone 4s to ISO8 and now I can't connect to wifi - was at my friends yesterday - always use his wifi and even though the password was correct, it wouldn't accept it.  Came home and had the same problem.  I can'

  • Templates in Dreamweaver

    Hi I'm new to Dreamweaver, This is the first time I've attempted to create a website. I've learnt how to set up templates etc, but I think I'm missing something... when creating a new web page from template, I've been trying to insert a picture as ba

  • Mac Mini Hdd to SSD

    I would like to know which ssd's I can put in my november 2006 1.66Ghz MAC MINI upgraded to 2.33Ghz C2D? I realize this seems vague, I'd like to get a kingston sata III 80GB, so will it work and just run at the speed of the mac mini or do I need to g

  • HT203167 The lion king movie no longer available

    I purchased this movie and it is no longer available I have searched the internet and I've read that Disney had taken it off of iTunes. I have also heard that it was a glitch on apples part and it if you purchased the movie you would be able to still