Converting 4:3 - 16:9

If you are scaling an interlaced file to a different height, you can tell MPEG Streamclip to preserve interlacement and scale each video field separately by checking "Interlaced Scaling". If you don't, interlacement will be lost in the scaled movie, and you get many visual artifacts.
So now MPEG Streamclip 1.5 can convert also DV material 4:3 <-> 16:9 while preserving interlacing!
It can do the conversion with letterboxing or without letterboxing (but with cropping, of course).
For more details, check:
http://www.sjoki.uta.fi/~shmhav/SVCDon_aMacintosh.html#43-169

Thanks, this is just what I want.
I'd shot some footage in 4x3, but now want to include it in a 'widescreen' HDV video. I realise that the quality won't be so good for this "re-cooked" video, but at least it'll integrate into the other 16x9 footage.
Thanks again, Matti!

Similar Messages

  • Need to a voltage converter to run US-bought 110v HP Printers in 220v Pakistan any recommendations?

    I Purchased Three Printers 
    1. 
    HP LaserJet Enterprise 500 MFP M525dn(CF116A)
    2.
    HP Color LaserJet Enterprise CP4025n Printer(CC489A)
    3.
    HP LaserJet P2055d Printer (CE457A) -
     All of them three operates on 110v USA.  but i need them to use in 220V . Can anyone recommend me any good Voltage converter ?
    This question was solved.
    View Solution.

    Hi,
    Before go out to buy a converter/transformer  (you need over 2KW for all 3 of them), please check the switches at the back, they may have switches to switch from 110V to 220V. I don't know your market, my suggestion: talk with an electrician who knows the real world much better.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • ALL MY DESKTOP APPS CONVERTED TO PDF FILES.

    After sending an urgent email attachment in Adobe PDF to Government Offcom, all my Desktop applications in windows 7 64 bit have been converted to PDF files and cannot be opened.   The attachment used was sent to me by my Secretary remotely using an old MAC.
    I can return my laptop to normal operation by un installing my Adobe Reader 11 app, but the problem returns when I re Download Adobe Reader
    11 again.     After discussing this with Adobe Technical in London they advised me to raise this issue with your Adjudicators in this Forum. 
    Please assist asap as this is very urgent right now for several genuine reasons.
    Many thanks.   Derek Horder.

    See if anything in here helps: https://helpx.adobe.com/acrobat/kb/application-file-icons-change-acrobat.html

  • Which is best app to convert voice memos to text?

    There must be a way to import iPhone 5s voice memos, some 20 minutes long into editable text. Recommendations would be appreciated.

    SORRY! WHAT I MEANT TO ASK WAS "I WANT TO EXPORT  YOUTUBE & FACEBOOK VIDEOS TO ITUNES. WHAT IS THE BEST APP. TO USE TO CONVERT THESE VIDEOS INTO A FORMAT THAT IS ACCEPTABLE TO ITUNES. WHAT IS THE BEST FORMAT TO USE. THANK YOU

  • Need to convert JApplet to JFrame

    I need to write code for where I have 60 balls bouncing around inside a window. The client will then be able to select a button and it will pull out a ball with the number 1-60 written on it. The user will be able to do this up to 7 times. Each time it is done the past numbers that have already appeared can not reappear. What I am stuck on right now is geting my balls into a JFrame. Can anyone give advice or show how to. I currently have my 60 balls running in a JApplet. Here is the JAVA code and the HTML code. Thanks!
    Here is the JAVA code
    import java.awt.*;
    import java.applet.*;
    import java.util.*;
    import javax.swing.*;
    class CollideBall{
    int width, height;
    public static final int diameter=20;
    //coordinates and value of increment
    double x, y, xinc, yinc, coll_x, coll_y;
    boolean collide;
    Color color;
    Graphics g;
    Rectangle r;
    //the constructor
    public CollideBall(int w, int h, int x, int y, double xinc, double yinc, Color c){
    width=w;
    height=h;
    this.x=x;
    this.y=y;
    this.xinc=xinc;
    this.yinc=yinc;
    color=c;
    r=new Rectangle(150,80,130,90);
    public double getCenterX() {return x+diameter/2;}
    public double getCenterY() {return y+diameter/2;}
    public void alterRect(int x, int y, int w, int h){
    r.setLocation(x,y);
    r.setSize(w,h);
    public void move(){
    if (collide){  
    double xvect=coll_x-getCenterX();
    double yvect=coll_y-getCenterY();
    if((xinc>0 && xvect>0) || (xinc<0 && xvect<0))
    xinc=-xinc;
    if((yinc>0 && yvect>0) || (yinc<0 && yvect<0))
    yinc=-yinc;
    collide=false;
    x+=xinc;
    y+=yinc;
    //when the ball bumps against a boundary, it bounces off
    if(x<6 || x>width-diameter){
    xinc=-xinc;
    x+=xinc;
    if(y<6 || y>height-diameter){
    yinc=-yinc;
    y+=yinc;
    //cast ball coordinates to integers
    int x=(int)this.x;
    int y=(int)this.y;
    //bounce off the obstacle
    //left border
    if(x>r.x-diameter&&x<r.x-diameter+7&&xinc>0&&y>r.y-diameter&&y<r.y+r.height){
    xinc=-xinc;
    x+=xinc;
    //right border
    if(x<r.x+r.width&&x>r.x+r.width-7&&xinc<0&&y>r.y-diameter&&y<r.y+r.height){
    xinc=-xinc;
    x+=xinc;
    //upper border
    if(y>r.y-diameter&&y<r.y-diameter+7&&yinc>0&&x>r.x-diameter&&x<r.x+r.width){
    yinc=-yinc;
    y+=yinc;
    //bottom border
    if(y<r.y+r.height&&y>r.y+r.height-7&&yinc<0&&x>r.x-diameter&&x<r.x+r.width){
    yinc=-yinc;
    y+=yinc;
    public void hit(CollideBall b){
    if(!collide){
    coll_x=b.getCenterX();
    coll_y=b.getCenterY();
    collide=true;
    public void paint(Graphics gr){
    g=gr;
    g.setColor(color);
    //the coordinates in fillOval have to be int, so we cast
    //explicitly from double to int
    g.fillOval((int)x,(int)y,diameter,diameter);
    g.setColor(Color.white);
    g.drawArc((int)x,(int)y,diameter,diameter,45,180);
    g.setColor(Color.darkGray);
    g.drawArc((int)x,(int)y,diameter,diameter,225,180);
    public class BouncingBalls extends Applet implements Runnable {
    Thread runner;
    Image Buffer;
    Graphics gBuffer;
    CollideBall ball[];
    //Obstacle o;
    //how many balls?
    static final int MAX=60;
    boolean intro=true,drag,shiftW,shiftN,shiftE,shiftS;
    boolean shiftNW,shiftSW,shiftNE,shiftSE;
    int xtemp,ytemp,startx,starty;
    int west, north, east, south;
    public void init() {  
    Buffer=createImage(getSize().width,getSize().height);
    gBuffer=Buffer.getGraphics();
    ball=new CollideBall[MAX];
    int w=getSize().width-5;
    int h=getSize().height-5;
    //our balls have different start coordinates, increment values
    //(speed, direction) and colors
    for (int i = 0;i<60;i++){
    ball=new CollideBall(w,h,50+i,20+i,1.5,2.0,Color.white);
    /* ball[1]=new CollideBall(w,h,60,210,2.0,-3.0,Color.red);
    ball[2]=new CollideBall(w,h,15,70,-2.0,-2.5,Color.pink);
    ball[3]=new CollideBall(w,h,150,30,-2.7,-2.0,Color.cyan);
    ball[4]=new CollideBall(w,h,210,30,2.2,-3.5,Color.magenta);
    ball[5]=new CollideBall(w,h,360,170,2.2,-1.5,Color.yellow);
    ball[6]=new CollideBall(w,h,210,180,-1.2,-2.5,Color.blue);
    ball[7]=new CollideBall(w,h,330,30,-2.2,-1.8,Color.green);
    ball[8]=new CollideBall(w,h,180,220,-2.2,-1.8,Color.black);
    ball[9]=new CollideBall(w,h,330,130,-2.2,-1.8,Color.gray);
    ball[10]=new CollideBall(w,h,330,10,-2.1,-2.0,Color.gray);
    ball[11]=new CollideBall(w,h,220,230,-1.2,-1.8,Color.gray);
    ball[12]=new CollideBall(w,h,230,60,-2.3,-2.5,Color.gray);
    ball[13]=new CollideBall(w,h,320,230,-2.2,-1.8,Color.gray);
    ball[14]=new CollideBall(w,h,130,300,-2.7,-3.0,Color.gray);
    ball[15]=new CollideBall(w,h,210,90,-2.0,-1.8,Color.gray);*/
    public void start(){
    if (runner == null) {
    runner = new Thread (this);
    runner.start();
    /* public void stop(){
    if (runner != null) {
    runner.stop();
    runner = null;
    public void run(){
    while(true) {
    Thread.currentThread().setPriority(Thread.MAX_PRIORITY);
    try {runner.sleep(15);}
    catch (Exception e) { }
    //move our balls around
    for(int i=0;i<MAX;i++)
    ball[i].move();
    handleCollision();
    repaint();
    boolean collide(CollideBall b1, CollideBall b2){
    double wx=b1.getCenterX()-b2.getCenterX();
    double wy=b1.getCenterY()-b2.getCenterY();
    //we calculate the distance between the centers two
    //colliding balls (theorem of Pythagoras)
    double distance=Math.sqrt(wx*wx+wy*wy);
    if(distance<b1.diameter)
    return true;
    return false;
    private void handleCollision()
    //we iterate through all the balls, checking for collision
    for(int i=0;i<MAX;i++)
    for(int j=0;j<MAX;j++)
    if(i!=j)
    if(collide(ball[i], ball[j]))
    ball[i].hit(ball[j]);
    ball[j].hit(ball[i]);
    public void update(Graphics g)
    paint(g);
    public void paint(Graphics g)
    gBuffer.setColor(Color.lightGray);
    gBuffer.fillRect(0,0,getSize().width,getSize().height);
    gBuffer.draw3DRect(5,5,getSize().width-10,getSize().height-10,false);
    //paint our balls
    for(int i=0;i<MAX;i++)
    ball[i].paint(gBuffer);
    g.drawImage (Buffer,0,0, this);
    Here is the HTML code
    <html>
    <body bgcolor="gray">
    <br><br>
    <div align="center">
    <applet code="BouncingBalls.class" width="1000" height="650"></applet>
    </div>
    </body>
    </html>

    In the future, Swing related questions should be posted in the Swing forum.
    First you need to convert your custom painting. This is done by overriding the paintComponent() method of JComponent or JPanel. Read the Swing tutorial on [Custom Painting|http://java.sun.com/docs/books/tutorial/uiswing/TOC.html].
    If you need further help then you need to create a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html], that demonstrates the incorrect behaviour.
    Don't forget to use the [Code Formatting Tags|http://forum.java.sun.com/help.jspa?sec=formatting], so the posted code retains its original formatting.

  • AiO Remote iOS - Google drive convert file automatically

    Hello Expert!
    when i scan and upload on my google drive, google drive automatically convert the file in google docs format.
    i already disabled the automatic convert in goole drive settings but same issue.
    only aio remote - last version on app store installed - has this problem.
    Any suggestion?
    Thanks

    Hello,
    I tried to duplicate the issue you're seeing and I can't. Here's what I did... used the AiO Remote app, took a pic of a handwritten note, saved as a PDF, and then shared to my Google Drive. The file type is still a PDF.
    What type of files are you working with? Does the extension change happen on everything you send to Google Drive?
    Miles
    HP Employee

  • I need to convert PDF file to Word Document, so it can be edited. But the recognizing text options do not have the language that I need. How I can convert the file in the desired of me language?

    I need to convert PDF file to Word Document, so it can be edited. But the recognizing text options do not have the language that I need. How I can convert the file in the desired of me language?

    The application Acrobat provides no language translation capability.
    If you localize the language for OS, MS Office applications, Acrobat, etc to the desired language try again.
    Alternative: transfer a copy of content into a web based translation service (Bing or Google provides a free service).
    Transfer the output into a word processing program that is localized to the appropriate language.
    Do cleanup.
    Be well...

  • Emac Fire Wire to RCA DV Converter

    Is there a Converter out there like the "Apple Mini-DVI to Video Adapter" for the Emac?

    The same converter should also work on your eMac.

  • Just subscribed to pdf to xls converter; can't get it to work

    Just subscribed to pdf to xls converter but cannot use it.  Just keep getting the log in page

    HI,
    Thank you for your subscription.
    Please try to log in at https://cloud.acrobat.com with your Adobe ID and password and let me know if you still cannot log in.
    Thank you.
    Hisami

  • How to edit a Animated Gif file and convert to SWF

    I am using the creative cloud with fireworks. I chose the free trial with buying in mind if I saw it work properly. I simply want to upload an animated GIF file and then download it as a SWF file. I saw someone on youtube do this and it's not that if I get on the correct page I would not know how to do that but I just cannot find how to get the GIF into the software to edit. It has just simply put them in the creative cloud folder which can open them on IE> How do i make it available to edit and convert to SWF please? Thanks in advance.

    You will likely get better program help in a program forum
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • How open images from other programs & convert to tiff?

    I am new to digital photography. I usually take 2 to 3 MB images with my Canon Rebel XT and use iPhoto as my basic program to organize images, create albums, and do very basic editing. I'm running on a G4 Powerbook with OS10.3. I expect to upgrade to iPhoto6 soon. I also use Canon's Image Browser (because it does a better job of compression for emailing that my present iPhoto) and an abbreviated version of ArcSoft PhotoStudio which came bundled with my Canon and has editing tools similar to Adobe Photoshop Elements.
    So far I usually use iPhoto's "Preferences/Open in Other" command when I want to open one or more selected images in one of the other programs. I have not found any easy way to locate an image while working in ImageBrowser or PhotoStudio, because iPhoto assigns folder numbers by date, so I'd have to know in which of many numbered folders to look. Placing images into iPhoto albums does not help because while the album names appear in these program's tree view they appear unable to link to them. Canon refuses to answer questions relating to iPhoto and referred me to ArcSoft for any questions about PhotoStudio. ArcSoft says they provide no support for programs bundled with hardware. Typical. What I'd like to know is:
    1. Is there any easy way to locate iPhoto images while I'm in one of these other programs?
    2. Is there any way to copy an entire album from iPhoto to one of these other programs?
    3. I've attended two different digital photo classes in which instructors felt it desirable to convert jpegs to tiffs. One felt it was necessary to reduce the loss of pixels during editing, and the other does it for any image he plans to print, claiming it improves print quality. They recommended getting a special conversion program. Based on responses here to the topic: "Want to save jpeg file as tiff before making edits to photos", others feel that for most amateurs like me this is a minor issue, especially with iPhoto. Testing this I have found, as Kevin Wolfe1 says Feb 12, that compression of a jpeg appears to occur primarily on the first edit and does not sognificantly degrade the image. The programs I mention above appear able to save an edited jpeg as a tiff if desired, but I've noticed also that iPhoto's Export command includes the option to export a jpeg (to desktop or another folder) as a tiff. When I tried this, it did create a file identified as .tif, and I can drag that file back into the iPhoto Library where it remains named as a .tif, and according to iPhoto, this file contains about 5 times the MBs the original jpeg had. What I'm curious to know is, is that a true tiff file or is iPhoto kidding me?
    Powerbook G4   Mac OS X (10.3.9)  

    Typical. What I'd like to know is:
    1. Is there any easy way to locate iPhoto images
    while I'm in one of these other programs?
    In iPhoto 06 you have the option to NOT move imported image file in to the iPhoto library. So they images stay in the place where you put them. With this option the iPhoto library only contains "pointers".
    2. Is there any way to copy an entire album from
    iPhoto to one of these other programs?
    Can't you open an album, select all the images then then use "export"
    3. I've attended two different digital photo classes
    in which instructors felt it desirable to convert
    jpegs to tiffs.
    If you are worried about this then you should be shooting RAW format. In your case the camera is doing the JPG conversion and the "damage" is unrecoverable.
    iPhoto 6 and Tigeer (10.4.x) has a little bit better supportfor raw format images i yu are worried about something that makes such a small difference then you should be woried about the stuf that makes a large difference first.
    You might want to concider this workflow:
    1) use Canon software to download files from camera
    2) use Canon software to convert to TIFF
    3) Import TIFF to iPhoto (using option to NOT consolidate library
    4) specify arcedit, PS or Gimp as your external editor
    Others might want to lt iPhoto do the import and raw conversion but you said you wanted thr photos to be stored outside of iPhoto's library system you you can find them with out having to do an export.

  • How to convert class file

    Hi all, I am new in java card development.
    This is my environment setting:
    @echo off
    set JC_HOME=C:\JavaCard\java_card_kit-2_2
    set JAVA_HOME=C:\j2sdk14103
    set PATH=.;%JC_HOME%\bin;%PATH%
    I have created the Wallet applet according to 'Zhiqun Chen" text book and named it WalletApp.java.
    I have compiled this file to a class file.
    This is where is I saved my file
    C:\JavaCard\java_card_kit-2_2\samples\src\com\sun\javacard\samples\WalletApp\WalletApp.java.
    But I don't really understand how to convert the class file.
    May I know what is this for?
    -out EXP JCA CAP
    -exportpath
    -applet 0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x1:0x1
    com.sun.javacard.samples.HelloWorld.HelloWorld
    com.sun.javacard.samples.HelloWorld
    0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x1 1.0
    must save this in what file?
    I tried to type in the command line below (and the result):
    C:\JavaCard\java_card_kit-2_2\samples>converter -config scr\com\sun\javacard\sap
    les\Wallet\Wallet.opt
    error: file scr\com\sun\javacard\saples\Wallet\Wallet.opt could not be found
    Usage: converter <options> package_name package_aid major_version.minor_ver
    sion
    OR
    converter -config <filename>
    use file for all options and parameters to converter
    Where options include:
    -classdir <the root directory of the class hierarchy>
    set the root directory where the Converter
    will look for classes
    -i support the 32-bit integer type
    -exportpath <list of directories>
    list the root directories where the Converter
    will look for export files
    -exportmap use the token mapping from the pre-defined export
    file of the package being converted. The converter
    will look for the export file in the exportpath
    -applet <AID class_name>
    set the applet AID and the class that defines the
    install method for the applet
    -d <the root directory for output>
    -out [CAP] [EXP] [JCA]
    tell the Converter to output the CAP file,
    and/or the JCA file, and/or the export file
    -V, -version print the Converter version string
    -v, -verbose enable verbose output
    -help print out this message
    -nowarn instruct the Converter to not report warning messages
    -mask indicate this package is for mask, so restrictions on
    native methods are relaxed
    -debug enable generation of debugging information
    -nobanner suppress all standard output messages
    -noverify turn off verification. Verification is default
    *********************************************************May I know What is the correct command line to convert the class file and what must I do to before converting the class file?
    I saw some article saying we must use JDK1.3, is it a must?
    Your solution is highly appreciated.
    Thank you!

    Hi Ricardo,
    I saved the file below as WalletApp.opt in the directory of scr\com\sun\javacard\samples\WalletApp
    -out EXP JCA CAP
    -exportpath c:\javacard\java_card_kit-2_2\api_export_files
    -applet 0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x2:0x1 WalletApp.WalletApp
    WalletApp 0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x2 1.0
    But I still have the problem below:
    C:\JavaCard\java_card_kit-2_2\samples>converter -config scr\com\sun\javacard\sam
    ples\WalletApp\WalletApp.opt
    error: file scr\com\sun\javacard\samples\WalletApp\WalletApp.opt could not be fo
    und
    Usage: converter <options> package_name package_aid major_version.minor_ver
    sion
    OR
    converter -config <filename>
    May I know What's wrong with my command or file?
    Where can I download JDK because what I can find is J2SDK.
    Thank you!

  • Convert smart quotes and other high ascii characters to HTML

    I'd like to set up Dreamweaver CS4 Mac to automatically convert smart quotes and other high ASCII characters (m-dashes, accent marks, etc.) pasted from MS Word into HTML code. Dreamweaver 8 used to do this by default, but I can't find a way to set up a similar auto-conversion in CS 4.  Is this possible?  If not, it really should be a preference option. I code a lot of HTML emails and it is very time consuming to convert every curly quote and dash.
    Thanks,
    Robert
    Digital Arts

    I too am having a related problem with Dreamweaver CS5 (running under Windows XP), having just upgraded from CS4 (which works fine for me) this week.
    In my case, I like to convert to typographic quotes etc. in my text editor, where I can use macros I've written to speed the conversion process. So my preferred method is to key in typographic letters & symbols by hand (using ALT + ASCII key codes typed in on the numeric keypad) in my text editor, and then I copy and paste my *plain* ASCII text (no formatting other than line feeds & carriage returns) into DW's DESIGN view. DW displays my high-ASCII characters just fine in DESIGN view, and writes the proper HTML code for the character into the source code (which is where I mostly work in DW).
    I've been doing it this way for years (first with GoLive, and then with DW CS4) and never encountered any problems until this week, when I upgraded to DW CS5.
    But the problem I'm having may be somewhat different than what others have complained of here.
    In my case, some high-ASCII (above 128) characters convert to HTML just fine, while others do not.
    E.g., en and em dashes in my cut-and-paste text show as such in DESIGN mode, and the right entries
        &ndash;
        &mdash;
    turn up in the source code. Same is true for the ampersand
        &amp;
    and the copyright symbol
        &copy;
    and for such foreign letters as the e with acute accent (ALT+0233)
        &eacute;
    What does NOT display or code correctly are the typographic quotes. E.g., when I paste in (or special paste; it doesn't seem to make any difference which I use for this) text with typographic double quotes (ALT+0147 for open quote mark and ALT+0148 for close quote mark), which should appear in source code as
        &ldquo;[...]&rdquo;
    DW strips out the ASCII encoding, displaying the inch marks in DESIGN mode, and putting this
        &quot;[...]&quot;
    in my source code.
    The typographic apostrophe (ALT+0146) is treated differently still. The text I copy & paste into DW should appear as
        [...]&rsquo;[...]
    in the source code, but instead I get the foot mark (both in DESIGN and CODE views):
    I've tried adjusting the various DW settings for "encoding"
        MODIFY > PAGE PROPERTIES > TITLE/ENCODING > Encoding:
    and for fonts
        EDIT > PREFERENCES > FONTS
    but switching from "Unicode (UTF-8)" to "Western European" hasn't solved the problem (probably because in my case many of the higher ASCII characters convert just fine). So I don't think it's the encoding scheme I use that's the problem.
    Whatever the problem is, it's caused me enough headaches and time lost troubleshooting that I'm planning to revert to CS4 as soon as I post this.
    Deborah

  • Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it?

    Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it in some other form befor dragging it?

    Hello djensen1x,
    Could you please let me know what version of Acrobat are you using.
    Also, tell me your workflow of combining those PDF files?
    Please share the screenshot of the error message that you get.
    Hope to get your response.
    Regards,
    Anubha

  • Already Converted 10 of my family members over to AT&T for Nokia Lumia 900!!!

    Verizon,
    You decided to drag you feet, promote the crap out of Android and stop supporting Windows Phone 7.
    So I converted 10 of my family members over yesterday to AT&T for the Nokia Lumia 900.
    I got them $100 credit towards the Nokia Lumia 900 which AT&T was charging $99 dollars for the phone on Pre-Order.
    So my family members only had to pay $36 for the activation fee.
    Verizon, you had your chance.  You had multiple chances.  If you truly wanted an LTE Windows Phone 7 from Microsoft, you could have easily worked something out with them, just like AT&T did.
    All the information has been leaked out, Apollo/Windows Phone 8 was supposed to have LTE but because AT&T showed that they really were interested in Windows Phone 7 and actually carring a lineup of Windows Phone 7, Microsoft worked it out for them.
    So you can take all your Droid crap that you have heavily invested in, along with all your iPhone 4s that keep hogging all the bandwidth on your network and stick it were the sun don't shine.
    I promise you this, when my contract is done I will be terminating my account in FULL and switching over to AT&T as well.
    To not even stand behind a product that we all have signed 2 year contracts with is unacceptable for the price were paying.  To hold back all updates besides Mango is unacceptable just to lock in new 2 year contracts.  And I'm talking about Droid too.
    Carriers should not be in controll of phone updates PERIOD!!!  Updates should be released from the OS Manufactures just like on computers.  This business model that the industry has created is a SCAM, JOKE and an INSULT to everyone that puts there hard earned money up for phone service.
    Verizon, you have lost all respect in my book, and I will do everything possible to get everyone and everybody I talk to away from your network.
    Only way to solve this issue is to address the Windows Phone 7 community and actually annouce something, PERIOD!!!  Release the 8107 update as a good faith measure and issue a press release stating your business model regarding Windows Phone 7... Unless you want more dollars going to AT&T.
    Also, latest news shows that Android only made $22million in revenues last year, and spend $20 billion acquiring Motorola.  So I don't see Andriod being able to do much in the year 2012 to ramp things up to compete against Windows Phone 7/Nokia and Apple.
    Do Something, NOW!!! CAN YOU HEAR US NOW!!!
    Also, here's another suggestion... Do like AT&T has done and give users a early termination fee to get out of there contracts.  I believe they charge $35 dollars or something higher if your not satisified and want to terminate your contract early.
    Since you don't want to support or offer any more Windows Phone 7, why keep us as unhappy customers.  Give us an option to pay a early termination fee and leave!!!
    TheJester77

    thejester77 wrote:
    Also, latest news shows that Android only made $22million in revenues last year, and spend $20 billion acquiring Motorola.  So I don't see Andriod being able to do much in the year 2012 to ramp things up to compete against Windows Phone 7/Nokia and Apple. What news are you reading? Android is not a company but a phone operating system. GOOGLE acquired Motorola, not Android. GOOGLE's 2011 revenues were 37.9 billion, NOT 22 million. Google acquired Motorola for 12.5 billion, NOT 20 billion.
    Also, here's another suggestion... Do like AT&T has done and give users a early termination fee to get out of there contracts.  I believe they charge $35 dollars or something higher if your not satisified and want to terminate your contract early.
    Since you don't want to support or offer any more Windows Phone 7, why keep us as unhappy customers.  Give us an option to pay a early termination fee and leave!!! Again, where are you getting this information? The AT&T ETF is $325 less $10 for each month of your contract which has been completed. It is NOT $35. Verizon has a similar, although slightly higher ETF of $350 less $10 for each month of your contract which has been completed.
    Yes, we can hear you, but you are not making any sense!

  • How can I convert an int to a string?

    Hi
    How can I convert an int to a string?
    /ad87geao

    Here is some the code:
    public class GUI
        extends Applet {
      public GUI() { 
        lastValue = 5;
        String temp = Integer.toString(lastValue);
        System.out.println(temp);
        showText(temp);
      private void showText(final String text) {
        SwingUtilities.invokeLater(new Runnable() {
          public void run() {
            tArea2.setText(text + "\n");
    }

Maybe you are looking for

  • BEx report issue on setting offset value

    Friends, I have got a Bex reporting requirement as follows. Given a Calendar week I have to show data for 5 Key figures for the next 3 calendar weeks.  For ex: if I enter 05/2006 I have to show data for 05/2006, 06/2006 and 07/2006.  I thoght of usin

  • Multiple iCloud accounts and find my devices

    i have an apple id for app store that my wife and i share. i have a icloud account for my stuff and use it for find my devices on our iPhones,iPads and my macbook pro. my wife has her icloud account for her stuff. my question is how can i add her mac

  • OnLine number in Ontario Canda

    Is it possible to get an online number form Toronto Canada?

  • Fields not visible after replication ?(hide tick removed)

    Hi experts, I have added fields from LO communication structure to extract structure and i have removed the Hide option in maintain datasource.When i am  replicating in BI those fields are not visible.What is the reason? I am eagerly waiting for repl

  • Business Connector 4.7 SSL configuration

    HI, I am configuring SSL in Business Connector 4.7 (to use HTTPS using digital certificates). I am following the admin guide.  I finished the first step - Configuring the Server to Use SSL. The next step is to import the client certificate and map it