RE: [flexcoders] LiveCycle Data Services 2.5 - Using dynamically referenced queue destinations

2007-03-23 Thread Eric D Anderson
Hi Brian,

 

We have some code that will make what you are trying to do easier, but
it is currently available in our private beta program.  Can you email me
off-list ([EMAIL PROTECTED]) and I'll get you set up in the beta where
you can get access to this?


Thanks


Eric

 

Flex, Product Management

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of klumikaze
Sent: Wednesday, March 21, 2007 8:58 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] LiveCycle Data Services 2.5 - Using dynamically
referenced queue destinations

 

Our application currently uses a large number of queue destinations. We
create the 
destinations in the messaging-config.xml file and compile our app
against the FDS 
configuration files (and then upload to the J2EE container). There are
100+ queue 
destinations defined in messaging-config.xml currently.

Our Java backend creates these queues in ActiveMQ or JBoss (using the
same queue 
destinations as configured in messaging-config.xml) and pumps data in to
them. 

I've read through the beta documentation and there is a section on
"Configuring components 
with a bootstrap service". Do we need to create a class that
creates/exposes these queue 
destinations to the Flex app, or can we just attach Flex consumers to
queue destinations and 
the new LCDS libraries will do the work for us?

Any input you might have would be appreciated.

Thanks,

Brian

 



RE: [flexcoders] Re: FDS/Hibernate - LazyInitializationException when writing AMF output

2007-02-23 Thread Eric D Anderson
Hi PW,

 

I'd suggest that we add you to the latest Data Services beta because
either we have fixed this issue, or we will fix this issue in the next
release.  Can you contact me off-list and I'll add you to the beat so
you can test DS with the latest DS and hibernate assembler.

 

Thanks


Eric

 

Flex PM

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of parkerwhirlow
Sent: Friday, February 16, 2007 7:06 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: FDS/Hibernate - LazyInitializationException
when writing AMF output

 

This is happening from FDS... flex.data.assemblers.HibernateAssembler
uses a function called fetchObjectProperties() that's supposed to load
them all while the session is open right?

I've seen in other posts that FDS eager fetches the properties in the
Assembler, so that they are available during serialization... 

am I missing something here?

thanks,
PW

--- In flexcoders@yahoogroups.com 
, Dima Gutzeit <[EMAIL PROTECTED]> wrote:
>
> Hi,
> 
> You have to initialize the collections before AMF serializes them. The

