Browsing the archives for the ActionScript tag

LaTeX ActionScript 3 Listings Preset

Today I’ve been looking for a way to print my code efficiently for my bachelor project. I use to copy paste everything but from now on this is a thing of the past. I decided to use LaTeX to format my code as it can pretty much do everything else.
I found a package that could [...]

22 Comments
May 23, 2009 in Integrated Project, Uncategorized
Tagged , , ,

Issue Downloading Files using FileReference.

Today I searched for about 2 hours to resolve an issue I had in Flex. I had to make sure that a file was grabbed up for download when a user in the Collibra Cockpit used the export function.
Now, the normal way to do this is as follow:

_urlReq = new URLRequest("downloadFile.jsp");

_urlReq.method = URLRequestMethod.POST;
_urlReq.data = new URLVariables();
_urlReq.data.content [...]

No Comments
May 17, 2009 in ActionScript, Cockpit, Flex, Integrated Project
Tagged , , , ,