Boxing match scam

As many other users reported, I was charged $79.99 for a UFC match on 04/25 which nobody ordered or viewed in my family. Most probably it was one of Verizon pop-up advertisements which you try to get rid of by pressing some buttons on the remote - and if you press OK button - you are charged - even if you did not realize it that you just ordered something you had no intentions to order. I tried to speak to an agent - no luck removing this charge, I tried supervisor next - still same response - our system shows the you ordered and watched it. How can they know they watched it? They said your Fios box was tuned to that program for 9 hours straight. So, if UFC match started at 9pm, =9 hour of watching - this would be till 6am. I told them that this does not make any sense - TV was off all night long, just the Fios box was on until we woke up at 6am and turned on TV and switch the channel. Well, logical reasoning is not a good friend with Verizon supervisors - so supervisor refused to issue a credit. I think I should make a case with the local BBB, if this does not help - this is clearly a Verizon's unfair business practice.

Hi Oll,
Your issue has been escalated to a Verizon agent. Before the agent can begin assisting you, they will need to collect further information from you. Please go to your profile page for the forum and look at the top of the middle column where you will find an area titled "My Support Cases". You can reach your profile page by clicking on your name beside your post, or at the top left of this page underneath the title of the board.
Under "My Support Cases" you will find a link to the private board where you and the agent may exchange information. The title of your post is the link. This should be checked on a frequent basis, as the agent may be waiting for information from you before they can proceed with any actions. To ensure you know when they have responded to you, at the top of your support case there is a drop down menu for support case options. Open that and choose "subscribe". Please keep all correspondence regarding your issue in the private support portal.