> problem occurs since you closing Hibernate session without first 
> initializing the arrays, and since you are using lazy initialization
the 
> problem arise.
> 
> You have two options :
> 
> 1. Use lazy=false
> 2. Better one, is calling
/Hibernate.initialize(your_array_reference);/ 
> before you close the Hibernate session.
> 
> Regards,
> Dima Gutzeit.
> 
> parkerwhirlow wrote:
> >
> > Hi again =)
> >
> > I've just started getting this exception inconsistently... sometimes
> > it happens 3 times in a row, other times I can go all afternoon
> > without getting it. Once the exception occurs, it will occur every
> > time the client loads until FDS is restarted.
> >
> > Note this occurs on multiple collections. I tried setting the
> > "offending" collection to lazy=false (in Hibernate), and the
exception
> > occurred on a different collection. I can't set every one of my
> > collections to lazy=false. Especially since at this point, they HAVE
> > to be lazy for the updateItem via hierarchical values to almost
work.
> >
> > I also noticed that the collection does not necessarily need to have
> > any items in it. (And possibly is caused specifically by NOT having
> > any items in it, I can't tell for sure). The collection referenced
in
> > the exception below has no values, and there's another collection in
> > that same class with values that doesn't seem to cause the
exception.
> >
> > See below the hibernate mapping, and exception output when this
> > occurs. (Note there are no FDS managed associations for this
collection)
> >
> > Thanks for any insight you have as to what is causing this.
> >
> > PW
> > _
> >
> > 
> > 
> > 
> > 
> >  > inverse="false"
> > cascade="all-delete-orphan" >
> > 
> > 
> > 
> > 
> > 
> > ...
> > 
> >
> > 10:19:42,093 WARN ProxyWarnLog - Narrowing proxy to class
> > config.test.Adult - this operation breaks ==
> > 10:19:44,687 ERROR LazyInitializationException - failed to lazily
> > initialize a collection of role: config.test.Adult.children, no
> > session or session was closed
> > org.hibernate.LazyInitializationException: failed to lazily
initialize
> > a collection of role: config.test.Adult.children, no session or
> > session was closed
> > at
> >
org.hibernate.collection.AbstractPersistentCollection.throwLazyInitializ
ationException(AbstractPersistentCollection.java:358)
> > at
> >
org.hibernate.collection.AbstractPersistentCollection.throwLazyInitializ
ationExceptionIfNotConnected(AbstractPersistentCollection.j
> > ava:350)
> > at
> >
org.hibernate.collection.AbstractPersistentCollection.readSize(AbstractP
ersistentCollection.java:97)
> > at
> > org.hibernate.collection.PersistentSet.size(PersistentSet.java:139)
> > at java.util.ArrayList.(ArrayList.java:133)
> > at
> > flex.messaging.io.ArrayCollection.(ArrayCollection.java:44)
> > at
> >
flex.messaging.io.amf.Amf3Output.writeArrayCollection(Amf3Output.java:40
7)
> > at
> > flex.messaging.io.amf.Amf3Output.writeObject(Amf3Output.java:147)
> > at
> >
flex.messaging.io.amf.Amf3Output.writeObjectProperty(Amf3Output.java:215
)
> > at
> >
flex.messaging.io.amf.Amf3Output.writePropertyProxy(Amf3Output.java:495)
> > at
> >
flex.messaging.io.amf.Amf3Output.writeCustomObject(Amf3Output.java:467)
> > at
> > flex.messaging.io.amf.Amf3Output.writeObject(Amf3Output.java:165)
> > at
> >
flex.messaging.io.amf.Amf3Output.writeObjectArray(Amf3Output.java:730)
> > at
> > flex.messaging.io.amf.Amf3Output.writeAMFArray(Amf3Output.java:386)
> > at
> > flex.messaging.io.amf.Amf3Output.writeObject(Amf3Output.java:151)
> > at
> >
flex.messaging.io.ArrayCollection.writeExternal(ArrayCollection.java:97)
> > at
> >
flex.messaging.io.amf.Amf3Output.writePropertyProxy(Amf3Output.java:485)
> > at
> >
flex.messaging.io.amf.Amf3Output.writeArrayCollection(Amf3Output.java:41
4)
> > at
> > f

[flexcoders] Call for Beta Participation

2007-02-16 Thread Eric D Anderson
Hello,

I wanted to let you know about the beta program for the next generation
of Data Services technology that is currently available.  This beta
includes a number of new capabilities targeted at Flex application
development using both Flex Data Services or application development
using the Flex SDK including: 

* A new Flex SDK which includes updates to the client-side Web Services
library
* Server-side PDF generation capabilities for RIA applications
* Runtime configuration of data destinations in Data Services
* Support for WSRP portal deployment of Flex applications
* Per Client Messaging QoS allowing Flex clients to select custom data
access policies for real-time data
* AJAX Data Services enabling AJAX applications to take advantage of the
data management and messaging capabilities available in Data Services
* Improved off-line message caching for Flex applications
* RTMP tunneling (RTMPT)
* A SQL adaptor which dramatically simplifies the development of
applications using data management services
* JSP Tags for MXML development
* Several important enhancements to core Data Services performance and
scalability

If you are available and interested in participating in this beta
program please feel free to get in touch with me directly and we'll get
you set up.

Thanks

Eric

Eric Anderson | Product Manager, Flex | Adobe Systems Incorporated | W:
+1 617 219 2306 | C: +1 508 471 6696



RE: [flexcoders] Can someone help me understand this price info and what I get for it?

2006-09-11 Thread Eric D Anderson












Hi,

 

The info that Matt provides below is
totally accurate.  I would only add; please reach out to us if you have a
compelling reason to use our technology and would like to explore custom
pricing options.  

 

Feel free to reach out to me directly ([EMAIL PROTECTED]) as I don’t frequent
the list as much as I should. J

 

Eric

Adobe Systems.

  

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Sunday, September 10, 2006
7:59 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Can
someone help me understand this price info and what I get for it?



 









Per application means a conceptual application.  Each one of
our samples is an application.  While the component explorer is made up of
over 100 small application.mxml files it is still conceptually 1
application because it’s delivered through that one URL. 

 

So for departmental it doesn’t matter how many CPUs you
actually have, you are limited to 100 concurrent users across the whole cluster
for a given application 
(section 3.1.2 in the EULA doesn’t say per CPU it says per CPU
group/cluster).  If you want to support more than 100 concurrent
users you will need to use the enterprise license.

 

HTH,

Matt

 









From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On Behalf Of David Brown
Sent: Friday, September 08, 2006
4:02 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Can someone
help me understand this price info and what I get for it?



 







Flex Data
Services (Departmental license) : $6,000 per CPU, with a
limit of 100 concurrent users per cluster

Q3: How do you measure concurrent users in the Flex Data Services
departmental license?

A: Concurrent users will be counted by the number of unique IP
connections to the CPU and/or CPU cluster

We have two hardware load balanced servers both with two cpu's in
them. They are not clustered in anyway.

Does this mean I can have 200 concurrent users (100 for one server and
100 for the other server) because each server has 2 cpu's and is 12k each.

Or does this mean that I can have 400 concurrent users (100 per cpu
per box) so 2 cpus one server and 2 cpu's the other gives me 400?

The EULA also reads:
http://www.adobe.com/products/eulas/pdfs/AdobeFlexSDK-DataServices2_0.pdf#search=%22flex%20data%20services%20departmental%22
About 100 per application per cpu.. But this is beyond me.

Any help. Thanks

David














__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] throwing exceptions from FDS fill() method

