While converting an old project over to drupal i ran into the issue that i needed dynamic page titles. Since drupal has no support for dynamic page titles and you can’t leave the title blank and use a outside drupal page title I had to search inside drupal files until i noticed the following line [...]
Archive for August, 2009
ReferenceError: Error #1065: Variable XXX is undefined.
If you run into this error while writing an MXML class and you double checked that it really gets defined properly you might want to check the bindings. <mx:DataGrid dataProvider="myListDP" height="100%" width="100%"/> is wrong since it misses the brackets. Use <mx:DataGrid dataProvider="{myListDP}" height="100%" width="100%"/> instead.