[flexcoders] Re: LCDS, AIR and Client Side Cacheing

2007-11-16 Thread Josh VanderBerg
, that mirror your server-side tables, and manage the data stored there manually using a JDBC like API. No small feat. __ Josh Vanderberg vanderblog.typepad.com - Flex blog and open source flex components __ --- In flexcoders@yahoogroups.com, christophers1228 [EMAIL PROTECTED] wrote: Hello

[flexcoders] Re: Changing default components texts

2007-11-16 Thread Josh VanderBerg
with MyDateField. -- Josh Vanderberg vanderberg.typepad.com - Flex blog and open source flex components --- In flexcoders@yahoogroups.com, cristian.mrsystem [EMAIL PROTECTED] wrote: Hi. I'm using Flex 2.01, and I'm looking for something to change the values for all the components of the same kind

[flexcoders] Re: how do I freeze the users actions while data is loading

2007-11-16 Thread Josh VanderBerg
... -- Josh Vanderberg vanderblog.typepad.com - Flex Blog and open source components --- In flexcoders@yahoogroups.com, Mark [EMAIL PROTECTED] wrote: I guess sometimes the easy answer is the one we overlook. I don't know why I didn't think about using some kind of wait message or progress

[flexcoders] Re: Debugging who changed data...

2007-11-19 Thread Josh VanderBerg
Not sure if you've tried this, but you can set a breakpoint on a variable declaration, and the debugger will stop when the property is accessed or changed. -- Josh Vanderberg vanderblog.typepad.com -- Flex blog and open source flex components --- In flexcoders@yahoogroups.com, bithroop [EMAIL

[flexcoders] Re: Garbage Collection question

2007-11-19 Thread Josh VanderBerg
I've read that the GC runs only on allocation. Can't seem to find the original article I read on this, but this livedoc reference appears to agree: http://livedocs.adobe.com/labs/flex3/html/help.html?content=profiler_6.html __ Josh Vanderberg vanderblog.typepad.com - Flex blog and open source

[flexcoders] Re: Viewstack problems

2007-11-19 Thread Josh VanderBerg
Try setting the creationPolicy='all' on the viewstack and perhaps the canvases as well. -- Josh Vanderberg vanderblog.typepad.com - Flex blog and open source flex components --- In flexcoders@yahoogroups.com, Rafael Faria [EMAIL PROTECTED] wrote: Hello all, I'm having a big trouble

[flexcoders] Re: Emulating Flash MultiThreading; Approaches

2007-11-19 Thread Josh VanderBerg
I'd have to agree with Seth, though I would suggest using a timer, as the setInterval function appears to be deprecated. In the past I've actually written a light weight class that encapsulated the timer logic and handled storing state between function calls. -- Josh Vanderberg

[flexcoders] Re: flex + dll

2007-11-19 Thread Josh VanderBerg
You could also communicate with an .NET server, or even a J2EE server that uses JNI to talk to a DLL. It would be nice if AIR provided for some sort of native interface... --- In flexcoders@yahoogroups.com, Ralf Bokelberg [EMAIL PROTECTED] wrote: Afaik you cannot use dll's with Flex. Since

[flexcoders] Re: Viewstack problems

2007-11-19 Thread Josh VanderBerg
impact load time. After that the application will actually be more responsive than if you defer the creation of child components. -- Josh Vanderberg - vanderblog.typepad.com --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Since it hasn't been noted in this thread, using

[flexcoders] Re: Rendering problem

2007-11-19 Thread Josh VanderBerg
/LOGO.png)] When the actual file name is logo.png, but in Unix the file name and the Embed tag must have the exact same case. __ Josh Vanderberg -- vanderblog.typepad.com --- In flexcoders@yahoogroups.com, karunyanamuduri [EMAIL PROTECTED] wrote: Hi All, I am a newbie in Flex. I am trying to do

[flexcoders] Re: Emulating Flash MultiThreading; Approaches

2007-11-19 Thread Josh VanderBerg
into the suspend background processing stuff in the framework so it yields nicely to effects. But, it won´t do the trick this time. So, back to the multithreading... Is it totally impossible? Thanks, Aldo On Nov 19, 2007 8:43 PM, Josh VanderBerg [EMAIL PROTECTED] wrote: I'd

[flexcoders] Re: Real world usage of Flex

2007-11-20 Thread Josh VanderBerg
when it crashes are any indication :) -- Josh Vanderberg -- vanderblog.typepad.com --- In flexcoders@yahoogroups.com, real_yoni [EMAIL PROTECTED] wrote: Hi All, I'm looking for real world usage of Flex (other than maps.yahoo.com and harley-davidson)? can publish links? Thanks, p.s

[flexcoders] Re: Where is the Debugger or Profiler?

2007-11-20 Thread Josh VanderBerg
. The solution is to either launch from flex builder if you intend to debug, or access the non-debug html wrapper. You might check you Eclipse launch configurations to make sure that they are pointing to the right html wrappers. __ Josh Vanderberg - http://vanderblog.typepad.com --- In flexcoders

[flexcoders] Re: Air/Flex App With Barcode Reader

2007-11-20 Thread Josh VanderBerg
/ mx:TextInput id=textInput / mx:Label text=Button: / mx:Button label=Set Focus here / mx:Label text=Key Capture / mx:TextArea selectable=false id=allKeys width=400 height=400 / /mx:Application __ Josh Vanderberg -- http://vanderblog.typepad.com --- In flexcoders

SPAM-LOW: [flexcoders] Re: Air/Flex App With Barcode Reader

2007-11-20 Thread Josh VanderBerg
that doesn't normally respond to keyboard events, the centralized listener will start getting key events. __ Josh Vanderberg -- http://vanderblog.typepad.com --- In flexcoders@yahoogroups.com, Jeffry Houser [EMAIL PROTECTED] wrote: Conceptually this sounds good. However, I would expect

[flexcoders] Re: DataServices destinations design dilemma...

2007-12-15 Thread Josh VanderBerg
it - but the approach would be similar, you really need a many-to-many mapping table at the PetVO level. __ Josh Vanderberg - vanderblog.typepad.com --- In flexcoders@yahoogroups.com, Kevin [EMAIL PROTECTED] wrote: DataServices experts, We are currently stumped on how to configure our data

[flexcoders] Proxying RMPTS in a DMZ

2008-01-26 Thread Josh VanderBerg
I have a situation where I need to make a tomcat web server running LCDS accessible on the internet. Our flex application talks to the web server over https for Remote Object AMF requests, and over RMTPS using the messaging protocol for push. I don't want to put the web server in the DMZ, for