Re: [flexcoders] Profiler telling lies?

2009-05-05 Thread Mark Doberenz
Check your event listeners because if you're not using weak references  
then the garbage collector won't remove it. Disregard if you already  
knew that one :)


On May 5, 2009, at 7:58 AM, "Gregor Kiddie"   
wrote:





Hi all,



I’m trying to work out where a memory leak is occurring in our appli 
cation (putting me into Jeff’s hell from last week).


When profiling the app, it claims there is still a back reference to  
its parent on the display list (even though I remove it!) at  
[child0]. When I debug the application, the child is removed as I’d  
expected, and the children array is empty.


So which one is lying? The profiler when it tells me there is still  
a back reference to the parent as [child0] or the debugger when it  
tells me the child has been removed…




Gk.

Gregor Kiddie
Senior Developer
INPS

Tel:   01382 564343

Registered address: The Bread Factory, 1a Broughton Street, London  
SW8 3QJ


Registered Number: 1788577

Registered in the UK

Visit our Internet Web site at www.inps.co.uk

The information in this internet email is confidential and is  
intended solely for the addressee. Access, copying or re-use of  
information in it by anyone else is not authorised. Any views or  
opinions presented are solely those of the author and do not  
necessarily represent those of INPS or any of its affiliates. If you  
are not the intended recipient please contact is.helpd...@inps.co.uk





mlmsg #ygrp-msg p a span.yshortcuts { font-family: Verdana; font- 
size: 10px; font-weight: normal; } #ygrp-msg p a { font-family:  
Verdana; font-size: 10px; } #ygrp-mlmsg a { color: #1E66AE; }  
div.attach-table div div a { text-decoration: none; } div.attach- 
table { width: 400px; } -->


Re: [flexcoders] using an event to trigger an action in a sibling component

2009-01-31 Thread Mark Doberenz
I tend to create a public method on my Login screen called reset() or
something like that.Then, I can easily call it to reset that form.

Mark

On Sat, Jan 31, 2009 at 8:58 PM, weezee49  wrote:

>   I have the following structure:
>
> Application
> |___ViewStack
> |SplashBox
> |VBox
> |___Accordion
> |Login
> |CreateAccount
> |MainBox
>
>
> In MainBox I dispatch a logoutEvent. Among other things as a result
> of this event, I want to clear the fields in the Login component. The
> only way I have been successful so far is to call an init() function
> from creationComplete in Login that looks like this:
>
> private function init():void{
> parent.parent.parent.parent.parent.addEventListener("logoutEvent",
> clearFields)
> }
>
> As I understand events, the logoutEvent in MainBox bubbles up to the
> ViewStack, and then to the Application. Is there a better way to
> force the event down to Login? Repeatedly using parent in this
> fashion seems so inelegant. And if I change my structure at all, I'll
> also have to remember to go into the code and change the number of
> parents in the init() function.
>
> TIA!
> LG
>
>  
>


Re: [flexcoders] canvas with styles and clickable? how to??

2008-06-26 Thread Mark Doberenz
Try Flexlib.  It has a really nice canvas button component.

http://code.google.com/p/*flexlib

*
On Thu, Jun 26, 2008 at 3:57 AM, David Pariente <[EMAIL PROTECTED]>
wrote:

>   Hello,
>
> Im making a list of elements in a VBox, each of them has a canvas, with a
> pic, a title and a text...
>
> Now i wanted to skin that canvas, but it doesn't skin properly, i guess
> canvas is just not skinable.
>
> I didn't know what to do so i used an apppcontrolbar as base of that
> canvas, and skinned the appcontrolbar. It skins good, but then the clickable
> options doesn't work...
>
> i'm a little lost, as most of what i do is AS3 in my projects...
>
> The point is that i wan a skinnable element that also can act as a button.
> here my code:
>
> 
> 
>  styleName="Album" click="" useHandCursor="true" buttonMode="true">
> 
>  click="/*onThumbClick(
> event.currentTarget.getRepeaterItem() )*/"
> buttonMode="true" useHandCursor="true"
> width="49" height="49"
> rollOverEffect="fadeIn" rollOutEffect="fadeOut"
> alpha="0.8"/>
> 
>  height="35" fontWeight="normal"/>
> 
> 
>
> 
>
> 
>
> thnx to everyone.
>
> --
>
> Enviado desde Correo 
> Yahoo!
> La bandeja de entrada más inteligente.
>  
>


Re: [flexcoders] Howto Create Flex Builder Custom Component folders?

2008-06-14 Thread Mark Doberenz
Mike,
  Please reply to this thread when you start blogging about this, or just
let me know your blog so I can add it to my RSS reader.
  I've very interested in this and would love to have any info on it.

Mark

On Tue, Jun 10, 2008 at 8:53 AM, Michael Schmalle <[EMAIL PROTECTED]>
wrote:

>   Hi,
>
> I have started to make a couple. Making plugins is not the hard part, it's
> tapping into the workbench and getting Adobe's extension points and API.
> This is where I hit a brick wall and just moved to something else for the
> time being.
>
> This is definitly something I am going to start blogging about (making
> eclipse plugins for FB3).
>
> Mike
>
>
> On Tue, Jun 10, 2008 at 9:48 AM, Johannes Nel <[EMAIL PROTECTED]>
> wrote:
>
>>   One of the dev's who work for us figured out how to write a simple
>> plugin in a week, I have no specific knowledge of this, but i bcc him on
>> this email and hopefully he gives some hints where to start
>>
>>
>> On Mon, Jun 9, 2008 at 7:29 PM, Mark Doberenz <[EMAIL PROTECTED]>
>> wrote:
>>
>>>   Johannes,
>>>   I was actually thinking that this would be what I'd need to do.  Do you
>>> have any more info on what this would look like?
>>>   Creating an installer for this library wouldn't be a big deal, so
>>> packaging up the eclipse plugin and the swc wouldn't be out of the
>>> question.  I just don't know how to do it.
>>>
>>> Mark
>>>
>>> On Mon, Jun 9, 2008 at 10:35 AM, Johannes Nel <[EMAIL PROTECTED]>
>>> wrote:
>>>
>>>>   or you could create your own exlipse plugin to go with your
>>>> components to manage this.
>>>>
>>>>
>>>> On Mon, Jun 9, 2008 at 5:33 PM, Michael Schmalle <
>>>> [EMAIL PROTECTED]> wrote:
>>>>
>>>>>   Hi,
>>>>>
>>>>> Nope, component devs are out of luck with this.
>>>>>
>>>>> You could file an enhancement request for Flex Builder 4. :)
>>>>>
>>>>> Mike
>>>>>
>>>>>
>>>>> On Mon, Jun 9, 2008 at 11:26 AM, Mark Doberenz <[EMAIL PROTECTED]>
>>>>> wrote:
>>>>>
>>>>>>   I'm creating a Flex library project for work and it's ending up
>>>>>> being a BUNCH of little custom components.  So, when I use the library 
>>>>>> in a
>>>>>> Flex app project, there are all of those components in the "Custom"
>>>>>> Components folder.
>>>>>>
>>>>>> Is there any way to create a new folder in the Components tab in Flex
>>>>>> Builder?  I tried searching for this before I'm posting this, but I can't
>>>>>> find anything about it on the web.
>>>>>>
>>>>>> Any help would be greatly appreciated.
>>>>>>
>>>>>> Mark Doberenz
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Teoti Graphix, LLC
>>>>> http://www.teotigraphix.com
>>>>>
>>>>> Teoti Graphix Blog
>>>>> http://www.blog.teotigraphix.com
>>>>>
>>>>> You can find more by solving the problem then by 'asking the question'.
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>> --
>>>> j:pn
>>>> \\no comment
>>>>
>>>
>>>
>>
>>
>> --
>> j:pn
>> \\no comment
>>
>
>
>
> --
> Teoti Graphix, LLC
> http://www.teotigraphix.com
>
> Teoti Graphix Blog
> http://www.blog.teotigraphix.com
>
> You can find more by solving the problem then by 'asking the question'.
>  
>


Re: [flexcoders] Re: Modules not loading in some browsers! Why?

2008-06-12 Thread Mark Doberenz
It also may be that you're not making a hard link to the module and it's
getting garbage collected before you're doing anything with it.

I don't remember exactly the details, but I had an issue with modules
sometimes loading and sometimes not loading between compiles of my app.
Once I added a hard reference to the module once it was loaded, that went
away.

The garbage collection could play differently between browsers which is why
the modules get garbage collected in some browsers and not others.  There
could be a better way of saying that.  It's not that the garbage collector
behaves differently, but some browsers might have a larger overhead than
others and so the GC may get rid of stuff differently.

Mark


On Thu, Jun 12, 2008 at 12:46 PM, mellomike07 <[EMAIL PROTECTED]> wrote:

