Simple Stop and Play

I have been trying to create a very simple slideshow for a
friends site I done for him to advertise his
business. The photos,
I suggested would be better if they were done as a slideshow and
the idea was to have each picture fade in, stop, click to play,
fade out fade in next, stop, etc etc.
I have tried every tutorial I can find and done most of the
things in the Visual Quick Start Guide Macromedia Flash 8 and still
I cannot get it to work. All I really want is to stop, click and
play at each point along the timeline at regular points.
Can anyone please help me with this. The .fla I am working on
can be found
here
Any help will be greatly appreciated as I am running out of
hair left to pull out.
Nig

I have made changes to your file. It now works as you want.
Email me so I can send it to you.
chosenson Please reference
this post in the subject line.
Thanks

Similar Messages

  • How do I get my music to quit scrolling and stop and play a song?

    How do I get my music to quit scrolling and stop and play a song?

    Basically it means that the files are not on the location where iTunes is expecting to be.
    What you can do is remove those songs from you playlist, then try to locate them on your harddisk again, and then in iTunes you can choose file > Add folder to Library... , specify the location where you found them and they will be added again.

  • Stop and play buttons...

    How would I go about adding stop and play buttons to a slideshow?
    stop1.addEventListener(MouseEvent.CLICK, stop1);
    play1.addEventListener(MouseEvent.CLICK, play1);
    function stop1(event:MouseEvent){
    if(this.currentFrame == 1)
    { gotoAndStop(this.totalFrames);
    function play1(event:MouseEvent){
    if(this.currentFrame == 1)
    { gotoAndStop(this.totalFrames);

    well idk if the code is even right i need help?  The way the slide show is working is i have it on the timeline....  With this code it doesnt play automatically and when i push play it goes through them in like 2 seconds and you can't see anything?
    stop1.addEventListener(MouseEvent.CLICK, stopSlide);
    play1.addEventListener(MouseEvent.CLICK, playSlide);
    function stopSlide(event:MouseEvent):void {
    stop();
    function playSlide(event:MouseEvent):void {
    play();

  • Podcasts stops and plays a previous one

    In my itunes (latest update), my podcasts randomly stop and played the previous episode. This patterns seems random as well. I don't download podcasts, but stream them (right click, play). However, when I download the podcast and play it, its fine. But I would rather stream it.
    Also, my internet is fine. I am on blazing fast university internet.
    Does anyone have a fix for this?

    delete off any apps that are asking for the wrong apple id and download/sync them over from the correct one

  • HT1725 I downloaded an album and all of the tracks will play about 3/4 of the song then stop and play the next song.  I went to itunes store and it said the songs fully downloaded. So how do I get the full song into my library?

    I downloaded an album and all of the tracks will play about 3/4 of the song then stop and play the next song.  I went to itunes store and it said the songs fully downloaded. So how do I get the full song into my library?

    If your country's iTunes Store allows you to redownload purchased tracks, I'd delete your current copies of the tracks and try redownloading fresh copies. For instructions, see the following document:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Otherwise, I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the items that are not playing properly. If you can't see "Report a Problem" next to the items, click the "Report a problem" button. Now click the "Report a Problem" links next to the items.

  • Stop and Play All Child MovieClips in Flash with Actionscript 3.0

    I am stuck with the ActionScript here. I have a very complex animated flash movie for eLearning. These contain around 10 to 15 frames. In each frame I am having multiple movie clip symbols. The animation has been created using a blend of scripting and also normal flash animation.
    Now I want to create pause and play functionality for the entire movie. I was able to create the pause function but when i try to play the movie it behaves very strange.
    I was able to develop the pause functionality by refering to the below mentioned links:
    http://www.unfocus.com/2009/12/07/stop-all-child-movieclips-in-flash-with-actionscript-3-0 /
    http://www.curiousfind.com/blog/174
    Any help in this regard is highly appreciated as i am approaching a deadline.
    I am pasting the code below:
    import flash.display.MovieClip;
    import flash.display.DisplayObjectContainer;
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    import fl.transitions.*;
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    import flash.events.Event;
    import flash.events.MouseEvent;
    stop();
    // function to stop all movieclips
    function stopAll(content:DisplayObjectContainer):void
        if (content is MovieClip)
            (content as MovieClip).stop();
        if (content.numChildren)
            var child:DisplayObjectContainer;
            for (var i:int, n:int = content.numChildren; i < n; ++i)
                if (content.getChildAt(i) is DisplayObjectContainer)
                    child = content.getChildAt(i) as DisplayObjectContainer;
                    if (child.numChildren)
                        stopAll(child);
                    else if (child is MovieClip)
                        (child as MovieClip).stop();
    // function to play all movieclips
    function playAll(content:DisplayObjectContainer):void
        if (content is MovieClip)
            var movieClip:MovieClip = content as MovieClip;
            if (movieClip.currentFrame < movieClip.totalFrames) // if the main timeline has reached the end, don't play it
       movieClip.gotoAndPlay(currentFrame);
        if (content.numChildren)
            var child:DisplayObjectContainer;
            var n:int = content.numChildren;
            for (var i:int = 0; i < n; i++)
                if (content.getChildAt(i) is DisplayObjectContainer)
                    child = content.getChildAt(i) as DisplayObjectContainer;
                    if (child.numChildren)
                        playAll(child);
                    else if (child is MovieClip)
                        var childMovieClip:MovieClip = child as MovieClip;
                        if (childMovieClip.currentFrame < childMovieClip.totalFrames)
          //childMovieClip.play();
          childMovieClip.play();
    function resetMovieClip(movieClip:MovieClip):MovieClip
        var sourceClass:Class = movieClip.constructor;
        var resetMovieClip:MovieClip = new sourceClass();
        return resetMovieClip;
    pauseBtn.addEventListener(MouseEvent.CLICK, onClickStop_1);
    function onClickStop_1(evt:MouseEvent):void
    MovieClip(root).stopAll(this);
    myTimer.stop();
    playBtn.addEventListener(MouseEvent.CLICK, onClickPlay_1);
    function onClickPlay_1(evt:MouseEvent):void
    MovieClip(root).playAll(this);
    myTimer.start();
    Other code which helps in animating the movie and other functionalities are as pasted below:
    stage.addEventListener(Event.RESIZE, mascot);
    function mascot():void {
    // Defining variables
    var mc1:MovieClip = this.mascotAni;
    var sw:Number = stage.stageWidth;
    var sh:Number = stage.stageHeight;
    // resizing movieclip
    mc1.width = sw/3;
    mc1.height = sh/3;
    // positioning mc
    mc1.x = (stage.stageWidth/2)-(mc1.width/2);
    mc1.y = (stage.stageHeight/2)-(mc1.height/2);
    // keeps the mc1 proportional
    mc1.scaleX <= mc1.scaleY ? (mc1.scaleX = mc1.scaleY) : (mc1.scaleY = mc1.scaleX);
    stage.removeEventListener(Event.RESIZE, mascot);
    mascot();
    this.mascotAni.y = 100;
    function mascotReset():void
    // Defining variables
    var mc1:MovieClip = this.mascotAni;
    stage.removeEventListener(Event.RESIZE, mascot);
    mc1.width = 113.45;
    mc1.height = 153.85;
    mc1.x = (stage.stageWidth/2)-(mc1.width/2);
    mc1.y = (stage.stageHeight/2)-(mc1.height/2);
    // keeps the mc1 proportional
    mc1.scaleX <= mc1.scaleY ? (mc1.scaleX = mc1.scaleY) : (mc1.scaleY = mc1.scaleX);
    var interval:int;
    var myTimer:Timer;
    // function to pause timeline
    function pauseClips(secs:int, myClip:MovieClip):void
    interval = secs;
    myTimer = new Timer(interval*1000,0);
    myTimer.addEventListener(TimerEvent.TIMER, goNextFrm);
    myTimer.start();
    function goNextFrm(evt:TimerEvent):void
      myTimer.reset();
      myClip.nextFrame();
      myTimer.removeEventListener(TimerEvent.TIMER, goNextFrm);
    // function to pause timeline on a particular label
    function pauseClipsLabel(secs:int, myClip:MovieClip, myLabel:String):void
    interval = secs;
    myTimer = new Timer(interval*1000,0);
    myTimer.addEventListener(TimerEvent.TIMER, goNextFrm);
    myTimer.start();
    function goNextFrm(evt:TimerEvent):void
      myClip.gotoAndStop(myLabel);
      myTimer.removeEventListener(TimerEvent.TIMER, goNextFrm);
    MovieClip(root).pauseClips(4.5, this);
    // function to fade clips
    function fadeClips(target_mc:MovieClip, next_mc:MovieClip, from:Number, to:Number):void
    var fadeTW:Tween = new Tween(target_mc, "alpha", Strong.easeInOut, from, to, 0.5, true);
    fadeTW.addEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    function fadeFinish(evt:TweenEvent):void
      next_mc.nextFrame();
      fadeTW.removeEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    // function to fade clips with speed
    function fadeClipsSpeed(target_mc:MovieClip, next_mc:MovieClip, from:Number, to:Number, speed:int):void
    var fadeTW:Tween = new Tween(target_mc, "alpha", Strong.easeInOut, from, to, speed, true);
    fadeTW.addEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    function fadeFinish(evt:TweenEvent):void
      next_mc.nextFrame();
      fadeTW.removeEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    // function to show screen transitions
    function screenFx(target_mc:MovieClip, next_mc:MovieClip):void
    //var tweenTW:Tween = new Tween(target_mc,"alpha",Strong.easeInOut,0,1,1.2,true);
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Iris, direction:Transition.OUT, duration:1.2, easing:Strong.easeOut, startPoint:5, shape:Iris.CIRCLE});
    tranFx.addEventListener("allTransitionsOutDone",doneTrans);
    function doneTrans(evt:Event):void
      next_mc.nextFrame();
      tranFx.removeEventListener("allTransitionsOutDone",doneTrans);
    // function to show screen transitions inverse
    function screenFxInv(target_mc:MovieClip, next_mc:MovieClip):void
    var tweenTW:Tween = new Tween(target_mc,"alpha",Strong.easeInOut,0,1,1.2,true);
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Iris, direction:Transition.IN, duration:2, easing:Strong.easeOut, startPoint:5, shape:Iris.SQUARE});
    tranFx.addEventListener("allTransitionsInDone",doneTrans);
    function doneTrans(evt:Event):void
      next_mc.nextFrame();
      tranFx.removeEventListener("allTransitionsInDone",doneTrans);
    // function to zoom in
    function zoomFx(target_mc:MovieClip):void
    //var tweenTW:Tween = new Tween(target_mc,"alpha",Strong.easeInOut,0,1,1.2,true);
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Zoom, direction:Transition.IN, duration:3, easing:Strong.easeOut});
    //tranFx.addEventListener("allTransitionsInDone",doneTrans);
    /*function doneTrans(evt:Event):void
      next_mc.nextFrame();
    // Blinds Fx
    function wipeFx(target_mc:MovieClip):void
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Wipe, direction:Transition.IN, duration:3, easing:Strong.easeOut, startPoint:9});
    // Blinds Fx Center
    function fadePixelFx(target_mc:MovieClip):void
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Fade, direction:Transition.IN, duration:1, easing:Strong.easeOut});
    tranFx.startTransition({type:PixelDissolve, direction:Transition.IN, duration:1, easing:Strong.easeOut, xSections:100, ySections:100});

    This movie is an animated movie from the start to end. I mean to say that though it stops at certain keyframes in the timeline it stops for only a certain time and then moves on to the next animation sequence.
    Its not an application where the user can interact.
    On clicking the play button i want the movie to play normally as it was playing before. If the user has not clicked on the pause button it would anyhow play from start to finish.
    Is there anyway where i could send in the fla file?

  • Com sdk issue: order of stop and play events

    Hopefully someone can answer a question regarding the Windows COM SDK. I've written a few applications in VB using this interface to monitor my play history. The documentation says that when the track changes, an OnPlayerStopEvent is given followed by an OnPlayerPlayEvent. This has worked perfectly for me until recently when I upgraded to 7.1.0.59 and its associated version of the COM. Now when I skip to a new track, the order of events is Stop then Play, but when I let a track complete and advance to another, the order of events is Play then Stop. This is contrary to the documentation. Is this a bug or am I missing something?
    Thanks in advance for your help!
    Ted
    Dell Precision 3600   Windows XP Pro   iTunes 7.1.0.59, Visual Studio 2005

    You should report this issue (if it is still occurring) at http://bugreport.apple.com
    If you don't have an ADC account, you can sign up for an "ADC Online" account for free at http://connect.apple.com

  • Making stop and play functions fool-proof

    I have a timeline control embedded into my flash piece. It
    contains the buttons "Re-Play, Pause, and Play." I am building some
    testing software, therefore I have instances where the
    animation/sound stops and waits for the user to select an answer.
    At first, I had a problem that, when the user would come to a
    stop point, they could simply click the play button and the audio
    would continue (the play button simply held a command like this):
    on (press) {
    play();
    So I changed it to an IF statement that looked for a variable
    before the PLAY button could be pressed. It looks like this:
    MP3Player, Frame 1
    set ("operator",1);
    Play Button
    on (press) {
    if (operator==1) {
    if (operator==2) {
    play();
    set ("operator",1);
    Pause Button
    on (press) {
    stop();
    set ("operator",2);
    It shows that, in order for Play to work, the user must first
    PAUSE the flash piece.
    The problem therein is that if the user comes to a stop in
    the timeline, they can simply click PAUSE and then PLAY and
    continue on the MP3Player element without advancing any of the
    animation. Is there anyone who can help me fix this? Thanks!

    Sorry - yeah you're right i didn't think that through
    completely. Use the code I suggested though, and add more code
    elsewhere. at the moment operator has two states, yeah? 1=playing,
    2=paused. You could introduce a third state - 3=quiz(or whatever's
    going on in your application).
    So wherever you have your stop() action on a frame, add the
    line:
    operator=3;
    and where the user selects their answer(i am assuming the
    animation continues on at this point?) and you have a play()
    action, add the line:
    operator=1;
    this should give you what you're asking for. the fleece does
    have a point though, that it would make sense to remove the
    play/pause buttons altogether during the quiz as they are inactive
    anyway.
    Craig

  • X2: How to stop and play a MP3 file from any place...

    Hi,
    I have some 1 hour talk shows on MP3 on my X2. I play one show. After 10 minutes I want to pause it there and take a call, or go to the menu and add a reminder, and come back to the mp3 and play from the point I stopped (10 minutes). How to do that? 
    When I pause and come back and press play, it starts from the begininging????
    Thanks
    Roahan

    Well a smarter way of implementing this is by using a solution provided by Java Itself.
    If you are using J2SE 6.0+ there is an in built solution provided along with JDK itself and inorder to go ahead with solution the below are set of API which you;d be using it for compiling Java Programs (Files)
    http://java.sun.com/javase/6/docs/api/javax/tools/package-summary.html
    How do i do that ??
    Check out the below articles which would help you of how to do that
    http://www.ibm.com/developerworks/java/library/j-jcomp/index.html
    http://www.javabeat.net/javabeat/java6/articles/java_6_0_compiler_api_1.php
    http://books.google.com/books?id=WVbpv8SQpkEC&pg=PA155&lpg=PA155&dq=%22javax+tools%22+compiling+java+file&source=web&ots=XOt0siYe-f&sig=HH27ovuwvJgklIf8omTykUmy-eM
    Now once we are done with compilation.In order to run a Specific class all you ought to do is create an object and its specific methods of a specified class included in the CLASSPATH which you can manage it easily by usage little bit reflections.
    Hope that might help :)
    REGARDS,
    RaHuL

  • Video play stops and plays

    when i click on a video such as youtube or news stie . it does not play smoothly , it stops and goes , what would be the problem

    is this a case with video that is streamed over the internet? if so then dont start it straight away ... your internet connection may not be fast enough to load the video and play it straight away

  • Stopping and Playing some movie clips?

    I have a problem with some AS3 code and i don't understand why.. my code looks like this:
    stop();
    halt.addEventListener(MouseEvent.CLICK, stopplaying);
    function stopplaying(event:MouseEvent):void {
    MovieClip(root).stop();
    MovieClip(root).gun.stop();
    MovieClip(root).gun.gt1.stop();
    MovieClip(root).gun.gt2.stop();
    MovieClip(root).gun.gt3.stop();
    MovieClip(root).gun.gt4.stop();
    MovieClip(root).gun.gt5.stop();
    MovieClip(root).gun.gt6.stop();
    gotoAndStop(1);
    That code is set to listen to a pause button to pause all movieclips when pressed but the last 2 rows "MovieClip(root).gun.gt5.stop();
    MovieClip(root).gun.gt6.stop();" doesn't work and gives me this output:
    TypeError: Error # 1010: A term is undefined and has no properties. third_fla at::ppBtn_20/startplaying ()
    But there shouldn't be a problem with this, cause the movieclips are the same as the others and has an instance name of gt5 and gt6 just like the other movie clips, and the code is obviously the same?

    Try tracing the different objects on those lines and see if they are recognized.  It may point to a misnaming or object absence.
    function startplaying(event:MouseEvent):void {
    MovieClip(root).play();
    MovieClip(root).gun.play();
    MovieClip(root).gun.gt1.play();
    MovieClip(root).gun.gt2.play();
    MovieClip(root).gun.gt3.play();
    MovieClip(root).gun.gt4.play();
    trace(MovieClip(root).gun.gt5, MovieClip(root).gun.gt6);
    MovieClip(root).gun.gt5.play();
    MovieClip(root).gun.gt6.play();
    gotoAndStop(2);

  • Help with wav file, stop and play buttons

    Hey everyone,
    I'm new to actionscript, and flash for that matter. I created
    a new flash file, and a new layer. On that layer I put 2 buttons,
    btnPlay and btnStop.
    I found some code on this forum, and tried it, but it isn't
    working. The code is below. I get no errors, but when I test the
    movie, it doesn't play any music. I selected this layer, selected
    frame 1, and put this code in the actions window.
    mySound = new Sound();
    btnPlay.onRelease = function () {
    mySound.attachSound("adagio");
    mySound.start(0);
    btnStop.onRelease = function() {
    mySound.stop("adagio");
    I should also note, I have another layer with a movie clip on
    it, and another layer with a picture on it.
    Any help would be appreciated,
    Thanks,
    Jesse

    As another note--I right clicked on the wav file in my
    library and selected linkage and export to first frame as well as
    export for actionscript (and named the linkage "adagio"). Might
    help with a solution.

  • Stopping and Playing a series of movie clips

    I am looking to make a showreel of a series of movie clips that reside on a single frame each in the main timeline.
    I have been searching google and Adobe forums for a solution with Action Script 3 but have yet to find one that works as described. I feel as though the scripts I am finding are partial and not complete examples because the script fails due to functions/variables/events/etc being duplicated or not found/referenced.
    What I need to happen is:
    movieClipA plays
         when movieClipA finishes
              goto MovieClipB
    movieClipB plays
         when movieClipA finishes
              goto MovieClipC
    movieClipC plays
         when movieClipC finishes
              goto MovieClipA (I am having most trouble with the loop back)
    Most of the time when the script works in the various ways I have scripted it, it will either flicker between the frames or play the first one then loops the seconds one or play both but not loop back. And sometimes (when I have used an event listener) it crashes the preview probably due to an infinate loop in the syntax I guess.
    It would be very helpful if you could break up the code into where each script is required to be keyed.
    Any help would be greatly appreciated!

    Figures.. I just found the post on the forums that answered my question.
    I have on the last frame of each MC - MovieClip(parent).nextFrame();
    Then in the main timeline I have - stop();
    I then have a frame after the last MC which says gotoAndPlay(1);
    This works
    If you would still like to show me another solution, atleast then I know two ways how to do the same thing

  • Simple stop and go from a button

    HELP!
    I have an animate document with 6 buttons (made up of an image, and svg and text) all grouped to a DIV. I then have my timeline setup so that if a button is clicked the other 5 change opacity to 50%. The animation autoplay is turned off so nothing happens when the file loads, it just displays the six buttons.
    I have labels on the timeline that I'm trying to reference with a click action. However whatever I do nothing works when I preview the file in a browser.
    There also seems to be something missing in the code panel. This is what I have assigned to a button:
    // insert code for mouse click here
    // play the timeline from the given position (ms or label)
    sym.play(play);
    Should there not be more code below the // insert code for mouse click here text?
    Please help I have no idea what I'm doing wrong! would be willing to send you the files to take a look.
    Thanks
    Lee

    Joel,
    Thanks I have used what you have shown but it still does not work.
    I have uploaded the fielbase as a zip to:
    www.litchfieldmorris.co.uk/Homepage_Anim.zip
    The file is 1.6Mb
    I would welcome you expertise and look at what I have produced and why it does not work.
    The functionality I would like is when a user moves the mouse over (and if possible their finger on a tablet) say the Resources 'pebble' that the other five pebbles are set to 50% opacity. Then on click / press it would redirect to a url.
    Would you be willing to take a look at what I have so far and advise on the best solution?
    Thanks so much in advance.
    Regards
    Lee Tempest

  • Simple Plug and Play Secure Wireless?

    I am trying to setup a simple way to have wireless users on our network be able to connect to our access points, authenticate to our ACS Server (Cisco Hardware ACS applicance) but without having to go through special configurations on the client. This needs to be secure too and not easily broken. We are using Cisco 1200 and 1300 802.11G AP's and the clients vary from having integrated wireless NIC's to running Cisco Wireless cards, to running other branded cards. We are currently using PEAP, but it is time consuming to configure and sometimes confusing to the users. I was thinking of switching to open authentication on a isolated subnet and using a Cisco BBSM (Building Broadband Service Manager) to securely connect to our network, but Cisco just made this device end of sale, end of life, so I'm hesitant to go this route. WPA/WPA2 or some of the other PEAP/EAP/LEAP are configuration intensive too. Any suggestions? Does cisco have anything to replace the BBSM? What about PPOE? Would this be an alternative? Can I use a router or firewall to terminate these connections or would I need a specialized server or other device? I really need a simple way to securly connect end users to our wireless network without any undue configuration on their end.

    Probably the easiest would be to keep the wireless communications open, and use a VPN concentrator running to an SSL VPN client on the laptops/pcs.
    All they'd have to do is aim their browser that the VPN gateway, and allow the SSL client to be downstreamed to their computer.
    Beyond that, use your BBSM proxy or provide user auth at the VPN concentrator.
    Leave the SSID in broadcast mode ("guest").
    With this system, most clients can find the wireless system (SSID broadcast), the encryption via the SSL VPN is very strong, and there'd be no real configuration for the clients. Just aim the browesr at the VPN gateway/concentrator and enter the username and password.
    Also, make sure you enable "Public Secure Packet Forwarding" (PSPF) to prevent one client from attacking other clients on te wireless LAN.
    Users that use the system on a regular basis could get / use certificates for authentication. If they're on the system a lot, then the minor grief of setup would be worth it.
    The SSL client uses Java, I believe, so it should be fairly universal (i.e., not platform specific). I haven't tried te SSL client n any system other than MS Windows so I can't really comment on *nix or Mac.
    The SSL gate ( 3000 series) that we use for our Lab access seems to work pretty well.
    Good Luck
    Scott

Maybe you are looking for

  • How to open a Cash Drawer in AS3? NEED ANSWER ASAP!!!

    Is it in anyway possible to open a cash drawer in actionscript 3 (Flash CS5) that is connected to a receipt printer. NEED ANSWERS ASAP!

  • How to use anonymous block in select statement

    Hello Experts. I have one requirement which i can resolve using anonymous block in plsql. But i want implement it in select query only. Database: Oracle 11.2.0 select count(*) from emp where name='xyz' and sal=50 if count(*)>0 then select dept,sector

  • HT1473 How do we import song from iTunes to any Apple device?

    How do we import song from iTunes to any Apple device? I do have the songs in my iTunes in the laptop but I dnt know how to import it into my iPhone. PLEASE HELP

  • Prefrences for Mail has limited options

    i want to change my font style and size for all outgoing e-mail. In mail help it says go to prefrences. But in my mail prefrences I only ahve the ability to add accounts, then mailbox behaviors which is send, delete, trash etc. and advanced ahs more

  • How can i change my balance to 0

    Hi I am changing country, but my account on itunes doesnt let me beacuse I have 0.34 in my balance, how can i make it go to 0 so i can change my account.