Not finding what you are looking for? Request a recipe!

  1. Avg. Rating 4.5

    Date manipulation and various operations

    I have create a class and sample code for various operations.

  2. Avg. Rating 4.3

    Store data in a local shared object

    We have used SharedObject class to store the limited data of user in local machine, like in a general application when user goes to log in and the application asks to 'remember me'. Using this we can solve this kind of problem or save the application state for the user, so later on we can use that ...

  3. Avg. Rating 4.0

    Word of the Day application

    Here I have coded some scripts for the Word of the Day application. I have used a 3rd party URL to get access to the word data.

  4. Avg. Rating 4.0

    Dynamically resize TextArea field

    The solution is to extend the TextArea control and override the 'measure' method and increase the height of TextArea control as required.

  5. Avg. Rating 4.0

    Identifying a logged in user

    In the application, our requirement is to make a chat application to be used internally. Since each user requires a unique login name, we'll use the company user name for each individual as those are unique for each internal user.

  6. Avg. Rating 4.0

    Notification to multiple users

    In solution part we have user String Utils class, like first we have created message body or notification body than after we have put index in that string body which we change dynamically as per the dynamic data.

  7. Avg. Rating 4.0

    Close event of browser or browser tab

    Using JavaScript and Flex's ExternalInterface we can able to detect the close event of the browser or tab. when ever tab or browser close than 'onunload' event of body of that page called, in that method we call the method of swf(Flex object) which already listen the function using ExternalInterface ...

  8. Avg. Rating 4.0

    Directory information list

    In solution i have used the File class to retrieve the inner directory or file information, through which we can get the information like creation-date, extension size etc...

  9. Avg. Rating 4.0

    Rotate image from center

    On the coding side, one of our team member have suggest some bitmap's matrix trick, and finally we completed that task. We used the image's transform.matrix to manipulate this center point and translate then rotate.

  10. Avg. Rating 4.0

    Auto re-sizable tile

    Using tile control with the use of tile height and width and proper horizontal-gap and vertical-gap of tile control we have solved our problem when the application is re-sized. Below I have added sample code.