RE: [SPAM] Re: [flexcoders] Re: checkbox- create a bindable "value" property

2008-01-23 Thread Tim Ashworth
Cheers,
 
I'll have a fiddle...oooeer...

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Sherif Abdou
Sent: 22 January 2008 19:57
To: flexcoders@yahoogroups.com
Subject: [SPAM] Re: [flexcoders] Re: checkbox- create a bindable "value"
property




here is an example straight from the Panel, hopfully no rules borken but
that is how you do it.

[Bindable("layoutChanged")]

public function get layout():String

{

return _layout;

}

/**

* @private

*/

public function set layout(value:String):void

{

if (_layout != value)

{

_layout = value;

if (layoutObject)

// Set target to null for cleanup.

layoutObject.target = null;

if (_layout == ContainerLayout.ABSOLUTE)

layoutObject = new CanvasLayout();

else

{

layoutObject = new BoxLayout();

if (_layout == ContainerLayout.VERTICAL)

BoxLayout(layoutObject).direction

= BoxDirection.VERTICAL;

else

BoxLayout(layoutObject).direction

= BoxDirection.HORIZONTAL;

}

if (layoutObject)

layoutObject.target = this;

invalidateSize();

invalidateDisplayList();

dispatchEvent(new Event("layoutChanged"));

}

}



----- Original Message 
From: Tim Ashworth <[EMAIL PROTECTED]>
To: flexcoders@yahoogroups.com
Sent: Tuesday, January 22, 2008 1:48:27 PM
Subject: RE: [flexcoders] Re: checkbox- create a bindable "value" property




OK, I'm interested in this - how does it work binding to an event?  Could
someone post some code as an example?
 
t

  _  

From: [EMAIL PROTECTED] ups.com <http://ups.com/>  [mailto:flexcoders@
yahoogroups. com] On Behalf Of rueter007
Sent: 22 January 2008 17:57
To: [EMAIL PROTECTED] ups.com <http://ups.com/> 
Subject: [flexcoders] Re: checkbox- create a bindable "value" property



or as Sherif pointed out, you can check for the selected property
change and fire a custom event and mark the bindable tag for the
'value' property with that custom event.

--- In [EMAIL PROTECTED] ups.com <mailto:flexcoders%40yahoogroups.com> ,
"rueter007" <[EMAIL PROTECTED] ..> wrote:
>
> > > When i try to bind a data model to the "value" property, it doesn't
> > > update the model when the value changes. However, when I do:
> > > click="Alert. show(value) ", it returns 0 or 1 as expected. So it
> > > seems that the internals are changing the value correctly, but the
> > > bind isn't working?
> 
> The internals are not changing the value property. They are in fact
> changing the 'selected' property and you are calling 'get value' in
> your alert, the value of which which is always calculated based on the
> current 'selected' property value. The binding event is fired only
> when the value property is changed by something else. And in your
> case, it is never changed and hence binding never occurs. 
> 
> - venkat
> http://www.venkatj.  <http://www.venkatj.com/> com
> 
> --- In [EMAIL PROTECTED] ups.com <mailto:flexcoders%40yahoogroups.com> ,
Sherif Abdou  wrote:
> >
> > Doesnt he need ti dispatch an Event so it works? So dispatch the
> event then have it [Binable(event= "eventName" )]
> > 
> > 
> > - Original Message 
> > From: "tim@" 
> > To: [EMAIL PROTECTED]  <mailto:flexcoders%40yahoogroups.com> ups.com
> > Sent: Tuesday, January 22, 2008 12:56:05 AM
> > Subject: Re: [flexcoders] checkbox- create a bindable "value" property
> > 
> > Hi,
> > 
> > As far as I understand binding the bind works from the data out to the
> > bound component. So when the data is changed the componenet picks
up the
> > change. However I don't believe it works the other way, in fact
I'm sure
> > it doesn't. This makes sense as you should only change the data
when you
> > are absolutely sure the data recieved is correct.
> > 
> > So in this case you'll need a function triggered by the change on the
> > components to change _value. You will trace the correct value on the
> > component currently, but the data will not be changed.
> > 
> > Hope this helps
> > 
> > Tim
> > 
> > > Hello! I want a checkbox to return 1 or 0 instead of true or false
> > > respectively. Here's my component:
> > >
> > > 
> > > http://www.adobe. <http://www.adobe./>
com/2006/ mxml">
> > > 
> > > 
> > > 
> > > 
> > >
> > >
> > > When i try to bind a data model to the "value" property, it doesn't
> > > update the model when the value changes. However, when I do:
> > > click="Alert. show(value) ", it returns 0 or 1 as expected. So it
> > > seems that the internals are changing the value correctly, but the
> > > bind isn't working? Thanks for all your help! -bmiles
> > >
> > >
> > 
> > 
> > 
> > 
> > 
> > 
>
 _ _ _ _ _ _
