Can I get a text package without renewing my contract?

I am currently out of contract and I want to stay that way however, my wife and I are starting to text and we currently pay per text.  I think it would be cheaper to get a text package than continue to pay per text.
Can I add a text package WITHOUT locking ourselves in for another new 1-2 year contract? 
Thanks in advance for your help.

you can add/remove to text, data, ect
you can change minutes
the only thing that could happen is if you bought the phone at someplace like bestbuy/walmart/amazon/ect
and are still under a contract you may get hit with an etf from them.  they often have a seperate contract you sign
that says you wont change your plan within x number of days, the x varies by place.
almost forgot you can also change to a talk/text plan
700 min, 2 lines, unlimited text for 99.99
or 1400 for 119.99

Similar Messages

  • In chrome I'm getting green double underline hyperlinks to ads.  How can I get rid of this without adding more junk to the computer?

    I have both safari and chrome, because I'm used to chrome.  The only extension I have is Google docs.  I started getting green double underline hyperlinks to ads.  How can I get rid of this without adding more junk to the computer?  People suggest programs to do it, but how do I know they won't make it worse?
    Is someone from Apple here and can answer?
    Thanks!

    You may have installed the "VSearch" trojan. Remove it as follows.
    Malware is always changing to get around the defenses against it. These instructions are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data before proceeding.
    Step 1
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot," "Trovi," or "Conduit" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Reset the home page and default search engine in all the browsers, if it was changed.
    Step 2
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "com.vsearch.agent.plist" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /System/Library/Frameworks/VSearch.framework
    ~/Library/Internet Plug-Ins/ConduitNPAPIPlugin.plugin
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    The problem may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the Internet criminal behind VSearch has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing has not done so, even though it's aware of the problem. This failure of oversight has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • How can I get the "text" field from the actionEvent.getSource() ?

    I have some sample code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.ArrayList;
    public class JFrameTester{
         public static void main( String[] args ) {
              JFrame f = new JFrame("JFrame");
              f.setSize( 500, 500 );
              ArrayList < JButton > buttonsArr = new ArrayList < JButton > ();
              buttonsArr.add( new JButton( "first" ) );
              buttonsArr.add( new JButton( "second" ) );
              buttonsArr.add( new JButton( "third" ) );
              MyListener myListener = new MyListener();
              ( (JButton) buttonsArr.get( 0 ) ).addActionListener( myListener );
              ( (JButton) buttonsArr.get( 1 ) ).addActionListener( myListener );
              ( (JButton) buttonsArr.get( 2 ) ).addActionListener( myListener );
              JPanel panel = new JPanel();
              panel.add( buttonsArr.get( 0 ) );
              panel.add( buttonsArr.get( 1 ) );
              panel.add( buttonsArr.get( 2 ) );
              f.getContentPane().add( BorderLayout.CENTER, panel );
              f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              f.setVisible( true );
         public static class MyListener  implements ActionListener{
              public MyListener() {}
              public void actionPerformed( ActionEvent e ) {
                   System.out.println( "hi!! " + e.getSource() );
                   // I need to know a title of the button (which was clicked)...
    }The output of the code is something like this:
    hi! javax.swing.JButton[,140,5,60x25,alignmentX=0.0,alignmentY=0.5,
    border=javax.swing.plaf.BorderUIResource$CompoundBorderUIResource@1ebcda2d,
    flags=296,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,
    disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=2,left=14,bottom=2,
    right=14],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=true,
    rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=first,defaultCapable=true]
    I need this: "first" (from this part: "text=first" of the output above).
    Does anyone know how can I get the "text" field from the e.getSource() ?

    System.out.println( "hi!! " + ( (JButton) e.getSource() ).getText() );I think the problem is solved..If your need is to know the text of the button, yes.
    In a real-world application, no.
    In a RW application, a typical need is merely to know the "logical role" of the button (i.e., the button that validates the form, regardless of whether its text is "OK" or "Save", "Go",...). Text tends to vary much more than the structure of the UI over time.
    In this case you can get the source's name (+getName()+), which will be the name that you've set to the button at UI construction time. Or you can compare the source for equality with either button ( +if evt.getSource()==okButton) {...}+ ).
    All in all, I think the best solution is: don't use the same ActionListener for more than one action (+i.e.+ don't add the same ActionListener to all your buttons, which leads to a big if-then-else series in your actionPerformed() ).
    Eventually, if you're listening to a single button's actions, whose text change over time (e.g. "pause"/"resume" in a VCR bar), I still think it's a bad idea to rely on the text of the button - instead, this text corresponds to a logical state (resp. playing/paused), it is more maintainable to base your logic on the state - which is more resilient to the evolutions of the UI (e.g. if you happen to use 2 toggle buttons instead of one single play/pause button).

  • I recently bought a new macbook pro and set it up using the migration assistant and my mac mini.  I can't get the text message forwarding feature to work with both computers.

    I recently bought a new macbook pro and set it up using the migration assistant from my mac mini.  I can't get the text message forwarding feature to work with both computers.  It keeps saying that I only have 2 devices setup, my iPad and my macbook pro.  When I mess with the setting on my mac mini, it goes from saying that that is one of the devices to my macbook pro being the 2nd device.  I think that something happened as a result of my using the migration assistant and now it thinks that my macbook pro and my mac mini are one and the same computer.  Any ideas?

    Thanks, Sig.
    The old computer is a 2.6 Ghz Intel Core 2 Duo
    The new one is a 2.3 GHz intel core i7
    In going over this, thanks to "tallking it out" with you, I did discover the Text Edit problem.  Because I've still been unable to get the new computer text size (fonts or whatever) to match the old computer, I did not notice that the curser is now different--the line midway down the curser has to be placed on the line I am working upon, otherwise the edits go elsewhere on the page.  Now, with a bit of difficulty, I am able to get Text Edit to work correctly.
    If you have any ideas as to why my menu bar and Text Edit type are still so slow, I'd love to have them. 
    (I went through the process you suggested earlier, re my Trackpad preferences, and found no improvement.)

  • My Firefox menu button has disappeared. Why? How can I get it back? Without it I don't know how to get to my FTP.

    My Firefox menu button has disappeared. Why? How can I get it back? Without it I don't know how to get to my FTP. I never did anything to make this happen.

    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: command+Shift+F).
    Press F10 or tap the Alt key to bring up the "Menu Bar" temporarily if the Menu Bar is hidden.

  • How can I get my texts back after IOS update?

    How can I get my texts back after an IOS update?

    Hi Clembo60,
    Welcome to the Apple Support Communities!
    I understand that your text messages are missing after an update on your iPhone. If you have a backup of your device on either iTunes or iCloud, you can restore from that backup and bring your information back. Please review the attached article, which covers how to back up and restore from backups, for more information. 
    Back up and restore your iPhone, iPad, or iPod touch using iCloud or iTunes - Apple Support
    Best regards,
    Joe

  • I accidentally deleted iPhoto on my mac and it says the the app was downloaded with a different apple id and now i can't get the app back without paying $14.99

    i accidentally deleted iPhoto on my mac and it says the the app was downloaded with a different apple id and now i can't get the app back without paying $14.99

    Did you install it yourself are somebody else for you?
    If you installed them yourself, but do not remember which AppleID you used, try all AppleIDs you might have used in turn.
    If somene else set up your Mac for you, ask the person to reinstall it. If you bought the mac second hand, the previous owner needs to contact Apple to transfer the iLife apps. If that is not possible, delete the apps that you cannot update and buy them using your AppleID.

  • I have Windows 7 and PS Elements 10 and can't get the text button to work properly.  What can I do?

    I have Windows 7 and PS Elements 10 and can't get the text button to work properly.  What can I do?

    Try selecting the T tool and then doing a reset (see image below)

  • First question - I have Acrobat 9 on my desktop and the license seems to have been messed up.  I tried to download and fis but I asked me for a disk.  I don't have any idea where the "disk" is.  Can I get the license update without that disk?

    First question - I have Acrobat 9 on my desktop and the license seems to have been messed up.  I tried to download and fis but I asked me for a disk.  I don't have any idea where the "disk" is.  Can I get the license update without that disk?
    Second question - In anticipation of not being able to do that, I bought (at University bookstore) Acrobat XI Pro - do I need to uninstall the 9.0 Pro version before I try to install the XI version?

    If you still have your serial number for Acrobat Pro there is a link to the installer here:  Download Acrobat products | 9, 8

  • Can i get a text tone on my 4th generation?

    can i get a text tone for my 4th generation ipod?

    Thanks Shane!
    I saw your notes in Creative Cow and intend to follow Log and Transfer system until I saw your note.
    XDCAM Transfer Utility to XDCAM QT? Is this a better alternative u think?
    Best Wishes from Asia
    Noel

  • How can i get into my iphone without activating it through itunes id

    How can I get into my iPhone without activating it through itunes id

    If the iPhone has Find My iPhone activation lock enabled then you will not be able to activate the iPhone without entering the correct Apple ID and password it is locked to. Sorry but there is no way to bypass this.

  • When i tried to download iOS8 on my iPad Mini it told me that I needed to connect my iPad to iTunes, I have done that and now it says I need to restore my iPad. How can I get my iPad working without losing everything on my iPad?

    When i tried to download iOS8 on my iPad Mini it told me that I needed to connect my iPad to iTunes, I have done that and now it says I need to restore my iPad. How can I get my iPad working without losing everything on my iPad? I don't want to lose my apps and photos!
    Help would be much appreciated!

    If you are getting the connect to iTunes screen then it's too late to take a new backup and/or copy anything off it. Prior to starting the update did you take a backup, either to the cloud and/or to your computer's iTunes ? If not then have you recently taken a backup that might have your photos and apps content/settings in it ?
    As long as the apps are still in your country's store then you should be able to redownload them via the Purchased tab in the App Store app (and the Purchased link under Quick Links on the right-hand side of the iTunes store homepage on your computer's iTunes), and if the apps store their content on a server/cloud service then you might be able to get their content back from that - if they store their content on the device then you will need to have a backup.
    For our photos you could try doing a search for programs that claim to be able to recover content from a device - I haven't used any so I can't suggest one.

  • I have a CS3 for windows and I switched to a mac.  Can I get a mac version without having to pay for the suite again

    I have a CS3 for windows and I switched to a mac.  Can I get a mac version without having to pay for the suite again?

    No.
    Adobe only offers a Platform Swap on current software: Order product | Platform, language swap
    CS3 is also too old to have an "upgrade path" and is no longer sold or supported by Adobe.
    You do, as a CS3 owner, qualify for a 40% discount on your first year of a Creative Cloud Subscription though: Creative Cloud pricing and membership plans | Adobe Creative Cloud
    If you don't want to go with the subscription service, Adobe does still offer CS6 (4 versions away from current & no longer receiving updates) as a "one time payment/download" perpetual license: Creative Suite 6

  • Can you move between text boxes without using the mouse?

    Can you move between text boxes without using the mouse?  When I have mutliple text boxes as a template, and then need to move from one to the next can I do it without having to use the mouse to click the next box??

    Jon,
    Option-Tab will sequence through the tables.
    Jerry

  • HT2240 i already bought a quicktime pro version but lost the key some how. how can i get back that key, without buying a new one?

    i already bought a quicktime pro version but lost the key some how. how can i get back that key, without buying a new one?

    thank you Malcolm J. Rayfield for your replay. but this didn't help, because i bought the "pro" bevore that.

