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

Greg_Lafrance
Greg_Lafrance
Offline

Badges

Badges
14

Accepted Solutions

Accepted Solutions
5

Likes Received

Likes Received
15

Posts & Comments

Posts & Comments
71

Discussions

Discussions
0

Questions

Questions
0

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Greg_Lafrance
Customize the badges you want to showcase on your profile
Re: Help With Choosing The Technology - Adobe LiveCycle 13-02-2010
If you are saying you want the server component to be on the same machine as the Flex app, then your choices are severely limited due to the sandbox, unless of course you are using AIR, then you can just use the SQLite database.But if there will be a sevrer component on another machine on the web, you could use BlazeDS, and like I said, its free and very robust.http://opensource.adobe.com/wiki/display/blazeds/download+blazeds+3http://learn.adobe.com/wiki/display/Flex/Creating+a+BlazeDS+web+servi...

Views

126

Likes

0

Replies

0
Re: Help With Choosing The Technology - Adobe LiveCycle 12-02-2010
Because your system will be restricted to one machine at a time, I think you could use Flex/BlazeDS/Java.I've heard BlazeDS "just works" even though it is open source.If you don't want to go that route, you might try ColdFusion, which I've also heard is very good.I've even heard straight PHP or Zend is a good choice as well.If this post answers your question or helps, please mark it as such. Greg Lafrance - Flex 2 and 3 ACE certifiedwww.ChikaraDev.comFlex / AIR Development, Training, and Support...

Views

125

Likes

0

Replies

0
Re: A problem with login system - Adobe LiveCycle 18-11-2009
Are you uploading your app to the server? It might not work locally on your machine.

Views

91

Like

1

Replies

0
Re: Accessing data in Flex - Adobe LiveCycle 15-11-2009
These links show connecting to a MySQL database, but should be similar to SQL Server:http://www.switchonthecode.com/tutorials/flex-php-tutorial-transmitting-data-using-jsonhttp://www.switchonthecode.com/tutorials/using-flex-php-and-json-to-modify-a-mysql-databasehttp://www.switchonthecode.com/tutorials/flex-php-json-mysql-advanced-updatingIf this post answers your question or helps, please mark it as such.

Views

159

Like

1

Replies

0
Re: Data service works from desktop, but not from server - Adobe LiveCycle 15-11-2009
Often this is because you need to add the -use-network=true compiler option in the FlexBuilder menubar: Project - Properties - Flex Compiler - Additional compiler arguments: add -use-network=true and then recompile and post to server, should work fine. Note: if you create a "release build" and move it elsewhere on your local machine, you may need to add -use-network=true and then recompile for the app to be able to access local resources outside the Flex Builder environment.If this post answers ...

Views

137

Likes

0

Replies

0
Re: Hosting Problem.... - Adobe LiveCycle 12-11-2009
You might need to set --use-network=false compiler argument.In the main menu:Project - Properties - Flex Compiler - Additional compiler argumentsadd --use-network=trueIf this post answers your question or helps, please mark it as such.

Views

99

Likes

0

Replies

0
Re: How acess data after retrieving it from a web service - Adobe LiveCycle 25-10-2009
It depends on how the data is formed when it comes back and is put in the ArrayCollection.In general, you can access the 6th row of an ArrayCollection lilke this:myAC.getItemAt(5);You can loop through ab ArrayCollection like this:for each(var obj:Object in myAC){ trace(obj);}But then the question becomes how are the fields in each row of data formed?If the rows of data are objects, you could access the data like this:myAC.getItemAt(5).custName or sometimes like this:myAC.getItemAt(5)[custName]So...

Views

78

Like

1

Replies

0
Re: Error #1088 - Adobe LiveCycle 09-10-2009
You should examine what is coming back from your PHP call. It is likely either nothing is coming back, or a simple string is coming back instead of XML, or the XML is malformed.Sometimes you need to wrap simple strings in PHP code to avoid this. So if your PHP has $result = "error occurred"; then change it to something like $result = "error occurred";If this post answers your question or helps, please mark it as such.

Views

172

Likes

0

Replies

0
Re: Need automatic resize of flex app - Adobe LiveCycle 01-09-2009
You will probably need to use a combination of auto-layout and constraint based layout in your application.You need to decide what can grow freely and what should stay the same size, but the parts that can grow seem to mainly be the pages.We need to see something that indicates what you are dealing with for container structure here.Can you tell us what containers and their general qualities are?

Views

85

Likes

0

Replies

0
Re: Datagrid ArrayCollection Timeout issue - Adobe LiveCycle 21-08-2009
You could try to implement paging, and return only a subset of the data.http://frankfenghua.blogspot.com/2007/07/flex-datagrid-paging-example-with.htmlhttp://gurufaction.blogspot.com/2007/02/flex-datagrid-paging-example-with.htmlIf this post answers your question or helps, please mark it as such.

Views

158

Likes

0

Replies

0
Likes given to
Likes from