> > Looking for last minute shopping deals? 
> > Find them fast with Yahoo! Search. 
> http://tools. search.yahoo. com/newsearch/ category.
<http://tools.search.yahoo.com/newsearch/category.php?category=shopping>
php?category= shopping
> >
>





  _  

Never miss a thing. Make Yahoo
<http://us.rd.yahoo.com/evt=51438/*http://www.yahoo.com/r/hs> your homepage.


 


RE: [flexcoders] Re: checkbox- create a bindable "value" property

2008-01-22 Thread Tim Ashworth
OK, I'm interested in this - how does it work binding to an event?  Could
someone post some code as an example?
 
t

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of rueter007
Sent: 22 January 2008 17:57
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: checkbox- create a bindable "value" property



or as Sherif pointed out, you can check for the selected property
change and fire a custom event and mark the bindable tag for the
'value' property with that custom event.

--- In [EMAIL PROTECTED]  ups.com,
"rueter007" <[EMAIL PROTECTED]> wrote:
>
> > > When i try to bind a data model to the "value" property, it doesn't
> > > update the model when the value changes. However, when I do:
> > > click="Alert. show(value) ", it returns 0 or 1 as expected. So it
> > > seems that the internals are changing the value correctly, but the
> > > bind isn't working?
> 
> The internals are not changing the value property. They are in fact
> changing the 'selected' property and you are calling 'get value' in
> your alert, the value of which which is always calculated based on the
> current 'selected' property value. The binding event is fired only
> when the value property is changed by something else. And in your
> case, it is never changed and hence binding never occurs. 
> 
> - venkat
> http://www.venkatj.  com
> 
> --- In [EMAIL PROTECTED]  ups.com,
Sherif Abdou  wrote:
> >
> > Doesnt he need ti dispatch an Event so it works? So dispatch the
> event then have it [Binable(event="eventName")]
> > 
> > 
> > - Original Message 
> > From: "tim@" 
> > To: [EMAIL PROTECTED]  ups.com
> > Sent: Tuesday, January 22, 2008 12:56:05 AM
> > Subject: Re: [flexcoders] checkbox- create a bindable "value" property
> > 
> > Hi,
> > 
> > As far as I understand binding the bind works from the data out to the
> > bound component. So when the data is changed the componenet picks
up the
> > change. However I don't believe it works the other way, in fact
I'm sure
> > it doesn't. This makes sense as you should only change the data
when you
> > are absolutely sure the data recieved is correct.
> > 
> > So in this case you'll need a function triggered by the change on the
> > components to change _value. You will trace the correct value on the
> > component currently, but the data will not be changed.
> > 
> > Hope this helps
> > 
> > Tim
> > 
> > > Hello! I want a checkbox to return 1 or 0 instead of true or false
> > > respectively. Here's my component:
> > >
> > > 
> > > http://www.adobe. com/2006/ mxml">
> > > 
> > > 
> > > 
> > > 
> > >
> > >
> > > When i try to bind a data model to the "value" property, it doesn't
> > > update the model when the value changes. However, when I do:
> > > click="Alert. show(value) ", it returns 0 or 1 as expected. So it
> > > seems that the internals are changing the value correctly, but the
> > > bind isn't working? Thanks for all your help! -bmiles
> > >
> > >
> > 
> > 
> > 
> > 
> > 
> > 
>
__
> > Looking for last minute shopping deals? 
> > Find them fast with Yahoo! Search. 
> http://tools.

search.yahoo.com/newsearch/category.php?category=shopping
> >
>



 


RE: [flexcoders] Access TWAIN scanners from Air

2008-01-20 Thread Tim Ashworth
Hi Shaun,
 
You're absolutely right, use the right tool for the right job.  But making a
general statement like "AIR is a joke" is gonna get a response.  Just as if
you said "Flex sucks" or "Silverlight - that sounds cool"  
 
;)
 
tim

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of shaun
Sent: 21 January 2008 03:50
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Access TWAIN scanners from Air