>   Thanks for the response Alex!
>
> How can I test if multiple request are being made? Because in my code I'm
> only calling the
> module to load once.
>
> But one thing I should mention is that the module is being loaded inside a
> creationComplete event handler of a view component.
>
> Could it be that this creationComplete event is being fired more than once?
> if so, how can
> I prevent this? Thanks!!!
>
>
> --- In flexcoders@yahoogroups.com , "Alex
> Harui" <[EMAIL PROTECTED]> wrote:
> >
> > Most common issue has been multiple open requests for the same module
> >
> >
> >
> > 
> >
> > From: flexcoders@yahoogroups.com  [mailto:
> flexcoders@yahoogroups.com ] On
> > Behalf Of mellomike07
> > Sent: Thursday, June 12, 2008 8:36 AM
> > To: flexcoders@yahoogroups.com 
> > Subject: [flexcoders] Modules not loading in some browsers! Why?
> >
> >
> >
> > Hello,
> >
> > My problem has to do with modules showing up in some browsers
> > sometimes... and not
> > showing up other times in other browsers. To fix the problem I have to
> > refresh the page so
> > the Flex application will reload.
> >
> > I always make sure the empty my cache before trying... There are some
> > times when the
> > modules load fine what could be the problem??
> >
>
>  
>


Re: [flexcoders] Howto Create Flex Builder Custom Component folders?

2008-06-09 Thread Mark Doberenz
Johannes,
  I was actually thinking that this would be what I'd need to do.  Do you
have any more info on what this would look like?
  Creating an installer for this library wouldn't be a big deal, so
packaging up the eclipse plugin and the swc wouldn't be out of the
question.  I just don't know how to do it.

Mark

On Mon, Jun 9, 2008 at 10:35 AM, Johannes Nel <[EMAIL PROTECTED]>
wrote:

>   or you could create your own exlipse plugin to go with your components
> to manage this.
>
>
> On Mon, Jun 9, 2008 at 5:33 PM, Michael Schmalle <[EMAIL PROTECTED]>
> wrote:
>
>>   Hi,
>>
>> Nope, component devs are out of luck with this.
>>
>> You could file an enhancement request for Flex Builder 4. :)
>>
>> Mike
>>
>>
>> On Mon, Jun 9, 2008 at 11:26 AM, Mark Doberenz <[EMAIL PROTECTED]>
>> wrote:
>>
>>>   I'm creating a Flex library project for work and it's ending up being
>>> a BUNCH of little custom components.  So, when I use the library in a Flex
>>> app project, there are all of those components in the "Custom" Components
>>> folder.
>>>
>>> Is there any way to create a new folder in the Components tab in Flex
>>> Builder?  I tried searching for this before I'm posting this, but I can't
>>> find anything about it on the web.
>>>
>>> Any help would be greatly appreciated.
>>>
>>> Mark Doberenz
>>>
>>
>>
>>
>> --
>> Teoti Graphix, LLC
>> http://www.teotigraphix.com
>>
>> Teoti Graphix Blog
>> http://www.blog.teotigraphix.com
>>
>> You can find more by solving the problem then by 'asking the question'.
>>
>>
>
>
> --
> j:pn
> \\no comment
> 
>


[flexcoders] Howto Create Flex Builder Custom Component folders?

2008-06-09 Thread Mark Doberenz
I'm creating a Flex library project for work and it's ending up being a
BUNCH of little custom components.  So, when I use the library in a Flex app
project, there are all of those components in the "Custom" Components
folder.

Is there any way to create a new folder in the Components tab in Flex
Builder?  I tried searching for this before I'm posting this, but I can't
find anything about it on the web.

Any help would be greatly appreciated.

Mark Doberenz


Re: [flexcoders] Error #2044: Unhandled ioError:. text=Error #2032: Stream Error.

2008-06-09 Thread Mark Doberenz
I came to find out that this is a general error that gets sent to Flex when
an error is getting generated by the server.
Essentially, the error is throwing an error.  I'd suggest using Fiddler to
see what the communication is and what the actual error is.
A limitation of IE/Firefox hosting a Flex app is that the browsers do not
send the data to the Flex app.

What needs to happen is that you need to try to send the fault back as a 200
MSG_OK that contains the fault information.  Flex will then parse the info
and throw an error.

That's what I had to do recently using Axis and I'd assume Spring is
similar.

Mark

On Sun, Jun 8, 2008 at 1:59 PM, rreyes <[EMAIL PROTECTED]> wrote:

>
> I am getting this error when connecting to a Spring MVC page for uploading
> data. Still, Spring is telling me everything is working fine. Any idea what
> could be wrong? This is happening on a localhost app on Firefox and IE. I
> have looked around for an answer in this forum and other forums but no luck
> so far. Please help...
> --
> View this message in context:
> http://www.nabble.com/Error--2044%3A-Unhandled-ioError%3A.-text%3DError--2032%3A-Stream-Error.-tp17710850p17710850.html
> Sent from the FlexCoders mailing list archive at Nabble.com.
>
>  
>


Re: [flexcoders] Module Preloader?

2008-05-13 Thread Mark Doberenz
Can't you just have the module start up in a state that has some sort of
"loading" screen and then it transitions to a different state once the
data's loaded.

States or View Stacks could both work to do this.

On Tue, May 13, 2008 at 6:02 PM, Nate Pearson <[EMAIL PROTECTED]> wrote:

>   I'm loading some modules in a portal application. Each module is a
> chart that has to ask a webservice for data. I don't want to show
> the module until it has retrieved the data and finished rendering.
> Then I want it to fade in.
>
> I'm not sure how to do this though, can anyone point me in the right
> direction?
>
> Thanks!
>
> -Nate
>
>  
>


Re: [flexcoders] Application Help.

2008-03-01 Thread Mark Doberenz
Date has a year property
just loop through something like this

var dArray:Array = new Array();
var d:Date = new Date(birthDay.time); // This will create a new instance of
a Date with the same time as the birthday
var now:Date = new Date();
While (d.year < now.year)
{
dArray.push(d);
d = new Date(d.time);
d.year++;
}
Then the dArray will have a list of dates.  Your datagrid can have some
datacolumns with functions that define the value in the grid.

Hope that helps,
Mark

On Sat, Mar 1, 2008 at 2:48 PM, sk8bmx099 <[EMAIL PROTECTED]> wrote:

>   I need help. I tried using external XML files. But It's too much work.
> I know there is a quick way to use the var date or something. I'm
> building this with Flex. If you have any ideas. Please please please,
> post.
>
> The Application is that, the user enter's their Birth Date. The
> Application should notice the Birthday and from that day until 2009 or
> 2008. It should show which day it's on. For Example: 1/10/1994, So
> This person is born on January 1, 1994. And lets say on January 10
> 1194, it was a Tuesday. Now this application should get this date, and
> show every day that it will be on or it was on. So Let's say January
> 10, 1995 it was on a Wednesday. It should say this. I am thinking of a
> Data Grid like this.
>
> Date |Day
> 
> 1/10/1994 || Tuesday
> 1/10/1995 || Wednesday
> 1/10/1996 || Sunday(Just an example)
> ___
>
> If you guys can help, it will be great!
>
> Thanks once again.
>
>  
>


Re: [flexcoders] Re: ModuleLoader 'SWF is not a loadable module' Error

2007-12-11 Thread Mark Doberenz
Oh for cryin out loud

All I had to do was create an array of ModuleLoaders and add the
ModuleLoader to it when I created it and it kept all the instances just
fine.

Thank you so much  I can work on this project again!

Mark

On Dec 10, 2007 10:10 PM, Alex Harui <[EMAIL PROTECTED]> wrote:

