Tween fade-in problem

Hi-
I am trying to get all sections (brought in  using UILoaders) of my website to fade in when clicked on. I started out  with making the main image load in when the user navigates to the site  and that works. However, when I try to apply it to the other sections,  it fades it but it stays faded part way.. it doesn't come to 100%  opacity. I can't figure out what the problem is. I'm posting my code  here. If someone can tell me what I'm doing wrong, and show me how to  fix it, that would be really helpful! Note: The part that isn't fading  in properly is "sectionLoader"; the "main_mc" part is the initial home  image and that works fine but when navigating back to home from another  page (using nav buttons), the same thing happens with it not loading  properly:
//Tween info
import fl.transitions.Tween;
import fl.transitions.easing.*;
import flash.events.Event;
//Main image fade in
content_mc.main_mc.addEventListener(Event.COMPLETE, fadeIn);
sectionLoader.addEventListener(Event.COMPLETE, fadeIn);
function fadeIn(e:Event):void
     var myAlphaTween:Tween = new Tween(content_mc.main_mc,"alpha",Regular.easeOut,0,1,1,true);
     var myAlphaTween2:Tween = new Tween(sectionLoader,"alpha",Regular.easeOut,0,1,1,true);
//LISTEN FOR CLICK OF BUTTONS
function moveContent(theXPosition:Number, theYPosition:Number, theSection:String):void
     trace("X: "+theXPosition);
     trace("Y: "+theYPosition);
     var myxTween:Tween = new Tween(content_mc,"x",Regular.easeOut,content_mc.x,theXPosition,1,true);
     var myyTween:Tween = new Tween(content_mc,"y",Regular.easeOut,content_mc.y,theYPosition,1,true);
     sectionLoader.source = theSection;
home_btn.addEventListener(MouseEvent.CLICK, homeClick);
function homeClick(e:MouseEvent):void
     trace("homeClick");
     moveContent(-2227.55,-706.95,null);
     nav_lines.x = 162.80;
     nav_lines.y = 151.35;
abt_btn.addEventListener(MouseEvent.CLICK, abtClick);
function abtClick(e:MouseEvent):void
     trace("abtClick");
     moveContent(440.70,-2652.90,"about.swf");
     nav_lines.x = 162.80;
     nav_lines.y = 177.35;
port_btn.addEventListener(MouseEvent.CLICK, portClick);
function portClick(e:MouseEvent):void
     trace("portClick");
     moveContent(440.70,735.10,"portfolio.swf");
     nav_lines.x = 162.80;
     nav_lines.y = 204.35;
res_btn.addEventListener(MouseEvent.CLICK, resClick);
function resClick(e:MouseEvent):void
     trace("resClick");
     moveContent(440.70,-358.60,"resume.swf");
     nav_lines.x = 162.80;
     nav_lines.y = 229.35;
con_btn.addEventListener(MouseEvent.CLICK, conClick);
function conClick(e:MouseEvent):void
     trace("conClick");
     moveContent(436.70,-1480.15,"contact.swf");
     nav_lines.x = 162.80;
     nav_lines.y = 256.35;
Any response would be greatly appreciated. Thanks!!
*Pooja*

use:
//Tween info
import fl.transitions.Tween;
import fl.transitions.easing.*;
import flash.events.Event;
//Main image fade in
content_mc.main_mc.addEventListener(Event.COMPLETE, fadeIn);
sectionLoader.addEventListener(Event.COMPLETE, fadeIn);
var myAlphaTween:Tween;
var myAlphaTween2:Tween;
function fadeIn(e:Event):void
     myAlphaTween = new Tween(content_mc.main_mc,"alpha",Regular.easeOut,0,1,1,true);
     myAlphaTween2 = new Tween(sectionLoader,"alpha",Regular.easeOut,0,1,1,true);
//LISTEN FOR CLICK OF BUTTONS
var myxTween:Tween;
var myyTween:Tween;
function moveContent(theXPosition:Number, theYPosition:Number, theSection:String):void
     trace("X: "+theXPosition);
     trace("Y: "+theYPosition);
     myxTween = new Tween(content_mc,"x",Regular.easeOut,content_mc.x,theXPosition,1,true);
     myyTween = new Tween(content_mc,"y",Regular.easeOut,content_mc.y,theYPosition,1,true);
     sectionLoader.source = theSection;
