Help converting AS2 rollover buttons to AS3

This is probably a really dumb question, but I'm very new to AS3 so please bear with me. I created some rollover buttons (movieclips) for a flash website in AS2 using the following code:
onClipEvent (enterFrame) {
    this.onRollOver = function() {
    this.gotoAndPlay(1);
onClipEvent (enterFrame) {
    this.onRollOut = function() {
    this.gotoAndStop(1);
on (release){
    getURL("index.html", "_parent");
Could anyone advise me on how to start converting this code into AS3? I know I have to use an EventListener but I don't really understand how it works.
Any assistance would be greatly appreciated!

I have changed my code to:
Link1.addEventListener(MouseEvent.MOUSE_OVER, onMouseOver);
Link1.addEventListener(MouseEvent.MOUSE_OUT, onMouseOut);
Link1.addEventListener(MouseEvent.CLICK, onClick);
function onMouseOver(e:MouseEvent):void {
        Link1.gotoAndPlay(1);
function onMouseOut(e:MouseEvent):void {
          Link1.gotoAndStop(1);
function onClick(e:MouseEvent):void {
        Link1.navigateToURL(new URLRequest("index.html"), "_parent");
But it still doesn't work very well. The animation for the rollover keeps playing over and over, ignoring the "stop" I have within the frame of the movieclip.
You can view my website at: http://www.halopantryandgrill.com/test/index.php to get an idea of how my rollovers worked before. This was done in AS2.
I can't seem to get the same effect to work in AS3

Similar Messages

  • Help Converting AS2 to AS3 Drag and Drop Event

    Hi All,
    This is the second post on help for converting AS2 to AS3. This code is used in Captivate to allow a drag and drop action between two areas (User presses down, drags, and releases in a second area - They are not dragging any object). If anyone can help me convert this please let me know.
    Source for Drag and Drop: (Note: Single MovieClip)
    // pause the Captivate movie
    _root.rdcmndPause = 1;
    // when the user's mouse is let go check if there was a successful drop
    _root.onMouseUp = function(){
              // If the source area's center coordinate is nearby the destination area's center coordinate then advance the slide
              if ( Math.abs(_root.sourceX + _root.sourceWidth  / 2 + _root.sourceParentX - (_root.destX + _root.destWidth  / 2)) < (_root.destWidth  / 2) &&
                         Math.abs(_root.sourceY + _root.sourceHeight / 2 + _root.sourceParentY - (_root.destY + _root.destHeight / 2)) < (_root.destHeight / 2) )
                        _root.rdcmndNextSlide = 1;
              } else {
                        // show error movie clip for 2 seconds (60 frames at 30 frames per second)
                        _root.showErrorMessage = 60;
      mc.onEnterFrame = function(){
              // continuously update the source area's coordinates and size
              _root.sourceX = mc._x;
              _root.sourceY = mc._y;
              _root.sourceWidth = mc._width;
              _root.sourceHeight = mc._height;
              _root.sourceParentX = _parent._x;
              _root.sourceParentY = _parent._y;
    mc.onPress = function(){
              // Uncomment following line to have control click capabilities
              //if(key.isDown(Key.CONTROL))
              // when user clicks on the source area click start the drag
                        startDrag(this);
    mc.onRelease = function(){
              // stop drag when user releases the source area
              stopDrag();
    Source for Destination Area (Single MovieClip named destArea)
    // Set a root variable to control when the error message is displayed
    _root.showErrorMessage = -1;
    // Use setCoords variable so we only set the destination coordinates once
    var setCoords = 0;
    destArea.onEnterFrame = function(){
              if (setCoords == 0){
                        // set the destination x, y, width, and height
                        _root.destX = _parent._x;
                        _root.destY = _parent._y;
                        _root.destWidth = _parent._width;
                        _root.destHeight = _parent._height;
              // destination coordinates have been set, change setCoords so it doesn't get set again
              setCoords = 1;
    Code for the Error Message (Single MovieClip named errorMessage)
    // Don't display the error message initially
    errorMessage._alpha = 0;
    errorMessage.onEnterFrame = function (){
              // If the drag and drop method detects a missed drop
              // then show this error message by setting _alpha to 100
              if (_root.showErrorMessage > 0){
                        errorMessage._alpha = 100;
                        // decrementing this variable controls the time the
                        // error message will be displayed
                        _root.showErrorMessage--;
              } else {
                        // Don't display the error message
                        errorMessage._alpha = 0;

    use:
    MovieClip(parent.parent.parent).rdcmndPause=1;
    this.addEventListener(KeyboardEvent.KEY_DOWN,keydownF);
    function keydownF(e:KeyboardEvent):void{
    fscommand("KEYPRESSED", e.keyCode);
    if(e.keyCode==32){
    MovieClip(parent.parent.parent).rdcmndNextSlide=1;

  • Please need help converting AS2 to AS3 code

    Hi, I want to convert an AS2 code to AS3. Someone can tell
    what is wrong. (it is about a speed effect) - Thanks a lot.
    mport flash.filters.BlurFilter;
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    var duration:Number = 15;
    var t1:Tween = new Tween(mcToTween1, "_x", Elastic.easeIn,
    133, 367, duration, 0);
    var t2:Tween = new Tween(mcToTween1, "blur", Elastic.easeIn,
    0, 0, 1, true);
    t1.onMotionChanged = function() {
    oldx = x;
    oldy = y;
    x = mcToTween1._x;
    y = mcToTween1._y;
    speedx = Math.round(Math.abs((x-oldx)));
    speedy = Math.round(Math.abs((y-oldy)));
    mcToTween1.filters = [new BlurFilter(speedx*2, speedy*2, 1)];
    trace(speedx);
    t1.onMotionFinished = function() {
    t1.yoyo();
    };

    use:
    MovieClip(parent.parent.parent).rdcmndPause=1;
    this.addEventListener(KeyboardEvent.KEY_DOWN,keydownF);
    function keydownF(e:KeyboardEvent):void{
    fscommand("KEYPRESSED", e.keyCode);
    if(e.keyCode==32){
    MovieClip(parent.parent.parent).rdcmndNextSlide=1;

  • Help Converting AS2 to AS3 (Spacebar Action in Captivate)

    Hi All,
    There seems to be a lot of these posts on this forum so I thought I would see if anyone could help me out. I had some code developed for me that was in AS2 and I need this in AS3 due to the upgrade in software. Below is the AS2 code:
    _parent._parent._parent.rdcmndPause = 1;
    myListener = new Object();
    myListener.onKeyDown = function () {
              fscommand("KEYPRESSED", Key.getCode());
        If (Key.getCode() == 32)
                        _parent._parent._parent.rdcmndNextSlide = 1;
              EndIf
    Key.addListener(myListener);
    The code is simple really. It was suppose to allow the Spacebar to be used as an input key to go to the next slide in Captivate. There is a single MovieClip in the file. Please let me know.
    Thanks

    use:
    MovieClip(parent.parent.parent).rdcmndPause=1;
    this.addEventListener(KeyboardEvent.KEY_DOWN,keydownF);
    function keydownF(e:KeyboardEvent):void{
    fscommand("KEYPRESSED", e.keyCode);
    if(e.keyCode==32){
    MovieClip(parent.parent.parent).rdcmndNextSlide=1;

  • Converting AS2 XML Function To AS3

    Hi guys, how are you?
    Once again I´m here to request your help.
    I´m trying to convert an AS2 to AS3 script, but I´m not good at AS3 sintax yet. I don´t know how to create this structure. Please, someone could help me?
    xml:
    <resources>
             <levelTitle1>Iniciante</levelTitle1>
              <levelTitle5>Aprendiz</levelTitle5>
              <levelTitle10>Aspirante</levelTitle10>
              <levelTitle15>Recruta</levelTitle15>
              <levelTitle20>Experiente</levelTitle20>
              <levelTitle30>Profissional</levelTitle30>
              <levelTitle50>Star</levelTitle50>
              <levelTitle70>Ás</levelTitle70>
              <levelTitle90>Campeão</levelTitle90>
              <levelTitle120>Lenda</levelTitle120>
    </resources>
    AS2 Function:
    public static function getLanguage(tag:String):String
               if (languageObject[tag].data){
                        return slanguageObject.resources[tag].data;
                 return "Error";
    I can´t figure out how to work in as3 without the "data" parameter.
    I would like to call this as2 function, pass "levelTitle30" to  the parameter "tag", and get back by return of the function  the content of  "levelTitle30"  from xml tag.
    Regards,

    is your xml in an external file?
    if yes, (eg, resources.xml), you would use:
    var xml:XML
    var urlLoader:URLLoader=new URLLoader();
    urlLoader.addEventListener(Event.COMPLETE,completeF);
    urlLoader.load(new URLRequest("resources.xml"));
    function completeF(e:Event):void{
    xml=e.target.data;
    public static function getLanguage(tag:String):String{
    if(xml[tag]){
    return xml[tag];
    } else {
    return "Error";

  • Rollover Button + Drop-down menu = I need HELP!

    Hello,
    I'm fairly new to this whole Flash thing, but i seem to be
    doing really well so far. I have created a website that is in
    functional, working order - all of my buttons, actions, links, etc.
    are working, (which i'm quite proud of), but i'm now at a loss. I'm
    trying to create a rollover button/dropdown menu effect for two of
    my galleries, and although i've successfully created the pop-up
    effect of the menu by utilizing the "Over" and "Down" states inside
    of the button itself, when i render out the file and test it, the
    drop-down text flickers. Placing the mouse over the original
    button, everything seems to work fine, but as soon as i move the
    pointer down over the pop-up/drop-down text, it flickers! i've
    tried creating this is separate layers, i've tried increasing my
    Hit state, i've even tried a stop action, but nothing works, and
    i'm out of ideas. Help!?

    If you are hoping to make linkable buttons for the drop down
    portions, then they need to be separate buttons. If they are
    internal to the main button, then they are the main button and will
    only link where it links (if they don't totally throw it out of
    whack--I forget what one of my client's doing that resulted in, but
    the bottom line is... buttons inside buttons are bad news.).
    My suggestion: Google "AS2 drop down menu tutorials" and see
    what you can find. Googling is a great resource for finding things.
    There will likely be a number to choose from, so read thru them and
    see which ones match what you're trying to create and are easy to
    follow (some may not explain things well... everybody and their
    uncles apparently want to try to teach the world what they know,
    regardless of their ability to explain things (or lack thereof)).
    Some, if not many, will provide source files you can build
    from.

  • Converting AS2 to AS3?  Can it be done?

    Hi,
    First I'm not a Flash developer, I'm asking this question to help another group trouble shoot a problem. While I know this sounds dumb, I need an official answer to they can close this solution as some type of an option to solve this problem.
    I was given several swfs from an elearning course in hopes that they could someone be put into Captivate and wrapped for an LMS.  Apparently the Flash developer isn't able to code these files for the LMS (weird yes, but not my task in this problem)  In looking at the swfs I was given they all say they were created using AS2 and of course, Captivate only supports AS3. 
    Short of redoing the Flash files in AS3 is there any other way to take something written Flash using AS2 and output it to a swf that is AS3?
    Thanks for indulging me with your time.

    You cannot "Convert" an as2.swf to an as3.swf.
    You would need to have the original .fla file that created the as2.swf and manually export it to as3.
    The actionScript may need converting depending on several things. Hard to give an exact answer.
    An example of something needing conversion would be as something simple as a something referenced in a function may be doing something like...
    _parent.movieClipName._visible = true ;
    needs to be changed to
    parent.movieClipName.visible = true;
    because the underscore needed in certain name references was removed in AS3.
    There are too many things that could need changing to name them all.
    Another approach that "may" work as a creative workaround (hack) ...
    You could create a new as3.fla and export a new as3.swf that can actually
    load the original as2.swf file into the new as3.swf
    Then just load the new as3.swf into Captivate.
    Here is a link that will help and there is an example available to download
    http://www.kirupa.com/forum/showthread.php?295698-loading-an-AS2-swf-into-an-AS3-swf
    HTH

  • Convert AS2 swf to AS3 swf

    I have a swf (written in AS3) that loads other swfs into it.
    There are no issues when loading other AS3 swfs but there is a
    problem loading AS2 swfs. I get the following error:
    TypeError: Error #1034: Type Coercion failed: cannot convert
    flash.display::AVM1Movie@35d3a51 to flash.display.MovieClip.
    Is there any way to convert the AS2 swf into a AS3 swf so it
    will be compatible with my loader? I cannot go back and change the
    AS2 swfs because I do not have the fla files. Or is there any way
    to incorporate AS3 code that will load AS2 swfs properly? It seems
    hard to believe that Adobe would neglect this backwards
    compatibility issue. Thanks

    Hello Andrei1,
    Thanks for looking at my simple AS3 code. The AS2 swfs that
    I've been working (and having difficulties) with are components
    that I've purchased from places like www.flashden.com. Some are
    image transitions (such as "Dynamic Image Draw found at
    http://www.flashden.net/item/dynamic-image-draw/7532)
    while another is used to create a looped banner rotator animation
    (IMG_loop, a free d/l from www.afcomponents.net). I have another
    that uses an .xml file to configure a slideshow animation.
    You mention "needing to do more" if AS2 scripts inside its
    swf are to be run by the parent AS3 fla; what would these lines of
    code be?
    In researching my problem further I've since realized that
    most of these issues deal both with the version of AS used, as well
    as the version of the Flash player the fla is set up to animate
    for. In particular, the "Dynamic Image Draw" component requires
    that Flash Player 8 or 9 be used with AS2.
    Given that many of my purchased components are like this,
    I've since changed my main fla movie from AS3 back to AS2 and have
    learned that the scripting needed to call individual multiple swfs
    into it at various points in the timeline is MUCH simpler!!!!! One
    single, easily interpreted, line of code vs. 5 lines using
    variables and much more arcane (to me) function calls.
    I started my file with AS3 figuring that I'd be better off
    learning the new version of the language; much stress and
    forehead-rubbing later, I've seen just how much easier and
    understandable AS2 is to learn.
    I recognize that there are likely very strong arguments for
    the more structured coding approach used by AS3, but for someone
    like me who wants to generate customized Flash presentations with
    little fuss, I'm not qualified to make them.
    Perhaps this is a no brainer for those many flash gurus out
    there, but for me this tiny bit of wisdom has been hard fought for!
    That being said, is there an easy way to convert a swf file
    created using AS2 to something that AS3 can work/interact with?
    I've come across a free d/l product called actionscript bridge, but
    haven't been able to understand how to get it to work.

  • Help with rollover button

    Can someone please tell me how to make these rollover buttons
    to get URL?
    The sample flash file can be viewed here
    http://www.leadstar.com.au/header_page.html
    and I have attached the code as well.
    Many Thanks.

    Roddy-
    Thanks a bunch for trying to help me out. Here is where I got the code from.
    http://11mystics.com/2008/05/21/create-rounded-corner-rollover-buttons/
    They also have some suggestions in the comments on how to add links.
    Let me know what you think I should do. Keep the buttons i have or ditch it all together and use your code. What was nice about this is the images are already there for me and I just have to alter a few things to get what I want.
    Thanks

  • Active Content W/ Rollover Buttons Help

    I'm pretty new to web design, and I've been using dreamweaver
    to create webpages. My problem is I have some rollover buttons I
    made in fireworks and imported to dreamweaver as fireworks html,
    and in IE7 I get the "activate active content" error. I installed
    the dreamweaver 8.2 update, thinking that would fix it, but
    although I can see that the extension to automatically change the
    code so it'll work in IE in my preferences, the option to do so
    never comes up. I read somewhere that it doesn't support image
    tags, which I think mine are. So my question is: is there an easy
    fix for this other than the update, or at least a fix for a
    beginner who doesn't know javascript? I've googled to my heart's
    content, and everything I've come across has been over my head.
    Please someone help me with this. I can also post the code if
    that'll help, just let me know. Thanks in advance!
    Hiram

    I'm not quite sure what the actual issue is here but several
    things seem to
    be confused.
    My problem is I have some rollover buttons I made in
    fireworks and
    > imported to dreamweaver as fireworks html, and in IE7 I
    get the "activate
    > active content" error.
    Buttons made in Fireworks and activated with Javascript are
    not related to
    the "activate active content" issue.
    Do you have some Flash or other active content on your page
    which is
    triggering the "click to activate" which you're confusing
    with your
    Fireworks buttons?
    I installed the dreamweaver 8.2 update, thinking that
    > would fix it, but although I can see that the extension
    to automatically
    > change
    > the code so it'll work in IE in my preferences, the
    option to do so never
    > comes
    > up. I read somewhere that it doesn't support image tags,
    which I think
    > mine
    > are.
    I don't quite follow this part.
    So my question is: is there an easy fix for this other than
    the update, or
    > at least a fix for a beginner who doesn't know
    javascript?
    Web content driven by Javascript is not active content so I'm
    not sure what
    the issue is or what needs fixing.
    Can you post a link to your page?
    Regards
    John Waller

  • I need help importing navigation bars and rollover buttons from fireworks?

    I need help importing navigation bars and rollover buttons from fireworks, drop down menus and rollover states won't work!
    Thanks

    In my experience, the code created by graphics apps is less than satisfactory. And image based menus are very awkward for several reasons. 
    #1 If you decide to change your menu later, you must go back to your graphics app and re-craft the whole thing.  After 2-3 times of this, it gets old in a hurry.
    #2 Image based menus cannot be "seen" by search engines, screen readers and language translators.
    #3 CSS styled text menus are better for your site's visibility, accessibility and they are a snap to edit in Dreamweaver.
    That said, if you're still married to image based menus, use Fireworks to create images only. Use Dreamweaver's Image Rollover Behaviors to create your rollover scripts.
    Nancy O.

  • Port AS2 datagrid filter to AS3, help

    I am trying to port an AS2 filter script to AS3. I was
    wondering if someone could help with this. Still very new to AS3
    and only know the basics. Thanks!!!!
    [Bindable]
    public var filterBy:Array = ["movie_id","upc","title"];
    private function actionFilter():void {
    if(_global.arrMembers == undefined) _global.arrMembers =
    data.dataProvider.slice(0);
    var arrMembers = _global.arrMembers;
    var arrDisplay:Array = [];
    var fortext = forInput.text.toLowerCase();
    var selected = column.selectedItem.data;
    for(var i = 0; i < arrMembers.length; i++)
    if(arrMembers
    [selected].substr(0,fortext.length).toLowerCase() == fortext)
    arrDisplay.push(arrMembers);
    data.dataProvider = arrDisplay;
    New data form elements:
    <mx:Label x="10" y="25" text="Filter by:"/>
    <mx:TextInput x="72" y="23" change="actionFilter()"
    id="forInput"/>
    <mx:Label x="240" y="25" text="in:"/>
    <mx:ComboBox x="268" y="23" id="column"
    dataProvider="{filterBy}" change="forInput.text=''"/>
    <mx:DataGrid dataProvider="{dvds}" name="data" x="10"
    y="51" width="669" height="218">
    <mx:columns>
    <mx:DataGridColumn headerText="" dataField="active"
    width="75"/>
    <mx:DataGridColumn headerText="Movie ID"
    dataField="movie_id" width="100"/>
    <mx:DataGridColumn headerText="Title"
    dataField="title"/>
    </mx:columns>
    </mx:DataGrid>

    You should use a Collection, such as ArrayCollection as the
    dataProvider to the DataGrid. Then you can use the Collection's
    filterFunction to hide and show values.
    [Bindable] public var dvds:ArrayCollection = new
    ArrayCollection();
    // place all of the data into this collection.
    function filterBy( item:Object ) : Boolean
    // determine if the item is something you want to show and
    return true, otherwise return false
    // associate the function with the Collection:
    dvds.filterFunction = filterBy;
    // now tell the Collection to refresh itself:
    dvds.refresh();
    Check the Flex 2 documentation on ICollectionView to see how
    it works.

  • Help with trying to make a rollover button

    I'm trying to make a roll over button using this tutorial 
    http://www.pegaweb.com/tutorials/rollover-buttons/rollover-buttons.htm
    and it doesn't seem to do what the tutorial says it will do 2-3 steps in.
    The part where it says...
    Quote:
    - In the Channels window, Ctrl+Click the "Alpha" layer, to select its outline.
    - Go back to the Layers window, and create a new layer.
    - Choose the Gradient Tool. (Remember that it might be hidden under the Paint Bucket Tool.) Apply a gradient from the bottom of the image to the top.
    Mine does not create a gradient that looks like the image they have presented. 
    I just have the entire wood look, and then the outline of my button is just a little darker. I don't get the white background with the gradient applied to it in the button space.
    Would someone mind following the steps at this link and letting me know if it is missing something? It only took me 2 minutes to get to this point before I couldn't figure out why it wasn't doing what it was supposed to.

    When you create the button look in the upper left hand corner of the screen and see what type of object you are creating. Placing the mouse of the the three buttons will give you a tool tip of what they are.
    The one you want is the one on the right as it will create a pixel based rectangle. Make sure you put this rectangle on its own layer, then you can move it or delete it if necessary. Lock the transparency7 button at the top of the layers panel. The will make sure when you create the gradient it will put it inside the button you made and not outside of it.
    If you are seeing just a border I am thinking the middle button in the top tool bar is selected which creates a path. It is possible to fill that path and then create the gradient but you have to make sure that the lock transparency is not checked. Open the paths panel and at the bottom of the panel is a fill button. This creates a pixel based object which you can then create a transparency using the steps above.

  • A Rollover Button

    I have made a bitmap image into a rollover button - reason - so that when the mouse rolls over the hit area of the button/image/thumbnail - it becomes larger on the stage and when the mouse moves outside the paramaters of the larger picture it goes back down to the original button/image/thumbnail size.
    That works fine.
    However . . . there is always a however. When I implemented the same functions to the other thumbnails on the stage - if I rollover the second thumbnail  - the other thumbnails show up (through) on top of that enlarged image.
    I thought it was an 'order of layer problem' but that didn't fix it no matter how much I switched the layers around.
    I guess, like always, I'm missing one simple step.
    Can you help?
    Forrest

    Yes, I am using AS3 and thanks - I'll try that!
    Forrest
    Date: Sat, 1 Aug 2009 17:38:33 -0600
    From: [email protected]
    To: [email protected]
    Subject: A Rollover Button
    In looking back I can't see what would have led me to think you were using AS2 instead of AS3... maybe it was just the term 'rollover'.  If you are using AS3 then you can look into either of the two things you found, or look into setChildIndex()...  setChildIndex may be the easier to work with because you can set it to the highest child depth ((numChildren-1) and not have to chase specific instances.  If you look up setChildIndex in the help docs you'll see it discusses exactly what you are trying to do (I think).
    >

  • Interactive PDF: Rollover button state no longer working properly  ???

    Okay, what's going on with the Interactive PDFs lately?
    Now all my rollover buttons no longer work properly.  If I have a button that's simply a black arrow, and in the rollover state it's red.
    No matter if I'm checking it out in the latest Acrobat Reader or Pro X, the rollover only works for a brief second..then reverts back to black - the original state.
    This, combined with my latest problem with the show/hide button state, is really becoming a frustrating hassle:
    http://forums.adobe.com/message/3933451#3933451
    Any help would be appreciated.
    I'm running 7.5.1.
    Is this an Acrobat issue?  The button function here seems to work in the InDesign preview mode.

    Hhmmm...I'm actually having this problem even with Adobe Acrobat 9 Professional. Does this make sense?
    Again, I'm creating the document in InDesign CS5 and then building the PDF with  Adobe Acrobat 9 Professional, and the rollover effects don't work in Adobe Acrobat 9, Adobe Reader 9, and Adobe Reader 10.
    I'm a bit new to this process of software not providing its basic touted functionality. Is this the kind of thing where support for this functionality will vary from product to product? I had the same issue with PDF Portfolio -- where all its functioanlity was not supported in Adobe Reader X. If so, perhaps I should simply stick with the classic features of PDFs. Or can I trust, reliability, that going forward, this rollover effect will be supported in all Adobe Reader versions? This is quite an important issue for me as I provide all the documentation for my employer, including customer facing documentation -- and I simply don't know. Any recommendations?

Maybe you are looking for

  • How to do Role and Authorization check in report program

    Hi Friends, Please provide me your guidance on how to add or give coding to check role authorisation of a particular field, input from selection screen. My requirement is, If the Fund center filed in my select option parameter has been filled, then I

  • C4580 will only print 2 inches of a page in Excel 2007, Vista 64-bit OS

    My C4580 will only print 2 inches of a pages, (the left 2 inches) from Excel & Microsoft works. I've tried updating driver and reinstalling.  It work fine for my other computer which has Windows XP.  Please help.

  • Can someone explain why the Secure Easy Setup light on a...

    Can someone explain why the Secure Easy Setup light on a WRT54G would change from a steady green to steady orange after firmware upgrade?  Everything is connecting properly, and I see no change in performance of network other than light change descri

  • Issues launching Motion

    I keep getting this message...The application Motion quit unexpectedly. The problem may have been caused by the Ozone plug-in. What does that mean? Any insight would be helpful. Also certain applications stall when being lauched. They behave as thoug

  • Unable to Download Apps - Says to login to Itunes on my computer

    I login to my computer, and still can't download the game. It's pixnRush. I've tried everything. Logged out, logged in again on itunes and on my ipad, still nothing. any help appreciated.