>So, the classic 'mistake' was to do this:
>
>
>
> private function loadModule(url:String):void
>
> {
>
> var modInfo:IModuleInfo = ModuleManager.getModule(url);
>
> modInfo.addEventListener(ModuleEvent.READY, readyHandler)
>
> modInfo.load();
>
> }
>
>
>
> This worked in 2.0.1 because there was a memory leak.  We fixed the leak
> in Flex 3 and suddenly, this scenario could cause the module to kick itself
> out.  The allocation for the ready event could force a garbage collection
> and nothing has a hard reference to the ModuleInfo or the Module so it away
> it goes.  The addEventListener is not a hard reference to the ModuleInfo,
> the reference goes the other direction.
>
>
>
> The answer here is to make sure you store your modInfo references on the
> instance and not in a local variable.  Similarly, if I kept only one
> reference, several calls to loadModule would overwrite the last reference
> and allow it to get kicked out.  If you're loading several modules, you'll
> need an array of ModuleInfos tracking each module and administrate their
> clean up.
>
>
>
> ModuleLoader keeps hard references so it should be ok, as there should be
> one ModuleLoader per url.  But again if you ask it to load more than one
> module, the previous ones may be eligible for garbage collection.
>
>
>
> If you're using 2.0.1, calls to unload() could cause the same sort of
> situation.
>
>
>
> -Alex
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Mark Doberenz
> *Sent:* Monday, December 10, 2007 7:20 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] Re: ModuleLoader 'SWF is not a loadable
> module' Error
>
>
>
> I've worked on an app too where I used modules heavily.  I had/have issues
> where the module doesn't load.  I've noticed that the trace log shows that
> the SWF is decompressed, but it never throws the Complete event.  I've found
> that sometimes recompiling the app will work.
>
> I'm not sure if it's an ApplicationDomain issue or not.  I tried tweaking
> this a while back and never got anywhere, but once I removed it, the modules
> started loading.  I didn't have issues with it anymore until just recently
> when I started the project back up again.  It made me not work on the app
> b/c I'm tired of hacking with this issue.
>
> Unfortunately, I haven't found a way to really fix this. :(
>
> Mark
>
> On Dec 10, 2007 5:42 PM, Alex Harui <[EMAIL PROTECTED]> wrote:
>
> GC = garbage collection.  W/o a hard reference, the memory manager could
> remove your module.  ModuleLoader should be ok hanging on to it.  It might
> be possible that if you start two loads of the same swf that the second one
> doesn't finish.  Not sure how to prove that.
>
>
>
> I would try to make the smallest possible test case that can reproduce the
> error.
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Barry Evans
> *Sent:* Monday, December 10, 2007 1:47 PM
>
>
> *To:* flexcoders@yahoogroups.com
> *Subject:* [flexcoders] Re: ModuleLoader 'SWF is not a loadable module'
> Error
>
>
>
> Sorry, i forgot to say i'm using flex 2.0.1.
>
> And as for a hard reference, i am creating a number of ModuleLoader
> components within a repeater, so the url of the loaded module is
> dynamic in nature.
>
> What do you mean by a GC?
>
> The weird thing in this situation is that i have another module which
> displays links and is very close in nature to the one giving me
> problems, however it never produces any errors.
>
> I use the problematic module on more than one occassion i.e. when the
> app loads up, the links module is loaded twice. Its only means of
> consistently is that it fails both times it loads (in a single
> application instance).
>
> I am also passing data to the module (on the moduleReady event) using
> a custom Interface, i wonder if this would have any affect?
>
> I followed the Adode dev guide on how to pass data to the module, so
> im not sure this is where the problem stems from, but i thought i
> would mention this.
>
> The only other issue that comes to mind is 

Re: [flexcoders] Re: ModuleLoader 'SWF is not a loadable module' Error

2007-12-10 Thread Mark Doberenz
I've worked on an app too where I used modules heavily.  I had/have issues
where the module doesn't load.  I've noticed that the trace log shows that
the SWF is decompressed, but it never throws the Complete event.  I've found
that sometimes recompiling the app will work.

I'm not sure if it's an ApplicationDomain issue or not.  I tried tweaking
this a while back and never got anywhere, but once I removed it, the modules
started loading.  I didn't have issues with it anymore until just recently
when I started the project back up again.  It made me not work on the app
b/c I'm tired of hacking with this issue.

Unfortunately, I haven't found a way to really fix this. :(

Mark

On Dec 10, 2007 5:42 PM, Alex Harui <[EMAIL PROTECTED]> wrote:

>GC = garbage collection.  W/o a hard reference, the memory manager
> could remove your module.  ModuleLoader should be ok hanging on to it.  It
> might be possible that if you start two loads of the same swf that the
> second one doesn't finish.  Not sure how to prove that.
>
>
>
> I would try to make the smallest possible test case that can reproduce the
> error.
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Barry Evans
> *Sent:* Monday, December 10, 2007 1:47 PM
>
> *To:* flexcoders@yahoogroups.com
> *Subject:* [flexcoders] Re: ModuleLoader 'SWF is not a loadable module'
> Error
>
>
>
> Sorry, i forgot to say i'm using flex 2.0.1.
>
> And as for a hard reference, i am creating a number of ModuleLoader
> components within a repeater, so the url of the loaded module is
> dynamic in nature.
>
> What do you mean by a GC?
>
> The weird thing in this situation is that i have another module which
> displays links and is very close in nature to the one giving me
> problems, however it never produces any errors.
>
> I use the problematic module on more than one occassion i.e. when the
> app loads up, the links module is loaded twice. Its only means of
> consistently is that it fails both times it loads (in a single
> application instance).
>
> I am also passing data to the module (on the moduleReady event) using
> a custom Interface, i wonder if this would have any affect?
>
> I followed the Adode dev guide on how to pass data to the module, so
> im not sure this is where the problem stems from, but i thought i
> would mention this.
>
> The only other issue that comes to mind is the sequence in which the
> modules are loaded, but i havent had a chance to apply the
> ModuleLoader's urls manually, and i dont even think this would be the
> problem, just a thought.
>
> --- In flexcoders@yahoogroups.com , "Alex
> Harui" <[EMAIL PROTECTED]> wrote:
> >
> > Which version of Flex? Are you keeping a hard reference to the
> module?
> > Otherwise, a GC can kick it out just as it finishes loading.
> >
> >
> >
> > 
> >
> > From: flexcoders@yahoogroups.com 
> [mailto:flexcoders@yahoogroups.com ] On
> > Behalf Of Barry Evans
> > Sent: Monday, December 10, 2007 9:50 AM
> > To: flexcoders@yahoogroups.com 
> > Subject: [flexcoders] Re: ModuleLoader 'SWF is not a loadable
> module'
> > Error
> >
> >
> >
> > No, this is not the case im afraid.
> >
> > Sometimes the module loads perfectly and the application is fine,
> but
> > sometimes the application throws the error i mentioned in the first
> > post.
> >
> > I catch the main error being thrown by the module loader ('SWF is
> not
> > a loadable module'), but when this occurs the ModuleManager.as
> class
> > (from the Flex framework) always throws an error at line 669:
> >
> > The code at this line is:
> > moduleEvent.bytesLoaded = loader.contentLoaderInfo.bytesLoaded;
> >
> > I have changed the code in ModuleManager.as to now point to the
> > correct object - the event.currentTarget.loader property - (so that
> a
> > null pointer error is not thrown):
> > moduleEvent.bytesLoaded =
> > event.currentTarget.loader.contentLoaderInfo.bytesLoaded;
> >
> > I am not sure how to compile the application (or perhaps rebuild
> the
> > framework.swc file with the new source code) with the changes
> >
> > Either way, the module is not loading properly in a consistent
> > manner, and i am totally confused as to how this would be happening.
> >
> > --- In flexcoders@yahoogroups.com  flexcoders% 
> 40yahoogroups.com>
> > , "Alex Harui"  wrote:
> > >
> > > is it possible it isn;t a module
> > >
> > > 
> > >
> > > From: flexcoders@yahoogroups.com  flexcoders% 
> 40yahoogroups.com>
> >
> > [mailto:flexcoders@yahoogroups.com  flexcoders% 
> 40yahoogroups.com>
> > ] On
> > > Behalf Of Barry Evans
> > > Sent: Monday, December 10, 2007 3:51 AM
> > > To: flexcoders@yahoogroups.com   flexcoders% 
> 40yahoogroups.com>
> > > Subject: [flexcoders] ModuleLoader 'SWF is not a loadable module'
> > Error
> > >
> > >
> > >
> > > I am having a problem with a modularised application i am
> > developing.
> > >
> > > I am using modules to load a 

[flexcoders] Flex and Server-Side Java classes

2007-09-26 Thread Mark Doberenz
All,
  I've been a part of this list for a long time and I'm a pretty decent Flex
programmer.  However, I'm not too familiar with the server-side aspect of
things.
  I wanted to post a server-side noob question for you experts out there.

  If I have a couple existing applications, one that runs in JBoss, one
that's .NET with a SOAP API, and I want to set up a broker system using java
and JBoss, is it possible to have Flex make Remote Object calls to the
broker system if I DON'T use LCDS?  In other words, do I need LCDS to call a
server-side Java class?

  Please no flames regarding this question.  If I've said something
incorrectly, please let me know so I can learn more about this stuff.  I
hate that I don't even know the questions to ask. :(

Thanks,
Mark


Re: [flexcoders] custom component as item renderer

2007-09-06 Thread Mark Doberenz
what's the namespace that the custom component is in?  You may need to
specify the full namespace location:
 *itemRenderer="com.path1.path2.ImageRenderer"*

On 9/6/07, Tracy Spratt <[EMAIL PROTECTED]> wrote:
>
>Have you declared the default namespace in the root tag of the app?
>
> xmlns="*"
>
>
>
> Tracy
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Matthew Ganz
> *Sent:* Thursday, September 06, 2007 4:51 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] custom component as item renderer
>
>
>
> thank you but i'm still getting the same error even when i import my
> custom component.
>
>  - Original Message -
>
> *From:* Tracy Spratt <[EMAIL PROTECTED]>
>
> *To:* flexcoders@yahoogroups.com
>
> *Sent:* Thursday, September 06, 2007 4:53 PM
>
> *Subject:* RE: [flexcoders] custom component as item renderer
>
>
>
> import ImageRenderer;
>
> Tracy
>   --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Matthew Ganz
> *Sent:* Thursday, September 06, 2007 4:38 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* [flexcoders] custom component as item renderer
>
> hi.
>
> i'm following aral balkan's tutorial on using item renderers:
>
> http://www.adobe.com/devnet/flex/quickstart/using_item_renderers/
>
> i'm trying to implement a custom component as my item renderer and i'm
> going thru the tute and i'm still getting the following error:
>
>
> *Definition ImageRenderer could not be found.*
>
> I thought that assigning the name of the component (it resides in the same
> directory) to the 'itemRenderer' property of my List component would be
> fine.
>
> Here's my List:
>
> 
> id="materialsList"
> width="120"
> height="300"
> dataProvider="{test.availableMaterials}"
> *itemRenderer="ImageRenderer" // this is line throwing the error.*
> rowHeight="100"
> verticalAlign="middle">
>
>
> and here's my custom component that i'm trying to use as an item renderer
> (ImageRenderer.mxml):
>
> 
> http://www.adobe.com/2006/mxml"; width="200"
> height="200">
>  
>   
>  
> 
>
> What might I be missing? any tips are appreciated. thank you. -- matt.
>
>
>
>   
>