Jeff Tapper wrote:
> a colleague of mine has written an app to do this with AIR and Artemis 
> and a handful of java classes. its pretty sweet.
> 

Good for them.

> If used properly, AIR is anything but a joke.

"Properly" being the import part of that statement.
What you describe above is a hack to workaround AIR limitations.

Clearly AIR is not suited to the type of app that needs to access the OS 
runtime or execute programs locally otherwise it would have an api to do 
so. That is what i was referring to as a bad joke. AIR is fine for what 
it _can_ do without resorting to things like Artemis.

I think the artemis(http://artemis. 
effectiveui.com/) project was dropped 
development wise, at least i think thats what i read when i was 
subscribed to the project.

Yes people can and will workaround AIRs limitations.. People also write 
system shells in PHP, that doesnt mean its a good idea.

> At 08:43 PM 1/20/2008, you wrote:
> 
>> Javier de la Torre wrote:
>> > Hi all,
>> >
>> > I would like to access the TWAIN API from an AIR application. I have
>> > been looking around and the only way I have found it is by using
>> > Artemis. Although accessing from Java would be great, there are great
>> > APIs out there, the Artemis connection looks very preliminar and with
>> > a deploying process that can be too hard.
>> >
>> > I have understood also that there is no way to run command line
>> > processes from AIR in thi version.
>> >
>> > Another idea I have heard is to create an external program that will
>> > provide me access to TWAIN through sockets connections. But then I
>> > would have to distribute the two things together, set up services in
>> > windows, uff... it sounds is gonna be complicate to distribute such a
>> > software.
>> >
>> > Any other idea?
>> >
>>
>> Don't use air. Its pretty much useless for this type of app as far as i
>> can tell. It's a bit of a bad joke really. Pity.
>>
>> cheers,
>> - shaun
>>
>>
> 
> Jeff Tapper
> Senior Technologist
> Digital Primates IT Consulting Group
> [EMAIL PROTECTED]  ates.net
> http://www.digitalp  rimates.net
> 


 


RE: [flexcoders] Re: Login Problem

2008-01-18 Thread Tim Ashworth
This way would work, but may not be what you want. P.S. I haven't had a
chance to check this as I am on a different machine without Flex Builder on
it so treat this a pseudo code if it doesn't work.
 

 

 
So initially the label will read 'Username' and afterward it will display
whatever they type in.
 
This will happen before login checks.  If you want to change it on response
then you'll need a function triggered when the data returns from the
database.  If this is what you want to do, like Tracy says - post code pls.
 
t
  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of simonjpalmer
Sent: 18 January 2008 17:56
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Login Problem



do they provide their login details via HTML or fields in your flex
app? The question I am really asking is what controls the login
transaction with the server?

If it is your flex app (otherwise you should go and post on an HTML
forum) then what about adding a result responder to your login request
and sending back the user's name/nickname/whatever. When the response
returns to the client and the responder runs, extract the user's name
and update your field which says hello. I do something very similar
in my app but I label a button with their full name which the user can
click to set their personal preferences. It also serves to remind
them who they are logged in as, which works very well for demos.

In principle I don't see why this is any different to any other server
request, it just happens to be login.

--- In [EMAIL PROTECTED]  ups.com,
"NileAge, Mail" <[EMAIL PROTECTED]> wrote:
>
> Hi all
> 
> I'm working with flex 2 and asp.net . I face a problem when I make
login I
> want to write welcome "User Name" as we see in most web sites. This
occur
> when I make login and then press F5 
> 
> I need to do this without pressing F5 or after I make login immediately
>



 


[flexcoders] Cairngorm - a good idea?

2008-01-08 Thread Tim Ashworth
Hi all,
 
Thanks for all the info and links about Cairngorm, I've basically spent the
last day or so reading through all the information available on the
Cairngorm framework I can find.  Here's a list of the links wot I found if
you're interested
 
Great Article by Jesse Warden
http://jessewarden.com/2007/01/cairngorm-vs-joe-berkovitzs-mvcs.html

One of the creators of Cairngorm telling you not to use it!
http://weblogs.macromedia.com/swebster/archives/2006/08/why_i_think_you.cfm
 
and an interesting article about architecting flex apps
http://www.adobe.com/devnet/flex/articles/blueprint.html
 
There are loads more, but these seem to be the most interesting.
 