Similar Messages

  • How do I create an input box with a cancel button that will end a loop in my script?

    I have been working on a script for my client and I am having trouble getting it to work properly. I stole most of the code from the PowerShell Tip of the Week "Creating a Custom Input Box". I also took someone's code for the Show-MessageBox function.
    I have slightly modified the original code with two parameters and an additional text box. The first field is for an e-mail address and the second is for an employee number.
    I need to know how I can get a Do Until loop to recognize when the cancel button is pushed and break the loop and effectively end the script. The work happens at the end but perhaps I need something added/modified in the InputBox function.
    I want the script to check to see if anything has been entered in the second text box. If empty it displays a message and calls the InputBox function again. Then if there is something I use elseif to check to see if it matches my RegEx (digits only). If
    it doesn't match it will loop and call the InputBox function again.
    This all works fine. The problem I am having is that I cannot cancel out of the form. I'd like the loop to continue until the second box matches my RegEx or Cancel is clicked. Clicking cancel doesn't break the loop. I need to know how I can stop the loop
    when cancel is pressed. I've seen Stack "Overflow: PowerShell Cancel Button Stop Script" but I don't think this will work in a loop.
    Any help would be awesome. As a note, I DO NOT want to use the VB Interaction stuff.
    function InputBox {
    param ($Name,$EN)
    [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Drawing")
    [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
    $objForm = New-Object System.Windows.Forms.Form
    $objForm.Text = "Data Entry Form"
    $objForm.Size = New-Object System.Drawing.Size(300,200)
    $objForm.StartPosition = "CenterScreen"
    $objForm.KeyPreview = $True
    $objForm.Add_KeyDown({if ($_.KeyCode -eq "Enter")
    {$x=$objTextBox.Text;$objForm.Close()}})
    $objForm.Add_KeyDown({if ($_.KeyCode -eq "Escape")
    {$objForm.Close()}})
    $OKButton = New-Object System.Windows.Forms.Button
    $OKButton.Location = New-Object System.Drawing.Size(75,120)
    $OKButton.Size = New-Object System.Drawing.Size(75,23)
    $OKButton.Text = "OK"
    $OKButton.Add_Click({$objForm.Close()})
    $objForm.Controls.Add($OKButton)
    $CancelButton = New-Object System.Windows.Forms.Button
    $CancelButton.Location = New-Object System.Drawing.Size(150,120)
    $CancelButton.Size = New-Object System.Drawing.Size(75,23)
    $CancelButton.Text = "Cancel"
    $CancelButton.Add_Click({$objForm.Close()})
    $objForm.Controls.Add($CancelButton)
    $objLabel = New-Object System.Windows.Forms.Label
    $objLabel.Location = New-Object System.Drawing.Size(10,20)
    $objLabel.Size = New-Object System.Drawing.Size(280,20)
    $objLabel.Text = "Employee Email Address:"
    $objForm.Controls.Add($objLabel)
    $objTextBox = New-Object System.Windows.Forms.TextBox
    $objTextBox.Location = New-Object System.Drawing.Size(10,40)
    $objTextBox.Size = New-Object System.Drawing.Size(260,20)
    if ($Name) {
    $objTextBox.Text = $Name
    else {
    $objTextBox.Text = "@domain.com"
    $objLabel2 = New-Object System.Windows.Forms.Label
    $objLabel2.Location = New-Object System.Drawing.Size(10,70)
    $objLabel2.Size = New-Object System.Drawing.Size(280,20)
    $objLabel2.Text = "Employee Number:"
    $objForm.Controls.Add($objLabel2)
    $objTextBox2 = New-Object System.Windows.Forms.TextBox
    $objTextBox2.Location = New-Object System.Drawing.Size(10,90)
    $objTextBox2.Size = New-Object System.Drawing.Size(260,20)
    $objForm.Controls.Add($objTextBox)
    $objForm.Controls.Add($objTextBox2)
    $objForm.Topmost = $True
    $objForm.Add_Shown({$objForm.Activate()})
    [void] $objForm.ShowDialog()
    $Script:ButtonName = $objTextBox.Text
    $script:ButtonEN =$objTextBox2.Text
    $ButtonName; $ButtonEN
    Function Show-MessageBox{
    Param(
    [Parameter(Mandatory=$True)][Alias('M')][String]$Msg,
    [Parameter(Mandatory=$False)][Alias('T')][String]$Title = "",
    [Parameter(Mandatory=$False)][Alias('OC')][Switch]$OkCancel,
    [Parameter(Mandatory=$False)][Alias('OCI')][Switch]$AbortRetryIgnore,
    [Parameter(Mandatory=$False)][Alias('YNC')][Switch]$YesNoCancel,
    [Parameter(Mandatory=$False)][Alias('YN')][Switch]$YesNo,
    [Parameter(Mandatory=$False)][Alias('RC')][Switch]$RetryCancel,
    [Parameter(Mandatory=$False)][Alias('C')][Switch]$Critical,
    [Parameter(Mandatory=$False)][Alias('Q')][Switch]$Question,
    [Parameter(Mandatory=$False)][Alias('W')][Switch]$Warning,
    [Parameter(Mandatory=$False)][Alias('I')][Switch]$Informational)
    #Set Message Box Style
    IF($OkCancel){$Type = 1}
    Elseif($AbortRetryIgnore){$Type = 2}
    Elseif($YesNoCancel){$Type = 3}
    Elseif($YesNo){$Type = 4}
    Elseif($RetryCancel){$Type = 5}
    Else{$Type = 0}
    #Set Message box Icon
    If($Critical){$Icon = 16}
    ElseIf($Question){$Icon = 32}
    Elseif($Warning){$Icon = 48}
    Elseif($Informational){$Icon = 64}
    Else{$Icon = 0}
    #Loads the WinForm Assembly, Out-Null hides the message while loading.
    [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | Out-Null
    #Display the message with input
    $Answer = [System.Windows.Forms.MessageBox]::Show($MSG , $TITLE, $Type, $Icon)
    #Return Answer
    Return $Answer
    $num = "^\d+$"
    do {
    if (!($ButtonEN)) {
    Show-MessageBox -Msg "You must enter a numeric value for the employee number." -Title "Employee Number Missing" -Critical
    InputBox -Name $ButtonName
    elseif ($ButtonEN -notmatch $num) {
    Show-MessageBox -Msg "The employee number must contain numbers only!" -Title "Non-numerical characters found" -Critical
    InputBox -Name $ButtonName
    until ( ($ButtonEN -match $num) -or (<this is where I want to be able to use the cancel button>)

    Here is a simple validation method.
    function New-InputBox{
    param(
    $EmailAddress='',
    $EmployeeNumber=''
    Add-Type -AssemblyName System.Windows.Forms
    $Form=New-Object System.Windows.Forms.Form
    $Form.Text='Data Entry Form'
    $Form.Size='300,200'
    $Form.StartPosition='CenterScreen'
    $OKButton=New-Object System.Windows.Forms.Button
    $OKButton.Location='75,120'
    $OKButton.Size='75,23'
    $OKButton.Text='OK'
    $OKButton.DialogResult='Ok'
    $OKButton.CausesValidation=$true
    $Form.Controls.Add($OKButton)
    $CancelButton = New-Object System.Windows.Forms.Button
    $CancelButton.Location = New-Object System.Drawing.Size(150,120)
    $CancelButton.Size = New-Object System.Drawing.Size(75,23)
    $CancelButton.Text ='Cancel'
    $CancelButton.DialogResult='Cancel'
    $CancelButton.CausesValidation=$false
    $Form.Controls.Add($CancelButton)
    $Label1=New-Object System.Windows.Forms.Label
    $Label1.Location='10,20'
    $Label1.Size='280,20'
    $Label1.Text='Employee Email Address:'
    $Form.Controls.Add($Label1)
    $TextBox1=New-Object System.Windows.Forms.TextBox
    $TextBox1.Location='10,40'
    $TextBox1.Size='260,20'
    $textbox1.Name='EmailAddress'
    $textbox1.Text=$EmailAddress
    $Form.Controls.Add($textbox1)
    $Label2=New-Object System.Windows.Forms.Label
    $Label2.Location='10,70'
    $Label2.Size='280,20'
    $Label2.Text='Employee Number:'
    $Form.Controls.Add($Label2)
    $TextBox2=New-Object System.Windows.Forms.TextBox
    $TextBox2.Location='10,90'
    $TextBox2.Size='260,20'
    $TextBox2.Name='EmployeeNumber'
    $TextBox2.Text=$EmployeeNumber
    $Form.Controls.Add($TextBox2)
    $Form.AcceptButton=$OKButton
    $Form.CancelButton=$CancelButton
    $Form.Topmost = $True
    $form1_FormClosing=[System.Windows.Forms.FormClosingEventHandler]{
    if($Form.DialogResult -eq 'OK'){
    if($textbox1.Text -eq ''){
    [void][System.Windows.Forms.MessageBox]::Show('please enter an email address','Validation Error')
    $_.Cancel=$true
    }else{
    # Check empno is all digits
    if("$($TextBox2.Text)" -notmatch '^\d+$'){
    [void][System.Windows.Forms.MessageBox]::Show('please enter a number "999999"','Validation Error')
    $_.Cancel=$true
    $form.add_FormClosing($form1_FormClosing)
    $Form.Add_Shown({$Form.Activate()})
    if($Form.ShowDialog() -eq 'Ok'){
    # return the form contents
    $Form
    if($f=New-InputBox -EmailAddress [email protected]){
    'Email is:{0} for Employee:{1}' -f $f.Controls['EmailAddress'].Text,$f.Controls['EmployeeNumber'].Text
    }else{
    Write-Host 'From cancelled!' -ForegroundColor red
    ¯\_(ツ)_/¯

  • Acrobat 9.5 Pro now FAILS to detect page size differences if the Trim Box is set

    Previous versions of Acrobat and even of Acrobat 9.x would flag pages whose "size or orientation is different" if the actual media box size was different from page to page. However, it seems that 9.5 now will not flag a document that has pages without a trim box whose media box matches pages with a trim box that are larger.
    This is completely counter-intuitive, as these pages would print at different sizes. Not all devices use the trim box setting in a PDF.
    Can someone explain what changed in Acrobat between then and now and if there is a way to change it back?
    Thank you.

    1) Opened PDF where most of the pages have all page boxes set to zero, with media box (true page size) set to 6" x 9". One subset of pages has a media box of 6.25" x 9.25", but the trim box is set to 0.125" on all sides.
    2) Ran a preflight profile with the option "Page size or orientation differs from page to page" set to "Error", as it has been on all previous versions of Acrobat.
    3) "Page size or orientation differs from page to page" error does not get triggered.
    4) Tried same preflight profile settings on same PDF in Acrobat 7. Error does get triggered.
    5) Tried same preflight profile settings on same PDF on a copy of Acrobat 9 not fully updated to 9.5. Error does get triggered.
    6) Tried on various machines with 9.5 update. Error does not get triggered on any.
    I can only conclude that something has changed in the latest update.

  • IPod missing from box

    So I bought 2 iPod touches for my kids for Christmas from London drugs and on Christmas day they opended them up. My boy had one and my girl Nothing in the box, so I waited till boxing day to phone London drugs and when I did the guy said that they would fix it when we went. By they way I couldn't go to solve it out till today because I had to go into the city where I bought them, an hour away. So I got there and the I told the lady what the guy said on the phone. She said she didn't think they could do anything and she went to talk to the manger. When she came back she said that they couldn't do anything. I talked to her and gave her heck. Now what do I do!? That was my girls christmas present and now she is sad. She also said the guy on the phone didn't know what he was talking about.

    Hi Marlnen: I assume both of the iPods were the first generation? Yes? Is it possible that the serial number on the box matches with one they have in a diplay case at the store.
    Stedman

  • Export to Match Sequence Settings

    I am using Premiere CS5 and I want to export a video clip in the same format as the original footage (Canon XF MPEG 2) at 100% quality (having edited it obviously).
    So I go to >File >Export >Media and check the box 'Match Sequence Settings'.
    How do I change the default 50% to 100%? (I've checked the original Sequence Settings and there doesn't appear to be a 50% or 100% option).
    Many thanks.
    TBC

    Hi TBC,
    I think you're on the wrong track with the export. Camera codecs are for acquisition. There are many different options for Export, and they do not need to be, nor should they be in most cases, the same thing you started with. The general consensus I see on these forums is to avoid "Match Sequence Settings" most of the time.
    Please let us know the destination, and we can then suggest options. For instance, if you simply want to create a "Master" copy of the completed work, on a Mac you might want ProRes, while on the PC you could look at the Lagarith Lossless codec, or the Avid DNxHDcodec (both need to be installed to use them). If going to the web, there's a ton of options, but a YouTube or Vimeo preset is a good place to start, found under "H.264" format.
    Thanks
    Jeff Pulera
    Safe Harbor Computers

  • Non-cumulative Values not showing in Inventory Management Queries

    Hi:
    Has anyone had a problem with the new version and Non-cumulative key figures not showing up in Bex for Inventory Managemet reports? Specifically, they showed and validated back to ECC for our Development and QA boxes but now in our Regression box they are all showing zeros. Our Cumulative values are all showing correctly still within the Regression box. For example, Total Receipts and Total Issues are correctly poplating values but Total Stock is not.
    I have checked and validate that the configuration in the Regression box matches or Dev and QA box.

    Found the problem.  It had to do with the compression variant in the delta process chain.  The compression was set to 'no marker update'.  Since we only started receiving measureable deltas in or regression box this is where the incorrect setting showed up.  Reinitalized and the deltas are working correctly now.

  • I am trying to findout what carrier my playbook 4GLTE is locked to.

    I am trying to findout what carrier my playbook 4GLTE is locked to.
    I bought playbook at an auction done from work for a charity for a Toronto youth fund. the box says telus and all info on box matches serial number and imei.  i have tried using my rogers sim, went to bell and checked, also chatted with telus online and by going to the store. playbook does not accpet any of these carriers sims. i have tried buy unlock code  and so far 8 codes dis not work. i have only two tries left. i have reached out to organizers of auction and have been waiting with no word from them.
    what do i do. playbook works on wfi. the only reason i bought this playbook was to have a tablet for one of my data lines that, i can use when out and about.  i tried calling blackberry support and the way the person i spoke to last time i called  addressed me was very shameful even though i have registered for the complimentary 90days support. i have 3 other playbooks that i use in my home by all are wifi models only.
    details of playbook is below. will really appreciate anyones help.
    IMEI is <removed> and the serial <removed>. the prd from the box is prd-<Removed>.
    playbook is on OS 2.1.0.1526
    MOD EDIT: Removed personal information to comply with Community Guidelines and Terms and Conditions of Use.

    When I restart my iPad the connect to iTunes comes up and stays on until it shuts down again, I have read a report from Apple support suggesting I reinstall iTunes so I might try that again and also your suggestion which i shall also try, but thanks again - rg1547

  • Firefox 3.5 teh Personas are missing and reload page, Also Firefox is bogged and not working correctly, it is NOT working with iGoogle Homepage either, All sorts of problems

    Firefox is bogged and does not reload right.. Firefox Persona's is missing..
    iGoogle when down nearly 2 weeks ago and my iGoogle homepage went missing in action, all gadgets gone, just a blank page, NOTHING worked, all steps did NOT restore it, AND the help forum had some rude employees. The help forum details page is totally and utterly disabled and all you can do is type in the subject line your query and hope they answer, But you cannot type in the box when it asks for details so I had to type that issue also in the subject line, then one female told me from Google and rudely "funny I'm not having a problem with the help forum pages, nobody else is either" something like that but snappy... And rude, NOT helpful at all..
    I'm wondering if Google knows their employees do this because frankly I buy goods and services quite often, its enough to cause me to go somewhere else and even spend a little more for nicer helpers... Anyway... I did all steps over there, Nothing restored my gadgets.. Nobody helped over there EXCEPT to say its all Firefox's fault.
    So that is why I am here... To get help.. no settings over at Google or Firefox have I changed.. But Google did go down nearly 2 weeks ago with ALL blogs, many hundreds lost some important posts. After I spoke with the female it was after blogger came back online.... Then today my settings on myblogger was changed, one minute they are fine, the next they are different colored texts.. The type of background I use there, you have to manually go in to change the background FIRST before you change the text color, both of which I never did and yet someone went in there today to do this.
    sorry for venting, very frustrated with service there.. It only stands to reason that if blogger went down and it happens to be exactly when I lost all gadgets etc, that they need not blame firefox for it... YET though blogger came back up the issue with the gadgets and entire iGoogle homepage is utterly still at hand, so I thought to write to their help forum but to get SLAMMED by a female that would be better off doing a boxing match in an amateur event rather then being impeccably a customer service agent that cares about customers and people.
    I wanted to upgrade to firefox 4 BUT I heard there were some glitches not worked out yet, and I was worried not knowing if since I'm already having a glitch problem if it would make it worse to upgrade.
    so firefox is not loading right, it is also not showing Persona.. And iGoogle is not working right either, not sure if Google and you have a connection but they keep saying its all Firefox's fault.
    can you help me? I hope so... I love firefox and I had to use Opera today only because it was so bad that I had no choice.. Opera works fine but its firefox that I want..
    take care,

    I wish it were that but a long time ago when I had a problem with the gadgets with iGoogle back 6 months ago thereabouts I was asked to disable it then and I did and I just went to re-check and it is still not enabled, however, it will not let me un-install it though.. It only gives me an option to enable or disable.. Any advice ? So I'm wondering if it is something else still or is there a problem with the avast still ?
    thanks again for your help. Mind you that this all started when blogger went down ..
    take care

  • Dark prints using CS5 & Epson R2400 ongoing problem, now new PC and magenta cast

    Have tried every combination of set up in trying to solve problem. Had One Eye (now defunct lamp) various experts etc etc but compensated for dark prints by having screen lightened to bizarre point. Now having a new PC am faced with massive magenta cast. I really don't want to buy a new printer but have had the dark print problem since I got it. Have spoken to Adobe and Epson at length but eventually washed their hands. I feel it is something to do within the computer set up or Photoshop - don't think its printer problem. All drivers updated regularly. Thought it could be monitor problem but don't really think this is the case.
    Any ideas welcome as I think I have tried everything. Use Windows 7.
    Am retired and not very technically minded!  Serious amateur photographer.

    I have an Epson 1280 printer, and I have the same problem with prints. Part of the problem are the different color profiles in the monitor and the printer. The other problem to deal with is the type of photo paper used. While looking at web sites, I found that the ICC Color Profiles for the printer are on the install disc and are not automatically installed. One of the links describes which folder to install the profiles on both Mac & Windows computers.
    As station_two wrote, calibrate your monitor first.
    Below is a link about calibrating.
    http://dpexperience.com/2009/12/18/calibrating-your-monitor-to-your-printer/
    The next link is for printer tips
    http://www.normankoren.com/printers.html#Printer_tips
    And some more here
    http://www.digitaldog.net/tips/
    I do not have an exact answer for you because I have not figured it out myself, but here is what I have been doing on my prints. I might recommend that you work on a copy of the original.
    In the Layer floating window, create a New Adjustment Layer by clicking on the half black/half white circle, and choose Hue/Saturation or Color Balance or Selective Color. Because the prints come out too red, you want to increase the green sliders, which is the opposite of red, and/or decrease the red. (Layer>New Adjustment Layer>Color Balance) is another way to do it.
    Under the menu item Image>Adjust Levels. Move the center triangle at the bottom to lighten the mid-range, or use the center dialog box and change it to 1.20 or 1.30, for example.
    Now press Print with Preview (but you really are not going to print).
    When the dialog box comes up, make sure the Print Space: dropdown is set to Epson Paper or whatever you are using.
    I have been using Relative Colorimetric. Press Print. Another dialog box will come up. At the bottom will be a button for Preview, which will generate a preview of what the photo will look like if printed.
    Keep going back to the original and double click on the Adjustment Layer and adjusting it until the Print Preview looks ok.
    Be sure when you actually print that the paper and color settings in the Epson dialog box match your settings in Photoshop. There is a dropdown that has Print Settings or Color. Often they don't match unless you print several photos in a row. I have found printing at the lower settings (less than 360 dpi) also messes up the color.
    It is not an excellent solution, but until I can figure out more, I am in the same boat as you.
    I'd suggest saving the lightening and color adjustments as two different Actions.

  • How to get attribute from xml file

    I managed to grab all the info from xml, except the "url" attribute in <image type="poster" url="" size="mid" .../>. Any ideas?
    import java.io.*;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.net.*;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.NodeList;
    import org.xml.sax.SAXException;
    public class XmlParser {
         ArrayList<Movie> myMovies;
         Document dom;
         public XmlParser(){
              //create a list to hold the movie objects
              myMovies = new ArrayList<Movie>();
         public void runExample(String adr, String tagName) {
              parseXmlFile(adr);
              parseDocument(tagName);
              printData();          
         private void parseXmlFile(String adr){
              //get the factory
              DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
              try {               
                   //Using factory get an instance of document builder
                   DocumentBuilder db = dbf.newDocumentBuilder();
                   //parse using builder to get DOM representation of the XML file
                   URL xmlUrl = new URL(adr);
                   InputStream in = xmlUrl.openStream();
                   dom = db.parse(in);               
              }catch(ParserConfigurationException pce) {
                   pce.printStackTrace();
              }catch(SAXException se) {
                   se.printStackTrace();
              }catch(IOException ioe) {
                   ioe.printStackTrace();
         private void parseDocument(String tagName){
              //get the root elememt
              Element docEle = dom.getDocumentElement();
              //get a nodelist of <movie> elements
              NodeList nl = docEle.getElementsByTagName(tagName);
              if(nl != null && nl.getLength() > 0) {
                   for(int i = 0 ; i < nl.getLength();i++) {
                        //get the movie element
                        Element el = (Element)nl.item(i);
                        //get the Movie object
                        Movie mov = getMovie(el);
                        //add it to list
                        myMovies.add(mov);
          * I take an movie element and read the values in, create
          * an Movie object and return it
          * @param movE
          * @return
         private Movie getMovie(Element movE) {
              String title = getTextValue(movE, "original_name");
              String year = getTextValue(movE, "released");
              String imdbId = getTextValue(movE, "imdb_id");
              double score = getDoubleValue(movE, "score");
              String overview = getTextValue(movE, "overview");
              String poster = movE.getAttribute("url");
              Movie mov = new Movie(title, year, imdbId, score, overview, poster);
              return mov;
         private String getTextValue(Element ele, String tagName) {
              String textVal = null;
              NodeList nl = ele.getElementsByTagName(tagName);
              if(nl != null && nl.getLength() > 0) {
                   Element el = (Element)nl.item(0);
                   textVal = el.getFirstChild().getNodeValue();
              return textVal;
          * Calls getTextValue and returns a int value
          * @param ele
          * @param tagName
          * @return int
         private int getIntValue(Element ele, String tagName) {
              //in production application you would catch the exception
              return Integer.parseInt(getTextValue(ele, tagName));
          * Calls getTextValue and returns a double value
          * @param ele
          * @param tagName
          * @return double
         private double getDoubleValue(Element ele, String tagName) {
              return Double.parseDouble(getTextValue(ele, tagName));
          * Iterate through the list and print the
          * content to console
         private void printData(){
              System.out.println("Total Movies: " + myMovies.size());
              Iterator it = myMovies.iterator();
              while(it.hasNext()) {
                   System.out.println(it.next().toString());
         public static void main(String[] args){
              //create an instance
              XmlParser xp = new XmlParser();
              //call run example
              xp.runExample("http://api.themoviedb.org/2.1/Movie.search/en/xml/apikey/Fight+Club+1999", "movie");
    }Here is the example xml file I used
    <?xml version="1.0" encoding="UTF-8"?>
    <OpenSearchDescription xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
      <opensearch:Query searchTerms="Fight Club 1999"/>
      <opensearch:totalResults>1</opensearch:totalResults>
      <movies>
        <movie>
          <score>8.383284</score>
          <popularity>3</popularity>
          <translated>true</translated>
          <adult>false</adult>
          <language>en</language>
          <original_name>Fight Club</original_name>
          <name>Fight Club</name>
          <alternative_name>El Club de la Lucha</alternative_name>
          <type>movie</type>
          <id>550</id>
          <imdb_id>tt0137523</imdb_id>
          <url>http://www.themoviedb.org/movie/550</url>
          <votes>62</votes>
          <rating>8.4</rating>
          <certification></certification>
          <overview>A lonely, isolated thirty-something young professional seeks an escape from his mundane existence with the help of a devious soap salesman. They find their release from the prison of reality through underground fight clubs, where men can be what the world now denies them. Their boxing matches and harmless pranks soon lead to an out-of-control spiral towards oblivion.</overview>
          <released>1999-09-16</released>
          <images>
            <image type="poster" url="http://hwcdn.themoviedb.org/posters/f75/4bc908ab017a3c57fe002f75/fight-club-original.jpg" size="original" width="1000" height="1500" id="4bc908ab017a3c57fe002f75"/>
            <image type="poster" url="http://hwcdn.themoviedb.org/posters/f75/4bc908ab017a3c57fe002f75/fight-club-mid.jpg" size="mid" width="500" height="750" id="4bc908ab017a3c57fe002f75"/>
            <image type="poster" url="http://hwcdn.themoviedb.org/posters/f75/4bc908ab017a3c57fe002f75/fight-club-cover.jpg" size="cover" width="185" height="278" id="4bc908ab017a3c57fe002f75"/>
            <image type="poster" url="http://hwcdn.themoviedb.org/posters/f75/4bc908ab017a3c57fe002f75/fight-club-thumb.jpg" size="thumb" width="92" height="138" id="4bc908ab017a3c57fe002f75"/>
            <image type="backdrop" url="http://hwcdn.themoviedb.org/backdrops/f71/4bc908ab017a3c57fe002f71/fight-club-original.jpg" size="original" width="1280" height="720" id="4bc908ab017a3c57fe002f71"/>
            <image type="backdrop" url="http://hwcdn.themoviedb.org/backdrops/f71/4bc908ab017a3c57fe002f71/fight-club-poster.jpg" size="poster" width="780" height="439" id="4bc908ab017a3c57fe002f71"/>
            <image type="backdrop" url="http://hwcdn.themoviedb.org/backdrops/f71/4bc908ab017a3c57fe002f71/fight-club-thumb.jpg" size="thumb" width="300" height="169" id="4bc908ab017a3c57fe002f71"/>
          </images>
          <version>73</version>
          <last_modified_at>2010-09-11 14:33:06</last_modified_at>
        </movie>
      </movies>
    </OpenSearchDescription>

    pvujic wrote:
    Thanks, but how can I "fetch" the url from the image element?You've got to first get to the image element. But based on what you've posted though, with a little more coding, you should be able to succeed. Just give it a try! :)

  • Color correction challenge, PP5.5 Mac, ProRes to WMV

    I'm eager to complete my transition from FC Studio to Production Premium CS5.5, but I'm challenged to ensure consistent color in my ProRes to WMV workflow. Any advice would be appreciated.
    My shooting gear: EX1R, w and w/o Nanoflash
    Editing gear: 2008 MacPro (3.1), OSX 10.6.7, 10 GB RAM, ATI Raedon 4870
    Workflow (FCP): Acquire footage, edit native (XD CAM EX/XDCAM HD22), render sequence to ProRes 422, transcode via Quicktime 7 Pro/Flip for Mac to produce WMV files for my PC clients.
    Workflow CS5.5 (intended:) Acquire footage, edit native (XDCAM HD 422 via Nanoflash), output sequence to ProRes, transcode to WMV via Quicktime 7 Pro/Flip for Mac HD. After I put a "trial" sequence together in PP5.5, I adjust footage with 3-way color corrector. Here's where the fun starts:
    Process: I attempt to create a "master file" from the sequence, using AME with output set for Pro Res. The next intended step would be to open the file in Quicktime Pro 7, then encode via Flip for Mac to produce a smaller WMV file for my clients.
    Outcome (1) The results look as though color correction was bypassed completely. After much trial and error, I discovered that when I encoded using ProRes 4444, color corrections were preserved. Yet when I transcoded from 4444 to wmv, (2) the resulting files appeared to have no color correction. No good.
    I'm stumped! I thought I was on to something when I noticed the "preset" for outputting XDCAM HD422 was not set for "progressive," but it appears to make no difference.
    Sidebar: I experience the same issue regardless of use of XDCAM EX or XDCAM HD422 files. With the latter, I've edited clips in MOV and MXF format. Same outcome.
    Until I get this workflow issue sorted out, I'm stalled in completing my transition to PP. I'd like to have acquired gobs more RAM and an Nvidia Quadro 4800 card already, but I need to know that I've fixed this issue first.
    Any suggestions most welcome.
    Sincerely,
    Tom
    Raleigh, NC

    I finally figured it out! If there are any other FCP to PP traitors out there like me in Mac land, here's a workflow that results in WMVs matching the color corrections created in your PP sequence:
    1) Edit native. In my case, I'm working with "XDCAM HD 422," the result of linking a Nanoflash set for 100 mbps/long gop to my EX1R. Both FCP and PP "read" them as 50 mbps files.
    2) Export media to AME, checking the box, "Match Sequence Settings." With little delay, this produces a file with an mpeg extension (the mpeg-2 codec). In Quicktime player, this yields silent footage with no audio. Bummer. End of story, I thought.
    3) But this time, I brought that same "black" file into Apple Compressor. Using the Flip For Mac plug in, I exported to one of my "regular" settings, 2-pass, VBR, 640x360. The result: a perfect color match with my color corrected PP sequence.
    I'm sure there are alternatives to bringing a file that won't play in Quicktime into Compressor. I'll try Quicktime Pro and Streamclip next. But the point -- I think -- is to not bother with any more intermediate formats/files than one has to.
    Sighs of relief here.
    Tom

  • Nokia Belle Browser Issues

    Hello Again, 
    I have just encountered another problem with my Nokia N8 after the update to Belle. 
    My browser is just horrible - I can hardly see images on it because they are too blurry. My facebook dialogue boxes are too small and the pictures and other information displayed on the websites is extremely blurry and unrecognizable. To be honest, I have no idea how to approach the issue because with Anna I have not encountered such a problem. 
    Anyone, any solutions to that?? 
    Thanks guys ) 

    Unfortunately, I am not able to at the moment. 
    Still, let me describe it more properly - basically images are too blurry. For example, the Bing search page comes out with a picture everytime you load Bing. Well, the picture looks way too blurry in the Belle browser. Other example - please see m.facebook.com - the dialogue boxes match the width of the screen. Well, in my case, the dialogue boxes are way too small - they are hardly half of the width of my screen. 
    Images on facebook do not appear in normal size - rather, they appear as very small, tiny images which cannot be properly reviewed. For example, if you tap on an image to view, it would be almost unrecognizably small and blurry. Text appears to be absolutely fine, no problem with text under the new browser. However, images and dialogue boxes are a real problem. 

  • ((FoX Tv)) Pacquiao vs Bradley Live Streaming Video Online HD Fight TV

    Pacquiao vs Bradley Live Streaming Fight Online PPV Channel Coverage 
    Pacquiao vs Bradley Live
    Date: 12th April
    Bradley's WBO welterweight title
    Enjoy This Live Game Here
    Welcome to everyone to watch this exciting Boxing Match between Pacquiao vs Bradley. The Game is Scheduled on Saturday, 12th April.
    So, Watch This PPV Boxing Game via This Sports Channel Site.
    Catch The Game Here....
    http://goo.gl/ychiwt
    http://goo.gl/ychiwt
    http://goo.gl/ychiwt

    http://goo.gl/8RNjMM
    http://goo.gl/8RNjMM
    http://goo.gl/8RNjMM
    http://goo.gl/8RNjMM
    http://goo.gl/8RNjMM
    http://goo.gl/8RNjMM
    http://goo.gl/8RNjMM
    http://goo.gl/8RNjMM
    http://goo.gl/8RNjMM
    http://goo.gl/8RNjMM
    http://goo.gl/8RNjMM
    http://goo.gl/8RNjMM

  • ((FoX Tv)) Bradley vs Pacquiao Live Streaming Video Online HD Fight TV

    Bradley vs Pacquiao Live Streaming Fight Online PPV Channel Coverage 
    Bradley vs Pacquiao Live
    Date: 12th April
    Bradley's WBO welterweight title
    Enjoy This Live Game Here
    Welcome to everyone to watch this exciting Boxing Match between Bradley vs Pacquiao. The Game is Scheduled on Saturday, 12th April.
    So, Watch This PPV Boxing Game via This Sports Channel Site.
    Catch The Game Here....
    http://goo.gl/MhNI9y
    http://goo.gl/MhNI9y
    http://goo.gl/MhNI9y

    Hi Guys Don’t mistake to start watching Manny Pacquiao vs Tim Bradley Online Boxing match on You’r Pc,Laptop,iphone.ipad,mobile,mac &Android /iOs & tab device. So Join now Today's big Fight
    12 rounds – Welterweight division (for Bradley's WBO title)  match from this site & click on the link below & enjoy Online live coverage . Easy
    to use You can watch Anytime ! Anywhere! Anyhow access. So Just Sing Up Then & Start watching Manny Pacquiao vs Tim Bradley online – Fight Stream : live , preview, highlights and recaps All available here.
    http://goo.gl/Z5jpDi
    http://goo.gl/Z5jpDi
    http://goo.gl/Z5jpDi
    http://goo.gl/Z5jpDi

  • How to change device names?

    This questions revolves around three V490s.
    - All are connected to the same raid.
    - All have cards in the same slots.
    - One box had only 1 internal drive, two came with 2 internal drives.
    - All have stmsboot enabled.
    - When doing a format, 2 boxes show the paths to be the same (ie, c6txxxxx), 1 box shows the path to be different (ie, c4txxxx).
    How do I go about changing the device name so that the c4txxx on the one box matches the c6txxxx devices name on the other two boxes?
    - I have inserted a secondary drive into the 1 box, rebooted with -r. No difference.
    - I removed the path_to_inst, rm c4txxx* entries from /dev/[r]dsk, and rebooted with -ras options. No difference.
    - I manually edited the path_to_inst to use same device numbers (entry in 2nd column) as is used in the other 2 boxes' path_to_inst files, rm c4txxx* entries from /dev/[r]dsk, rebooted -r. Still no difference.
    - I tried using a path_to_inst direct from one of the 2 boxes that have the matching device names. No difference.
    I'm quickly running out of options. The device names are supposed to be the same for the Oracle ASM application. Anyone have any ideas or experiences they can share concerning this matter? Thanks.

    In single user mode, edit /etc/path_to_inst and renumber the device.
    You probably want to halt and do a boot -r after this.
    The best way to figure out which lines to change.
    Run format and note the device path for the controller in question.
    Then search for that line in the file.
    This is all completely unsupported and at your own risk. You might want to experiment on a test server before doing it to a machine you care about....

Maybe you are looking for

  • Magic Mouse tracking/clicking issue

    I have identical systems at home and at work...2007 Mac Pro, 10.6.2, and the Magic Mouse. Magic Mouse works perfectly on my home system, but on my work system it's almost unusable. Terrible lag as I move the pointer around the screen area...sometimes

  • Reg combining two scenarios in PI7.3

    Hi Experts, My scenario has two flows: 1) File is sent from third party and placed in ECC directory 2)  Once the file is placed RFC program should be triggered. I have configured the file transfer for the first flow. Can any one let me know how to co

  • Pictures unable to import to PC

    pictures not able to import to my PC

  • Build to disk image?

    Does anyone know if, and how, I can build a finished project to a disk image, so i can make copies in toast easier??

  • Install SP2013 Enterprise edition in Windows 8.1

    Hi,      I am trying to install SP2013 in my LAPTOP 8.1 and i am getting error while running the Pre request. The error is  The tool was unable to install Application Server Role web server IIS Role. Kindly help me to resolve this.