2006-07-26 Thread Eric D Anderson












Hi,

 

Are you looking to have the exception be
returned to the client?  


Eric

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dmitry Miller
Sent: Tuesday, July 11, 2006 6:09
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] throwing
exceptions from FDS fill() method



 







Is there a way to throw custom exception from
Assembler.fill() method?
For now I have managed to throw only RuntimeException. Is this intended?






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   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 1.5 : AMF and ports and Max users

2006-07-26 Thread Eric D Anderson












You can configure your data transport
channel in the data-management-config.xml file in your FDS application.

 

FDS can support more than 100 users per
CPU.  Scalability is very application dependent, but our tests have shown that
you can support 1000’s of concurrent users per CPU.


Eric

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Antoine Malpel
Sent: Wednesday, July 26, 2006
4:35 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] flex 1.5
: AMF and ports and Max users



 







Well
thanks Eric but my question is :

- How do I use Rtmp, where do you declare this ? and If I use rtmp for my remoteObject
will it be "faster" ?
- Still don't understand if ONE CPU could support more than 100-200-300-400
users ...

Eric D Anderson a écrit : 







FDS can use HTTP(S), AMF/HTTP(S) or RTMP(S) for data
transport.  You need to define each destination to use one (or more) of
those data transports.

 

In terms of scale, FDS Dept edition is targeted at applications for
work groups or departments (you deploy an application for a 50 person call
center). FDS Enterprise is targeted at larger applications with hundreds, thousands
or tens of thousands of users.  Our internal load testing (which will be
available in a public document on the adobe.com website shortly) shows that FDS
scales linearly with a web server and is typically limited by the performance
of the systems it connects to – our messaging performance is typically
limited by the JMS server we’re talking with.

 

Eric

 









From: [EMAIL PROTECTED]ups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Antoine Malpel
Sent: Tuesday, July 25, 2006 12:14
PM
To: Mailing List FlexCoders
Subject: [flexcoders] flex 1.5 :
AMF and ports and Max users



 







Hi,

as I use RemoteObject I've seen in Docs FDS can uses RTMP or HTTP, what 
does that mean ? if rtmp port is closed it switches to HTTP ? so in this 
case I could get better performances opening the rtmp port ? witch 
number is it ?

Also,

can some people give me feedback about Hardware and Max users 
connections ? as I notices 100 users licence's price is about 20% 
enterprise licences ... (20 000$ per cpu ? !) can some CPU support 
more than 100 users connections ?

thanks

Antoine Malpel - quikstore.eu project













 








__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   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 1.5 : AMF and ports and Max users

2006-07-25 Thread Eric D Anderson