Re: [flexcoders] good examples of dynamic rendering

2007-06-05 Thread Mark Doberenz

Yeah, but they can be a bit slow regarding rendering time.

If you can get away with doing a List and setting it's ItemRenderer to a
Component, it may get you what you want also.
This is the way I try to do things since I heard that Repeaters are slow
rendering-wise...

   
   
   
   
   
   
   
   
   
   
   

Hope that helps,
Mark


On 6/5/07, Tom Chiverton <[EMAIL PROTECTED]> wrote:


On Monday 04 Jun 2007, Derrick Anderson wrote:
> am i correct in thinking that this must happen all in actionscript since
it
> is dynamic in nature?

mx:Repeater may do what you want ?

--
Tom Chiverton
Helping to centrally engineer magnetic e-business
on: http://thefalken.livejournal.com



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England
and Wales under registered number OC307980 whose registered office address
is at St James's Court Brown Street Manchester M2 2JF.  A list of members is
available for inspection at the registered office. Any reference to a
partner in relation to Halliwells LLP means a member of Halliwells LLP.
Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and
may be confidential or legally privileged.  If you are not the addressee you
must not read it and must not use any information contained in nor copy it
nor inform any person other than Halliwells LLP or the addressee of its
existence or contents.  If you have received this email in error please
delete it and notify Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



--
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






Re: [flexcoders] Check out our Apollo screencast

2007-04-02 Thread Mark Doberenz

Awesome, I somehow randomly made your video!!
I'll assume this will be my 15 minutes of fame.  :)

Mark

On 4/2/07, Tom Bray <[EMAIL PROTECTED]> wrote:


  Hey everybody,

We've just launched a new Apollo app and you can check out the demo
here:

http://labs.searchcoders.com/dashboard/demo/

Let us know if you have any questions or feedback.

Thanks!

Tom
 



Re: [flexcoders] Re: Variable width ListItems

2007-03-28 Thread Mark Doberenz

You put a repeater inside a hbox and set dataprovider of the repeater to
what you're using on the list box.  It's not normally best practice to do
this, that's why Alex asked if you had a lot of items in the list.  Using a
repeater is much slower in rendering time than a list.

On 28 Mar 2007 12:54:21 -0700, Shaun <[EMAIL PROTECTED]> wrote:


  There aren't tons of items, but I need the dataprovider binding
functionality provided by the horizontallist. (right now I bind to
an arraycollection that changes regularly)

How would you recommend achieving this with an HBox? I'd rather not
manage the HBox's children manually, though I will if I have to of
course.

Thanks,
Shaun


--- In flexcoders@yahoogroups.com , "Alex
Harui" <[EMAIL PROTECTED]> wrote:
>
> Unfortunately, this is not supported. Do you have tons of items?
If it
> is only a few, I'd use HBox
>
> 
>
> From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com ] On
> Behalf Of Shaun
> Sent: Wednesday, March 28, 2007 10:40 AM
> To: flexcoders@yahoogroups.com 
> Subject: [flexcoders] Variable width ListItems
>
>
>
> I have a horizontal list with items that can have variable widths.
> However, all items end up with the same width as the first item in
the
> list. How do I allow variable width list items?
>
> Is there something similar to the datagrid's variableRowHeight
setting
> that I'm missing?
>
> Thanks,
> Shaun
>

 



Re: [flexcoders] Re: Modules not positioning children correctly

2007-03-27 Thread Mark Doberenz

Thanks for that.  I'd rather do that than have an empty class.

I couldn't find this info in the release notes though.  I did find a
reference to Modules, but nothing about Modules not sizing to 100%.

Mark

On 27 Mar 2007 13:12:14 -0700, Shaun <[EMAIL PROTECTED]> wrote:


  Try setting percentWidth and percentHeight to 100 in your module
tag. This is a known issue posted on the 2.0.1 release notes page,
and setting percentWidth works around it.

Shaun

--- In flexcoders@yahoogroups.com , "Mark
Doberenz" <[EMAIL PROTECTED]>
wrote:
>
> Well, in case anyone else has this issue, I found a bit of a hack
to get it
> to work.
> I just created an mxml class called CustomModule.mxml and this is
all that's
> in it:
>
> 
> > http://www.adobe.com/2006/mxml"; width="100%"
> > height="100%">
> > 
>
>
> Now, whenever I make a new module, I just point it to the
CustomModule
> class as the main class to use, and everything resizes/positions
fine. I'm
> not sure why, but I'll take it.
>
> Just to make sure, I changed one of my modules to point to
mx:Module again,
> and the children didn't resize/position correctly. Setting it back
to
> CustomModule made it all work again.
>
> Hopefully this can help someone.
> Mark
>
>
> On 3/27/07, Mark Doberenz <[EMAIL PROTECTED]> wrote:
> >
> > I'm having issues with modules and I'm hoping someone can help me.
> >
> > Create a module project and layout the module using the following
code:
> >
> > > 
> > > http://www.adobe.com/2006/mxml";
layout="absolute"
> > > width="100%" height="100%">
> > > 
> > > 
> > > 
> > > 
> > > 
> >
> >
> > Compile it and then create another project that is an application
that
> > only has a ModuleLoader that points the the above module like the
following:
> >
> >
> > > 
> > > http://www.adobe.com/2006/mxml";
> > > layout="absolute">
> > > 
> > >  file:///PATH_TO_ABOVE_MODULE.swf
> > > 
> > > 
> > >
> >
> >
> > The module in Flex Builder will appear correctly where the tree
controller
> > is placed at 0,66 and spans 100% x 100%.
> > However, when the module is loaded into the Application,
everything is
> > placed correctly, but the tree seems to use a minimumWidth and
minimumHeight
> > value instead of the 100% x 100%.
> >
> > Has anyone seen this issue before?
> >
> > Mark
> >
>

 



[flexcoders] Re: Modules not positioning children correctly

2007-03-27 Thread Mark Doberenz

Well, in case anyone else has this issue, I found a bit of a hack to get it
to work.
I just created an mxml class called CustomModule.mxml and this is all that's
in it:



http://www.adobe.com/2006/mxml"; width="100%"
height="100%">




Now, whenever I make a new module, I just point it to the CustomModule
class as the main class to use, and everything resizes/positions fine.  I'm
not sure why, but I'll take it.

Just to make sure, I changed one of my modules to point to mx:Module again,
and the children didn't resize/position correctly.  Setting it back to
CustomModule made it all work again.

Hopefully this can help someone.
Mark


On 3/27/07, Mark Doberenz <[EMAIL PROTECTED]> wrote:


I'm having issues with modules and I'm hoping someone can help me.

Create a module project and layout the module using the following code:

> 
> http://www.adobe.com/2006/mxml"; layout="absolute"
> width="100%" height="100%">
> 
> 
> 
> 
> 


Compile it and then create another project that is an application that
only has a ModuleLoader that points the the above module like the following:


> 
> http://www.adobe.com/2006/mxml";
> layout="absolute">
> 
>  file:///PATH_TO_ABOVE_MODULE.swf
> 
> 
>


The module in Flex Builder will appear correctly where the tree controller
is placed at 0,66 and spans 100% x 100%.
However, when the module is loaded into the Application, everything is
placed correctly, but the tree seems to use a minimumWidth and minimumHeight
value instead of the 100% x 100%.

Has anyone seen this issue before?

Mark



[flexcoders] Modules not positioning children correctly

2007-03-27 Thread Mark Doberenz

I'm having issues with modules and I'm hoping someone can help me.

Create a module project and layout the module using the following code:



http://www.adobe.com/2006/mxml"; layout="absolute"
width="100%" height="100%">








Compile it and then create another project that is an application that only
has a ModuleLoader that points the the above module like the following:



http://www.adobe.com/2006/mxml";
layout="absolute">

file:///PATH_TO_ABOVE_MODULE.swf






The module in Flex Builder will appear correctly where the tree controller
is placed at 0,66 and spans 100% x 100%.
However, when the module is loaded into the Application, everything is
placed correctly, but the tree seems to use a minimumWidth and minimumHeight
value instead of the 100% x 100%.

Has anyone seen this issue before?

Mark


Re: [flexcoders] Apollo HTMLControl capabilities

2007-03-24 Thread Mark Doberenz

 Yeah, I just saw that yesterday.  It looks promising, but the whole
software renderer isn't going to quite cut it.
 I work for a software company called Right Hemisphere and we have a free
3D viewer called Deep
View<http://www.righthemisphere.com/products/deeppub/DeepPub_View/index.html>.
This is really what I'd need to hook into the project I'm working on.  We
have a need to push LOTS of polys and I don't think a software renderer
could cut it.  However, that said, I'm going to look into Papervision3D to
see what it can do.
 It's an ActiveX control, so I'm wondering if I can have apollo actually
open up another HTML webpage in IE and then using LocalConnections,
communicate with Deep View the way I've currently got it set up.  That might
be the way to go now that I think about it.

 I'm very open to other ideas though.

Mark

On 24 Mar 2007 17:20:35 -0700, Andrew Muller <[EMAIL PROTECTED]>
wrote:


  Mark

What kind of 3D view do you need, could it be achived by utilising
Papervision3D which should be able to run in Apollo:

http://blog.papervision3d.org/

Andrew


On 24/03/07, Mark Doberenz <[EMAIL PROTECTED] >
wrote:
>
>
>
>
>
>
> This is more of a general question regarding capabilities of this class.
>
> What kind of things in an HTML file will be displayable using this
class?
> What if an HTML file has an object definition in it, like for an ActiveX
> control. Will it display the ActiveX control like Internet Explorer
does?
>
> I work for a company that has a 3D viewer, and I'd like to place an
instance
> of the 3D view in an Apollo window in some way shape or form.
>
> Any ideas on whether this would be possible or not using the
HTMLControl?
>
> Mark
>

--
--
Andrew Muller
http://www.webqem.com

linkedin: http://www.linkedin.com/pub/1/151/905

 



[flexcoders] Apollo HTMLControl capabilities

2007-03-23 Thread Mark Doberenz

This is more of a general question regarding capabilities of this class.

What kind of things in an HTML file will be displayable using this class?
What if an HTML file has an object definition in it, like for an ActiveX
control.  Will it display the ActiveX control like Internet Explorer does?

I work for a company that has a 3D viewer, and I'd like to place an instance
of the 3D view in an Apollo window in some way shape or form.

Any ideas on whether this would be possible or not using the HTMLControl?

Mark


Re: [flexcoders] Can't add objects to a new Apollo window

2007-03-23 Thread Mark Doberenz

Thanks Michael,
 Guess I missed that one in the docs.

On 3/23/07, Michael Schmalle <[EMAIL PROTECTED]> wrote:


  Hi,

If you read the docs, they say you cannot do this in the Alpha version of
Apollo.

It will be in a beta or for sure the final.

Peace, Mike


On 23 Mar 2007 08:50:22 -0700, Mark Doberenz <[EMAIL PROTECTED]> wrote:
>
>   I have an Apollo app that I want to make open another window and load
> a module into it.
>
> I'm following the instructions from this page...
>
> 
http://labs.adobe.com/wiki/index.php/Apollo:Documentation:Working_with_windows#Creating_windows
>
> I can make the new window appear, but nothing ever shows up in it.
>
> I then used the createNewWindow() method from the page above and that
> worked fine.  It created a new window and showed a nice graphic in it.
>
> I then tried just adding a Label to that window by doing the following
> bit of code:
> var label:Label = new Label();
> label.text = "Test Label";
> label.x = 10;
> label.y = 10;
> newWindow.stage.addChild (label);
>
>
> However, that didn't add the Label to the window.
>
> I had previously tried adding a new ModuleLoader to the new window.  I
> added event listeners to the ModuleLoader and it seemed to be loading the
> module, and then added the module to the child property of the
> ModuleLoader.  However, just like the label, nothing appeared in the new
> Apollo window.
>
> Any help on this would be GREATLY appreciated.
>
> Cheers,
> Mark
>



--
Teoti Graphix
http://www.teotigraphix.com

Blog - Flex2Components
http://www.flex2components.com

You can find more by solving the problem then by 'asking the question'.

 



Re: [flexcoders] Re: Apollo isn't loading my modules

2007-03-23 Thread Mark Doberenz

In ended up figuring this one out.
It seems that Flex wants the full path to the modules, but apollo wants the
relative path.  Once I changed this, it worked just fine.

Hope that helps.

On 23 Mar 2007 09:20:05 -0700, mthielman11 <[EMAIL PROTECTED]> wrote:


  I am having a similar problem, app works fine in flex and works fine
from apollo if I build
it and run, but when I try exporting and running it will not load the
module. I got it to
work once or twice initially and that was it. Any ideas?


--- In flexcoders@yahoogroups.com , "Mark
Doberenz" <[EMAIL PROTECTED]> wrote:
>
> Is there something special I need to do to make Apollo load my modules?
> Flex builder is showing them just fine, but when I run the app, they
don't
> show up in the view.
> The debugger is showing that the SWF is being loaded, but then after
> clicking around on the app for a bit, the debugger says [Unload SWF] and
it
> unloads the module SWF.
>
> Any ideas on this one?
>
> Mark
>

 



[flexcoders] Can't add objects to a new Apollo window

2007-03-23 Thread Mark Doberenz

I have an Apollo app that I want to make open another window and load a
module into it.

I'm following the instructions from this page...
http://labs.adobe.com/wiki/index.php/Apollo:Documentation:Working_with_windows#Creating_windows

I can make the new window appear, but nothing ever shows up in it.

I then used the createNewWindow() method from the page above and that worked
fine.  It created a new window and showed a nice graphic in it.

I then tried just adding a Label to that window by doing the following bit
of code:
var label:Label = new Label();
label.text = "Test Label";
label.x = 10;
label.y = 10;
newWindow.stage.addChild(label);


However, that didn't add the Label to the window.

I had previously tried adding a new ModuleLoader to the new window.  I added
event listeners to the ModuleLoader and it seemed to be loading the module,
and then added the module to the child property of the ModuleLoader.
However, just like the label, nothing appeared in the new Apollo window.

Any help on this would be GREATLY appreciated.

Cheers,
Mark


[flexcoders] Apollo isn't loading my modules

2007-03-23 Thread Mark Doberenz

Is there something special I need to do to make Apollo load my modules?
Flex builder is showing them just fine, but when I run the app, they don't
show up in the view.
The debugger is showing that the SWF is being loaded, but then after
clicking around on the app for a bit, the debugger says [Unload SWF] and it
unloads the module SWF.

Any ideas on this one?

Mark


Re: [flexcoders] Apollo - multi-window communication

2007-03-22 Thread Mark Doberenz

Dang, that's a good idea I'll totally have a play with that one
tomorrow.

Thanks Mike!!!

On 3/22/07, Mike Chambers <[EMAIL PROTECTED]> wrote:


  Windows are all in scope, so you dont have to use LocalConnection.

Just have one window broadcast an event, and have the other listen for it.

mike chambers

[EMAIL PROTECTED] 

Michael Schmalle wrote:
>
>
> I would go out on a limb and say yes.
>
> Not in alpha but, if we are going to be able to addChild() on a newly
> created window, I don't see why you could communicate with a window that

> you created from the main app.
>
> Peace, Mike
>
> On 22 Mar 2007 14:32:13 -0700, *Mark Doberenz* <[EMAIL 
PROTECTED]
> <mailto:[EMAIL PROTECTED] >> wrote:
>
> Oh yeah, I remember playing with those a long time ago... not the
> nicest stuff to deal with from what I can remember.
>
> Thanks
>
> On 22 Mar 2007 14:28:43 -0700, * Carlos Rovira*
> <[EMAIL PROTECTED]  >> wrote:
>
> You should read about LocalConnection. It's an old Flash API to
> communicate between different flash movies
>
> 2007/3/22, Mark Doberenz < [EMAIL PROTECTED] 
> <mailto:[EMAIL PROTECTED] >>:
>
> I've been thinking about using Apollo for an extension to
> an app I've been working on in Flex.
> The current issue with the Flex app is that it's locked to
> a web browser and really only runs on one screen. I know
> you can stretch the web browser across multiple screens, but
> that's not quite what I want.
>
> I know Apollo has windowing capabilities and it seems to
> be quite nice as far as transparent / custom windows goes,
> which is pretty cool.
> However, one thing I'd need to be able to do is have one
> window communicate with another window by passing certain
> bits of information back and forth.
>
> So, here's the $64,000 question "Does Apollo allow for
> communication between different app windows?"
>
> Any info on this would be GREATLY appreciated!!!
>
> Mark
>
>
>
>
> --
> ::| Carlos Rovira
> ::| http://www.carlosrovira.com <http://www.carlosrovira.com>
> ::| http://www.madeinflex.com <http://www.madeinflex.com>
>
>
>
>
>
> --
> Teoti Graphix
> http://www.teotigraphix.com <http://www.teotigraphix.com>
>
> Blog - Flex2Components
> http://www.flex2components.com <http://www.flex2components.com>
>
> You can find more by solving the problem then by 'asking the question'.
>
 



