Liquid-Photo Version 3.1.33 Submitted to AppWorld
We have just submitted version 3.1.33 to the Blackberry AppWorld. This release addresses several issues that some of our users were experiencing and includes the following.
*Fixed Bugs
** Image scanning now performed in the background so that users with large numbers of photos can still use the application without having to wait for all images to be found.
** Increased small button hit areas to make them easier to select.
Please update if you have been having any issues.
Kind Regards
The Liquid-photo team.
Liquid-Photo Version 3.1.32 Submitted to AppWorld
We have just submitted version 3.1.32 to the Blackberry AppWorld. This release addresses several issues that some of our users were experiencing and includes the following.
*Fixed Bugs
** Invalid images caused the application to crash this has now been fixed and the liquid-photo will now continue to load as well as alert the user about which images are corrupt.
Please update if you have been having any issues.
Kind Regards
The Liquid-photo team.
Unable to Catch IOErrorEvent’s when Loading a ByteArray into an Image
I was trying to load a byteArray into an image control today and would randomly get an Unhandled IOErrorEvent message. Now this shouldn't really happen as the image control uses a default broken image icon to display when there are any loading problems. Well after trying to catch the error unsuccessfully I wanted to know what was going on.
So i went digging and i found in the base class of image, SWFLoader line 1497 the following
Salesforce ActionScript Fun
Ok I have been working with the salesforce API for a couple of days now and I have found it very interesting. However I have found a few things that don't seem to be very clear when trying to simply login to your account from an application that is running outside of the salesforce Sandbox.
So as i have seen a lot of posts about this i have decided to explain how i go about logging in here.
1. To login you need 3 things
1. Username in the form user@user.com
2. Password.
3. Security Token
To get the security token for a user go to setup>Reset your security token. This will then be emailed to you.
Logging into an Administrators account seems to be different than logging into a normal users account.
For Administrators you have to set the protocol to 'http' for normal users set it to 'https' in addition we have to add the token to the password as follows.
private var _conn : Connection = new Connection( ); private function login( username : String, password : String, token : String, isAdmin : Boolean = false ) : void { _connection.protocol = isAdmin ? 'http' : 'https'; var login : LoginRequest = new LoginRequest( ); login.username = value..username; login.password = value..password.toString( ) + value..token.toString( ); login.callback = new Responder( loginResult, loginFault ); _connection.login( login ); }
*.CSS files are Whitespaces Sensitive
Just a quick note to say that if your stylesheets don't seem to be applied correctly
Styles in a .css file are white space sensitive so if you place text-align: left it works but if you place text-align : left it breaks the css as it thinks that the tags name is text-align : ( inclusive of the final space between the last letter and the : ) !!