>From my research it seems to me that using Cairngorm is all about scale.
Scale in size of app (loads of use cases) or scale in number of developers.
So if you've got loads of use cases Cairngorm is a great way of organising
your application so that you don't end up with a load of spaghetti code that
rapidly becomes a pain in the arse to work with.  Or if you've got a large
development team, using Cairngorm you are able to dissect the app into it's
component parts, Delegates, Commands, Events, etc. and then spread the
workload around the team.
 
So if you're just nutting out a quick POC app - don't bother with Cairngorm
it'll take much longer than you need it to.  If you need something that has
a lot of functionality, go for it.
 
Having said all that I totally agree with the statement 'If you try to find
the perfect framework you'll never get started'.
 
So I think I'm gonna keep going with Cairngorm.mind you - that Model
Glue Flex thing looks good, and PureMVC's always an option.*goes off
to sob in the corner*
 
Tim


RE: [flexcoders] Cairngorm - A good idea?

2008-01-07 Thread Tim Ashworth
Cheers Tom,

I suppose the problem I've got is that once you've learnt a framework it is
sooo tempting to try and apply it to all and sundry.  I'll have a look at
Model Glue - Flex too.

t

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tom Chiverton
Sent: 07 January 2008 11:01
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Cairngorm - A good idea?

On Monday 07 Jan 2008, Tim Ashworth wrote:
> I'm surprised as I thought Adobe was really pushing flex guys to use 
> Cairngorm.

Officially, Adobe does not support any one framework or other.

> Is there something I should know, or is this merely the opinion of a 
> coder who doesn't like Cairngorm particularly?

I would expect so.
Though you should be aware of pre-version-1 things like Model-Glue:Flex that
may or may not be better than Cairngorm.

--
Tom Chiverton
Helping to ambassadorially morph viral data
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
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  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 Solicitors Regulation Authority.

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

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






[flexcoders] Cairngorm - A good idea?

2008-01-07 Thread Tim Ashworth
Hi All,
 
I've just finished my first app with Cairngorm, and like the framework a
lot.  However I was having a chat with a CF Uber nerd and he told me that
he'd been chatting to someone at Adobe on the flex team who specifically
told him to "steer clear of cairngorm."
 
I'm surprised as I thought Adobe was really pushing flex guys to use
Cairngorm.  Is there something I should know, or is this merely the opinion
of a coder who doesn't like Cairngorm particularly?
 
I know this is a subjective question, and I'm not trying to start a "my
framework's better than your framework" conversation, but I am a bit
concerned that I may have picked the wrong horse if someone inside Adobe
doesn't think it's up to much.
 
Anyway, I look forward to the replies, and I suppose unless there is a damn
good reason I'll crack on with Cairngorm (mainly 'cos I've been using it so
much recently)
 
Cheers
 
tim


[flexcoders] Cairngorm Overview Question

2007-12-28 Thread Tim Ashworth
Hi All,
 