home_btn.addEventListener(MouseEvent.CLICK, homeClick);
function homeClick(e:MouseEvent):void
     trace("homeClick");
     moveContent(-2227.55,-706.95,null);
     nav_lines.x = 162.80;
     nav_lines.y = 151.35;
abt_btn.addEventListener(MouseEvent.CLICK, abtClick);
function abtClick(e:MouseEvent):void
     trace("abtClick");
     moveContent(440.70,-2652.90,"about.swf");
     nav_lines.x = 162.80;
     nav_lines.y = 177.35;
port_btn.addEventListener(MouseEvent.CLICK, portClick);
function portClick(e:MouseEvent):void
     trace("portClick");
     moveContent(440.70,735.10,"portfolio.swf");
     nav_lines.x = 162.80;
     nav_lines.y = 204.35;
res_btn.addEventListener(MouseEvent.CLICK, resClick);
function resClick(e:MouseEvent):void
     trace("resClick");
     moveContent(440.70,-358.60,"resume.swf");
     nav_lines.x = 162.80;
     nav_lines.y = 229.35;
con_btn.addEventListener(MouseEvent.CLICK, conClick);
function conClick(e:MouseEvent):void
     trace("conClick");
     moveContent(436.70,-1480.15,"contact.swf");
     nav_lines.x = 162.80;
     nav_lines.y = 256.35;

