Random position help...

Hi, I'm trying to create a simple screensaver whereby a
company logo just simply fades in and out at random positions on
the stage indefinitely. Would anybody have any example script for
this? Or know where to download something similar?
thanks
db

1. Put the logo image on the stage.
2. Convert it to a graphic symbol. Again convert the graphic
to a movie clip.
3. Inside the movie clip make a fade in fade out animation
using the graphic inside - use about 20 - 30 frames.
4. Write the following code on the movie clip timeline first
frame.
this._x = Math.random()* Stage._width;
this._y = Math.random()* Stage._height;
www.santanu.biz
The Swiss Army Knife for All Your Creative Needs

Similar Messages

  • ITunes Plays from Random Positions, Help!

    I've started recording all my music in variable bit rate and have come across a problem.
    When I pause a song that is in VBR format, say half way through the song, and then continue to play it, it doesn't play from where it last was, but from earlier on.
    For example: I will be listening to a section of a song that has vocals. I'll then pause it and go doing something for 5 minutes. When I come back a hit play, it plays from a section earlier on that contain no vocals. Very annoying.
    What's even weirder is that it is just happening to new songs as I have older songs, (added to my library last year) that are in VBR and play/pause fine. Go figure.
    Any help would be appreciated. Thank you.

    hi Skippy!
    let's try working through the possibilities in this document. if you've got an itunes version 5.0.x or 6.0.x, you'll need to check the QT 7 settings:
    iTunes and QuickTime for Windows: Songs and other audio don't play correctly
    love, b

  • A torrent i recently downloaded keeps popping up again and again and again. I've already downloaded it, but the download window still pops up randomly. Help!!!

    A torrent i recently downloaded keeps popping up again and again and again. I've already downloaded it, but the download window still pops up randomly. Help!!!

    Try to clear your download history. You will find help in [[Clear Recent History]].

  • How to get rid of or at least easily fix random Position A to Positon B 'archs'?(want straight line)

    Hey,
    I hope i can describe my question correctly: is there a way to tell after effects that i want to default every position edit to be a straight path/arch (i'm actually looking for a lack of 'arch'--I just want a straight line) instead of defaulting to a seemingly random arch that i then find very tedious if not impossible to fix, even by manipulating vertice box 'arms' while holding alt? in other words, can i tell the program that, from now on, 'position A' and 'position B' must be traveled between in a straight line ONLY, never any erronious archs? i hope i described it well enough without being too familar with technical terms
    thanks

    Rick's pointing you in the right direction.
    Details are here:
    http://help.adobe.com/en_US/aftereffects/cs/using/WS3878526689cb91655866c1103906c6dea-7d99 a.html#WS3878526689cb91655866c1103906c6dea-7d98a

  • 4 random positions in the world

    Ok so this is the code that i have writen so far:
    Random aRandom;
    aRandom.nextBoolean();
    aRandom.nextInt(4);
    System.out.println(aRandom);
    if (aRandom == 0)
    chaser.moveTo(160,120);
    if (aRandom == 1)
    chaser.moveTo(160,360);
    if (aRandom == 2)
    chaser.moveTo(480,120);
    if (aRandom == 3)
    chaser.moveTo(480,360);
    this is what the outcome is supposed to be :
    Chaser is created at one of 4 positions in the
    world: (160, 120), (160, 360), (480, 120), or (480, 360). You must use a random decision to choose
    which of the four locations Chaser should start at.
    im really new to this does anyone khow what im doing wrong?
    below is the starter code that i have just in case anyo0ne wants to take a look at it!
    // Fall 2008 Comp 110 Barnes Project 2
    // Put descriptive comments about what your program does and how it does it
    import java.util.Random; // used for making probabistic decision
    // You must use the methods and the arguemtns in this starter file.
    public class TurtleTag {
    // class instance variables are declared outside of any class method
    // and are accessible from anywhere within the class.
    Random aRandom; // object that returns (gets) random values
    Turtle chaser, evader; // Turtle "objects" of our game
    int delayInterval = 750; // time delay between steps to see the chase
    int chaserStep = 5, evaderStep = 8; // distance of turtle's step
    // Constructor method -- makes a TurtleTag object.
    public TurtleTag(World aWorld, int gameSteps) {
    int chaseX = 160, chaseY = 120; // starting location for chaser turtle
    // create a new Random
    // create a new evader Turtle and give it a name
    // set the value of steps here
    evader = new Turtle(aWorld);
    evader.setName("evator");
    // determine where chaser turtle will start
    Random aRandom;
    aRandom.nextBoolean();
    aRandom.nextInt(4);
    System.out.println(aRandom);
    if (aRandom == 0)
    chaser.moveTo(160,120);
    if (aRandom == 1)
    chaser.moveTo(160,360);
    if (aRandom == 2)
    chaser.moveTo(480,120);
    if (aRandom == 3)
    chaser.moveTo(480,360);
    // create chaser turtle and give it a name.
    chaser = new Turtle(chaseX, chaseY, aWorld);
    chaser.setName("chaser");
    System.out.println("TurtleTag written by " + "Antonio Arana");
    System.out.println(chaser);
    System.out.println(evader);
    System.out.println("Chaser is after Evader.");
    // call the play() method to have chaser chase evader
    play(gameSteps);
    System.out.println("TurtleTag is done");
    } // end of TurtleTag(...)
    // Wait delayInterval milliseconds between steps.
    // Do not change this method or its call in play.
    // This method is needed for moving Turtles.
    private void delay() {
    try { Thread.sleep(delayInterval); }
    catch (InterruptedException ie) {
    System.out.println("Error in delay() " + ie.toString());}
    } // end of delay()
    // Write the definition (body) for this method.
    public void chaserMove() {
    // Put your code here
    // Write the definition (body) for this method.
    public void evaderMove(boolean decision) {
    // Put your code here
    // Uncomment the declaration of this method.
    // Write the definition (body) for this method.
    // public int distanceBetween(Turtle chase, Turtle evade) {
    // Put your code here
    // Play the game of tag between two turtles for steps moves.
    // Complete the definition (body) for this method.
    public void play(int steps) {
    // you may have to define and possibly initialize
    // some local variables here
    // get positions of chaser and evader turtles
    // while not tagged and moves is less than steps) do
    // moves++;
    // chaserMove();
    // distance = distanceBetween("what arguments go here?");
    // if ( distance <= 10) {
    // System.out.println("Game over Chaser tagged Evader in " +
    // moves + " steps at a distance of " + distance );
    // tagged = true; }
    // else // evader moves
    // evaderMove(aRandom.nextBoolean());
    // delay(); // pause between moves
    // end of while
    // if (!tagged) System.out.println("Game over Chaser did not tag Evader in "
    // + moves + " steps");
    } // end of playTag()
    } // end of TurtleTag class definition

    should i use the aRandom.nextInt(max) intead i am so confused right now i wish i could just give up but i have to do this even if it takes me all week!
    I am really new to this and the teacher that i have never answer our questions. the book that we read for this class desent even teach us how to do randoms sorry that im writing this im just really sick of this because i have been trying to figure this out from yesterday to today and this is just the begining.
    Bye the way i really apreciate your help even though i think that i am geting more confused.
    so what i have so far is totaly wrong right?

  • Icons in Finder folders often are in random positions.. Why?

    It often happens in OS X Mountain Lion Finder: Icons into folders (as you can see in the picture below) are placed at random, despite is selected "arrange by>name". To return to the default position I have to select another option and then again "by name", every time it happens, even for the same folder. Is there a solution? Or is it a bug of the new OS?

    Rather then "arrange by"  has you tried View > Clean up by > name.
    or Opt Command 1

  • IWeb - Fixed position - help!

    Hello,
    I have the problem with menu on my site. Trying to make it flow but nothing is working for me and I don't know why.
    Can anyone help me?
    Thanks

    Nothing wrong with your code.
    Since the code is displayed in a HTML snippet the fixed attribute of the div has no meaning.
    What needs to be fixed on the page is the HTML snippet itself.
    This page comes close to what you want :
    http://www.wyodor.net/_Demo/FloatingMenu/Fixed.html
    It was a first attempt to add custom menus to any part of the page.
    The menu you see there is not an HTML snippet, but a text box.
    It contains a word, which I find with a JavaScript and then replace the content of the texbox with the menu code.
    This is the HTML snippet. Look at the source :
    http://www.wyodor.net/_Demo/FloatingMenu/Fixed_files/widget1_markup.html
    And this is the javascript that makes it work.
    http://www.wyodor.net/_Demo/duckmenu/FloatingMenu.js
    It's what they call obsolete, because since then I have figured out a more convenient way to add menus.
    See the Maaskant en Roodhout pages.
    These menus are more manegable because you can add/delete menus and menu items without iWeb.
    Your menu would fit. The only thing to do is to separate the HTML menu code and the <style>.
    To fix the menu to the page, use the code in the Fixed menu page :
    elem.style.position='fixed';
    Practice.

  • Pdf watermark, positioning help

    I've recently been playing around with the idea of automatically updating pdf's that are submitted to our website with our web address. Idealy the text would be a clickable link that is centered and positioned at the very top of the page (although im not quite sure if the clickable link part is even possible with cfpdf or itext).  I've been able to add watermarks using both cfpdf and itext, but the watermarks always seem to be pushed down almost an inch from the top of the page and i need the watermark to be at the very top of the page so that it doesn't interfere with the other text (even though the watermark has an opacity of 85%).  I'm looking for suggestions on how i can:
    A. position the text/watermark at the very top of the page.
    B. make the text a clickable link.
    Any help is greatly appreciated!
    Thanks!

    jcdev01 wrote:
    but the watermarks always seem to be pushed down almost an inch from the top of the page
    It sounds like your positioning is off.  Can you post the code you are using to position the watermark?
    Regarding hyperlinks, you can use an Anchor object to add a hyperlink to an existing pdf.
    http://itextdocs.lowagie.com/tutorial/objects/anchors/index.php

  • Spry submenu positioning help

    Can anyone help me with this? I have a horizontal spry menu
    that takes the entire width of the page. There are submenus for
    each item that default to appearing below and extend to the right
    of each item. This is fine except for the last two items on the
    right whose submenus extend off the screen to the right. I've tried
    making a class to change the positioning of these last two
    submenus, but this changes their visibility to alway visible,
    instead of just when moused-over. Sorry if someone's answered this
    before, but I been searching and not found anything.
    Thank you.

    Hi,
    I finally figured out how to post the page on another site. The link below shows the page with the poorly positioned spry menu.
    http://www.emiliocorsetti.com/publish/two_column.html
    Thanks,
    Emilio

  • ITunes Randomly Quits - Help

    Hey,
    I have been having an Issue with my iTunes Randomly Quitting / Crashing on me for about the last  month.
    I am not sure what the exact issue is I have re-installed my OS, Repair Premmssions.
    This happens when iTunes is not doing anything. Usually when my computer is sleeping it Crashes and when i wake up I get the Error and the log.
    I thought the issue was realted to Avatron Softwear - Air Display or Air Connect. I uninsatlled both. iTunes stopped crashing for about 24hrs and has started again?
    Below is the one of the logs. All the help would be great.
    Thanks,
    Process:         iTunes [15970]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         11.1.4 (11.1.4)
    Build Info:      iTunes-1114011001004062~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [275]
    Responsible:     iTunes [15970]
    User ID:         501
    Date/Time:       2014-02-15 12:15:00.356 -0500
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  A70FB7B2-AEFA-2859-2ACA-C4EB1CA4D4B0
    Crashed Thread:  0  iTunes main  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000001169ab000
    VM Regions Near 0x1169ab000:
        MALLOC_LARGE           000000011697f000-00000001169ab000 [  176K] rw-/rwx SM=PRV 
    -->
        MALLOC_LARGE           0000000116c31000-0000000116c55000 [  144K] rw-/rwx SM=PRV 
    Thread 0 Crashed:: iTunes main  Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x00007fff85d47848 strlen + 72
    1   com.apple.CoreFoundation                0x00007fff85af3ffe CFStringCreateWithCString + 30
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff84152662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff84dbd43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff84dbd152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff85c149d1 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x00000001014fc753 0x1014e1000 + 112467
    7   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    8   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 3:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff85c149d1 CFRunLoopRun + 97
    6   com.apple.mobiledevice                  0x000000010a91c711 __thr_AMRegisterForCallbacks + 217
    7   libdispatch.dylib                       0x00007fff84dbb2ad _dispatch_client_callout + 8
    8   libdispatch.dylib                       0x00007fff84dbd09e _dispatch_root_queue_drain + 326
    9   libdispatch.dylib                       0x00007fff84dbe193 _dispatch_worker_thread2 + 40
    10  libsystem_pthread.dylib                 0x00007fff898d4ef8 _pthread_wqthread + 314
    11  libsystem_pthread.dylib                 0x00007fff898d7fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff84151716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff898d5c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001014e572f 0x1014e1000 + 18223
    3   com.apple.iTunes                        0x000000010195c12f 0x1014e1000 + 4698415
    4   com.apple.iTunes                        0x000000010195c85e 0x1014e1000 + 4700254
    5   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    6   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff841519aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff85babd43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff85c149d1 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000101a0dbd0 0x1014e1000 + 5426128
    7   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    8   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff84151716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff898d5c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001014e572f 0x1014e1000 + 18223
    3   com.apple.iTunes                        0x00000001014e5689 0x1014e1000 + 18057
    4   com.apple.iTunes                        0x0000000101755666 0x1014e1000 + 2573926
    5   com.apple.iTunes                        0x000000010175563d 0x1014e1000 + 2573885
    6   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    7   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.iTunes                        0x00000001014e57e7 0x1014e1000 + 18407
    3   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff85c149d1 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x00000001014fc753 0x1014e1000 + 112467
    7   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    8   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff8bbbc1ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff841519aa __select + 10
    1   com.apple.AirTrafficHost                0x00000001129160de _readDictionary + 246
    2   com.apple.AirTrafficHost                0x0000000112916892 ATProcessLinkCopyMessageFromChild + 182
    3   com.apple.AirTrafficHost                0x000000011291563a ATHostConnectionReadMessage + 82
    4   com.apple.iTunes                        0x00000001018b358a 0x1014e1000 + 4007306
    5   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    6   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff85c149d1 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x00000001014fc753 0x1014e1000 + 112467
    7   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    8   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 13:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff87f13907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff87f1370b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff85c149d1 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x00000001014fc753 0x1014e1000 + 112467
    7   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    8   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff841519aa __select + 10
    1   com.apple.AirTrafficHost                0x00000001129160de _readDictionary + 246
    2   com.apple.AirTrafficHost                0x0000000112916892 ATProcessLinkCopyMessageFromChild + 182
    3   com.apple.AirTrafficHost                0x000000011291563a ATHostConnectionReadMessage + 82
    4   com.apple.iTunes                        0x00000001018b358a 0x1014e1000 + 4007306
    5   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    6   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff85c149d1 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x00000001014fc753 0x1014e1000 + 112467
    7   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    8   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff85c149d1 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x00000001014fc753 0x1014e1000 + 112467
    7   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    8   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff85c149d1 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x00000001014fc753 0x1014e1000 + 112467
    7   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    8   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff85c149d1 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x00000001014fc753 0x1014e1000 + 112467
    7   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    8   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff85c149d1 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x00000001014fc753 0x1014e1000 + 112467
    7   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    8   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff85c149d1 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x00000001014fc753 0x1014e1000 + 112467
    7   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    8   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 22:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff84151716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff898d5c3b _pthread_cond_wait + 727
    2   com.apple.CoreVideo                     0x00007fff87daaa38 CVDisplayLink::runIOThread() + 656
    3   com.apple.CoreVideo                     0x00007fff87daa78f startIOThread(void*) + 147
    4   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff84151716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff898d5c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001014e572f 0x1014e1000 + 18223
    3   com.apple.iTunes                        0x0000000101567767 0x1014e1000 + 550759
    4   com.apple.iTunes                        0x0000000101567705 0x1014e1000 + 550661
    5   com.apple.iTunes                        0x0000000101567572 0x1014e1000 + 550258
    6   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    7   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff84151716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff898d5c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001014e572f 0x1014e1000 + 18223
    3   com.apple.iTunes                        0x0000000101567767 0x1014e1000 + 550759
    4   com.apple.iTunes                        0x0000000101567705 0x1014e1000 + 550661
    5   com.apple.iTunes                        0x0000000101567572 0x1014e1000 + 550258
    6   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    7   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff84151e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff898d4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff898d7fb9 start_wqthread + 13
    Thread 26:
    0   libsystem_kernel.dylib                  0x00007fff84151e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff898d4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff898d7fb9 start_wqthread + 13
    Thread 27:
    0   libsystem_kernel.dylib                  0x00007fff84151e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff898d4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff898d7fb9 start_wqthread + 13
    Thread 28:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff85c149d1 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x00000001014fc753 0x1014e1000 + 112467
    7   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    8   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff85b60315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff85b5f939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff85b5f275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff85c149d1 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x00000001014fc753 0x1014e1000 + 112467
    7   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    8   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib                  0x00007fff84151716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff898d5c77 _pthread_cond_wait + 787
    2   com.apple.iTunes                        0x00000001014e576c 0x1014e1000 + 18284
    3   com.apple.iTunes                        0x0000000101567767 0x1014e1000 + 550759
    4   com.apple.iTunes                        0x0000000101567705 0x1014e1000 + 550661
    5   com.apple.iTunes                        0x0000000101567572 0x1014e1000 + 550258
    6   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    7   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib                  0x00007fff84151716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff898d5c77 _pthread_cond_wait + 787
    2   com.apple.iTunes                        0x00000001014e576c 0x1014e1000 + 18284
    3   com.apple.iTunes                        0x0000000101567767 0x1014e1000 + 550759
    4   com.apple.iTunes                        0x0000000101567705 0x1014e1000 + 550661
    5   com.apple.iTunes                        0x0000000101567572 0x1014e1000 + 550258
    6   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    7   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib                  0x00007fff84151716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff898d5c77 _pthread_cond_wait + 787
    2   com.apple.iTunes                        0x00000001014e576c 0x1014e1000 + 18284
    3   com.apple.iTunes                        0x0000000101567767 0x1014e1000 + 550759
    4   com.apple.iTunes                        0x0000000101567705 0x1014e1000 + 550661
    5   com.apple.iTunes                        0x0000000101567572 0x1014e1000 + 550258
    6   com.apple.iTunes                        0x00000001014e63f1 0x1014e1000 + 21489
    7   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib                  0x00007fff84151e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff898d4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff898d7fb9 start_wqthread + 13
    Thread 34:
    0   libsystem_kernel.dylib                  0x00007fff8414da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8414cd18 mach_msg + 64
    2   com.apple.iTunes                        0x00000001014e57e7 0x1014e1000 + 18407
    3   libsystem_pthread.dylib                 0x00007fff898d3899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff898d372a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff898d7fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0xffffffffffff8000  rbx: 0x0000000116980e1f  rcx: 0x000000000000000f  rdx: 0x0000000116980e1f
      rdi: 0x00000001169ab000  rsi: 0x0000000000000000  rbp: 0x00007fff5e719d70  rsp: 0x00007fff5e719d70
       r8: 0x00007fff5e719ea4   r9: 0x0000000000000000  r10: 0x0000000000000043  r11: 0x0000600002a61e31
      r12: 0x0000600002a61e00  r13: 0x0000000000ea7e37  r14: 0x0000000008000100  r15: 0x0000000000000000
      rip: 0x00007fff85d47848  rfl: 0x0000000000010206  cr2: 0x00000001169ab000
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x1014e1000 -        0x102b8bfe7  com.apple.iTunes (11.1.4 - 11.1.4) <469CEDE7-B677-3B93-8B0D-1DE419BB8DCE> /Applications/iTunes.app/Contents/MacOS/iTunes
           0x102f69000 -        0x102fe9ff7  com.apple.iTunes.iPodUpdater (10.7 - 10.7) <2709E6B0-39E2-3D75-92E3-E9F27C307C4A> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
           0x10302b000 -        0x103055ffb  com.apple.avfoundationcf (2.0 - 133) <385B4AC1-12A3-3ECC-98CD-31D391FCCEFE> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
           0x103094000 -        0x1033b2fe7  com.apple.iad.iAdCore (1.0 - 1) <9E8CC242-A900-3BD1-B044-F07F592B9B3D> /Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions/A/iAdCo re
           0x10347f000 -        0x103483fff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x103490000 -        0x103493fff  com.apple.iPod (1.7 - 20) <9B9FD104-A8EE-3884-8610-B06700AC344E> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
           0x10349c000 -        0x1037c8ff7 +libgnsdk_dsp.1.9.5.dylib (1.9.5) <14636B08-4D26-54CA-3EE8-247B2B708AF0> /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.5.dylib
           0x1037ee000 -        0x103825ff7 +libgnsdk_musicid.1.9.5.dylib (1.9.5) <C034C2ED-6A46-315F-89C8-8D54A937B255> /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.5.dylib
           0x10383a000 -        0x103910fe7 +libgnsdk_sdkmanager.1.9.5.dylib (1.9.5) <D144E870-FABC-E19E-452E-A33D19595B19> /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.5.dylib
           0x103935000 -        0x103978ff7 +libgnsdk_submit.1.9.5.dylib (1.9.5) <6689251D-098B-0F8D-08CC-785271E98540> /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib
           0x103c21000 -        0x103c23ff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x105ae7000 -        0x10685cfff  com.apple.CoreFP (2.5.16 - 2.5.16) <1C390A93-4187-37E7-8A7E-4417876F069B> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
           0x107dc3000 -        0x107dc7ffd  com.apple.audio.AppleHDAHALPlugIn (2.5.3 - 2.5.3fc1) <844CFCFD-F813-36F1-A5BF-FB9D7BD7040D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x107e23000 -        0x107e29ff7  com.apple.BookKit (1.0.1 - 158) <34C7F87F-63B6-3E53-A7B1-8A6656405F41> /System/Library/PrivateFrameworks/BookKit.framework/BookKit
           0x107e33000 -        0x107f67ff7  com.apple.CoreADI (1.34.0 - 1.34.0) <33B6ECA7-680E-3517-A1C1-9785BA022516> /System/Library/PrivateFrameworks/CoreADI.framework/CoreADI
           0x10a599000 -        0x10a76afff  com.apple.audio.units.Components (1.9 - 1.9) <80991B19-4B07-3DBF-A4B3-597DA1AA65B2> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x10a897000 -        0x10a988ff7  com.apple.mobiledevice (710.3 - 710.3) <2097078F-FB29-31D0-BD14-57D41E2D297E> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
           0x10ab5c000 -        0x10ab5cffb +cl_kernels (???) <4A2A9770-A33B-4B73-B704-BFF17E5C0BE4> cl_kernels
           0x10ab76000 -        0x10ad6cfff  com.apple.audio.codecs.Components (4.0 - 4.0) <05EF9EE8-2047-3FB0-84DA-7A2DD744B64B> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
           0x10af84000 -        0x10b06afef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x10b60f000 -        0x10b61afff  libGPUSupport.dylib (9.0.83) <AF15BF74-F9B3-35B9-8728-3B3A2EB6E432> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x10ecd1000 -        0x10f41bff7  libclh.dylib (4.0.3 - 4.0.3) <BC457879-2A9F-3A1E-909F-1500E8D4C207> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/libclh.dy lib
           0x110755000 -        0x110768fff  com.apple.MediaLibrary (1.0 - 637) <CB99F701-D188-34A1-A53B-0331A352C8A3> /System/Library/Frameworks/MediaLibrary.framework/MediaLibrary
           0x112913000 -        0x112a94fff  com.apple.AirTrafficHost (351.6 - 351.6) <64B45992-C1BA-35B5-9158-732748DF6B5D> /System/Library/PrivateFrameworks/AirTrafficHost.framework/AirTrafficHost
           0x1137da000 -        0x113885fff  com.apple.AppleGVAFramework (6.0.38 - 6.0.38) <778BD26C-91E5-3300-B78E-917CE26317E7> /System/Library/PrivateFrameworks/AppleGVA.framework/AppleGVA
        0x123440000000 -     0x123440867ff7  com.apple.GeForceTeslaGLDriver (8.18.28 - 8.1.8) <A17676FF-2A81-319B-A6ED-85C6854C5C35> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/GeForceTe slaGLDriver
        0x7fff6be28000 -     0x7fff6be5b817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff83509000 -     0x7fff8350aff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8350b000 -     0x7fff836a7ff7  com.apple.QuartzCore (1.8 - 332.0) &l

    Hey Jess,
    It sounds like you're already on the right track with your troubleshooting steps, but there are a few more you haven't done listed here:
    iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/TS1717
    I'd run through the suggested steps in there to see if that resolves the issue.
    Have a good one,
    Delgadoh

  • IPhone 6 plus randomly crashes help

    hi I've had my iPhone 6 plus for a while now and recently it started crashing on its own it would randomly reboot on its own when I'm on a phone call it texting about anything it just would randomly crash
    iI've also had issues with it freezing up on me multiple times any help?
    I Always set up my iPhones as new so I didn't use a back up
    tthe strange thing is that my if I'm on a phone call and it crashes it doesn't hang up the call as the phone reboots it will hold the call and I'm still on the phone even though it crashed and it's showing the apple logo as its rebooting
    i dot know exactly what's going on but it happens randomly and its really annoying

    Hi albertofromnewhall,
    If your iPhone has been restarting unexpectedly I would suggest that you troubleshoot using the steps in this article - 
    iOS: Device unexpectedly restarts, displays Apple logo, or powers off
    In particular, since you have the latest software update -
    If you still see this issue after updating, contact Apple Support.
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • Absoulte Position Help

    Hello im creating an email campain and they keep mentioning to make sure the right colum is not absolute position and needs to be in a table...
    here is a link of what it looks like www.proofsnow.com
    thats what it should look like... but im using absolute position to achive this...
    is there another way with out using the absolute position???
    Thanks!

    Not Sure if this helps but here is the code that i set up as well...
    I highlighted the area that im questioning...
    <html xmlns="http://www.w3.org/TR/REC-html40">
    <head>
    <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
    <title>Golf N' Stuff - Principal Days</title>
    <style>
    <!--
    p.Arial, li.Arial, div.Arial {
        text-indent:0pt;
        font-family:Arial;
        font-size:12pt;
        color:black;
        text-align: justify;
    -->
    </style>
    </head>
    <body topmargin="0">
      <table cellpadding=0 cellspacing=0>
        <tr>
          <td width=350 height=48 style='padding:0pt 2.88pt 0pt 2.88pt'>
              <p class=Arial style='text-align:center;text-align:center;font-size:14.0pt;font-family:Arial;font-weight :bold;'>Come and join us for<br>
                Directors Days in May at</span></p>
          </td>
        </tr>
      </table>
      <table cellpadding=0 cellspacing=0>
        <tr>
          <td width=320 height=50 style='padding:0pt 2.88pt 5pt 25pt'>
                <img
    src="images/image2681.jpg" width=276 height=101 align="middle">
            </td>
        </tr>
      </table>
      <table cellpadding=0 cellspacing=0>
        <tr>
          <td width=350 height=48 style='padding:0pt 2.88pt 0pt 2.88pt'>
              <p class=Arial style='text-align:center;text-align:center;font-size:14.0pt;font-family:Arial;font-weight :bold;'>We're offering you two complimentary tickets for you to enjoy the park!</span></p>
            </td>
        </tr>
      </table>
      <table cellpadding=0 cellspacing=0>
        <tr>
    <td width=132 height=132 style='padding:2.88pt 2.88pt 2.88pt 2.88pt'>
    <img width=132 height=174
    src="images/image365.jpg">
            </td>
        <td width=210 height=132 style='padding:2.88pt 2.88pt 2.88pt 2.88pt'>
              <p class=Arial>This is a great opportunity for you to experience what Golf N' Stuff in Norwalk offers in the way of company picnics and group events!</p>
              <p class=Arial style='text-align:center; text-align:justify; font-size:14.0pt; font-family:Arial; font-weight:bold;'>Pick a weekend day in May 2011 and the Park is on us! </span></p>
            </td>
            </tr>
    </table>
    <table cellpadding=0 cellspacing=0>
        <tr>
    <td width=350 height=132 style='padding:2.88pt 2.88pt 2.88pt 2.88pt'>
            <p class=Arial><span lang=en-US style='language:en-US; text-align: justify;'>Choose any Saturday and Sunday to enjoy miniature golf, go karts, bumper boats, bumper cars, Disk'O Thrill ride, and more. Discount coupons will also be available for additional attendees so you can invite family and friends. Tickets will be placed on a will call basis. </span></p>
            <p class=Arial><span lang=en-US style='language:en-US; text-align: justify;'>Contact the Group Sales office to reserve your FREE tickets and discount coupons today! </span><span lang=en-US style='language:en-US; text-align: justify;'>Call 562-864-7706 Monday-Friday 9 a.m. to 5 p.m. </span></p></td>
        </tr>
    </table>
    <table cellpadding=0 cellspacing=0>
        <tr>
          <td width=350 height=20 style='padding:5pt 2.88pt 0pt 2.88pt'>
              <p class=Arial style='text-align:center;text-align:center;font-size:18.0pt;font-family:Arial;font-weight :bold;'><a href="www.golfnstuff.com">www.golfnstuff.com</a><br/>562-868-9956<br/>10555 E. Firestone Blvd. <br/>Norwalk, CA 90650</p>
          </td>
        </tr>
      </table>
    <table cellpadding=0 cellspacing=0>
        <tr>
          <td width=257 height=651 style='padding:5pt 2.88pt 0pt 2.88pt'>
    <span style='position:absolute; left:375px; top:15px; width:256px; height:653px'><img width=257 height=651
    src="images/image292.jpg"></span></td>
        </tr>
    </table>

  • 15" Macbook pro (late 2010) shuts down randomly! HELP!

    hey guys, i bought a 15" macbook pro core i7 late 2010 model a few years back, and i havent had a problem with it until now, it shuts off randomly and then when turning it back on it dsays "macbook shut down because of a problem" . NOW,  I dont know how to read error reports, and hopefully one of you can and shed some light on whats going on, and give me any suggestions on what to do? any help is welcome, thanks!
    Interval Since Last Panic Report:  160325 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    53A15492-0519-3873-5541-903E91DA9A97
    Mon Sep 16 19:00:29 2013
    panic(cpu 2 caller 0xffffff7f85a29f1a): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00610210: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff80f4a63000 0x0a5480a2, D0, P3/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.5/src/AppleM uxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80e5f23100 : 0xffffff800381d626
    0xffffff80e5f23170 : 0xffffff7f85a29f1a
    0xffffff80e5f23240 : 0xffffff7f83f9cf1e
    0xffffff80e5f23300 : 0xffffff7f8407112d
    0xffffff80e5f23340 : 0xffffff7f8424df79
    0xffffff80e5f23370 : 0xffffff7f8424ed31
    0xffffff80e5f233b0 : 0xffffff7f83f75feb
    0xffffff80e5f234d0 : 0xffffff7f83f76a00
    0xffffff80e5f23560 : 0xffffff7f83f730ac
    0xffffff80e5f235a0 : 0xffffff7f83f73029
    0xffffff80e5f23640 : 0xffffff7f83fa186e
    0xffffff80e5f23840 : 0xffffff7f83fa2722
    0xffffff80e5f23920 : 0xffffff7f84f87f80
    0xffffff80e5f23960 : 0xffffff7f84f97db7
    0xffffff80e5f23980 : 0xffffff7f84fc6e5f
    0xffffff80e5f239c0 : 0xffffff7f84fc6ebd
    0xffffff80e5f23a00 : 0xffffff7f84f9db8f
    0xffffff80e5f23a50 : 0xffffff7f84f67fe6
    0xffffff80e5f23ae0 : 0xffffff7f84f63d7c
    0xffffff80e5f23b10 : 0xffffff7f84f6190b
    0xffffff80e5f23b40 : 0xffffff8003c66363
    0xffffff80e5f23bc0 : 0xffffff8003c683f3
    0xffffff80e5f23c20 : 0xffffff8003c65e2f
    0xffffff80e5f23d70 : 0xffffff8003898c01
    0xffffff80e5f23e80 : 0xffffff8003820b3d
    0xffffff80e5f23eb0 : 0xffffff8003810448
    0xffffff80e5f23f00 : 0xffffff800381961b
    0xffffff80e5f23f70 : 0xffffff80038a6536
    0xffffff80e5f23fb0 : 0xffffff80038ce9e3
          Kernel Extensions in backtrace:
             com.apple.driver.AppleMuxControl(3.4.5)[49FEF732-D7A3-327B-A7AA-6AC5A6E3DCFF]@0 xffffff7f85a1c000->0xffffff7f85a2efff
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[1D0BB11E-7D71-34CF-ACC3-57DF01CADA 08]@0xffffff7f85a17000
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f83ea5000
                dependency: com.apple.driver.AppleGraphicsControl(3.4.5)[4A2C8548-7EF1-38A9-8817-E8CB34B8DC A6]@0xffffff7f85a03000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f83de8000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[6C8CFC18-75F0-3DEF-86C7-CEB2C1FD6BB1]@0xff ffff7f83f27000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[990D1A42-DF16-3AB9-ABC1-6A88AC142244]@0 xffffff7f83ee4000
             com.apple.NVDAResman(8.1.2)[96AE69DE-8A37-39D0-B2D3-D8446A6AA670]@0xffffff7f83f 3b000->0xffffff7f841e0fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f83ea5000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[6C8CFC18-75F0-3DEF-86C7-CEB2C1FD6BB1]@0xff ffff7f83f27000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[990D1A42-DF16-3AB9-ABC1-6A88AC142244]@0 xffffff7f83ee4000
             com.apple.nvidia.nv50hal(8.1.2)[988EAF3A-3318-3787-8A5A-844830FA1522]@0xffffff7 f841ec000->0xffffff7f844c0fff
                dependency: com.apple.NVDAResman(8.1.2)[96AE69DE-8A37-39D0-B2D3-D8446A6AA670]@0xffffff7f83f 3b000
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f83ea5000
             com.apple.GeForce(8.1.2)[7EC545A4-4B57-32F1-8DC3-C31023AFBDCB]@0xffffff7f84f450 00->0xffffff7f85012fff
                dependency: com.apple.NVDAResman(8.1.2)[96AE69DE-8A37-39D0-B2D3-D8446A6AA670]@0xffffff7f83f 3b000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[6C8CFC18-75F0-3DEF-86C7-CEB2C1FD6BB1]@0xff ffff7f83f27000
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f83ea5000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[990D1A42-DF16-3AB9-ABC1-6A88AC142244]@0 xffffff7f83ee4000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12E55
    Kernel version:
    Darwin Kernel Version 12.4.0: Wed May  1 17:57:12 PDT 2013; root:xnu-2050.24.15~1/RELEASE_X86_64
    Kernel UUID: 896CB1E3-AB79-3DF1-B595-549DFFDF3D36
    Kernel slide:     0x0000000003600000
    Kernel text base: 0xffffff8003800000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 72781453061
    last loaded kext at 38690362121: com.apple.driver.AppleHWSensor          1.9.5d0 (addr 0xffffff7f857e5000, size 36864)
    loaded kexts:
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager          4.1.4f2
    com.apple.driver.AudioAUUC          1.60
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.AGPM          100.12.87
    com.apple.driver.AppleHDAHardwareConfigDriver          2.3.7fc4
    com.apple.driver.AppleHDA          2.3.7fc4
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleSMCLMU          2.0.3d0
    com.apple.driver.AppleBacklight          170.2.5
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleIntelHDGraphics          8.1.2
    com.apple.driver.AppleIntelHDGraphicsFB          8.1.2
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.GeForce          8.1.2
    com.apple.nvidia.NVDAStartup          8.1.2
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleMikeyDriver          2.3.7fc4
    com.apple.iokit.IOBluetoothUSBDFU          4.1.4f2
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.1.4f2
    com.apple.driver.AppleMuxControl          3.4.5
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.4.5
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.driver.SMCMotionSensor          3.0.3d1
    com.apple.driver.AppleUSBTCButtons          237.1
    com.apple.driver.AppleUSBCardReader          3.1.7
    com.apple.driver.AppleFileSystemDriver          3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.AppleUSBTCKeyEventDriver          237.1
    com.apple.driver.AppleIRController          320.15
    com.apple.driver.AppleUSBTCKeyboard          237.1
    com.apple.iokit.SCSITaskUserClient          3.5.5
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.1
    com.apple.driver.AppleAHCIPort          2.5.2
    com.apple.driver.AppleUSBHub          5.5.5
    com.apple.driver.AirPort.Brcm4331          615.20.17
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.iokit.AppleBCM5701Ethernet          3.6.1b4
    com.apple.driver.AppleUSBEHCI          5.5.0
    com.apple.driver.AppleUSBUHCI          5.2.5
    com.apple.driver.AppleEFINVRAM          1.7
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.7
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.7
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2.1
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.7fc4
    com.apple.iokit.IOAudioFamily          1.8.9fc11
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.nvidia.nv50hal          8.1.2
    com.apple.NVDAResman          8.1.2
    com.apple.driver.AppleSMBusPCI          1.0.11d0
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleHDAController          2.3.7fc4
    com.apple.iokit.IOHDAFamily          2.3.7fc4
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.1.4f2
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOBluetoothFamily          4.1.4f2
    com.apple.driver.AppleGraphicsControl          3.4.5
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.driver.IOPlatformPluginFamily          5.3.0d51
    com.apple.driver.AppleSMBusController          1.0.11d0
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.5
    com.apple.iokit.IOUSBMassStorageClass          3.5.1
    com.apple.driver.AppleUSBMultitouch          237.3
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.5.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.5
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.5
    com.apple.iokit.IOAHCIFamily          2.3.1
    com.apple.iokit.IO80211Family          530.4
    com.apple.iokit.IOUSBUserClient          5.5.5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBFamily          5.6.0
    com.apple.driver.AppleEFIRuntime          1.7
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.7
    com.apple.iokit.IOPCIFamily          2.7.3
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C, 0x31364A54463531323634485A2D3147344D31
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C, 0x31364A54463531323634485A2D3147344D31
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.4f2 12041, 2 service, 18 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS725050A9A362, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3
    -cheers

    You have the MacBookPro6,2, the Edsel of Macs. It may be covered by this program:
    MacBook Pro (15-inch, Mid 2010): Intermittent black screen or loss of video
    Make a "Genius" appointment at an Apple Store, or go to another authorized service provider, to have the machine tested. The routine hardware diagnostics used by service providers may not detect the fault. There is a specific test for this issue.
    Print the first page of the panic report, and the support page linked above, and bring them with you.
    Note that the replacement program only applies within three years of purchase. If you wait beyond that date, Apple may refuse the service. In that case, you'll be quoted a price of about $300 (in the U.S.) for a depot repair.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present.
    *An SSD doesn't need to be zeroed.
    You may be able to stop the panics by disabling automatic graphics switching in the Energy Saver preference pane, but that's not a solution. 
    Most likely, the logic board will be replaced. Sometimes the replacement part is also defective, so be prepared for that possibility.

  • Cursor jumps to random positions when I click in APSE8

    Hello there, I've been using PS for quite some time and I have decent experience with it. However, recently I've encounted this certain bug in the program frequently and now I'm here in the forums to seek for a solution.
    I use Adobe Photoshop Elements Version 8.0, and I use Windows 7.
    The problem: Whenever I use the brush/pencil tool on the canvas, everytime I click to use the tool, sometimes the cursor seems to 'jump' out of position and I end up unintentionally putting paint on the wrong part of the canvas. And before I release the click, I try to move the mouse around in random directions to no avail; the mouse doesn't respond until I release the mouse. In another similar case, sometimes for a split second the cursor seems to move on its own and it leaves behind a random trail of color. Example: Let's say I wrote down my name 'Andrew' on the canvas. I end up something similar to 'Anc e.", along with a black dot/calligraphic stroke or two unintentionally placed when writing down my name. I had to undo and click several times until I properly got the tool working. I'm working on a certain project in PS and this bug is greatly hindering my progress and any solution or further explanation would be much appreciated.
    I'm guessing a part of my bare hand is just barely in physical contact with the touchpad?

    I would try another mouse.  If you have a cordless mouse there have been problems with random acts in PS before, although that was last year.
    If you have other questions about Photoshop Elements they have their own fourm at http://forums.adobe.com/community/photoshop_elements.   This is the Photoshop Forum.

  • Layer or div tag positioning help wanted

    Okay, actually I have two problems: 1) I have managed to
    create a navigation bar, but I can't find out how to save it other
    than saving the html page it was created on. The help literature
    seems to vaguely indicate that a nav bar created can be saved and
    used on other pages, but I'll be damned if I can find where there
    are any details of this process.
    *BTW, my navbar has multiple elements or buttons, so I can't
    just copy paste, ctrl/shift doesn't seem to work selecting multiple
    elements, tho it works on regular images*
    2) Once I solve problem #1, I am goin to want to have the
    navigation bar "stay put" in it's position on the screen, immune to
    any scrolling that occurs on the page(s). So, I plan on putting
    into a layer or div that can be given this behavior or property.
    Unfortunately, I can't find or figure out how to do that, either.
    Is this a good plan? Is there a better way to make the Nav bar
    exempt from page scrolling?

    billuminatti wrote:
    > Thank you very much for the help. As someone who has
    done virtually ZERO
    > coding, even something as simple as copying and pasting
    code per
    > instructions...well, let's just say, it's not my forte.
    Needless to say, my
    > attempts to do just that, copy and paste per "persistent
    layer" instructions,
    > have not succeeded yet. There could be several reasons
    for this, that I have
    > noted, anyway. One is, I have an animated timeline, so
    when I replace my body
    > tag:
    > <body onload="MM_timelinePlay('Timeline1')">
    > with the new one (per instructions), my timeline
    animation goes bye bye.
    > Plus, the "persistence" desired is still not achieved,
    which leaves me to my
    > next observation: I can't see how the code refers to the
    layer that I want to
    > persist. IOW, how does it "know" which layer to persist?
    > I took the comon-sense measure of having that layer
    selected when I pasted my
    > code, but I'm not fool enough to think that this would
    make any difference.
    > I didn't even look into the Server Side Include yet, as
    i am just aiming at
    > making a layer, any layer, "persist". My comment at this
    point is that it seems
    > very hard for me to believe that a layer behavior
    (persistence, or floating) so
    > web-common wouldn't have a "design-view only" solution,
    in a package as
    > sophisticated as Dreamweaver. This is not a slander on
    your answer, BTW, which
    > I am sure is a fine one. Thanks again.
    >
    >
    No offense, but I think your approach may be a bit off base
    here (of
    course I have not seen a link to a a page showing what you
    are trying to
    achieve, so I could be completely wrong). The first part of
    your
    question already makes me nervous, because it makes me think
    you have
    used Fireworks or another image program to create your
    navbars.
    Depending on which version of Fireworks you are using, that
    could be
    disastrous or only unwieldly. The navigation bars created by
    Fireworks
    are definitely not the best solution,and you can go through
    years of
    posts, particularly by Murray, advising against their use.
    If you are interested in an easier way to create your
    navigation, post back.
    Second, wanting your navigation to stay put while the rest of
    the page
    scrolls is something I see here a lot, but it's not
    necessarily how the
    web works. People plunge into frame hell in order to
    accomplish it,
    but it is like trying to kill a mosquito with a jackhammer.
    There is a good extension that will do this for you if you
    insist, but
    given the problems you are having now, I would first create a
    properly
    coded page that behaves as a normal web page should, and ONLY
    THEN
    worry about server-side includes
    revisit the issue of fixed and scrolling page elements.
    An excellent tutorial for creating a cross-browser friendly,
    modern
    (e.g.not relying on tables for layout) page can be found at
    www.projectseven.com (search for "quickdraw" without the
    quotation
    marks), where you can also find an excellent tutorial for
    creating
    horizontal or vertical navigation menus that are simple and
    can be used
    in templates or server-side includes (search for "uberlink"
    without the
    quotation marks).
    Good luck.
    Oh, and don't apologize for not understanding code: learn to
    understand
    and write good, solid html and css. Elizabeth Castro's book
    HTML for
    the World Wide Web is excellent. For beginning css you might
    want to
    start here:
    http://www.mako4css.com/
    Bonnie in California
    kroko at
    sbcglobal dot net
    http://www.theanimalrescuesite.com/cgi-bin/WebObjects/CTDSites.woa

Maybe you are looking for

  • How to get monthly wise asset depriciation

    Hi all,    I am developing a report to show mothly wise depreciation for an Asset.    In transaction  'AW01 - Assset Explorer' if we give company code, Asset number and Fiscal year we get the details of the depriciation in 'Planned/Posted Depriciatio

  • DBAdapter error while testing

    Hi, I am working on POProcessing tutorial and getting following error on DBAdapter. Please help me out to resolve this issue, java.lang.Exception: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: Client received SOAP Fault from server : nul

  • Waveform invoke name

    hi all how to control invoke name  export data to excel  assign my file name thanks Attachments: 120.jpg ‏56 KB

  • I updated Mozilla and then Mozilla says i running an old version/to update

    I have the latest Mozilla Firefox update but after done the same page open telling I have an older version that I need to update. I have Windows XP 2002

  • Aperture Map Is Suddenly Screwy

    Hi all, I'm running Aperture 3.2.4 on OS X 10.6.8. Recently, within the past couple of days, the map in the Places window has been going bonkers: -> The zoom bar does not work. -> My pins will be in the right place on the map until I double-click to