Quentin
unread,May 22, 2008, 3:59:09 PM5/22/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ActionScript 3 Flickr Library
Hi there,
I just downloaded the sources from SVN and played with it a bit and
I've noticed a strange behaviour with some parameters in
Upload.upload...
In fact, it seems like hidden, is_family, is_friend and is_public are
not handled correctly.
I commented the "if ([parameter])" on lines with "sig +=" and "vars.
[parameter]" and everything was smooth!
Here what the blocks now look like:
/*if ( hidden ) */sig += "hidden" + ( hidden ? 1 : 0 );
/*if ( is_family ) */sig += "is_family" + ( is_family ? 1 : 0 );
/*if ( is_friend ) */sig += "is_friend" + ( is_friend ? 1 : 0 );
/*if ( is_public ) */sig += "is_public" + ( is_public ? 1 : 0 );
and
/*if ( hidden ) */sig += vars.hidden = ( hidden ? 1 : 0 );
/*if ( is_family ) */vars.is_family = ( is_family ? 1 : 0 );
/*if ( is_friend ) */vars.is_friend = ( is_friend ? 1 : 0 );
/*if ( is_public ) */vars.is_public = ( is_public ? 1 : 0 );
Anyone confirms that?