FDS can use HTTP(S), AMF/HTTP(S) or
RTMP(S) for data transport.  You need to define each destination to use
one (or more) of those data transports.

 

In terms of scale, FDS Dept edition is
targeted at applications for work groups or departments (you deploy an application
for a 50 person call center). FDS Enterprise is targeted at larger applications
with hundreds, thousands or tens of thousands of users.  Our internal load
testing (which will be available in a public document on the adobe.com website
shortly) shows that FDS scales linearly with a web server and is typically
limited by the performance of the systems it connects to – our messaging
performance is typically limited by the JMS server we’re talking with.

 

Eric

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Antoine Malpel
Sent: Tuesday, July 25, 2006 12:14
PM
To: Mailing List FlexCoders
Subject: [flexcoders] flex 1.5 :
AMF and ports and Max users



 







Hi,

as I use RemoteObject I've seen in Docs FDS can uses RTMP or HTTP, what 
does that mean ? if rtmp port is closed it switches to HTTP ? so in this 
case I could get better performances opening the rtmp port ? witch 
number is it ?

Also,

can some people give me feedback about Hardware and Max users 
connections ? as I notices 100 users licence's price is about 20% 
enterprise licences ... (20 000$ per cpu ? !) can some CPU support 
more than 100 users connections ?

thanks

Antoine Malpel - quikstore.eu project






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   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] flex2.0plugins for QTP9.0?

2006-07-25 Thread Eric D Anderson












Hi,

 

Flex integration with QTP 9 is not publicly
available today.  We are currently running a beta to test the integration
of QTP and Flex 2 and this work is planned to be available in the future (no
defined time frame yet).

 

If you are a QTP customer and are
interested in participating in the beta feel free to email me off line for
details.


Eric

 

Eric Anderson | Product Manager, Flex |
Adobe Systems Incorporated | W: +1 617 219 2306 | C: +1 508 344 1248 |
[EMAIL PROTECTED]

 

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karnad, Kaushal
Sent: Tuesday, July 25, 2006 12:34
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders]
flex2.0plugins for QTP9.0?



 







Hi,

 
Does some know how do we get flex2.0plugins for QTP9.0? 
Does
it come with the flex2.0 licenses? 

Thanks

k







__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   



  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   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 2 FDS pricing for clustered solution

2006-07-24 Thread Eric D Anderson












Hi Mykola,


We don’t currently offer a product that is packaged in the way you’re
describing below.  I’d like to connect with you off-line to understand
your specific issues and see if there is something we can do to assist.  I’ll
follow-up shortly.


Eric

 

Eric Anderson | Product Manager, Flex |
Adobe Systems Incorporated | W: +1 617 219 2306 | C: +1 508 344 1248

 

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mykola Paliyenko
Sent: Monday, July 24, 2006 10:27
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex 2 FDS
pricing for clustered solution



 







Hello
flexcoders
I found no info on the Adobe site about pricing, 
from the threads I understood that FDS is priced 20K$ per CPU for unlimited
concurrent amount of users. We are building the solution that will require
support thousands of simultaneous users on the site and will require up to 100
application servers as we grow. 
I know that Adove guys are reading this list so I have a questions first of all
to them and to those who have some relevant info about this

- Is it true about pricing 20K$/per CPU for unlimited users?
- Do you have some discounts policy for such cases as described above? 
- How much will it cost us to license FDS for 100 dual CPU servers?
- Can we license only AMF gateway without any client pushes etc with discount?

The problem is that we simply need amf gateway on that 100 servers and paying
4M$ just for gateway is too kewl as for me. I'd better develop one on my own :)


We are investigating alternatives such as OpenAMF but we want to know the
amount of money we need to spent on original Adobe solution.

Thanks in advance for any comments.
-- 
WBR, Mykola 






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   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] What is the difference between versions of Flex Data Services

2006-06-30 Thread Eric D Anderson












Hi,

 

To clarify:

 

FDS Express

COST: Free

LIMITATIONS: no more than one application
per CPU.  No clustering (through J2EE) or load balancing (through hardware
or software load balancing) allowed.  No multi-CPU deployments of FDS
allowed.

NOTES: Multiple applications per 1 CPU ok,
1 dual-core CPU ok.

 