Similar Messages

  • Fade Effect problem in IE

    hi everyone,
    I'm having problems with a fade out/in transition in IE8.  The area I am changing has a white background (actually there are a few nested divs that all have a white background), and the fade effect triggers on a click in the navigation area and fades everything into the body background color (dark brown) and back.  The effect works fine in firefox and safari.  Anyone know how to fix this problem? I want the content that is fading to maintain the white background and not fade to brown and back.  you can view the page here to see whats going on.
    http://www.prometheusbusiness.com/testarea/NoelRose/home.html
    also, (and this is a really small issue, so I'm not too concerned if I can't fix it) after the page loads, the first fade out transition doesnt seem to fire, it just disappears, and the new page fades in.  after the first time, everything works as I expect, but it would be great if every click worked exactly the same every time.
    any help is appreciated, thanks.
    -Dan

    hi everyone,
    I'm having problems with a fade out/in transition in IE8.  The area I am changing has a white background (actually there are a few nested divs that all have a white background), and the fade effect triggers on a click in the navigation area and fades everything into the body background color (dark brown) and back.  The effect works fine in firefox and safari.  Anyone know how to fix this problem? I want the content that is fading to maintain the white background and not fade to brown and back.  you can view the page here to see whats going on.
    http://www.prometheusbusiness.com/testarea/NoelRose/home.html
    also, (and this is a really small issue, so I'm not too concerned if I can't fix it) after the page loads, the first fade out transition doesnt seem to fire, it just disappears, and the new page fades in.  after the first time, everything works as I expect, but it would be great if every click worked exactly the same every time.
    any help is appreciated, thanks.
    -Dan

  • On Mouse Text Appear/Fade IE Problem

    Hello Dreamweaver Sages,
    I'm having an odd problem I was hoping someone might be able to help me with. First, I am using CS6 and the latest of all browsers.
    I have applied the same Spry Appear/Fade effect to a images having <a href> links and text with <a href> links created directly from the behavior panels. All coding has been properly located/placed.
    Here is the odd thing:
    1) The fade effect works pefectly on images and linked text on my Mac, on all browsers.
    BUT...
    2) On a PC, the fade effect works fine on images, but does not work at all on the linked text in any later version of IE.
    I have tried making a few adjustments but have had no luck getting it to work. The only thing I can think of is  a conflict with the "text decoration" designated as "none" in my overall defintition for the text involved, but don't think it's the case.
    Anyone else heard of this? Is it just me or is there a work-around to an established issue?
    Thanks!
    Matt

    I have a webpage containing a textbox. Some events are bound to the textbox on key events, hence the UI changes as the user types on the textbox.
    With IE10 a clear ('X') button appears on the textbox which allows users to clear the textbox.
    Is there any event in JavaScript through which I can capture the clearing of the textbox with the clear ('X') button?
    I also tried using change event of the textbox, but the problem with change event is that it gets fired only when the user focuses out of the textbox (see this fiddle
    http://jsfiddle.net/MDMV5/   for repro) , which I don't want.
    Reiterating the question: Is there any event in JavaScript through which I can capture the clearing of the textbox with the clear ('X') button?
    If the user cuts/pastes with the mouse, does your UI behave as you would like?
    I can accept events not occurring until the user moves to another control, but there seems to be a bug with this: if the user clicks the X button then clicks on a dropdown list control, the onchange event is not fired (found on Win 7 x64 + IE10 x64). 
    So I've had to use the input::-ms-clear hack to disable this feature :(

  • Fade Tool Problem

    Yet another confusion, sorry for prevailing upon you again AOS but I know you will have the answer. In the same project I had the loop problem, I am trying to use a fade on one region. The region is an audio track (live guitar) flattened and flex is off. I can make the fade graphic with the fade tool or in the inspector but I can't hear the fade. It is a simple long fade out and I have used this many times in the past. If I take all effects off I can hear the fade working so I guess it is the effects that are triggering after the fade. So my question is is there a simple way to use the fade tool and include the effects on the strip or do I have to use automation to get my fade?

    Region fades and automation fades are slightly different animals. Both have their ups and downs. I have had trouble with region fades, too. If you have to use a region fade, here are some a few workarounds I have used when dealing with buggy region fades:
    Use the delete All Fade Files command under the Mix Menu in Logic X. Close and reopen the song. This will force Logic to re-render the fades.
    Drag the fade edge of the region slightly to change the region size.
    Click to select the region. then manually enter the fade in the Region Inspector (Main Window, press I to show inspector, then click the disclosure triangle to show the Region Inspector, then click the More disclosure triangle.) You can enter the fade time in milliseconds (1000 ms = 1 sec). Yes, it's a lot of trouble to do it this way but you can shift+click multiple regions and apply a fade to all of them with this method; useful for multi-track/drum editing.
    Occasionally. I have noticed that fades "disappear" from the regions. The inspector lets me check to see if they're still there and it's a display error. Save, close, re-open will usually fix it.

  • Tween fade animation with buttons

    Hi, can anyone help me!
    I have four movie clips with instance names of "purple_ob", "green_ob", "orange_ob" and "blue_ob"
    and four buttons "purple_but", "green_but", "orange_but" and "blue_but"
    I want to have the movie clips automatically fade from one to another continually with a 5 second pause inbetween, but then if the user clicks one of the four buttons it will fade the relevant movieclip in. Then if nothing else is pressed the fading will carry on working through the four images in a loop.
    So far I have the movie clips fading on a button press but how do I implement the automatic fading from one MC to another?
    I've added the code below into the first frame of my scene
    //My actionscript 2.0 code
    import mx.transitions.Tween;
    import mx.transitions.easing;
    purple_but.onPress = function() {
    purple_ob.alpha = 0;
    purple_ob._x = 0;
    purple_ob._y = 0;
    var alphaTween:Tween = new Tween(currentPage, "_alpha", Strong.easeIn, 100, 0, 15, false);
    var alphaTween2:Tween = new Tween(purple_ob, "_alpha", Strong.easeIn, 0, 100, 15, false);
    var currentPage:String = purple_ob;
    purple_ob.swapDepths(thedepth += 1);
    green_but.onPress = function() {
    green_ob.alpha = 0;
    green_ob._x = 0;
    green_ob._y = 0;
    var alphaTween:Tween = new Tween(currentPage, "_alpha", Strong.easeIn, 100, 0, 15, false);
    var alphaTween2:Tween = new Tween(green_ob, "_alpha", Strong.easeIn, 0, 100, 15, false);
    var currentPage:String = green_ob;
    green_ob.swapDepths(thedepth += 1);
    orange_but.onPress = function() {
    orange_ob.alpha = 0;
    orange_ob._x = 0;
    orange_ob._y = 0;
    var alphaTween:Tween = new Tween(currentPage, "_alpha", Strong.easeIn, 100, 0, 15, false);
    var alphaTween2:Tween = new Tween(orange_ob, "_alpha", Strong.easeIn, 0, 100, 15, false);
    var currentPage:String = orange_ob;
    orange_ob.swapDepths(thedepth += 1);
    blue_but.onPress = function() {
    blue_ob.alpha = 0;
    blue_ob._x = 0;
    blue_ob._y = 0;
    var alphaTween:Tween = new Tween(currentPage, "_alpha", Strong.easeIn, 100, 0, 15, false);
    var alphaTween2:Tween = new Tween(blue_ob, "_alpha", Strong.easeIn, 0, 100, 15, false);
    var currentPage:String = blue_ob;
    blue_ob.swapDepths(thedepth += 1);

    Perfect!
    I removed the 'swapdepth' and it works perfectly now.
    thank you so much for your help, Ned!!!
    Below is the final code
    import mx.transitions.Tween;
    import mx.transitions.easing;
    var ob_array = new Array(purple_ob, green_ob, orange_ob, blue_ob);
    var ob_count = 0;
    var currentPage = purple_ob;
    var intervalID = setInterval(fadeOBs, 3000); // adjust the 3000 (3 secs) as desired
    green_ob._alpha = 0;
    orange_ob._alpha = 0;
    blue_ob._alpha = 0;
    purple_ob._x = 0;
    purple_ob._y = 0;
    green_ob._x = 0;
    green_ob._y = 0;
    orange_ob._x = 0;
    orange_ob._y = 0;
    blue_ob._x = 0;
    blue_ob._y = 0;
    function fadeOBs(){
          clearInterval(intervalID);
          intervalID = setInterval(fadeOBs, 3000);
          ob_count += 1;
          if(ob_count >= ob_array.length){
                ob_count = 0;
          var alphaTween:Tween = new Tween(currentPage, "_alpha", Strong.easeIn, 100, 0, 15, false);
          var alphaTween2:Tween = new Tween(ob_array[ob_count], "_alpha", Strong.easeIn, 0, 100, 15, false);
          currentPage = ob_array[ob_count];
    //Uncomment the line below if you want to increase the MC's depth
          //ob_array[ob_count].swapDepths(thedepth += 1);
    purple_but.onPress = function() {
          ob_count = -1; // one less than this
          fadeOBs();
    green_but.onPress = function() {
          ob_count = 0; // one less than this
          fadeOBs();
    orange_but.onPress = function() {
          ob_count = 1; // one less than this
          fadeOBs();
    blue_but.onPress = function() {
          ob_count = 2; // one less than this
          fadeOBs();

  • Fade Tool problems! help please!!

    I've noticed that when I'm editing audio files and cut out silences, I'm left with a loud clicking noise. So to solve this problem, I used the fade tool (esc 0) and faded out the ending of every single region which took a ridiculous amount of time to do.
    This solved the problem, but I'm wondering is there a way to have all recorded audio automatically have a fade at the end of the region? I know that in other programs such as Reaper this is a function that can be turned on or off but is there a way to do this in logic to save time?
    please help! thanks!

    This is also where you turn normal fades into speed up/slow down fades (in L9) - click-hold on the word 'fade', and in general is a good thing to get in the habit of looking at.
    For instance: Say you have drag mode set to X-fade, and you are dragging regions around and enjoying some automatic crossfading action. Great. Super. Now you decide this one particular region is not going to cross fade between two regions but is gonna be all by itself somewhere else. You still want to apply fades to it, but now they don't work with the fade tool. Look at the Inspector and you'll see that region has EqPower (or the abbreviation). So you have to change it to "out" and you're good to go.

  • Cross fade tool problems

    I am wondering if anyone has had a problem with cross fades in logic pro, I am dealing with about 15 or so audio tracks, I have been mixing them for awhile using fades and cross fades and everything has been sounding and working great. all of a sudden no on some of the projects all the fades dont work, and at the point of the fade it brings in a messed up sound from another instrument, basically they all need to be redone, when I do redraw the fad it works again, but I am not looking forward to redrawing all the fades.
    I have a feeling it may be my disk space getting packed up, but I still have about 17GB, thats the only thing I can think of that changed with my computer in the past few months.
    Has anyone had this issue? any fixes for it?

    It's not uncommon for fade files to become corrupted.
    A couple of quick options when this happens...
    Go to the songs folder, and locate the Fade file folder, and trash it. When you hit "play" again, the files will re-draw.
    Or "Save As" under a slightly different title... like "Song Title 01, Song Title 02", etc... and when you hit play, the fade files will update and re-draw.
    See if either of those options get things back on track, without you having to draw them all over again.

  • Editing audio, Fade Out Problems!

    Hi I've imported an mp3 into iMovie to run alongside a movie. How do I remove the fade out all together so that it runs the whole track? I don't want to fade the track out, have already gone into audio editing panel. Any ideas?

    citybloc,
    I have not done any audio editing in iMovie 08, only in iMovie HD. In the 08 application I made my audio edits in GarageBand. You have pretty good control of it there.

  • Fade Tool Problems... Grrr

    I have recorded my guitar, added effects and I want to use the fade tool but when I add the fade, it has no effect on the audio. Does any one know what the story is?

    I never said GB mode was an issue, that was just an aside.
    The only time fades do not work on audio regions is if a Flex mode is enabled on the track. You'd have to turn on Flex View to check that.

  • Appear/fade effect problems

    I'm working on a portfolio website: www.carolinedelson.com
    The index page image appears how i want it to, but when you click s/s 2013 and click one of the gifs, the images flash on the screen then display the effect. i don't know how to change this to a smooth fade in. I also work in the display mode of dreamweaver cs6 a lot more than directly with the code, so any simple fixes would be really appreciated!

    On Thu, 23 Aug 2007 17:07:25 +0100, David Powers
    <[email protected]>
    wrote:
    >[email protected] wrote:
    >> <img src="images/places_03.jpg" alt=""
    name="main" width="642" height="508"
    >> id="main" onload="MM_effectAppearFade(this, 1000, 0,
    100, false)">
    >
    >You can't use an onload event on an image. It works only
    on the <body>
    >tag. Remove the Fade effect from the image, then select
    the body tag in
    >the Tag selector at the bottom of the Document window.
    Apply the Fade
    >effect to the body, and select "main" as the Target
    Element.
    David - I'm sure it's in a book somewhere - but I can't find
    it.
    I already have the Modify Template Make Attribute Editable
    <body id="default" >
    use this to apply css to specific pages
    Can you add a second or even third so that in addition you
    can use
    onload javascripts.
    I've rather fought shy of Javascript - preferring to use php,
    but I
    now think that was a mistake - and just use JS to provide
    extra
    features whilst allowing for people that have it disabled
    Or maybe I should just ditch Templates altogether and use
    100% ssi's
    ~Malcolm N....
    ~

  • Two fader movement problem

    Hi,
    New to Logic Express. I'm using it with a Mackie Universal Control Pro and I cannot get the 1st fader to move on the controller without the third fader also moving. Then in Logic the third channel is affected and never the first.
    How do I get this to stop? I do not have this issue in Soundtrack Pro 2. The control works properly.
    Thanks,
    David Perry

    Hi.
    There are Three possibilities:
    1. Look at your channel output...maybe your audio track 1 is feeding MIDI track three as well (strange things in Environment??)
    Hook up a MIDI monitor object to your track 1, and look at the MIDI data coming out of that, then also look at what your transport MIDI data is telling you...is there only 1 channel of data when you move the Logic fader? or two? (1 and 3, or just ch1 of MIDI at the output???)
    If this is not the case, and you KNOW you are only ouputting MIDI on ch.1 for the audio track 1 fader, then you need to look at the MIDI interface. What brand is it? Motu, Unitor? Sometimes the internal setups for these machines can get corrupted, so they patch themselves internally from ch1 to other channels/ ports. I used to see this most often in Motu MTP/AV units. Reset the unit. And then turn it back on. Does this solve it?
    If NOT, I would then:
    1. trash your controller setup (go to the controller setup, and delete the MCU you see there. DON'T RESCAN YET!!! Quit Logic. then:
    2. trash your preferences, and then
    3. restart computer, to be safe.
    4.start up logic, and then re-scan for your MCU.
    Did this fix it? If not let me know so I can think some more...
    Cheers

  • Fade out problems

    I added a fade out to a slide by going into the timeline view, and double clicking on the "Captured Animation" track, and then selecting fade out on the options tab.
    When I preview it in the timeline, it looks fine.
    However, when I export it, I can see the marking from when I must have moved the mouse, as it fades out. -it is very choppy.
    Is there any way to make a clean fade out on a slide?
    Thanks!!

    Hi there
    You might layer in a Highlight Box that is configured to "Fade in only". It would then gradually fade in and eventually obscure what it covers. You would configure it for 0% transparency.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Sound fade out problems

    Dear Motion Users,
    I am creating a short animation and brought in a sond clip that I keyframed to fade out. It works fine in Motion, but when exported as a Quicktime .mov file the sound doesn't fade and stops abruptly when the clip ends.
    I am using motion 2, on a G5 with 2.5GB RAM and 800GB raid.
    Any thoughts?
    I have tried bot of my partitions one has Panther the other has Tiger, to no avail
    G5 dual 2Ghz   Mac OS X (10.3.9)  

    Anybody have any idea as to when there might be a fix to this? I've been writing all these loops for network bumpers that I have created in Motion and it's kind of silly that a simple fade out function in Motion doesn't work. For now I am doing it directly in Logic, but it certainly would be nice if the function in Motion actually functioned.

  • Problem: The fade in button/tab refuses to show up

    I have a four minute slideshow using two different songs. When the second half with the new song starts up, it is too abruptly loud and I want to do a fade In. Problem is, whereas the grey fade out button appears for at the end of the last clip with the ending of the first song, the grey fade in button refuses to appear at the beginning of the second half with the second song.
    I had the same problem with trying to increase the volume of the second half with the new song. The volume adjust handles refuse to show up on the second half of the slideshow with the new song.
    Do you have a fix for this?
    -L

    Hello Matthew,
    Related to thread, our custom viewer app has a similar problem that only the latest free issue (published via folio builder website) is appeared, and 3 retail issues (published via folio builder) and other 3 retail issues (published via pre-release content bundler) are disappeared. And purchased 2 retail issues (published via prerelease content bundler) are appeared when logged in with the apple ID used for those 2 retail issued. Please look at my question on the forum 'http://forums.adobe.com/thread/898282?tstart=0'
    I've emailed (through the private message tool here) you our contact information including our Gold support contract number.
    Please help us to solve this urgent issue, still affecting our magazine app.
    Thank you
    Yoonho Choi
    LPMag Korea _ Ahn-graphics Ltd.
    Message was edited by: [email protected]

  • Layer problem with graphics

    I have a layer where on one frame I have 3 dynamic text boxes
    which I convert to one graphic. These are used to display a value
    set through actionscript whilst a motion tween fades it in and out.
    I have called the graphic set1 with names on each of the
    inidividual textboxes. One I have finished with this graphic I make
    a blank keyframe later on and create another three dynamic text
    boxes on the same layer (different frame) and call them different
    name. The problem is when I go to set all three to one graphic like
    before and called it "set2" or anything.. it keeps reverting to
    "set1" and displaying them again in the new frame.... any ideas
    why?

    You're welcome, Ron. And BTW, I stated:
    "Or else, find the other frame object that is causing the text wrap. Does it need to be on? If not, cmd/ctrl B and turn the switch off."
    But I meant to say ... If not, turn the object's text wrap off using the Text Wrap panel.
    You probably figured that out, tho!
    Mike Witherell not in Florida

Maybe you are looking for

  • Limitation of Key Fields in DSO

    Hi, can anybody tell me the max number of key fields that a DSO can have? Thanks, Manasa.

  • Question on "How to Handle Inv management Scenarios in BW" docuemnt.

    Hi all, I read the document "How to Handle inventory management scenarios in BW" and I did not understood what a snapshot scenario is?  Can anyone tell me what is the difference between snapshop and non-cumulative scenario's. thanks, Sabrina.

  • Browser Hijacks on Safari and Firefox

    For the last 10 days I've been getting browser hijacks when using Safari, taking me to sites such as www.vcigar.com, or getting notices that 'Safari is unable to open the page due to too many diverts'. I tried downloading Firefox, but the same thing

  • Apple Movie Trailers Gone In ML?

    Hello Folks, I recenlty upgraded from SL to ML. In SL I could press/select command and esc and get an application with Apple Movie trailers to watch. I  can no longer do this key command in ML. Was this capability removed from ML, or is it still ther

  • Im Upset, my buttons arent working like the Ringer,Lock,And Volume I need help fast.

    my mom tried to get the lock button to work and she searched we have to push on the side and it didnt work, ive done the sencitivity thing and i dont feel like doing it anymore,also my headphone slot doesnt work.