Search
1.
(Other/Other)
... in the works, which is going to be much more flexible in terms of addressing the positioning of all of the core elements by taking advantage of Joomla's core plugin architecture, allowing new elements ...
2.
(Flash/ActionScript 3)
I found this snippet while revisiting some old code, and thought it might help someone else. It's trim() for AS3, and it should work in Flash or Flex.
function trim( s:String ):String
{
return s.replace( ...
3.
(Other/Other)
... has become my primary editor for developing Adobe Flash content, mostly due to native support of Adobe Flex for Linux. Since I started using it, I've pretty much stayed and now use it for most of my coding. ...
4.
(Flash/Flex 3)
I had a client request an AJAX loader be used on a Flash site that had, up to that point, been written in compiler-agnostic ActionScript 3. The requirements were not complex, as the animation was not expected ...
5.
(Flash/Flex 3)
I encountered this error after reinstalling my OS (Ubuntu Linux, for the record) while trying to compile something with the Flex 3 SDK. A quick Google search didn't show anything, so I started digging. ...
6.
(Flash/ActionScript 3)
If you've ever needed to make multiline strings in AS3, you may have found yourself doing something awkward like this:
var s:String = "This is a multiline string\n";
s += "It has multiple lines.\n";
s ...
7.
(Flash/Flex 3)
Interesting thing about custom sort on an ArrayCollection in a DataGrid – lockedRowCount causes duplication of items, so in the custom sort you must first set the lockedRowCount = 0, then do the sort, ...




