Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Daniel_Summers
Daniel_Summers
Offline

Badges

Badges
3

Accepted Solutions

Accepted Solutions
1

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
3

Discussions

Discussions
0

Questions

Questions
1

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Daniel_Summers
Customize the badges you want to showcase on your profile
Re: Nested Remoted Objects - Adobe LiveCycle 12-09-2007
UPDATE:I've worked around the problem by using the following (aftercorrecting some spelling errors *nubmer):------------------------------------------------------------ /* [ArrayElementType("com.gh.vo.ContactPhoneNumber")] public var phoneNumbers:Array; */ [ArrayElementType("com.gh.vo.ContactPhoneNumber")] private var _phoneNumbers:ArrayCollection; public function get phoneNumbers():ArrayCollection { return _phoneNumbers; } public function set phoneNumbers( phoneNumbers:* ):void { var ac:ArrayCo...

Views

87

Likes

0

Replies

0
Re: Uploading a file using a php script while running application with LCDS - Adobe LiveCycle 12-09-2007
Originally, I had problems w/ the file being placed inC:/whatever.ext b/c I wasn't using relative paths.This is the code I use:-------------------------------- $MAXIMUM_FILESIZE = 1024 * 1024 * 2; // 2MB $newFileLoc = "./wherever/file.jpg" if ($_FILES['Filedata']['size'] <= $MAXIMUM_FILESIZE) { move_uploaded_file($_FILES['Filedata']['tmp_name'],"./temporary/".$_FILES['Filedata']['name']); rename( "./temporary/".$_FILES['Filedata']['name'],$newFileLoc ); chmod( $newFileLoc, 0777 ); }-------------...

Views

124

Likes

0

Replies

0
Nested Remoted Objects - Adobe LiveCycle 12-09-2007
When using Remote Objects, I'm successfully using AMF totransfer PHP Objects.I have an ArrayCollection that forces the"com.gh.vo.ContactMainViewVO" type - Works great.My problem is when I try go another level deeper and type anarray inside of that object, it only types it as an object and notthe [ArrayElementType("com.gh.vo.ContactPhoneNumber")].Is it possible to do this?----------------------------------------------------[Bindable][ArrayElementType("com.gh.vo.ContactMainViewVO")]private var _co...

Views

367

Likes

0

Replies

1