Re: [flexcoders] Apollo - multi-window communication

2007-03-22 Thread Mark Doberenz

Oh yeah, I remember playing with those a long time ago... not the nicest
stuff to deal with from what I can remember.

Thanks

On 22 Mar 2007 14:28:43 -0700, Carlos Rovira <[EMAIL PROTECTED]>
wrote:


  You should read about LocalConnection. It's an old Flash API to
communicate between different flash movies

2007/3/22, Mark Doberenz <[EMAIL PROTECTED] >:
>
> I've been thinking about using Apollo for an extension to an app
> I've been working on in Flex.
>   The current issue with the Flex app is that it's locked to a web
> browser and really only runs on one screen.  I know you can stretch the web
> browser across multiple screens, but that's not quite what I want.
>
>   I know Apollo has windowing capabilities and it seems to be quite nice
> as far as transparent / custom windows goes, which is pretty cool.
>   However, one thing I'd need to be able to do is have one window
> communicate with another window by passing certain bits of information back
> and forth.
>
>   So, here's the $64,000 question "Does Apollo allow for
> communication between different app windows?"
>
> Any info on this would be GREATLY appreciated!!!
>
> Mark
>



--
::| Carlos Rovira
::| http://www.carlosrovira.com
::| http://www.madeinflex.com

 



[flexcoders] Apollo - multi-window communication

2007-03-22 Thread Mark Doberenz

 I've been thinking about using Apollo for an extension to an app I've been
working on in Flex.
 The current issue with the Flex app is that it's locked to a web browser
and really only runs on one screen.  I know you can stretch the web browser
across multiple screens, but that's not quite what I want.

 I know Apollo has windowing capabilities and it seems to be quite nice as
far as transparent / custom windows goes, which is pretty cool.
 However, one thing I'd need to be able to do is have one window
communicate with another window by passing certain bits of information back
and forth.

 So, here's the $64,000 question "Does Apollo allow for communication
between different app windows?"

Any info on this would be GREATLY appreciated!!!

Mark


Re: [flexcoders] Root Node open when displayed.

2007-02-21 Thread Mark Doberenz

Well, have a look at the attached mxml file.  It should do what you want to
do.

Mark

On 2/21/07, Jack Caldwell <[EMAIL PROTECTED]> wrote:


   Mark:

Yes, I need the root node to be visible.

Thanks,

Jack

 --
*From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
Behalf Of *Mark Doberenz
*Sent:* Wednesday, February 21, 2007 9:56 AM
*To:* flexcoders@yahoogroups.com
*Subject:* Re: [flexcoders] Root Node open when displayed.

 Do you even need the root node to be visible?
If not, there's a ShowRootNode property and you can set it to false.

Might be easier, might not.

On 2/21/07, jwc_wensan <[EMAIL PROTECTED]> wrote:
>
>   I have a tree with one node/root and several branches. When this
> screen is displayed, I would like to have the branches automatically
> opened. In other words, so the user does not have to click on the
> node to open its branches.
>
> I would also like to prevent/turn off where the node/root can be
> closed. In other words, I would like for the node/root to always be
> open.
>
> I would think it requires a function to manually set this, but I am
> not sure of the code.
>
> Any help, example, direction will be appreciated.
>
> Thanks,
>
> Jack
>
>
  



test.mxml
Description: Binary data


Re: [flexcoders] Root Node open when displayed.

2007-02-21 Thread Mark Doberenz

Do you even need the root node to be visible?
If not, there's a ShowRootNode property and you can set it to false.

Might be easier, might not.

On 2/21/07, jwc_wensan <[EMAIL PROTECTED]> wrote:


  I have a tree with one node/root and several branches. When this
screen is displayed, I would like to have the branches automatically
opened. In other words, so the user does not have to click on the
node to open its branches.

I would also like to prevent/turn off where the node/root can be
closed. In other words, I would like for the node/root to always be
open.

I would think it requires a function to manually set this, but I am
not sure of the code.

Any help, example, direction will be appreciated.

Thanks,

Jack

 



Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Mark Doberenz

OK, I was able to finally get somewhere with this...

Here's what I was using in my Delegate in the login method...

var call:AsyncToken = service.login(username, password);
service.addEventListener(ResultEvent.RESULT, responder.result);
service.addEventListener(FaultEvent.FAULT, responder.fault);

The problem was adding the event listeners to the service node... not a good
idea, but like I said earlier, this is how Sam Shrefler was doing it on his
tutorial.

Here's what I changed it to...

var call:AsyncToken = service.login(username, password);
call.addResponder(responder);

Now, I'm only getting one result every time I call the method.
Hope this helps someone else.

Mark

On 1/16/07, Thijs Triemstra <[EMAIL PROTECTED]> wrote:


  I'm using Cairngorm 2.1 here so I don't think it's something that
