RE: [flexcoders] Automatically update ValueObjects...

2010-03-14 Thread Tracy Spratt
I have not used Remote object enough to be an authority on your specific issue, but that looks like a package path and typically package paths are relative, starting at the project root, (in my setups, this is src) , so the deployment location is never an issue. Are yo sure you need to specify

RE: [flexcoders] How do I set the borderStyle in Flex

2010-03-14 Thread Tracy Spratt
The first is the correct syntax. If it is not working, perhaps there is another style that needs to be set also, like width or color. Have you tried this using the flex StyleExplorer? Tracy Spratt, Lariat Services, development services available _ From:

RE: [flexcoders] Re: HTTPService not returning ArrayCollection...

2010-03-14 Thread Tracy Spratt
This is an issue when you use the default resultFormat=object. This causes Flex to convert your xml into a tree of dynamic objects. There can be problems with this conversion. The problem you posted is one. Another is that if you have strings that look like numbers, they will get converted to

RE: [flexcoders] Convert ArrayCollection to Array

2010-03-14 Thread Tracy Spratt
You are getting the array, so the issue is further along the line. For any data more complex than simple values, I pass data using xml, so I do not even know how an array gets serialized/deserialized by HTTPService. If you look at that parameter in PHP, what is actually in it? Tracy Spratt,

RE: [flexcoders] sending email from actionscript / flex REFdn6005077818

2010-03-14 Thread Tracy Spratt
Yes (or some other server technology), in which case the server is actually sending the email. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of dennis Sent: Wednesday, March 10, 2010

[flexcoders] Re: Flex 4....Large recordset...how much is too much?

2010-03-14 Thread iloveyouwisconsin
Maybe I'll have to wait until Flex 7 (or later) 'til they truly make flex able to handle large datasets smoothly. (I guess I'll also have to advise those at Adobe and the flex evangelists that what they define as a large dataset isn't large in practice. They probably need to moonlight as

[flexcoders] i do not get flex 4 skinning?

2010-03-14 Thread dorkie dork from dorktown
what do we use for visually skinning flex 4 skins? flash builder 4? right now i'm trying to create an item renderer for a list control rant i don't want to design my skin through markup. i want to use a visual tool. /rant ddfd

[flexcoders] Using embedded fonts in modules

2010-03-14 Thread roly445
Hi all, I have read through the posts for this one but i can't seem to find any think like me issue. I have a flex app that embeds fonts via a style sheet, i also have several modules which are dynamically loaded. So here is my problem, the fonts are not showing. Any help would be appreciated.

Re: [flexcoders] Re: Flex 4....Large recordset...how much is too much?

2010-03-14 Thread Jeffrey Vroom
Back when I was at Adobe, I had a demo which did paging with 60K records in the query being scrolled. It probably could have done more if I tried since it was doing everything incrementally, though I'll admit the experience was not perfect, particularly if you moved the thumb too quickly. This

[flexcoders] How to create Flex 4 Library Project with custom namespace please ?

2010-03-14 Thread astronaute75
Hello, I would like to create a Library Project in Flex 4 with a custom namespace so I can reference the namespace in my *.mxml files instead of package. (xmlns:view=http://myapp.com; instead of xmlns:view=com.myapp.*) I asked the question on Adobe forums too, but nobody seems to know how to

Re: [flexcoders] Convert ArrayCollection to Array

2010-03-14 Thread Carlos Rovira
You should use the ArrayCollection method toArray() 2010/3/14 Tracy Spratt tr...@nts3rd.com You are getting the array, so the issue is further along the line. For any data more complex than simple values, I pass data using xml, so I do not even know how an array gets

[flexcoders] Re: Flex 4....Large recordset...how much is too much?

2010-03-14 Thread iloveyouwisconsin
Thanks! I will look into that. For now, is there a quick and dirty way to not show the scrollbar so users can't thumb through the results? I would still need the ability to scroll through the datagrid, either through the up/down arrow keys or the wheel on the mouse. thanks again! --- In

[flexcoders] Re: Flex 4....Large recordset...how much is too much?

2010-03-14 Thread Florian
But on the other Hand: why would you want to display more then a few hundred rows? There are way more efficient ways to walk through the data. --- In flexcoders@yahoogroups.com, iloveyouwisconsin iloveyouwiscon...@... wrote: Thanks! I will look into that. For now, is there a quick and dirty

[flexcoders] Re: How to create Flex 4 Library Project with custom namespace please ?

2010-03-14 Thread Florian
It's been a while since i did that, but take a look at the manifests: http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_25.html http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_31.html Best regards --- In flexcoders@yahoogroups.com, astronaute75 astrona...@...

[flexcoders] Re: How to create Flex 4 Library Project with custom namespace please ?

2010-03-14 Thread Jeff
I cover this in the laast episode of The Flex Show's video series on creating Flex Components: http://www.theflexshow.com/blog/index.cfm/2010/3/1/The-Flex-Show--Creating-Flex-Components--Episode-13-Custom-Namespace-URLs The other poster who mentioned the mainfest.xml file is correct. --- In

[flexcoders] Re: Flex 4....Large recordset...how much is too much?

2010-03-14 Thread iloveyouwisconsin
It's not a traditional dataset. We're tweaking the structure slightly. How would I do somthing like the following in Flex 4? http://blog.tremend.ro/2009/03/02/flex-live-scroll-datagrid/ --- In flexcoders@yahoogroups.com, Florian florian.saliho...@... wrote: But on the other Hand: why

[flexcoders] Re: Flex 4....Large recordset...how much is too much?

2010-03-14 Thread iloveyouwisconsin
I should be more clear: How would I set the scrollbar to position at the bottom of the datagrid (and then snap to the appropriate position when it the user is ready to load more data) as they do here? http://blog.tremend.ro/2009/03/02/flex-live-scroll-datagrid/ That would prevent users from

[flexcoders] Re: Flex 4....Large recordset...how much is too much?

2010-03-14 Thread iloveyouwisconsin
nevermind...just saw the view source --- In flexcoders@yahoogroups.com, iloveyouwisconsin iloveyouwiscon...@... wrote: I should be more clear: How would I set the scrollbar to position at the bottom of the datagrid (and then snap to the appropriate position when it the user is ready to

Re: [flexcoders] Using embedded fonts in modules

2010-03-14 Thread Alex Harui
See the most recent post on my blog On 3/14/10 11:48 AM, roly445 roly...@gmail.com wrote: Hi all, I have read through the posts for this one but i can't seem to find any think like me issue. I have a flex app that embeds fonts via a style sheet, i also have several modules which are

[flexcoders] SSL Icon Disaapears in status Bar,Only in Flash screens

2010-03-14 Thread Nievtha NagaRaj
Hi All,   I hope you know,  In SSL(https) Enabled  websites ,we can see the yellow color lock icon in the status bar. That lock icon is disappearing when I load flash movie from JSP file. Here,We are using  both Jsp flash screens.Only in Flash screens ,the lock icon is not showing.   I am not