Maybe you are looking for

  • PgUp/PgDn no longer work after upgrading to Firefox 4

    I just upgraded from Firefox 3.6 to 4.0., and now the PgUp/PgDn keys (page up/page down) no longer work. Or rather, they act as though caret browsing (F7) is turned on, which it is not. (In caret browsing, PgUp is like the back button and PgDn is lik

  • System crash; data recovered; screen saver no longer works 10.3.9

    My iMac crashed last Fri and finally today the dealer received the hard drive and recovered my data. So far all is working EXCEPT my screensaver which used to work beautifully with OS X 10.3.5. I DID update things including a OS X Update Combined" (1

  • When I drag a link into a neighboring tab, how do I prevent Firefox from moving me into the new url?

    When I drag a link from tab #1 into tab #2, (Firefox 3.6.6) my browser window automatically shifts to tab #2. I've noticed that dragging into the lower portion of neighboring tabs is supposed to prevent this, but it's hit-or-miss. How do I kill this

  • HT201412 iPhone will not recognise my music

    I Have recently change my iPhone as I damaged my iPhone 4 - I now have iPhone 4S. Everything has set up transferred except my music, I've tried syncing with ITunes and I've checked all my settings -when I go into the music I have a cloud display and

  • PayPal and Live Cycle Forms

    I have a calculated "Total Amount" field on a Live Cycle generated form.  I would like to take that calculated value and export it to our payment pages on PayPal's secure online network.  On our website, we simply add some code to the page and, when