changed in the newest version.. :(

Your idea of the UID sounds like it will work but I'd prefer not send
extra data back and forth and it also won't clean up these redundant event
notifications.. It seems that cairngorm creates new instances of the
delegate/event listeners etc every time, maybe there is a way to find a
unique reference for them that you can use to filter out the extra events?
but I guess that still creates a memory problem and the application will get
slow after a while, something that would easily happen in a chatroom
application for example.. question is: how does someone kill these event
listeners with cairngorm?

Thijs


Op 16-jan-2007, om 20:08 heeft Battershall, Jeff het volgende geschreven:


Well using mx.utils.UIDUtil.createUID() to give each RO call a unique
marker and then checking for a match on result is a way to go, biut it
certainly feels kludgey. I'd like to see some input from the Adobe
consulting folks - perhaps this has been addressed in Cairngorm 2.1 - I'm
using 2.0.

-Original Message-
*From:* flexcoders@yahoogroups.com [mailto:flexcoders @
yahoogroups.com] *On Behalf Of *Mark Doberenz
*Sent:* Tuesday, January 16, 2007 1:54 PM
*To:* flexcoders@yahoogroups.com
*Subject:* Re: [flexcoders] Cairngorm Duplicate Remote Object Return
Events

You're right, I was just calling them duplicate events, but repeated ones
from earlier events is a much better way to say it.

I'm coding up a Fluorine app for the middleware... I'm not all that sure
how to use CF :(

I'm basing my Flex app off of Sam Shrefler's Flex 2, Cairngorm, Fluorine
tutorial:
http://blog. <http://blog.shrefler.net/?p=10>shrefler.net/?p=10

Maybe his code needs to be tweaked for Flex 2.0.1 ??

Mark

On 1/16/07, Battershall, Jeff <[EMAIL PROTECTED]> wrote:
>
>
> Mark,
>
> Interesting discussion - interesting problem.  BTW, I don't think these
> return events are really 'duplicates' per se, but repeats of the earlier
> return events.  LIke
>
> First invoke
>
> returns event1
>
> Second invoke
>
> returns event1 then event2
>
> etc.
>
> Out of curiosity, what middleware are you using? I'm using CFMX 7.02.
>
> Jeff
>
> -Original Message-
> *From:* flexcoders@yahoogroups.com [mailto: [EMAIL PROTECTED]
> *On Behalf Of *Mark Doberenz
> *Sent:* Tuesday, January 16, 2007 11:50 AM
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] Cairngorm Duplicate Remote Object Return
> Events
>
> OK, so maybe having a Singleton delegate wouldn't be a good idea.
>
> Here's a bit more I've found on the topic.
>
> I put a breakpoint at the Command result method and found that the
> address location for the commands were changing.  So, essentially, the
> commands are being persisted which in turn are persisting new instances of
> the delegate and the event listeners that are a part of those delegates.
> Removing the event listener in the delegate first won't work because the
> memory locations of the responder (the command) are changing.
>
> Essentially, every time you create a new cairngorm event, you will
> create new instances of the delegate and then the event listeners, so the
> same result will fire the event listeners multiple times when you've created
> multiple cairngorm events.
>
> That's at least my take on the issue.
>
> I have an app where I'm trying to perform a LoginEvent and I noticed
> that every time I hit the Login button, I was creating a new LoginEvent and
> so the more I tried to login, the more results I was getting back.  I tried
> making the LoginEvent a private var on the view, and that seemed to work the
> first time, but after that it wasn't passing the user data anymore.  Not
> sure what that's about.
>
> I don't like this fix because it would mean that there's only one
> instance of each of the cairngorm events in the whole app.
>
>
> On 1/16/0

Re: [flexcoders] Code behind- do you use it?

2007-01-16 Thread Mark Doberenz

All,
 Thanks for this discussion!  I hadn't heard of this before, so I googled
it and found this article:
http://www.adobe.com/devnet/flex/quickstart/building_components_using_code_behind/

 I'm going to try this out and see how it works.  Then maybe I'll be a
beneficial poster to this discussion :)

Mark

On 1/16/07, Robert Chyko <[EMAIL PROTECTED]> wrote:


   Yesterday I just refactored the project I am working on to use code
behind.  I had not planned on keeping script blocks in the MXML files, but
being fairly new to Flex, when everything began working correctly I sort of
forgot about it until some of the script blocks started getting larger
and larger and then it kind of clicked that I had planned on moving the
script out of the MXML.




 -Original Message-
*From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
Behalf Of *ben.clinkinbeard
*Sent:* Tuesday, January 16, 2007 1:27 PM
*To:* flexcoders@yahoogroups.com
*Subject:* [flexcoders] Code behind- do you use it?

 I am undecided as to whether or not I want to use the code behind
method for my MXML files and figured I would see what others are
doing. I am currently just using Script blocks at the top of my files
to do event handling, initialization, etc but some of them are getting
pretty big.

So what are others doing? No AS in your MXML files, no code behind, a
mixture of the two?

Thanks,
Ben

 



Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Mark Doberenz

You're right, I was just calling them duplicate events, but repeated ones
from earlier events is a much better way to say it.

I'm coding up a Fluorine app for the middleware... I'm not all that sure how
to use CF :(

I'm basing my Flex app off of Sam Shrefler's Flex 2, Cairngorm, Fluorine
tutorial:
http://blog.shrefler.net/?p=10

Maybe his code needs to be tweaked for Flex 2.0.1 ??

Mark

On 1/16/07, Battershall, Jeff <[EMAIL PROTECTED]> wrote:


   Mark,

Interesting discussion - interesting problem.  BTW, I don't think these
return events are really 'duplicates' per se, but repeats of the earlier
return events.  LIke

First invoke

returns event1

Second invoke

returns event1 then event2

etc.

Out of curiosity, what middleware are you using? I'm using CFMX 7.02.

Jeff

 -Original Message-
*From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
Behalf Of *Mark Doberenz
*Sent:* Tuesday, January 16, 2007 11:50 AM
*To:* flexcoders@yahoogroups.com
*Subject:* Re: [flexcoders] Cairngorm Duplicate Remote Object Return
Events

OK, so maybe having a Singleton delegate wouldn't be a good idea.

Here's a bit more I've found on the topic.

I put a breakpoint at the Command result method and found that the address
location for the commands were changing.  So, essentially, the commands are
being persisted which in turn are persisting new instances of the delegate
and the event listeners that are a part of those delegates.  Removing the
event listener in the delegate first won't work because the memory locations
of the responder (the command) are changing.

Essentially, every time you create a new cairngorm event, you will create
new instances of the delegate and then the event listeners, so the same
result will fire the event listeners multiple times when you've created
multiple cairngorm events.

That's at least my take on the issue.

I have an app where I'm trying to perform a LoginEvent and I noticed that
every time I hit the Login button, I was creating a new LoginEvent and so
the more I tried to login, the more results I was getting back.  I tried
making the LoginEvent a private var on the view, and that seemed to work the
first time, but after that it wasn't passing the user data anymore.  Not
sure what that's about.

I don't like this fix because it would mean that there's only one instance
of each of the cairngorm events in the whole app.


On 1/16/07, Battershall, Jeff <[EMAIL PROTECTED]> wrote:
>
>I'm not sure a singleton delegate would do the trick - and then you
> might have threading issues - right? I'm kind of suspicious of the fact that
> the RO instances are being persisted in the singleton ServiceLocator.  It's
> those RO instances' methods that are getting listeners attached to them.
>
> I'm going to try a couple of things - one is to explictly remove the
> event listener when the result comes over the wire.  I've determined this -
> the remote object is invoked only once outgoing from Flex.  It is the
> duplicate result events that are happening.
>
> One way to work around this would be to add a unique token to the rpc
> call as described in the Flex docs (search ACT in the Flex Dev guide) and
> only execute your return code when the token matches the one coming over the
> wire. I'm going to experiment with that as well.  I think this may well be
> some sort of scoping issue caused by the level of abstraction that the
> Cairngorm framework stipulates.
>
>  -Original Message-
> *From:* flexcoders@yahoogroups.com [mailto: [EMAIL PROTECTED]
> *On Behalf Of *Mark Doberenz
> *Sent:* Monday, January 15, 2007 10:31 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] Cairngorm Duplicate Remote Object Return
> Events
>
>   I was seeing this same thing today with some stuff I was working on.
> I hadn't spent any time trying to remove the event listeners before adding
> them again though.  So, I don't know if that would work, but apparently not.
>
>   I wonder if the delegate should actually be set up as a Singleton so
> that multiple instances of the delegate weren't floating around cathing the
> events every time.  This way, you could guarantee that only one instance was
> being used.  Just a thought.
>
>   I don't have the code in front of me, but if you're reinstanciating
> the delegate every time the command is called, then this could explain it.
>
>   Try setting a breakpoint in your delegate and look at the memory
> address for "this" and see if it's changing each time the delegate's called.
>
>
> On 1/15/07, Battershall, Jeff <[EMAIL PROTECTED] > wrote:
> >
> >This is a tough one - and I'm getting a similar b

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Mark Doberenz

OK, so maybe having a Singleton delegate wouldn't be a good idea.

Here's a bit more I've found on the topic.

I put a breakpoint at the Command result method and found that the address
location for the commands were changing.  So, essentially, the commands are
being persisted which in turn are persisting new instances of the delegate
and the event listeners that are a part of those delegates.  Removing the
event listener in the delegate first won't work because the memory locations
of the responder (the command) are changing.

Essentially, every time you create a new cairngorm event, you will create
new instances of the delegate and then the event listeners, so the same
result will fire the event listeners multiple times when you've created
multiple cairngorm events.

That's at least my take on the issue.

I have an app where I'm trying to perform a LoginEvent and I noticed that
every time I hit the Login button, I was creating a new LoginEvent and so
the more I tried to login, the more results I was getting back.  I tried
making the LoginEvent a private var on the view, and that seemed to work the
first time, but after that it wasn't passing the user data anymore.  Not
sure what that's about.

I don't like this fix because it would mean that there's only one instance
of each of the cairngorm events in the whole app.


On 1/16/07, Battershall, Jeff <[EMAIL PROTECTED]> wrote:


   I'm not sure a singleton delegate would do the trick - and then you
might have threading issues - right? I'm kind of suspicious of the fact that
the RO instances are being persisted in the singleton ServiceLocator.  It's
those RO instances' methods that are getting listeners attached to them.

I'm going to try a couple of things - one is to explictly remove the event
listener when the result comes over the wire.  I've determined this - the
remote object is invoked only once outgoing from Flex.  It is the duplicate
result events that are happening.

One way to work around this would be to add a unique token to the rpc call
as described in the Flex docs (search ACT in the Flex Dev guide) and only
execute your return code when the token matches the one coming over the
wire. I'm going to experiment with that as well.  I think this may well be
some sort of scoping issue caused by the level of abstraction that the
Cairngorm framework stipulates.

 -Original Message-
*From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
Behalf Of *Mark Doberenz
*Sent:* Monday, January 15, 2007 10:31 PM
*To:* flexcoders@yahoogroups.com
*Subject:* Re: [flexcoders] Cairngorm Duplicate Remote Object Return
Events

  I was seeing this same thing today with some stuff I was working on.  I
hadn't spent any time trying to remove the event listeners before adding
them again though.  So, I don't know if that would work, but apparently not.

  I wonder if the delegate should actually be set up as a Singleton so
that multiple instances of the delegate weren't floating around cathing the
events every time.  This way, you could guarantee that only one instance was
being used.  Just a thought.

  I don't have the code in front of me, but if you're reinstanciating the
delegate every time the command is called, then this could explain it.

  Try setting a breakpoint in your delegate and look at the memory address
for "this" and see if it's changing each time the delegate's called.


On 1/15/07, Battershall, Jeff <[EMAIL PROTECTED]> wrote:
>
>This is a tough one - and I'm getting a similar behavior with
> fileupload - duplicate completion events in subsequent calls to the same
> Event/Command/Delegate. I'm having to parse out the duplicates on the client
> side and I've yet to determine the culprit.   You'd think that there's a new
> instance of each Event, Command and Delegate classes responding to each
> gesture, but somehow something is getting persisted and producing a ghosting
> effect after the first call to the same class.  The remote object instances
> in ServiceLocator are getting persisted, that's for sure, and I don't know
> if that has anything to do with it.
>
> Jeff
>
>  -Original Message-
> *From:* [EMAIL PROTECTED] ups.com [mailto:[EMAIL PROTECTED]
> *On Behalf Of *Thijs Triemstra
> *Sent:* Monday, January 15, 2007 4:04 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] Cairngorm Duplicate Remote Object Return
> Events
>
> I'm having the same problem with NetConnection and Cairngorm, it
> triggers more and more NetStatus events everytime I reconnect to the server.
> The server doesn't show any reconnects so it's a clientside thing but not
> sure why.. I also tried removing the listeners but nothing changed.
> Thijs
>
>
>
>

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-15 Thread Mark Doberenz

 I was seeing this same thing today with some stuff I was working on.  I
hadn't spent any time trying to remove the event listeners before adding
them again though.  So, I don't know if that would work, but apparently not.
 I wonder if the delegate should actually be set up as a Singleton so that
multiple instances of the delegate weren't floating around cathing the
events every time.  This way, you could guarantee that only one instance was
being used.  Just a thought.

 I don't have the code in front of me, but if you're reinstanciating the
delegate every time the command is called, then this could explain it.

 Try setting a breakpoint in your delegate and look at the memory address
for "this" and see if it's changing each time the delegate's called.


On 1/15/07, Battershall, Jeff <[EMAIL PROTECTED]> wrote:


   This is a tough one - and I'm getting a similar behavior with
fileupload - duplicate completion events in subsequent calls to the same
Event/Command/Delegate. I'm having to parse out the duplicates on the client
side and I've yet to determine the culprit.   You'd think that there's a new
instance of each Event, Command and Delegate classes responding to each
gesture, but somehow something is getting persisted and producing a ghosting
effect after the first call to the same class.  The remote object instances
in ServiceLocator are getting persisted, that's for sure, and I don't know
if that has anything to do with it.

Jeff

 -Original Message-
*From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
Behalf Of *Thijs Triemstra
*Sent:* Monday, January 15, 2007 4:04 PM
*To:* flexcoders@yahoogroups.com
*Subject:* Re: [flexcoders] Cairngorm Duplicate Remote Object Return
Events

I'm having the same problem with NetConnection and Cairngorm, it triggers
more and more NetStatus events everytime I reconnect to the server. The
server doesn't show any reconnects so it's a clientside thing but not sure
why.. I also tried removing the listeners but nothing changed.
Thijs



 Op 15-jan-2007, om 19:01 heeft Martin Wood-Mitrovski het volgende
geschreven:

  > One theory I have about what 'might' be happening is that before I
make
> my servce call, I'm adding event listeners for the result/fault and
> these may be duplicate ones, because the remote object instance is being
> persisted in ServiceLocator. However, I tried explictly removing the
> listeners before adding them and no dice.

sounds like the most likely thing to be happening.

try setting a breakpoint on where you remove / add the listeners and check
that
the references are the ones you expect, i.e. you are not trying to remove
a
different listener or something.






[flexcoders] Using "As" with a string Class type

2006-10-31 Thread Mark Doberenz



I'm trying to work on a serializer for objects coming from a Web Service call.I've got a clean way of doing it for basic classes, but when the class has another custom class in it, I'm failing to figure it out.
Any help would be greatly appreciated.  The highlighted code is what I'm having issues with.  If fullyQualifiedName="TestVO", then how do I use that String value as a Class so that I can call the objectToInstance function again?
Here's what I have so far...package{import mx.collections.ArrayCollection
;import mx.utils.ObjectUtil;import flash.utils.describeType;public final class ObjectTranslator{private static var _simpleTypes:ArrayCollection = new ArrayCollection(new Array(
"int","String","Object"))
public static function objectToInstance(obj:Object, cls:Class):*{var newObj:* = new cls();var objClassInfo:Object = ObjectUtil.getClassInfo(obj);var typeInfo:XML = describeType( cls );
for each (var prop:QName in objClassInfo.properties){if (newObj.hasOwnProperty(prop.localName)){var fullyQualifiedName:String = typeInfo..accessor.(@name == 
prop.localName)[EMAIL PROTECTED]().replace( /::/, "." );var idx:int = _simpleTypes.getItemIndex(fullyQualifiedName);if (idx == -1){newObj[prop.localName] = 
ObjectTranslator.objectToInstance(obj[prop.localName], fullyQualifiedName as Class);//translateObject(//registerClassAlias( fullyQualifiedName, obj[
prop.localName] );} else {//var fullyQualifiedName:String = [EMAIL PROTECTED](prop.localName)[EMAIL PROTECTED]().replace( /::/, "." );newObj[prop.localName] = obj[prop.localName
];trace(prop.localName + ": " + ObjectUtil.isSimple(obj[prop.localName]));}}}return newObj;}}}

