[svn] 819: Can't figure out why this broke the build, but reverting it for further investigation

Revision: 819
Author: [email protected]
Date: 2008-03-14 13:51:51 -0700 (Fri, 14 Mar 2008)
Log Message:
Can't figure out why this broke the build, but reverting it for further investigation
Modified Paths:
flex/sdk/trunk/build.xml

Revision: 819
Author: [email protected]
Date: 2008-03-14 13:51:51 -0700 (Fri, 14 Mar 2008)
Log Message:
Can't figure out why this broke the build, but reverting it for further investigation
Modified Paths:
flex/sdk/trunk/build.xml

Similar Messages

  • Almost every time my daughter FaceTimes me, another person answers and he is getting very annoyed. I have checked my settings and can't figure out why this is happening.

    Almost every time my daughter FaceTimes me, another person answers and he is getting very annoyed. I have checked my settings and can't figure out why this is happening.

    Is she facetiming your phone number or email address, b/c email address should not do that.. Was there an old iPhone associated with your number or email?  I've seen texts show up on long "deactivated" devices..

  • I can't figure out why this page splits in live preview... but not in the browser?

    I've finally got my site up and it all runs great... except I can't figure out why this one page behaves like it's too wide.
    http://www.johnnez.com/mainbooks.html
    It comes apart in the Live Preview.... but not in the browser preview.
    Thanks for any tips...
    jn

    john nez wrote:
    HTML is a total incrutable mystery to me... a mystery inside a mystery inside a mystery!
    Sounds to me like you've almost cracked it!
    You have one error that could cause problems and that's the stray </blockquote> tag.  Just delete it.
    The alt="" text will show as an error on the validator but that's easy to fix and worth doing.
    Here's an easy article on that: http://www.456bereastreet.com/archive/200412/the_alt_and_title_attributes/
    In one of your CSS files (JonzheaderindexCSS.css) you have this:
    body {
    margin-top: 20px;
    padding: 0;
    color: #666;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    line-height: normal;
    background-attachment: fixed;
    background-color: #E1B852;
    background-image: url(../images/orange%20plaid.jpg);
    background-repeat: repeat;
    html { overflow-y: scroll; }
    It should be like this:
    html {
    overflow-y: scroll;
    body {
    margin-top: 20px;
    padding: 0;
    color: #666;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    line-height: normal;
    background-attachment: fixed;
    background-color: #E1B852;
    background-image: url(../images/orange%20plaid.jpg);
    background-repeat: repeat;
    It looks like you have that rule repeated further down the page like this:
    html { overflow-y: scroll; }
    There's an extra curly brace there (}) anyway, so it is badly formed but the whole rule and extra curly brace can go.
    You can fix those errors but I have a sneaky suspicion that it isn't gong to solve the issue you describe.
    Fix those issues anyway and post back.  Maybe if you can show a screen shot of what you are seeing in DW it might help?
    Martin
    PS: It's never a good idea to have file names on the web that have spaces in.  Your background rule has this:
    background-image: url(../images/orange%20plaid.jpg);
    That .jpg should be orangeplaid.jpg or orangePlaid.jpg or orange_plaid.jpg and the change should be reflected in the reference to the image so, orangePlaid.jpg should be:
    background-image: url(../images/orangePlaid.jpg);

  • I'm having trouble buying a season pass for The Americans. I have purchased passes to Justified for the past 4 years with no problem. Can't figure out why this purchase won't work.

    I'm having trouble buying a season pass for The Americans. I have purchased passes to Justified for the past 4 years with no problem. Can't figure out why this purchase won't work.

    What is the problem that you are having ? If you are getting an error message then what does it say ?

  • Every e-mail I get comes with a duplicate. I've tried looking at the different features of the program, but I can't figure out why this is happening. Help!

    This has been happening for several years now. After one of the updates, I started getting the duplicates. I've lived with problem for a long time because I could still get e-mails, if over abundantly. My e-mail volume has gone up and up, however, and I'm now getting 60 or 70 e-mails a day because of this problem. Can someone tell me how to fix this?

    I think I might have figured out what the problem is. I have inadvertently set up two Thunderbird accounts. When I followed your advice, I was able to open the pop folder. I also had a mail folder and opened it to find another pop folder. In both pop folders I found a popstate.dat file. When I went into account settings, I found that I had somehow set up two cbldw accounts. The one at the top said mail as incoming server. The second account showed pop as the incoming server. Now this is what perplexes me. Do I attempt to get rid of one of the accounts? I took both popstate.dat files out of the folders and put them on my desktop. When I went back into the two mail folders, behold, the popstate. dat files were still in the folder, having been altered at the time I took them out of the folders.
    I'm really in a quandary as to how to proceed. I'm not sure I can delete the second Thunderbird account without wrecking havoc on my primary e-mail source, and there are a few subtle differences in the two different preferences sections.
    Any helpful suggestions?

  • Can't figure out why this won't work

    Hi,
    I'm working on a simple app that just checks to see if a word is a palindrome. So far it works up to the point where it reverses the word, but when I run my if -else statements to check if it is a palindrome or not, it will always say it isn't even if the word actually is a palindrome.
    import java.io.*;
    public class Main {
        public Main () {
        public static void main(String[] args){
        System.out.println("This program will see if a word is a palindrome.");
        System.out.println("Please enter a word: ");
        BufferedReader br = new BufferedReader( new InputStreamReader(System.in));
        String word = null;
        String wordcopy;
        try {
            word = br.readLine();
        } catch (IOException err) {
            System.out.println("IO error while trying to read the word.");
            System.exit(1);
         wordcopy = PalindromeCheck(word);
         if (wordcopy == word){
            System.out.println("The word is a palindrome.");
         else if (wordcopy != word){
            System.out.println("The word is NOT a palindrome.");
                   /* This is always 
                   * the output to the user whether it is a palindrome or not
        public static String PalindromeCheck(String word) {
            char[] word1 = word.toCharArray();
            char[] word2 = new char[word1.length];
            int wordlength = (word1.length - 1);
            for (int i = wordlength, j = 0; i >= 0; i--, j++) {
                word2[j]=word1;
    System.out.println(word2); /*Checks to make sure it reversed the word*/
    return new String(word2);
    Any ideas on why it does this would be great.
    Thanks a bunch

    if (wordcopy == word){Don't use the == operator to compare the contents of two strings, it doesn't do that. Use the equals method instead:if (wordcopy.equals(word)){And by the way, if you start withif (conditionX)then you don't need to follow on withelse (not conditionX)That second test is redundant. A plain old "else" would do there.

  • Why are you not working? I can't figure out why this works in 1 doc, and not in another

    I'm trying to take info from a cell on 1 spreadsheet and have it populate into a different one (pending if checkbox is true or not). I've been able to do it with 2 files but for some reason this one isn't doing what I need. If the checkbox is unchecked the text should stay in the new spreadsheet cell, if it's checked I want the row removed, but for reason instead of removing the row it just places a 0 in the cell.
    This is what I want:
    Like I said it works great on the other doc, just not on this new one. (the 2 docs vary with some of the text, but in the second image I've "checkboxed" out some of the text)
    Please help!
    Thanks!
    Nikki

    You may have the wrong cell reference  (B2) in the second part of your formula. If B2 is empty, the result will be displayed as a 0. Did you mean to have A2 in both parts of the formula?
    SG

  • Can't figure out why this object = null

    I have a component which is used as an itemrenderer(in a
    datagrid). Inside the checkIfEditable() function it can't seem to
    find "img". It says it's null. I've got no clue why it would do
    that? If I look at the this.img variable during debugging it also
    says null.

    I fixed it by removing the HBox from the itemrenderer's
    component and doing like this:
    <mx:DataGridColumn headerText="" dataField="Open">
    <mx:itemRenderer>
    <mx:Component>
    <mx:HBox horizontalAlign="center" width="18">
    <local:OpenKastRenderer data="{data}"
    isEditable="{isEditable}"/>
    </mx:HBox>
    </mx:Component>
    </mx:itemRenderer>
    </mx:DataGridColumn>
    Altough now i get another error: Access of undefined property
    isEditable.(it's talking about {isEditable})
    I don't get why it says that, isEditable is defined as
    [Bindable]
    public var isEditable:int = new int();
    outside of any function and it's set by another component.
    EDIT: nevermind, i've made it static

  • Can anyone figure out why this runs into an infinite loop?

    Hi,
    I have the following class, and if i run it, I encounter an infinite loop. I have pinpointed the problem and it is because of the lines:
    try {
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            catch (Exception exp) {
                   System.err.println("Failed");
                exp.printStackTrace();
            }Here is the class. Any and all help is greatly appreciated. Thanks!
    package org.aemf.clinical.tol.gui.printing;
    import org.aemf.clinical.tol.model.TOLBion;
    import org.aemf.clinical.tol.model.Range;
    import javax.swing.table.AbstractTableModel;
    import javax.swing.*;
    import java.awt.print.*;
    import java.awt.*;
    import java.util.Iterator;
    import java.util.ArrayList;
    * Created by IntelliJ IDEA.
    * User: arashn
    * Date: Feb 9, 2005
    * Time: 1:26:38 PM
    public class printTableTest implements Printable, Pageable {
         private PageFormat pf;
         private String[] headers = { "Heading 1", "Heading 2", "Heading 3"};
         private java.util.List bions = null;
         private ArrayList<Object[][]> data = new ArrayList<Object[][]>();
         public printTableTest(PageFormat format) {
              this.pf = format;
         public int getNumberOfPages() {
            return 1;
        public PageFormat getPageFormat(int pageIndex) throws IndexOutOfBoundsException {
            return pf;
         public void setBions(java.util.List b) {
              bions = b;
              for(int x=0; x < 3; x++) {
                   //TOLBion bion = (TOLBion) bions.get(x);
                   int ndx = 0;
                   //Object[][] tempData = new Object[bion.getNumRanges()][3];
                   Object[][] tempData = new Object[2][3];
              //     for (Iterator itr = bion.getRanges(); ndx < 2 && itr.hasNext(); ) {
                   for (; ndx < 2 ; ) {
                   // Range range = (Range)itr.next();
                        //tempData[ndx] = new Object[] { new Integer(range.getFrequency()), range.getLowerBound(), range.getUpperBound() };
                        tempData[ndx] = new Object[] { "col 1: " + x, "col 2: " + x, "col 3: " + x };
                        ndx++;
                   data.add(tempData);
        public Printable getPrintable(int pageIndex) throws IndexOutOfBoundsException {
            return this;
         public int print(Graphics g, PageFormat format, int pageIndex) throws PrinterException {
              if(pageIndex > 1) {
                   return Printable.NO_SUCH_PAGE;
                                                                              System.err.println("Page: " + pageIndex);
              JFrame frame = null;
              JTable tableView = null;
              Graphics2D g2 = (Graphics2D) g;
              //Object[][] data = new Object[3][3];
              g2.setColor(Color.black);
              g2.translate(format.getImageableX() + 72, format.getImageableY() + 72);
              for(int x=0; x < data.size(); x++) {
                   tableView = new JTable(new PrintTableModel(headers, data.get(x)));
                   frame = new JFrame();
                   JScrollPane scrollpane = new JScrollPane(tableView);
                   scrollpane.setPreferredSize(new Dimension(300, 80));
                   frame.getContentPane().setLayout(new BorderLayout());
                   frame.getContentPane().add(BorderLayout.CENTER,scrollpane);
                   frame.pack();
                   tableView.paint(g2);
                   g2.translate(0, - tableView.getTableHeader().getHeight());
                   tableView.getTableHeader().paint(g2);
                   g2.translate(0, format.getImageableHeight()/3);
              return Printable.PAGE_EXISTS;
         public static void main(String args[]) {
              PrinterJob printerJob = PrinterJob.getPrinterJob();
              try {
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            catch (Exception exp) {
                   System.err.println("Failed");
                exp.printStackTrace();
             int INCH = 72;
              double LETTER_WIDTH = 8.5 * INCH;
              double LETTER_HEIGHT = 11 * INCH;
            Paper paper = new Paper();
              int margin = INCH/6; // << set your margins here
              double pageWidth = LETTER_WIDTH - 2 * margin;
              double pageHeigth = LETTER_HEIGHT - 2 * margin;
              paper.setImageableArea(margin, margin, pageWidth, pageHeigth) ;
              PageFormat format = printerJob.defaultPage();
              format.setPaper(paper);
            printTableTest pp = new printTableTest(format);
            pp.setBions(new ArrayList());
              printerJob.setPageable(pp);
              boolean doPrint = printerJob.printDialog();
              if (doPrint) {
                   try {
                        printerJob.print();
                   } catch (PrinterException exception) {
                        System.err.println("Printing error: " + exception);
             System.exit(0);
         private class PrintTableModel extends AbstractTableModel {
              private Object[][] data = null;
              private String[] headers = null;
              public PrintTableModel(String[] headers, Object[][] data) {
                   this.headers = headers;
                   this.data = data;
              public int getColumnCount() { return headers.length; }
              public int getRowCount() { return data.length; }
              public Object getValueAt(int row, int col) { return data[row][col]; }
              public String getColumnName(int column) { return headers[column]; }
              public Class getColumnClass(int col) { return getValueAt(0,col).getClass(); }
              public boolean isCellEditable(int row, int col) { return false; }
              public void setValueAt(Object aValue, int row, int column) { data[row][column] = aValue; }
    }

    I have managed to create an even simpler version which tries to print the same header 3 times. Again, if you remove the setLookAndFeel line, everything works out great.
    import javax.swing.table.*;
    import javax.swing.*;
    import java.awt.print.*;
    import java.awt.*;
    * Created by IntelliJ IDEA.
    * User: arashn
    * Date: Feb 9, 2005
    * Time: 1:26:38 PM
    public class printTableTest implements Printable, Pageable {
         private PageFormat pf;
         public printTableTest(PageFormat format) {
              this.pf = format;
         public int getNumberOfPages() {
            return 1;
        public PageFormat getPageFormat(int pageIndex) throws IndexOutOfBoundsException {
            return pf;
        public Printable getPrintable(int pageIndex) throws IndexOutOfBoundsException {
            return this;
         public int print(Graphics g, PageFormat format, int pageIndex) throws PrinterException {
              if(pageIndex > 1) {
                   return Printable.NO_SUCH_PAGE;
              System.err.println("Printing Page: " + pageIndex);
              Graphics2D g2 = (Graphics2D) g;
              g2.setColor(Color.black);
              g2.translate(format.getImageableX() + 72, format.getImageableY() + 72);
              DefaultTableColumnModel dtcm = new DefaultTableColumnModel();
              TableColumn tc = new TableColumn();
              tc.setHeaderValue("Heading 1");
              dtcm.addColumn(tc);
              tc.setHeaderValue("Heading 2");
              dtcm.addColumn(tc);
              tc.setHeaderValue("Heading 2");
              dtcm.addColumn(tc);
              JTableHeader tableHeader = new JTableHeader(dtcm);
              JScrollPane scrollpane2 = new JScrollPane(tableHeader);
              scrollpane2.setPreferredSize(new Dimension(300, 80));
              JFrame frame2 = new JFrame();
              frame2.getContentPane().add(BorderLayout.NORTH,scrollpane2);
              frame2.pack();
              for(int x=0; x < 3; x++) {                   
                   tableHeader.paint(g2);
                   g2.translate(0, format.getImageableHeight()/3);
              return Printable.PAGE_EXISTS;
         public static void main(String args[]) {
              PrinterJob printerJob = PrinterJob.getPrinterJob();
              try {
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            catch (Exception exp) {
                   System.err.println("Failed");
                exp.printStackTrace();
             int INCH = 72;
              double LETTER_WIDTH = 8.5 * INCH;
              double LETTER_HEIGHT = 11 * INCH;
            Paper paper = new Paper();
              int margin = INCH/6; // << set your margins here
              double pageWidth = LETTER_WIDTH - 2 * margin;
              double pageHeigth = LETTER_HEIGHT - 2 * margin;
              paper.setImageableArea(margin, margin, pageWidth, pageHeigth) ;
              PageFormat format = printerJob.defaultPage();
              format.setPaper(paper);
            printTableTest pp = new printTableTest(format);
              printerJob.setPageable(pp);
              boolean doPrint = printerJob.printDialog();
              if (doPrint) {
                   try {
                        printerJob.print();
                   } catch (PrinterException exception) {
                        System.err.println("Printing error: " + exception);
             System.exit(0);
    }

  • Can't figure out why this is happening ??

    Hello All,
    Oracle 11g and 9i on redhat5
    I am trying to run the following procedure:
    begin
    -- Call the procedure
    com.lex_tys_get_random(p_county => 15, p_how_many => 25);
    end;
    I get the following error message: (The schema is 'com')
    ERROR at line 5:
    ORA-06550: line 5, column 9:
    PLS-00302: component 'LEX_TYS_GET_RANDOM' must be declared
    ORA-06550: line 5, column 3:
    PL/SQL: Statement ignored
    When I remove the schema name in front, it does work successfully.
    begin
    -- Call the procedure
    lex_tys_get_random(p_county => 15, p_how_many => 25);
    end;
    *** procedure executed successfully.
    I have a synonym on this, but that's not the issue. With the schema name it fails, without it, it's fine... Appreciate your assistance.
    RB
    Edited by: ronthe11gdba on Sep 28, 2009 8:32 PM

    Does the user you are running com's procedure as have an object named com by any chance?
    SQL> create user com identified by com;
    User created.
    SQL> grant create session, create procedure, create public synonym to com;
    Grant succeeded.
    SQL> create user notcom identified by notcom;
    User created.
    SQL> grant create session, create procedure to notcom;
    Grant succeeded.
    SQL> connect com/com
    Connected.
    SQL> create procedure p (p_word in varchar2) as
      2  begin
      3     dbms_output.put_line('User com says '||p_word);
      4  end;
      5  /
    Procedure created.
    SQL> grant execute on p to notcom;
    Grant succeeded.
    SQL> create public synonym p for p;
    Synonym created.
    SQL> connect notcom/notcom
    Connected.
    SQL> create package com as
      2     procedure proc (p_word in varchar2);
      3  end;
      4  /
    Package created.
    SQL> create package body com as
      2  procedure proc (p_word in varchar2) is
      3  begin
      4     dbms_output.put_line('package com says '||p_word);
      5  end;
      6  end;
      7  /
    Package body created.
    SQL> set serveroutput on
    SQL> exec p('Hi There');
    User com says Hi There
    PL/SQL procedure successfully completed.
    SQL> exec com.p('Hi There');
    ERROR at line 1:
    ORA-06550: line 1, column 11:
    PLS-00302: component 'P' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignoredJohn

  • Can't figure out why this won't position correctly, please help

    Hello,
    I am working on a site, and the right menu bar for some reason is lower than it should be. Here is the url to see what I mean: http://www.kyledake.com/testindex.html
    The menu bar with the schedule/twitter should be hugging the main menu running on the top. I checked the padding on my CSS and couldn't find any issues. Please help!

    Start by fixing your code errors.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.kyledake.com%2Ftestindex.html
    Nancy O.

  • Some of my photos from my iPhone are sinking to my iPad and others are not. I can't work out why this is the case.  Everything seems to be set up correctly.

    Having had an iPhone for some time, I recently purchased an iPad.  Everthing has been set up correctly in terms of iCloud, this was checked by Apple today, the set up in iTunes relating to photos says sync all, again I think this is correct.
    However, some photos from my iPhone taken before I purchased the iPad are sinking to the iPad and others are not.  I have no idea why and would be really greatful for any insights on this matter.
    Furthermore, I have since deleted some photos from my iPhone but these still appear on my iPad and I am unable to delete them.
    Thanks for your help! It's driving me nuts!
    E.

    Open itunes, connect iphone, select what you want, sync

  • I think there is bug in the new itunes, i tried almost everything can't figure out why its showing the secure link to itunes has failed !!! :( i am very upset because of it.. it is giving me hard time cant even backup my device....i tried everything :((((

    almost tried everything....reinstalling ....32 bit 64 bit.. itunes. msconfig. antivirus disabling.... full antiviurs scan, installing on different computers.. using a different network....netshell command and what not.....dns flush....everything static dns...what and what not ....still problem is persisting ...can anyone help please....internet is working absolutely fine...checked everything else everything is good...but itunes cant even backup my device (((( feeling sorry for myself..

    The first step should be to run your network connectivity tests.
    iTunes help>>run diagnostics, just check network connectivity tests.
    Paste the entire result into your next post. You can remove serial numbers.

  • Slow ripping speed - can't figure out why....

    When ripping at aac 128 or 160, I only get speeds up to 5x or 7x (depending if it's the beginning of the CD or the end). I cannot figure out why this is:
    --The drive is rated at 24x read speed
    --This happens with every CD I try
    --The setting for both IDE contollers are DMA
    --The processor is Core Duo at 1.83. When ripping only 50 to 70 percent of the processor is used.
    --7200 rpm hard drive
    --1 gig ram
    --error correction is not enabled
    --no other programs are running
    Another problem is that while ripping, the computer becomes extremely slow - I can't even type! When I press a key it takes half a second for that letter to show up!
    I have had other computers with much slower specs that ripped CDs to iTunes much quicker. What can this be??
    Someone please help me, I have been trying for a while to get to the bottom of this, and I think I may be losing my mind.....
    Thank you....

    For updates from dell.com goto the link below and enter your service tag number (They provide links on how to find this) OR enter your model.
    http://support.dell.com/support/downloads/index.aspx?c=us&l=en&s=gen

  • Can't figure out why my zoom into stills shakes

    I have been using keyframes to create zooms and pans over pics, but every once in a while one of the pics shakes while it's moving. I can't figure out why this happens- any ideas? THANKS

    What you might be experiencing is a scaling issue: you're not really zooming into a picture but actually scaling it. Keep in mind DV is a 4:3 ratio. And your photos probably aren't. Scaling an image is shifting the pixels in an image and so if you're making the picture grow or shrink, you're shifting those pixels and that's could be what you are seeing. What size are your pictures? Are they huge, like twice the size of your standard 720 x 480 DV?
    If your photo images are extremely large (like 2838 x 2205, 300 dpi) you might try opening them up in a program like Photoshop and making a smaller version. You can force the results to be 4:3 by using the Crop tool. Be sure to adjust the Crop settings to something like 1440 px x 960 px , 72 dpi (double 720 x 480 so you can still scale) and then Crop the photo. Keep in mind, you might lose some of the photo because it isn't 4:3, so use Crop judiciously. Save the resulting image as something else and try using it instead of the original. Be sure to _render the results in the Timeline_ even though Final Cut may refer to it as a real-time effect.
    Also you should only have four total keyframes: a keyframe for the starting Scale size and a keyframe for the starting Center position. Then you should have a keyframe for the ending point for both Scale and Center where the image in Final Cut's Canvas window is either larger or smaller. That's it. If you have any other keyframes in-between these four, you can have problems-- which show up as the image moving around, hesitation, or some other unwanted movements.
    Good luck!

Maybe you are looking for