An internal build error has occurred. Right-click for more information.

An internal build error has occurred. Right-click for more information.

I don't know what this issue is? It just started happening. I right click on it select more information and it loads this page,

http://learn.adobe.com/wiki/display/Flex/Flex+Builder+3+Compiler+Errors

It tells me to look at the log file but there is no log file??? hmm...

I'm checking what the issue is for me but until then it looks like others have had this issue:

UPDATE! Well I figured it out. I had a countdown component called "endOfWorkDay1" then I had a method called "endOfWorkDay". The only difference being the "1" at the end of the component id. So when I changed the name of the method to endOfDay the error went away.

So the lesson is look for nearly identical ids and then rename them...

XML:
  1. // caused error
  2. <fc:Countdown id="endOfWorkDay1" updateInterval="ten hundredths" backgroundAlpha="0.0" borderThickness="0"
  3.         targetDate="{endOfWorkDay()}"
  4.         text="23 hours 59 min 59 sec 999 ms"
  5.         runtimeText="[h] hours [m] min [s] sec [ms] ms until 5pm" fontWeight="bold" x="365" y="288" height="33" styleName="candlesFont"/>
  6.  
  7. // fixed error
  8. <fc:Countdown id="endOfWorkDay1" updateInterval="ten hundredths" backgroundAlpha="0.0" borderThickness="0"
  9.         targetDate="{endOfDay()}"
  10.         text="23 hours 59 min 59 sec 999 ms"
  11.         runtimeText="[h] hours [m] min [s] sec [ms] ms until 5pm" fontWeight="bold" x="365" y="288" height="33" styleName="candlesFont"/>

Additional Resources:

http://michael.omnicypher.com/2007/02/internal-build-error.html

http://www.mail-archive.com/flexcoders@yahoogroups.com/msg59392.html

3 Responses to “An internal build error has occurred. Right-click for more information.”

  1. Asha says:

    Hi,

    I am using an accordion in my application and it contains 4 canvas.
    Each canvas contain few checkboxes.
    As i launch my application i want the checkboxes to be selected initially.

    The checkboxes of the canvas that is visible, are being selected while the checkboxes of other canvas are not selected.

    Code :

    orders_in_past_cb.selected=true; // Initial settings
    req_res_alerts_cb.selected=true;
    order_alerts_cb.selected=true;
    under_over_alerts_cb.selected=true;
    constraint_alerts_cross_order_cb.selected=true;
    shelflife_alerts_cb.selected=true;
    constaint_alerts_within_order_cb.selected=true;
    operation_alerts_cb.selected=true;
    days_supply_alerts_cb.selected=true;
    inventory_alerts_cb.selected=true;
    order_alerts_productAlerts_cb.selected=true;
    }

    last 3 checkboxes are the components of 2nd canvas.

    When i am running my application i am getting a runtime error as

    TypeError: Error #1009: Cannot access a property or method of a null object reference.

    Help me out to solve the issue.

    Regards,
    Ash

Leave a Reply