RE: [flexcoders] Cairngorm 0.99

2005-05-17 Thread Ryan Scott Jones










CHEERS!!!



Ryan











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Steven Webster
Sent: Tuesday, May 17, 2005 12:58 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Cairngorm
0.99







http://www.iterationtwo.com/open_source_cairngorm.html











Any questions, we'll answer them tomorrow ... team
iteration::two are off to the bar:-)











We shall have a drink at the bar on behalf of the rest of
the Cairngorm Project Team





as well (in fact, Ilya/Matt/Dirk/Romain/Jimmy, could you let
us know where to send 





our bar bills...?) who also played their ever important
roles in pulling this release





together.











Enjoy :)











Steven











--

Steven Webster
Technical Director



iteration::two











This e-mail and any associated attachments
transmitted with it may contain confidential information and must not be
copied, or disclosed, or used by anyone other than the intended recipient(s).
If you are not the intended recipient(s) please destroy this e-mail, and any
copies of it, immediately.

Please also note that while software systems have been used to try to ensure
that this e-mail has been swept for viruses, iteration::two do not accept
responsibility for any damage or loss caused in respect of any viruses
transmitted by the e-mail. Please ensure your own checks are carried out before
any attachments are opened.






















Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.












[flexcoders] SWFs as backgrounds

2005-05-12 Thread Ryan Scott Jones










Does anyone know if it is possible to have
a SWF instead of an image as the background of a flex app?



Thanks,

Ryan











Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.












RE: [flexcoders] mx:Loader component/caching swfs?

2005-04-26 Thread Ryan Scott Jones

The way I've typically seen people do this with Flash/Flex is to append a
random query string to the request (e.g.,
/rpts/D/2/1/2/WA.swf?rnd=129304293875457).  People usually use the system
time as the numeric value.


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of rbrueckmann78
Sent: Tuesday, April 26, 2005 1:43 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] mx:Loader component/caching swfs?



I'm using the mx:Loader component to pull in a file at a specific 
location.../rpts/D/2/1/2/WA.swf, ok?  It's a PDF report I ran a 
utility on that converted it to a swf...all is well and good...half 
way through the day, our clients make an adjustment, we rerun the 
report generation and the WA.swf file is overwritten...problem is, the 
Flex app is still loading the old report...not the newly generated 
one...is there a way to turn off the cahcing of the loader component 
or would switching out of production mode of Flex fix this?

Thoughts?

Thanks,
Rob





 
Yahoo! Groups Links



 




 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] WYSIWYG

2005-04-25 Thread Ryan Scott Jones










Has anyone created a nice WYSIWYG
component for Flex? 











Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.












RE: [flexcoders] Hibernate

2005-04-14 Thread Ryan Scott Jones










Hi Steve,



Thanks for the help. I have all of my
collections mapped as lazy=false. Everything Ive tried
ends with:



- could not initialize proxy - the owning
Session was closed

org.hibernate.LazyInitializationException:
could not initialize proxy - the owning Session was closed



Any idea what I might be forgetting?



Ryan











From: Steven Shaw
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 12, 2005 7:22 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Hibernate





You will want to watch your server log closely as you probably are
getting errors in there about lazy instantiation. Putting lazy=true
in your mapping file does not guarantee that the association will be
instantiated. It depends in max-fetch-depth and perhaps other things. You could
try using Hibernate.initialize(collection) to ensure it is initialised
before allowing AMF to get at it.

Steve.












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.












RE: [flexcoders] Flex Non Comercial

2005-04-13 Thread Ryan Scott Jones

About a week or two I'd say.

-Original Message-
From: Rich Tretola [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 13, 2005 2:46 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Non Comercial


Anyone here  from MM know how long it takes to get a response about
getting a non commercial flex licence ?

Rich


 
Yahoo! Groups Links



 




 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





RE: [flexcoders] Flex Non Comercial

2005-04-13 Thread Ryan Scott Jones

(But I'm not from MM.)

-Original Message-
From: Rich Tretola [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 13, 2005 2:46 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Non Comercial


Anyone here  from MM know how long it takes to get a response about
getting a non commercial flex licence ?

Rich


 
Yahoo! Groups Links



 




 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Hibernate

2005-04-12 Thread Ryan Scott Jones

Apologies if this has been covered already ...

Does anyone know of an in depth tutorial on integrating Hibernate and Flex?
Have people been using Hibernate successfully with Flex?  I'm about a week
into creating an application and it's doing my head in.  Flat objects work
just fine for me, but anything deeper than that (e.g., objects containing
arrays of objects) just hangs on the RPC call, even with lazy=false.  I'm
sure I'm doing something stupid, I just haven't been able to diagnose what
that stupid thing I'm doing is.

I read the ONJava article:
http://www.onjava.com/pub/a/onjava/2004/12/01/flexjava.html?page=1 and
thought it was rather brief.  If anyone knows of anything more detailed, I'd
love to read it.

Thanks!
Ryan


 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/