I've just started playing with Cairngorm (and have been kicking myself for
not doing it earlier) and I'm very impressed with the approach and
framework.  One v v quick question though.  I'm using it for an app that has
a number of modules that could be treated as standalone modules.  They
interact, but basically they are their own little thing (e.g. A contact
management module, a job planning module).  Using Cairngorm is it correct
(and I know there is not right or wrong) to create each of these as widgets
using the framework and sticking with the MVC style and then write code over
the top to stitch it all together or is it better to look at the entire app
as a whole and create it that way, I.e. have a ServiceLocator that holds ALL
of the data connections, a Model for the entire app?  The second way feels
wrong, but I can't find anything about doing it in the modular way without
writing code over the top (which I am more than happy to do - just my
experience of writing loads of code and then finding Cairngorm is making me
pause to see if there is something I'm missing).
 
Anyway - cheers in advance and Merry New Year!
 
tim


RE: [flexcoders] Sloooooow Flex Builder

2007-12-06 Thread Tim Ashworth
One project open, sometimes save to a network drive, sometimes save locally,
always slow.

I learnt about the open project thing and that's made things better, but
really it's still pretty unbearable. 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tom Chiverton
Sent: 06 December 2007 13:10
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Sloow Flex Builder

On Thursday 06 Dec 2007, Tim Ashworth wrote:
> pauses on saves or just get used to sitting on my hands looking out 
> the window (at the rain)?

Are you saving locally or to a network ? Do you have an on-access virus
scanner running ? How many projects do you have open ?

--
Tom Chiverton
Helping to preemptively extend value-added methodologies
on: http://thefalken.livejournal.com



Please note, as of 10th December 2007 the registered office address of
Halliwells LLP will be at 3 Hardman Square, Spinningfields, Manchester, M3
3EB



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 Solicitors Regulation Authority.

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

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






[flexcoders] Sloooooow Flex Builder

2007-12-06 Thread Tim Ashworth
Hi
 
I'm using the flex builder 3 plugin to Eclipse and it is slow, especially
when I save, even though I've not checked the build automatically preference
in the project menu.  I've also popped out and run eclipse with the eclipse
-clean command.  Is there anything else I can do about the long pauses on
saves or just get used to sitting on my hands looking out the window (at the
rain)?
 
Cheers
 
t


[flexcoders] Output to cfm file

2007-12-04 Thread Tim Ashworth
Hi,
 
I'm using ColdFusion to manage the login on my Flex App.  Basically I want
to knock out people before the app even starts running, so I'm using an
Application.cfc to force a login.  I know that I could simply add a login to
Flex, but this is not the solution I'm looking for.  Is there any way to get
Flex to output a cfm file rather than an html wrapper?  It's no biggie, but
I have to keep renaming the file to cfm to get it to run correctly.  I've
gone through all the preferences I can and there doesn't seem to be anywhere
to change the file extension.
 
Cheers,
 
tim


RE: [flexcoders] Flex Builder 3 Gotcha

2007-11-27 Thread Tim Ashworth
"Does doing a refresh of the project not work, or even turning on the
'refresh automatically' preference ?" 

Didn't for me unfortunately...

"Use SVN to keep projects in synch."

You're absolutely right!  (Haven't set it up yet...) *own stupid fault*




[flexcoders] Flex Builder 3 Gotcha

2007-11-27 Thread Tim Ashworth
Hi all,
 
I'm sure that people are aware of this, but it's done my head in for the
last few days.  Basically I've been working on two machines, my office
machine and my laptop developing the same app.  What has been happening is
that as I copy files back and forth Flex Builder loses code hints and
colouring within Script tags.  After some messing around I've discovered
that EVEN IF FLEX BUILDER IS CLOSED if you overwrite a file that was open in
the workspace this bug occurs.  I guess it's something to do with the way
the workspace configuration is saved.  The workaround I've found is to close
all the files in Flex Builder.  Close Flex Builder, overwrite the files
again.  Once you've done this, re-open Flex Builder, open the affected file
and - yay - code hints and colouring are back.
 
Probably not such a biggie for all you flex gurus, but working this out has
helped me a lot.
 
Tim


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

2007-11-21 Thread Tim Ashworth
Hi Mike and Tom,
 
Cheers Mike - that fixed the problem.  I just assumed the debug players were
the same - there's some saying about the word ass-u-me isn't there?
 
Cheers again,
 
t

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Mike Morearty
Sent: 20 November 2007 18:04
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Where is the Debugger or Profiler?



You must have told the installer not to install the Flash player, so
you are still using the old debug player. Run the Flash player
installer (which you can find in the "Player" subdirectory of your
Flex Builder installation).

- Mike Morearty, Flex Builder team