__._,_.___





--
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] how do i access properties of a component inside a repeater?

2006-10-26 Thread Mark Doberenz



You could try binding the button's width and height to the slider's value using the following:
 
 label="{String(rp.currentItem)}"/>
 
I think that'll work.
 
On 10/26/06, shemeshkale <[EMAIL PROTECTED]> wrote:





i have a Tile with repeater inside.inside the repeater - a button.pretty simple.with a slider i want to change the size (width/height) of the button.i works great if i bind width/height to slider value.
but how i do it the other way? from the slider to the button?what should come inside the changeSize function?here is a basic code:http://www.adobe.com/2006/mxml">paddingTop="10" paddingLeft="10" paddingRight="10"
paddingBottom="10">change="changeSize()" liveDragging="true"/>
horizontalGap="10" verticalGap="15" width="100%"paddingLeft="10" paddingTop="10" paddingBottom="10"
paddingRight="10">label="{String(rp.currentItem)}"/>
   

__._,_.___





--
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] Typecast a generic Object into a VO

2006-10-24 Thread Mark Doberenz



I figured it out.  I just made the VO have a constructor that set the values if you wanted to convert it to a VO:
 
 public class TestVO {  [Bindable] public var i_test:int;  [Bindable] public var o_test:Object;  [Bindable] public var s_test:String;public function TestVO(obj:Object=null):void{   if (obj != null){
if (obj.hasOwnProperty("i_test")) i_test = obj.i_test;if (obj.hasOwnProperty("o_test")) o_test = obj.o_test;if (obj.hasOwnProperty("s_test")) s_test = 
obj.s_test;   }  } }Later,
Mark 
On 10/23/06, mdoberenz <[EMAIL PROTECTED]> wrote:





I'm pretty sure this is possible, but I can't get it to work.I'm wanting to typecast a generic object that gets returned by aWebService call into a VO, but I'm having some issues.Say I have a VO of the following:
public class TestVO{[Bindable] public var i_test:int;[Bindable] public var s_test:String;[Bindable] public var o_test:Object;}Then I get an object back from a WebService call that has a similar
structure, can't I just do the following?:var typeCastTry:TestVO = RETURN_OBJ as TestVO;When I do this, typeCastTry gets set to null.Any help would be awesome!Mark
 

__._,_.___





--
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] Intermittent #2032: Stream Error errors

2006-08-11 Thread Mark Doberenz



I had this issue for a long time.
I'm hoping this is a webservice call you're trying to make, and that it has arguments that are needed.  Say the arguments are arg1 and arg2 and they both take string values.  Also assume the function is called func1.  Here's what I would suggest...

 
var func1:Operation = webserviceObject.func1;
func1.arguments = {arg1:"value1", arg2:"value2"};
func1.send();
 
The issue is that the argument list for webservices (and possibly http requests) are hash tables.  Hash tables don't guarantee order, so you need to create an object and specifically assign a value to a property.

 
After I implemented this, I pretty much got rid of all of my stream errors.
 
Mark 
On 8/10/06, ben.clinkinbeard <[EMAIL PROTECTED]> wrote:






I am getting these errors every now and then and I've not been able toeven begin to understand why. I saw in another thread that someone hadtraced a similar issue to HTTP cache control header issues, but that
was only happening in IE. Mine happen in Firefox as well. It usuallyfixes it to close the session and republish, but not always. Is thisbasically saying it can't find the URL? Has anyone else experienced,or better yet, solved this? Below is a sample fault message.
[FaultEvent fault=[RPC Fault faultString="HTTP request error"faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent type="ioError" bubbles=falsecancelable=false eventPhase=2 
text="Error #2032: Stream Error. URL:http://fescov151win/Webservices/ClientMeasures.asmx
"]. URL:http://fescov151win/Webservices/ClientMeasures.asmx"]messageId="A1575198-9334-D65B-AB26-F9C801601784" type="fault"
bubbles=false cancelable=true eventPhase=2] 

__._,_.___





--
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] Re: Updating and Retriving Data From XML File FLEX 2

2006-04-17 Thread Mark Doberenz



I just noticed it was in an attachment from Tracy.
 
On 4/17/06, flexnadobe <[EMAIL PROTECTED]> wrote:

Any way we can find this Example or have a sample posted usingColdfusion CFC instead of JSP?
--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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. 










--
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.