Paying off an Edge

I want to pay off my Edge and switch carriers but I'm confused on what number I need to pay off. Is it the "amount financed" or the "edge balance"?

edge balance. that's what you still owe.

Similar Messages

  • What happens after you pay off your edge device

    What **… I thought vz had come back to earth… but apparently after you pay off your device (or if you just buy it outright), they charge you the subsidy portion of the line charge again.  That makes no sense whatsoever….  they charge you the same amount, whether they subsidize a phone for you or not.  That makes no sense.  People, stop paying it!!!

    none of the other carriers do this anymore…  we all understand subsidies (well apparently not)…  if you go to any of the other carriers, and you do not buy a phone on contract, your service is less expensive because they don't need to recoup the money they "lost" on the phone.  But Verizon continues to charge you regardless… 
    If you go to ATT, you can get 10gb (yes 10), 2 smartphones off contract, 130/mo.  You can even use their version of EDGE and still pay that same amount (plus your device payment)… and guess what, when your done paying for your phone, they don't increase your service charge.  If you do the same on VZ, your bill will also be 130, but when you pay off your phone, they jack your bill up to 180….
    I think if VZ just came out and said "Look, we are the best, so we charge more.  Period."  I'd respect that…

  • Want to pay off Verizon EDGE phone 100% and yet still can't get out of Agreement??

    My fiance was talked into getting on the EDGE plan and apparently not many employees know the rules behind the actual Agreement.  They told us originally he could get on the EDGE plan and when we were ready we could combine our accounts, I am not under the EDGE program btw.  So when it came time when I was ready to add him under MY account they said we couldn't because he had the EDGE plan.  So they then said we could buy out the EDGE Agreement and combine the accounts then.  The associate told me to "think" about it though and also to wait til the 8th when my cycle ended.  Well, I went into another Verizon store yesterday because it was the only time our schedules allowed for it during the time and was told that yes, we could buy out the phone and Agreement but we have to wait 30 days from when he got on the plan?????  If I'm not mistaken the FAQ's section on this website for the EDGE Agreement states we can buy out the phone (pay the entire amount) and be done with it AT ANY TIME.  Did I read that wrong or does Verizon NOT want $335 out of my pocket immediately?  I just want some answers, straight answers and the RIGHT ANSWER.  I'm tired of talking to reps and getting different stories and answers every time.  Let us please buy out this Agreement and get back on a regular 2 year plan so we can combine our accounts. 

    1.  We did not know it was not a real Verizon store, when it has "Verizon Wireless" plastered in big letters all over it, well it's a tad bit misleading.  Had we known at first it wasn't legit, we would have never stepped foot in the door.  Lesson learned.
    2. I did not sign up for the EDGE plan, my fiancé did and he did so without researching about it like I would have done.  But he was desperate for a new phone cause he thought his Pantech Maurader was a piece of junk.  However, I do not believe it was even that.  After my research on the Android Operating System updates, I would say its the new updates that are junk.  I am under the regular 2 year plan and am perfectly happy with my old iPhone 4 and my contract and the fact that I have to barely deal with situations like this, until now. 
    3. I want him under my plan because I get the better employee discount and we'd like to save money by having our accounts combined.
    Sent from my iPhone

  • Is there a way to pay off a phone in its entirety for Verizon Edge?

    T-Mobile has an online option to pay off the phone separately from the bill and allowed you to make an extra payment for the phone. Can I do this with Verizon's Edge program or am I stuck paying an extra $75 a month for the next 20 months?

    Can I pay more than my scheduled monthly Verizon Edge installment?
    No, unless you are either seeking to Edge Up to a new device, which requires that at the time of the Edge Up transaction you pay at least 60% of the device (50% for customers with an Edge Agreement entered prior to 6/1/14) following the initial 30 days of the Verizon Edge Agreement; or you are seeking to pay off 100% of your Verizon Edge Agreement, which you may do at any time.

  • Can I pay off my Verizon Edge balance early without "edging up" to another phone?

    Can I pay off my Verizon Edge balance without "edging up" to another phone?

    Weth wrote:
    Yes, but there is no financial advantage for doing so. 
    That would certainly depend on the person. If someone suddenly has the funds necessary to pay off the device but does not have the restraint to hold on to those funds without spending them on other goods/services over the duration of the Edge agreement, THAT is a financial advantage for doing so.

  • Anybody knows how to bounce them off the edge of the frame ...

    I want them to change position randomly and smothly and also bounce off the edge of the frame. i will be so happy if you can help me.
    Here is the code:
    FlatWorld:
    import java.awt.*;
    import javax.swing.*;
    import java.util.*;
    * This FlatWorld contains random number(between 1 and 10) of disks
    * that can be drawn on a canvas.
    public class FlatWorld
        // initialize the width and height of the Canvas in FlatWorld...
        final int WIDTH = 400;
        final int HEIGHT = 400;
        // create random numbers of disks (1-10) using array.
        Random myRandom = new Random();
        int numbersOfDisks = myRandom.nextInt(10) + 1;
        Disk myDisk[] = new Disk[numbersOfDisks];
        // The Canvas on which things can be drawn or painted...
        private Canvas myCanvas;
        * creates a Canvas and disks
       FlatWorld()
            //Creates our disks using array.
            for( int i = 0; i < numbersOfDisks; i++ )
                myDisk[i] = new Disk(WIDTH,HEIGHT);
            //creates a canvas and store it in the instance variable...
            myCanvas = new Canvas(WIDTH,HEIGHT,this);
       /* Draws our disks using array.
        * @param graphicsContext The Graphics context required to do the drawing.
        * Supplies methods like "setColor" and "fillOval". */
       public void drawYourself(Graphics graphicsContext)
            for (int i = 0; i < numbersOfDisks; i++)
                myDisk.drawDisk(graphicsContext);
    public void change()
    final int movementScale = 8;
    for (int i = 0; i < numbersOfDisks; i++)
    int deltax = (int)( Math.random() - 0.5 * movementScale );
    int deltay = (int)( Math.random() - 0.5 * movementScale );
    myDisk[i].move(deltax, deltay);
    Disk:
    import java.awt.*;
    import java.util.*;
    * The Disk class is used to creates a disk with a random position
    * and a random color and a random diameter (between 1/20 width and 1/4 width)
    public class Disk
        /* instance variables */                    
        private int x;
        private int y;
        private int Diameter;
        private Color randomColor;
        private int red, green, blue;
         * Constructor for objects of class Disk
        //creat a disk at a 2D random position between width and height
        public Disk(int width, int height)
            /* Generates a random color red, green, blue mix. */
            red =(int)(Math.random()*256);
            green =(int)(Math.random()*256);
            blue =(int)(Math.random()*256);
            randomColor = new Color (red,green,blue);
            /* Generates a random diameter between 1/20 and 1/4 the width of the world. */
            double myRandom = Math.random();
            Diameter = (width/20) + (int)(( width/4 - width/20 )*myRandom);
            /* Generates a random xy-offset.
             * If the initial values of the xy coordinates cause the disk to draw out of the boundry,
             * then the x and/or y will change their values in order to make the whole disk visible in
             * the boundry. */
            int randomX = (int)(Math.random() * width);
            int randomY = (int)(Math.random() * height);
            int endPointX = randomX + Diameter;
            int xPixelsOutBound = endPointX - width;
            if ( endPointX > width)
                randomX = randomX - xPixelsOutBound;
            int endPointY = randomY + Diameter;
            int yPixelsOutBound = endPointY - width;
            if ( endPointY > width)
                randomY = randomY - yPixelsOutBound;
            setXY(randomX , randomY);
            /* replace values of newX and newY (randomX and randomY) into the x and y variables
             * @param newX The x-position of the disk
             * @param newY The y-position of the disk */
            public void setXY( int newX, int newY )
                x = newX;
                y = newY;
            /* Draw a disk by its coordinates, color and diameter...
             * @param graphicsContext The Graphics context required to do the drawing.
             * Supplies methods like "setColor" and "fillOval". */
            public void drawDisk(Graphics graphicsContext)
                graphicsContext.setColor(randomColor);
                graphicsContext.fillOval( x , y, Diameter , Diameter );
            public void move (int deltaX, int deltaY)
                x = x + deltaX;
                y = y + deltaY;
    }[i]Canvas:import java.awt.*;
    import javax.swing.*;
    public class Canvas extends JPanel
    // A reference to the Frame in which this panel will be displayed.
    private JFrame myFrame;
    // The FlatWorld on which disks can be create...
    FlatWorld myFlatWorld;
    * Initialize the Canvas and attach a Frame to it.
    * @param width The width of the Canvas in pixels
    * @param height The height of the Canvas in pixels
    public Canvas(int width, int height, FlatWorld sourceOfObjects)
    myFlatWorld = sourceOfObjects;
    // Set the size of the panel. Note that "setPreferredSize" requires
    // a "Dimension" object as a parameter...which we create and initialize...
    this.setPreferredSize(new Dimension(width,height));
    // Build the Frame in which this panel will be placed, and then place this
    // panel into the "ContentPane"....
    myFrame = new JFrame();
    myFrame.setContentPane(this);
    // Apply the JFrame "pack" algorithm to properly size the JFrame around
    // the panel it now contains, and then display (ie "show") the frame...
    myFrame.pack();
    myFrame.show();
    * Paint is automatically called by the Java "swing" components when it is time
    * to display or "paint" the surface of the Canvas. We add whatever code we need
    * to do the drawing we want to do...
    * @param graphics The Graphics context required to do the drawing. Supplies methods
    * like "setColor" and "fillOval".
    public void paint(Graphics graphics)
    // Clears the previous drawing canvas by filling it with the background color(white).
    graphics.clearRect( 0, 0, myFlatWorld.WIDTH, myFlatWorld.HEIGHT );
    // paint myFlatWorld
    myFlatWorld.drawYourself(graphics);
    //try but if --> {pauses the program for 100 miliseconds} dont work -->
    try {Thread.sleep(70);}
         catch (Exception e) {}
         myFlatWorld.change();
         repaint();

    Here is my contribution:
    FlatWorld:
    import java.awt.*;
    import javax.swing.*;
    import java.util.*;
    * This FlatWorld contains random number(between 1 and 10) of disks
    * that can be drawn on a canvas.
    public class FlatWorld {
       // initialize the width and height of the Canvas in FlatWorld...
       final int WIDTH = 400;
       final int HEIGHT = 400;
       // create random numbers of disks (1-10) using array.
       Random myRandom = new Random();
       int numbersOfDisks = myRandom.nextInt(10) + 1;
       FlatWorldDisk myDisk[] = new FlatWorldDisk[numbersOfDisks];
       // The Canvas on which things can be drawn or painted...
       private FlatWorldCanvas myCanvas;
        * creates a Canvas and disks
       public FlatWorld() {       
            //Creates our disks using array.
            for( int i = 0; i < numbersOfDisks; i++ ) {
                myDisk[i] = new FlatWorldDisk(WIDTH,HEIGHT);
            //creates a canvas and store it in the instance variable...
            myCanvas = new FlatWorldCanvas(WIDTH,HEIGHT,this);
       /* Draws our disks using array.
        * @param graphicsContext The Graphics context required to do the drawing.
        * Supplies methods like "setColor" and "fillOval". */
       public void drawYourself(Graphics graphicsContext) {
            for (int i = 0; i < numbersOfDisks; i++) {
                myDisk.drawDisk(graphicsContext);
    public void change() {
    final int movementScale = 8;
    for (int i = 0; i < numbersOfDisks; i++) {
    int deltax = (int)( Math.random() - 0.5 * movementScale );
    int deltay = (int)( Math.random() - 0.5 * movementScale );
    myDisk[i].move(deltax, deltay, WIDTH, HEIGHT);
    public static void main(String[] args) {
    new FlatWorld();
    FlatWorldDisk:
    import java.awt.*;
    import java.util.*;
    * The FlatWorldDisk class is used to creates a disk with a random position
    * and a random color and a random diameter (between 1/20 width and 1/4 width)
    public class FlatWorldDisk {
       /* Constants */
       private static final int DIRECTION_NW = 1;
       private static final int DIRECTION_N  = 2;
       private static final int DIRECTION_NE = 3;
       private static final int DIRECTION_W  = 4;
       private static final int DIRECTION_E  = 5;
       private static final int DIRECTION_SW = 6;
       private static final int DIRECTION_S  = 7;
       private static final int DIRECTION_SE = 8;
       /* instance variables */               
       private int x;
       private int y;
       private int diameter;
       private Color randomColor;
       private int red, green, blue;
       private int direction;
        * Constructor for objects of class FlatWorldDisk
       //creat a disk at a 2D random position between width and height
       public FlatWorldDisk(int width, int height) {
          /* Generates a random color red, green, blue mix. */
          red =(int)(Math.random()*256);
          green =(int)(Math.random()*256);
          blue =(int)(Math.random()*256);
          randomColor = new Color (red,green,blue);
          /* Generates a random diameter between 1/20 and 1/4 the width of the world. */
          double myRandom = Math.random();
          diameter = (width/20) + (int)(( width/4 - width/20 )*myRandom);
          /* Generates a random xy-offset.
           * If the initial values of the xy coordinates cause the disk to draw out of the boundry,
           * then the x and/or y will change their values in order to make the whole disk visible in
           * the boundry. */
          int randomX = (int)(Math.random() * width);
          int randomY = (int)(Math.random() * height);
          int endPointX = randomX + diameter;
          int xPixelsOutBound = endPointX - width;
          if (endPointX > width) randomX = randomX - xPixelsOutBound;
          int endPointY = randomY + diameter;
          int yPixelsOutBound = endPointY - width;
          if (endPointY > width) randomY = randomY - yPixelsOutBound;
          setXY(randomX , randomY);
          /* Generates a random direction */
          direction = (int)(Math.random() * 8) + 1;
       /* replace values of newX and newY (randomX and randomY) into the x and y variables
        * @param newX The x-position of the disk
        * @param newY The y-position of the disk */
       public void setXY(int newX, int newY) {
          x = newX;
          y = newY;
       /* Draw a disk by its coordinates, color and diameter...
        * @param graphicsContext The Graphics context required to do the drawing.
        * Supplies methods like "setColor" and "fillOval". */
       public void drawDisk(Graphics graphicsContext) {
          graphicsContext.setColor(randomColor);
          graphicsContext.fillOval( x , y, diameter , diameter );
       public void move(int deltaX, int deltaY,
                        int width, int height) {
          int dx = Math.abs(deltaX);
          int dy = Math.abs(deltaY);
          int olddir = direction;
          int newdir = olddir;
          switch(olddir) {
             case DIRECTION_NW: { int newX = x - dx, newY = y - dy;
                                  if ((newX < 0) && ((y - dy) < 0))         newdir = DIRECTION_SE;
                                  else if (((newX) >= 0) && ((y - dy) < 0)) newdir = DIRECTION_SW;
                                  else if (((newX) < 0) && ((y - dy) >= 0)) newdir = DIRECTION_NE;
                                  if (newdir != olddir) {
                                     direction = newdir;
                                     move(deltaX, deltaY, width, height);
                                  else {
                                     x = newX; y = newY;
                                  break;
             case DIRECTION_N:  { int newY = y - dy;
                                  if ((newY) < 0) newdir = DIRECTION_S;
                                  if (newdir != olddir) {
                                     direction = newdir;
                                     move(deltaX, deltaY, width, height);
                                  else {
                                     y =newY;
                                  break;
             case DIRECTION_NE: { int newX = x + dx, newY = y - dy;
                                  if (((newX + diameter) > width) && (newY < 0))       newdir = DIRECTION_SW;
                                  else if (((newX + diameter) > width) && (newY >= 0)) newdir = DIRECTION_NW;
                                  else if (newY < 0)                                   newdir = DIRECTION_SE;
                                  if (newdir != olddir) {
                                     direction = newdir;
                                     move(deltaX, deltaY, width, height);
                                  else {
                                     x = newX; y = newY;
                                  break;
             case DIRECTION_W:  { int newX = x - dx;
                                  if (newX < 0) newdir = DIRECTION_E;
                                  if (newdir != olddir) {
                                     direction = newdir;
                                     move(deltaX, deltaY, width, height);
                                  else {
                                     x = newX;
                                  break;
             case DIRECTION_E:  { int newX = x + dx;
                                  if (newX + diameter > width) newdir = DIRECTION_W;
                                  if (newdir != olddir) {
                                     direction = newdir;
                                     move(deltaX, deltaY, width, height);
                                  else {
                                     x = newX;
                                  break;
             case DIRECTION_SW: { int newX = x - dx, newY = y + dy;
                                  if ((newX < 0) && ((newY + diameter) > height))     newdir = DIRECTION_NE;
                                  else if (newX <0)                                   newdir = DIRECTION_SE;
                                  else if ((newY + diameter) > height)                newdir = DIRECTION_NW;
                                  if (newdir != olddir) {
                                     direction = newdir;
                                     move(deltaX, deltaY, width, height);
                                  else {
                                     x = newX; y = newY;
                                  break;
             case DIRECTION_S:  { int newY = y + dy;
                                  if ((newY + diameter) > height) newdir = DIRECTION_N;
                                  if (newdir != olddir) {
                                     direction = newdir;
                                     move(deltaX, deltaY, width, height);
                                  else {
                                     y =newY;
                                  break;
             case DIRECTION_SE: { int newX = x + dx, newY = y + dy;
                                  if (((newX + diameter) > width) && ((newY + diameter) > height)) newdir = DIRECTION_NW;
                                  else if ((newX + diameter) > width)                              newdir = DIRECTION_SW;
                                  else if ((newY + diameter) > height)                             newdir = DIRECTION_NE;
                                  if (newdir != olddir) {
                                     direction = newdir;
                                     move(deltaX, deltaY, width, height);
                                  else {
                                     x = newX; y = newY;
                                  break;
    FlatWorldCanvas remains unchanged.
    Hope this will help,
    Regards.

  • I want to cancel my broadband and pay off my debt.

    Recently I was shocked to discover that my direct debit had been altered to £73.50 a month! I was informed, upon contacting your billing people, that this was due to a number of phone calls I had made.  I have since discovered that the internet phone which was provided with the Option 3 Broadband package is no longer being produced and, therefore, my free evening and weekend calls no longer apply.  No warning was given or any information about this passed to me!  I have been informed that the onus was on ME to find this out!  I entered a contract and the terms of that contract were made clear to me and that contract has been broken as far as I am concerned. 
    Ever since I made the terrible mistake of signing up for BT Broadband, I have been treated appallingly and it is my wish to cancel my Broadband and no longer have anything to do with British Telecom or its services.  From day one my speeds were absolutely ridiculously slow and I had to go through the indignity of calling an Indian call centre who's staff would give the constant run around with the usual "Switch it on and off again" stupidity.  We are talking speeds of less than 1meg which was not what I was paying for.  I was even, on a few occasions where I said there was something wrong with the line, called a liar and had the phone slammed down on me.  Throughout this time I was charged £65 a month which was way over the agreed amount but I accepted this as I was told this was the charge for installation.
    This £65 bill went on for longer than I care to remember (And certainly much longer than was necessary to pay off the installation charge!) so I contacted one of your staff who agreed that I was paying way more than I should have been and so the charge was reduced to £40 a month.  I was told that it would always be £40 a month and was assured that that was set in stone and would not change.  Once again your staff have lied to me. 
    I spoke to one of your staff recently, after they had contacted me enquiring about my cancellation of the direct debit (I had no choice as we have no income and are awaiting news on benefits and have a chronically ill baby son so any money we do manage to scrape together goes on train fairs to Great Ormond Street for his treatment.  I also have a chronic kidney condition which is potentially fatal and have had to give up on my own medical treatment, essentially condemning myself to death, as I can no longer afford to get to my own appointments.  I include this information to illustrate just how terrible our financial situation has become.) explaining that I wished to cancel my BT Broadband and phone package as I  am moving home and simply cannot afford to have a landline and internet package anymore.  I was advised that I should wait until I had further information on my move, as the moving in date had not been set yet, and call again where I would be able to cancel my package and come to an arrangement to pay off my debt (Which would be around the £140 mark - your staff are unable to give me a fixed sum as of yet) in instalments.
    I called today to cancel my package on the date of 24th May 2012 (Our moving date) and arrange said instalment plan only to be told that I am unable to come to an arrangement to pay the debt if I dare to leave British Telecom and that they will have no option but to contact a debt collection agency to claim the amount in full unless I renew my contract(!).  It is my understanding that, as I am not in contract with BT anymore, I can cancel my broadband package any time I please and it is also my right to arrange a payment plan without being bullied and cajoled into staying as a BT customer when I have absolutely no desire to do business with this company EVER again.

    Hi I suggest you contact the forum mods they should be able to get your problem sorted for you this is a link to them
    http://bt.custhelp.com/app/contact_email/c/4951
    they normally reply by email or phone directly to you within 3 working days
    They are a UK based BT specialist team who have a good record at getting problems solved
    This is a customer to customer self help forum the only BT presence here are the forum moderators
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • I have been paying for two edge agreements for the past 3-4 months AND i have not gotten a reimbursment for anything...

      10/11/2013                      
    Debit Card Transaction
    VERIZON WRLS 08253-01 800-9220204 CA         10/09
    $92.30 
    On October 11th I started an EDGE agreement for the NOTE 3. I make a $92.30 payment over the phone (which is listed above). The lady said it would arrive two days after the phone comes out. It didn't show up two days after it came out and my little Droid X went dead on me. I called customer service and asked if the phone has been shipped yet. They said it has not. I asked if I could pick it up in the store instead. They said yes. They said they would cancel the shipment so I can pick it up in the store. I end up going to the store at Torrance Crossroads and I was just about to get the phone. Then sales rep was trying to force me into buying the case and charger package that was a deal with the phone for $100.I said no and he got hurt and quiet over it. 5 minutes later he comes up to me saying the edge agreement is not cancelled and they can not give me the phone. I asked if there is anything he can do or call customer service and verify because customer service told me it could be done. He said no and walked away.
    I call customer service and they say that they stopped the order and told me to go back to the store and try again. I did not wanna see the sales rep at Torrance Crossroads so I go to another Verizon store on hawthorne blvd in Torrance. I try the same process and the same thing happens. I tell them to call customer service and verify what is going on. I wait for 2 hours while they talk to customer service and the financial department. They tell me they will start another edge agreement on my girlfriends line and give me the note 3 so I can use it on my line. They said they waved the fee through some promotion since I went through a lot of trouble getting the phone and I should be getting a check in the mail for the $92.30 I paid on 10/11/13.
    Ever since then I have been paying for two edge agreements at $29.16 a piece. I have also been paying an extra $8 for insurance on a note 3 that I do not have. I have not gotten reimbursed the $92.30 I paid on 10/11/13. I have been calling customer service since December and have not gotten any where. Today was the last straw when the guy put me on hold and I ended up getting transferred to the sales department... What should I do? Is there anyone that can actually help my situation out. I already suspended my line and will do so for the next 5 months until this is fixed.

    @Dakotaep
    I am so sorry to hear of your experience with purchasing your new Samsung Galaxy Note 3!  This definitely should have been resolved in your first call to us.  I would be glad to review your account and ensure the Edge Agreement is corrected.  Please accept my "Follow" request and send me a direct message so I can further assist.  Thanks!
    AnthonyTa_VZW
    Follow us on Twitter VZWSupport on Twitter.

  • HT4623 I bought an iPhone 5 from the Apple store with a new Sprint contract in Sept. 2012.  I would like to know if I port my number to T-mobile and pay off my Early Termination fee with Sprint, will my iPhone 5 will be unlocked to use with T-mobile netwo

    I bought an iPhone 5 from the Apple store with a new Sprint contract in Sept. 2012.  I would like to know if I port my number to T-mobile and pay off my Early Termination fee with Sprint, will my iPhone 5 will be unlocked to use with T-mobile network?

    As Ethmoid says, it is still a CDMA phone as I told you earlier, and it will not work with t-mobile. Even if Sprint unlocked the phone, it would only unlock the GSM side for international use. They will not unlock the GSM side for domestic use in the US.

  • Best to pay off credit card all at once or slowly over time?

    My urrent FICO score is ~730.  I just received a bonus and I want to pay off my sole (CitiBank) credit card with a significant balance.  Should I pay it off all at once or would it be better to pay it off slowly over an extended period?

    It really doesn't matter.  If they're going to balance chase you they're going to balance chase you.  You're not doing yourself any favors by keeping your utilization higher for a longer period of time.  Short term high utilization generally isn't an issue but prolonged high utilization can lead to adverse action. richmcnutt wrote:
    My urrent FICO score is ~730.Keep in mind that there are 3 CRA's and many FICO models.  For a given model you probably have 3 scores (aside from the ones that are CRA-specific).  For a given CRA you have multiple FICO's.  The score that matters is whatever score (and CRA) the creditor pulls for you.  See also the Understanding FICO Scoring subforum and its stickies. CreditGuyInDixie wrote:
    There are a number of other things you can do to improve your score (long term).  For example, in the long game you need more than one credit card.  FICO views a profile with only one card as "thin."This.  Lower utilization is generally better as long as you don't have all 0 balances reporting.  Fewer balances are generally better.  That's why the recommendation to only allow one balance to report at 10% or less (or $2 according to CB) is suggested for those looking to eke out every possible point when applying for new credit.

  • Updating Flex 2 to 3 will pay off?

    Hi,
    Sorry, but I did not find any information about this. If I
    buy version 2 of Flex, migration to version will pay off?
    Thanks in advance for your answer.
    Regards, Dexys

    Yes. and here is why:
    1) Bug fixes in the flex sdk
    2) deprecated and new API
    3) better performance for flex builder plus additional
    features
    ATTA

  • Do I need to pay to use Edge Animate

    I hace a paid account I'm still in the 30 days I close my paid account  do I need to pay to use Edge Animate ?

    No you do not need to pay currently use Edge Animate.
    From the Edge Animate FAQ at http://html.adobe.com/edge/animate/faq.html under Pricing & Availability:
    How much is Edge Animate and how do I get it?
    As a limited-time introductory offer, a perpetual, non-expiring license of Edge Animate is available for free. Edge Animate is therefore available to both free and complete Creative Cloud members.
    Edge Animate is valued at $499 USD (perpetual license) or $14.99/month (single product subscription).
    Why is Edge Animate free?
    During the preview period for Edge Animate we received tremendous feedback that helped shape the tool into what it is today. To thank our community for actively participating in the development of Edge Animate we are offering the first full release of the product for free.
    How long will Edge Animate be free? What will it cost later?
    After the free introductory offer ends, we anticipate that future versions of Edge Animate will be available to complete Creative Cloud members, as a perpetual license and as a monthly single product subscription.
    Is Edge Animate only available as a subscription product?
    No. Once the current version of Edge Animate is downloaded and installed, it is available to use at any time, without an ongoing subscription.

  • How can i pay off a balance using itunes gift card?

    i have a balance of about 16 dollars, and i got a 15 dollar gift card, how can i use it to pay off the balance?

    If you tap on your id in Settings > iTunes & App Stores on your iPad and log into your account, does your balance show at the top of your account's screen (mine shows above the 'Apple ID' line at the top).
    If it doesn't show there then have you tried logging out and back into your account, and have you checked your account's purchase history (e.g. you didn't have any pre-orders or auto-renewing subscriptions that were due) ? On your computer's iTunes you can view it via the Store > View Account menu option, on your account's page you should see a Purchase History section with a 'see all' link to the right of it, click on that and you should then see a list of your account's purchases. On your iPad you can only view a cut-down version of your purchase history via http://reportaproblem.apple.com
    If you can't find where it went then try contacting iTunes Support and see if they can help with what happened to it : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Where is info to simply pay off phone early (w/o upgrading or changing svc)

    Hello,
    I'm a very satisfied 5s owner with NO interest in upgrading phone but simply a desire to pay it off. I've done the math and while it would be a pinch to do so, I think it would be financially prudent for me in the long-term. I bought my phone in the Apple store, and was signed up for the only plan available through that store, the More Everything plan.
    Can anyone help with direction specifically to where on the site there is information about paying off one's phone early (and keeping VzW)? All the info on 'early termination' seems to refer to people who want the latest phone and/or are leaving VzW. Does 'early termination' also include my situation? Very hard to figure out (perhaps I haven't had enough coffee this a.m.
    thanks in advance. I am cross eyed trying to sift through all of the info available on-line trying to find out this info.

    Agree, you cannot pay off early, you have a service contract, not a phone payoff loan. Your early pay off would be the early termination fee, which is $350 minus $10 for each month you have completed on your 2 year contract. However, that would be a termination and your account would be closed. There is no way to break your contract and keep your current number active.
    You are not locked by the to the more everything plan though. If a single line plan is more economic, you can switch to that as long as you keep the line active for the entire contract term. Switching sometimes will add time to the contract, depending on where you are in your contract.

  • My iTunes card is NOT paying off my over due balance!

    Hey Guys! About a month ago i have a visa gift card registered to my itunes account and it had about $4 on it left so i bought one game with that on my iphone. Then I clicked on another game and it let me download that, and 2 more after that. I found it strange that they let me keep purchasing, but i figured that they would charge me through my service provider for my phone. Well a couple weeks later i tried to download a free app onto my iPhone, but it said there was an error with my last billing transaction, so i logged on to my itunes account on my computer and it said i had an over due balance of $28.20. So after speaking to apple they told me that i SHOULD BE ABLE to buy two $15 iTunes gift cards, register them and they should pay off for my over due balance. So after buying and registering these 2 $15 cards (total of $30) i went into my purchase history and it said i have $28.20 overdue, but i do have enough to pay off my outstanding balance, so i clicked on "Pay." At the top of my screen on itunes it says "Accessing iTunes Store" for 2 seconds then it goes away and nothing else happens...i sign out and back in i still have $30 in my account, i close iTunes and reopen and i still $30...Can someone PLEASE HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    when i sign out and back in it says "Your Billing info has been changed outside of iTunes, Please approve your billing information for use in the itunes store"
    god i hate how they make you HAVE to in put a credit card!
    Message was edited by: B_Ram

    E-mail itunes store support.
    http://www.apple.com/support/itunes

Maybe you are looking for