--- In [EMAIL PROTECTED] <mailto:flexcoders%40yahoogroups.com> ups.com,
"Tim Ashworth" <[EMAIL PROTECTED]> wrote:
>
> Hi all,
> 
> Not a major one this, but I keep getting the "Where is the Debugger or
> profiler running?" alert when I run my app. I've got a development
machine
> running CF8 as a standalone and Apache 2.0. I'm developing straight
into
> the htdocs folder. All is running fine, all the code works, I can
connect
> to data and wierdly (well I think it's weird) I don't get the error
when I
> am actually debugging the app.
> 
> I'm using Flex Builder 3 beta 2. 
> 
> I'd really like to nail this as it's now driving me mad.
> 
> Cheers in advance,
> 
> Tim
>



 


[flexcoders] Where is the Debugger or Profiler?

2007-11-20 Thread Tim Ashworth
Hi all,
 
Not a major one this, but I keep getting the "Where is the Debugger or
profiler running?" alert when I run my app.  I've got a development machine
running CF8 as a standalone and Apache 2.0.  I'm developing straight into
the htdocs folder.  All is running fine, all the code works, I can connect
to data and wierdly (well I think it's weird) I don't get the error when I
am actually debugging the app.
 
I'm using Flex Builder 3 beta 2.  
 
I'd really like to nail this as it's now driving me mad.
 
Cheers in advance,
 
Tim


[flexcoders] messaging-config.xml

2007-10-19 Thread Tim Ashworth
Hi All,
 
I'm going nuts trying to just send and recieve a simple message and I'm sure
that the problem is with the messaging-config.xml file.  I am trying to
simply send a string from a producer to a consumer.  However the app keeps
telling me 'No destination with id 'chat' is registered with any service.'
In the messaging-config.xml file I've added the destination : -
 




0


0
0
false


 



 

 
I've rebooted the server just in case it only reads the config at start-up
(which I doubt, but I'm now pulling my hair out about) I can't work out what
I'm doing wrong.
 
Thanks in advance
 
Tim


RE: [flexcoders] CFEclipse and Flex Builder

2007-10-05 Thread Tim Ashworth
I'm certain you're right.  That's why I've been scratching my head because I
remember using it before which was why I posted for a sanity check.  I've
got a new machine and was re-installing all my programs and therefore the
latest CFEclipse.
 
Thanks for making me feel a bit less frustrated (altho a bit dumb)

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Paul Hastings
Sent: 05 October 2007 16:27
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] CFEclipse and Flex Builder



Tim Ashworth wrote:
> Ah! That sounds like a plan. I guess the standalone version doesn't
> like to play nicely with others. Thanks very much.

doesn't the latest cfeclipse require eclipse 3.2.2 while standalone fb2 is
3.2 
or 3.1?


 


RE: [flexcoders] CFEclipse and Flex Builder

2007-10-05 Thread Tim Ashworth
Ah!  That sounds like a plan.  I guess the standalone version doesn't
like to play nicely with others.  Thanks very much. 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tom Chiverton
Sent: 05 October 2007 15:56
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] CFEclipse and Flex Builder

On Friday 05 Oct 2007, [EMAIL PROTECTED] wrote:
> I've unsuccessfully tried to add CFEclipse to Flex Builder 2. 
 
Do it the other way around (install Eclipse, install CFE, install Flex
Builder in plugin mode).

--
Tom Chiverton
Helping to enormously build value-added infomediaries
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 Solicitors Regulation Authority.

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] CFEclipse and Flex Builder

2007-10-05 Thread Tim Ashworth
Flex Builder standalone install with CF extensions and updates all done.
Then I go to the CFEclipse through Help -> Software Updates etc (i.e. to the
CFEclipse site through Flex Builder).  When it's installed basically they
seem to break each other.  I get error messages like being told it can't run
the CFC wizard and it breaks the Coldfusion / Flex Wizard in Flex builder in
that it'll generate the AS files, but can't generate the CF.  It tells me
that there's something wrong with the plugins.xml.  Exactly what it's a bit
vague about..

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Sheriff
Sent: 05 October 2007 15:11
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] CFEclipse and Flex Builder




how are you installing it? i have both and they work fine


----- Original Message 
From: Tim Ashworth <[EMAIL PROTECTED]>
To: flexcoders@yahoogroups.com
Sent: Friday, October 5, 2007 8:52:06 AM
Subject: [flexcoders] CFEclipse and Flex Builder



Hi all,
 
I've unsuccessfully tried to add CFEclipse to Flex Builder 2.  After several
uninstall and reinstalls I've given up.  I want to develop in CF and Flex
and would rather use one IDE.  Am I being thick, or am I just barking up the
wrong tree?
 
Cheers
 
Tim


  _  

Tonight's top picks. What will you watch tonight? Preview
<http://us.rd.yahoo.com/tv/mail/tagline/tonightspicks/evt=48220/*http://tv.y
ahoo.com/> the hottest shows on Yahoo! TV. 

 


[flexcoders] CFEclipse and Flex Builder

2007-10-05 Thread Tim Ashworth
Hi all,
 
I've unsuccessfully tried to add CFEclipse to Flex Builder 2.  After several
uninstall and reinstalls I've given up.  I want to develop in CF and Flex
and would rather use one IDE.  Am I being thick, or am I just barking up the
wrong tree?
 
Cheers
 
Tim


[flexcoders] Remoting Tutorials

2007-10-03 Thread Tim Ashworth
Hi All,
 
I'm a bit of a newbie at Flex, though I've done lots of work with Flash.  My
specific question relates to Remoting, I was wondering if there were any
good tutorials out there about remoting and flex.
 
Thanks in advance
 
Tim