FDS Dept

COST: 6K per CPU

LIMITATIONS: No more than 100 concurrent
users per application.  

NOTES: Can deploy on multiple CPUs,
clusters, with load balancing.

 

FDS Enterprise

COST: MSRP 20K per CPU (work with Adobe sales
for the price that is appropriate for your project)

LIMITATIONS: none

NOTES:

 

Hope this helps.


Eric

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ian Skinner
Sent: Friday, June 30, 2006 6:56
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] What is
the difference between versions of Flex Data Services



 









I would love to
hear if there is any other similarly priced server software technology (and I'm
not talking ERP or something) on the market.

I am in awe.

Hank

 

But has anybody
bothered to call and ask Adobe what this all means or are we all relying on
speculation and gossip of a news list and based on that information, judging
Adobe to have priced themselves out of the market. I suspect a company as
experienced as Adobe is very much aware of the market and what other similar
technologies go for.

 

I would suspect
the way it might work is that a large organization would have a FDS server that
many other servers talk to for the FDS tasks. This is supposed to be a
multi-tier concept is it not? Do you guys running large enterprise systems put
an Oracle database server on all your web servers? We do not. 

 

That is my
uniformed 2cents. And since I know our organization can get by for a long time
on the free version and maybe, eventually, someday the 6k version; when and if
we get around to using FDS in the first place. So far what I have played with
works very well with the ColdFusion flash remoting connection, which is a free
upgrade to our ColdFusion license. I am not too concerned about the large
version for the foreseeable future.

 

 

 

--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-

"C code. C code run. Run code run. Please!"
- Cynthia Dunning

 



Confidentiality Notice: This message including any attachments is for
the sole use of the intended recipient(s) and may contain confidential and
privileged information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the intended recipient, please
contact the sender and delete any copies of this message. 






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   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] Flex 1.5 Hotfix

2006-03-02 Thread Eric D Anderson










Hi,

 

I’m sure many of you noticed the
latest IE patch available from Microsoft has fixed the ‘active content’
issue which impacted how the Flash player was invoked.  We have issued a hotfix
for Flex 1.5 that changes the way the Flex 1.5 HTML wrapper is generated to
support the new IE changes.

 

You can find more information about the
hotfix here:

 

http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=ace0407

 

You can also find more information about
the MS patch here:

 

http://support.microsoft.com/kb/912945

 

Eric

 

 









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   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] Problem with listItemRenderer and AddChild

2006-02-09 Thread Eric D Anderson
Hi,

I tried this with the Flex 2 beta and I don't see any problem.  Can you confirm 
you're using Flex 2 beta?

Thanks

Eric

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
tobiaspatton
Sent: Thursday, February 09, 2006 6:42 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Problem with listItemRenderer and AddChild

Hi again;

This might be a bug. The code at the end of this message creates a 
list with a custom item renderer. The renderer handles clicks by 
changing the component's state, effectively adding a button.

This works fine as long as the list property `variableRowHeight' is 
set to `false'. If it it set to true, very strange things happen. 
Clicking on the first row adds a button to the second row. 
Repeatedly clicking on the first row will add a button to the second 
row, remove it, add it to the first row and then remove it.

Does anyone know a way to dynamically add and remove children from a 
custom list item renderer that allows variable height rows?

Thanks.
Tobias.

Here's the code:

- TestAddChild.mxml -


http://www.macromedia.com/2005/mxml"; 
xmlns="*" layout="absolute">


Alpha
Beta



   




- ItemRenderer.mxml -


http://www.macromedia.com/2005/mxml"; xmlns="*" 
click="DoItemClick(event)"
height="60">























--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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] converting to RTF in flex

2006-01-16 Thread Eric D Anderson
One common way to accomplish this is via a server-side process that will create 
your RTF file based on input from the Flex client application.  I've seen 
people do this kind of stuff with XLS among other things.

Eric

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
george_lui
Sent: Friday, January 13, 2006 3:38 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] converting to RTF in flex

Hi,

I have a concept of a "form" in my flex app.  I have this requirement
where we want to export this "form" into an RTF formatted file.  Has
anyone ever done this before?  Do you know of any flex capabilities
that could assist me in implementing this?

Thanx,
George






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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/