RE: [flexcoders] How to communicate 2 computers using Air Application

2011-08-11 Thread Gregor Kiddie
Sockets

RE: [flexcoders] how do you guys read flexcoders

2010-09-06 Thread Gregor Kiddie
In Outlook using the conversation view. Plus it means I've got lovely Flexcoders archives dating back to 2005 ;)

RE: [flexcoders] Slow connection to a server

2010-09-02 Thread Gregor Kiddie
Proxies can slow down connections. I know service capture can do it, and I'd be very surprised if Charles couldn't. Gk.

RE: [flexcoders] Re: AIR and Printing...

2010-09-01 Thread Gregor Kiddie
You won't have any problem accessing the data. It's actually a bit easier in AIR than the Flash Player as the security model is a bit more permissive (in places). From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Laurence Sent: 01 September 2010 00:42 To:

RE: [flexcoders] FB4: Looping thru itemrenderers

2010-08-25 Thread Gregor Kiddie
If you need to access an itemrenderer, there's almost always a better way of doing what you are trying to do... So, why are you wanting to access the itemrenderer instance? Gk.

RE: [flexcoders] Getting HTTP status codes from NetConnection

2010-08-25 Thread Gregor Kiddie
Can of worms... Short answer. You can't. Long answer. You can't and the way that was making you cringe is right. The browsers don't tend to pass back the http status code back to the Flash Player, so you have to make do with passing back a 200 with the code embedded inside. Gk.

RE: [flexcoders] Checkbox on Image

2010-08-13 Thread Gregor Kiddie
Sit them both in a Canvas and position them correctly, or write your own custom component based off UIComponent and deal with the layout yourself. Gk.

RE: [flexcoders] Air Update -modules

2010-08-12 Thread Gregor Kiddie
Since the change to the module loader allowing modules to be loaded by bytes... http://help.adobe.com/en_US/FlashPlatform//reference/actionscript/3/mx/m odules/ModuleLoader.html?allClasses=1#loadModule() http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/m

RE: [flexcoders] Re: AMFPHP Security?

2010-08-11 Thread Gregor Kiddie
If you want it to be fairly untouchable, have all your game logic on the server. The only thing the swf does is gather input, and display state. That way, nobody can spoof the game logic (which is pretty much your issue). Gk.

RE: [flexcoders] Stopping a function

2010-07-28 Thread Gregor Kiddie
The Flash Player is single threaded... so if Function B is running, Function A isn't. Gk.

RE: [flexcoders] Stopping a function

2010-07-28 Thread Gregor Kiddie
I slip under the radar me... ;)

RE: [flexcoders] Issue with item renderer in Flex 3

2010-07-23 Thread Gregor Kiddie
Add the isEdited variable to your data item and inside set data(...) do If (data.isEdited) { ... } Instead.

RE: [flexcoders] Re: Issue with item renderer in Flex 3

2010-07-23 Thread Gregor Kiddie
If you are doing a lot of this, there is a decent approach but it's very long winded... Override your DG so that when you add to the dataprovider (or when items are added to the DP) the objects in the DP get wrapped in a DGAware object. This object provides access to the wrapped object and

RE: [flexcoders] Flex print Without Dialog Box ?

2010-07-13 Thread Gregor Kiddie
You need to have something actually on the user's machine to do this, i.e. a service running that you can talk to. You can't do this natively from the Flash Player, otherwise your printer would be printing out advertising leaflets every time to you saw a Flash ad on a website... and nobody

RE: [flexcoders] Flex print Without Dialog Box ?

2010-07-13 Thread Gregor Kiddie
True, I should have prefixed that with... with the Flash Player I think AIR 2.0 will let you get around it.

RE: [flexcoders] The lifespan of flex.

2010-07-12 Thread Gregor Kiddie
Not quite necro posting... (been on holiday so...) The route back to your client is to show both penetration statistics for Flash Player 10 versus HTML 5 compliant browsers. The 99% versus ~15% is a big difference. You might want to point out the ROI of Flex is drastically higher than HTML (

RE: [flexcoders] loading image from url for groundoverlay on map

2010-07-12 Thread Gregor Kiddie
What's the size in pixels of the larger image? There is a hard pixel limit in the Flash Player. I'm trying to load an image (through url) as a groundoverlay on a google map. I use a different url from the same domain like (http://www.lamma.rete.toscana.it/models/marevento/wind10m_A_3.png) it

RE: [flexcoders] User Interface Design Groups

2010-07-12 Thread Gregor Kiddie
The IXDA lists are good places to ask this sort of question. Lots of good people there. I've been working on a little composite search UI component but it needs polishing off and I wondered if there were any groups out there that could help with this sort of thing? Does anyone know of any?

[flexcoders] New Datagrid announced...

2010-07-01 Thread Gregor Kiddie
Deepa announced that the Spark version of the Datagrid would be in Hero. Are we talking a direct replacement for the MX Datagrid, or the ADG? Let's hope it's more a direct replacement rather than redoing the ADG... that really was rubbish. Saying that, what additional feature are

RE: [flexcoders] list event listener(s) for an event type?

2010-06-30 Thread Gregor Kiddie
1. Yes, you commonly see it if things aren’t being garbage collected properly. 2. If you are implementing IEventDispatcher yourself, add in the logic to store them. There is a popular monkey patch for UIComponent to provide the same functionality for framework components. Gk.

RE: [flexcoders] Flex version of excel spreadsheet?

2010-06-29 Thread Gregor Kiddie
How about running open office on your back end, having it open the spreadsheet on request and doing the work there? Gk.

RE: [flexcoders] Copying complex objects in ActionScript

2010-06-24 Thread Gregor Kiddie
IIRC, all the objects in the graph that you are trying to clone need to have remote aliases if you want them to be created properly...

RE: [flexcoders] recursion help?

2010-06-23 Thread Gregor Kiddie
Not tested, but something like this should be close... public function findFolderFromPath( folder : FolderClass, fullPath:String ) : FolderClass { if( folder.path == fullPath ) { return folder; } else {

RE: [flexcoders] How much does FXG affect performance?

2010-06-18 Thread Gregor Kiddie
Surely on a geek list like this, the only reasonable answer is 42. Your questions may vary... From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Alex Harui Sent: 18 June 2010 07:49 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How much does FXG

RE: [flexcoders] Android Hero denies XMLSocket or Socket connection? ....errors #2031, #2048

2010-06-16 Thread Gregor Kiddie
Isn't FP only for Android 2.2? And there are pre-release forums you'd be better posting this in! Gk.

RE: [flexcoders] Re: Lcds Clustering problem with Flex session.

2010-06-15 Thread Gregor Kiddie
Right, your problem is... RTMP doesn't use HTTP... so there is no HTTP session to be found. That's a drastically more fundamental issue.

RE: [flexcoders] Ok, Adobe Experts...Explain this...

2010-06-10 Thread Gregor Kiddie
Let's see the skin. The error's getting thrown from that.

RE: [flexcoders] Reference value

2010-06-09 Thread Gregor Kiddie
You're trying to assign a number into a string really... Just doing this should be enough. currentDate = 11; It does raise the issue... if you are always wanting to treat the date as a number, why create it as a string in the first place? Gk. From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Lcds Clustering problem with Flex session.

2010-06-09 Thread Gregor Kiddie
Looking back at my notes from before. The other thing we had to do was a JGroups to each instance for the sessions to be replicated. Gk. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of sanjitcs Sent: 09 June 2010 18:25 To: flexcoders@yahoogroups.com

RE: [flexcoders] Lcds Clustering problem with Flex session.

2010-06-08 Thread Gregor Kiddie
I believe it is, but you need to make sure your LCDS setup is correct for clustering, and that your load balancer is using sticky sessions for it to work.

RE: [flexcoders] Re: Duplicate Session Detected Error

2010-05-27 Thread Gregor Kiddie
BlazeDS is open source so you could grab the code and make the changes yourself. It should just be a case of removing the check.

RE: [flexcoders] AIR and Android 2.2 Emulators?

2010-05-27 Thread Gregor Kiddie
The android tools will download it for you if you sync them up.

RE: [flexcoders] Duplicate Session Detected Error

2010-05-24 Thread Gregor Kiddie
It's to get round a session based issue. If you roll BlazeDS back to 3.0.0.544, you'll get the version before the duplicate session check went in. Be careful to check your sessions though. Gk. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

RE: [flexcoders] Re: Flash IE SSL problem

2010-05-21 Thread Gregor Kiddie
What's the exception it throws?

RE: [flexcoders] Re: Flash IE SSL problem

2010-05-21 Thread Gregor Kiddie
And when you debug the app, it never throws an error, but hangs on that line? What is being loaded on that line?

RE: [flexcoders] flash 4 and flex 3

2010-05-20 Thread Gregor Kiddie
I think everyone’s having a little fun with you ;) Try this article to start with if you actually mean the IDEs http://www.adobe.com/devnet/flex/articles/flashbuilder4_whatsnew.html If you mean the SDK versions try this http://www.adobe.com/devnet/flex/articles/flex4sdk_whatsnew.html

[flexcoders] Sharing authentication between ChannelSets

2010-05-17 Thread Gregor Kiddie
I'm trying to solve the following problem with RemoteObjects. I want to use Secure AMF to authenticate the user, and then use regular AMF from that point on, without having to re-authenticate. I'm struggling to find a way to allow the separate Channels the share the same authentication...

RE: [flexcoders] Sharing authentication between ChannelSets

2010-05-17 Thread Gregor Kiddie
It also appears BlazeDS doesn't agree with the Flex documentation... Channelset says the RO is authenticated if one of the channels in the set is. I set up two ROs, and two Channelsets each with the same two Channels but in a different order (secure first in one, non-secure in the other), then

RE: [flexcoders] Sharing authentication between ChannelSets

2010-05-17 Thread Gregor Kiddie
With further reading it appears that having two Channels going to the same server isn't allowed by BlazeDS anyway! It will throw errors around DuplicateSessions, because the JsessionId isn't shared between the channels. It surely can't be this hard to do something so straightforward?

RE: [flexcoders] Sharing authentication between ChannelSets

2010-05-17 Thread Gregor Kiddie
Rolling back to BlazeDS 3.0.0.544 gets rid of the duplicate session issue, but the second session is still not authenticated, again because it's trying to use a different JSessionId. So it boils down to Flash side of things, what can I do to set the JSessionId from one Channel on another?

RE: [flexcoders] Sharing authentication between ChannelSets

2010-05-17 Thread Gregor Kiddie
Success I think. My brain is totally fired at this point, so if someone can see the problem in this, bellow loudly please! The Channel set I've authenticated has two MessageAgents attached, one of which is an AuthenticationAgent. I call connect on the second Channelset with the

[flexcoders] Looks like it Paul!

2010-05-14 Thread Gregor Kiddie
;)

RE: [flexcoders] Re: Thoughts on Flash by Steve Jobs

2010-05-04 Thread Gregor Kiddie
And this is the point the moderators should step in to shut this thread down. We've brought ourselves to the no it isn't, yes it is arguing point guys. Can we please let this thread die with a little dignity, and we can all jump in on the next one, unless someone wants to make a blog post

RE: [flexcoders] Re: Calling mxmlc/fcsh from PHP script

2010-05-04 Thread Gregor Kiddie
There was part of FDS (before it became LCDS) that had a web-compiler. You called for the swf and if it hadn't been generated, it compiled it before delivering it, later requests just used the compiled one). I don't know if it made its way into LCDS, but it's worth a look! Gk.

RE: [flexcoders] Re: Thoughts on Flash by Steve Jobs

2010-05-03 Thread Gregor Kiddie
Allegedly, Steve my turtle neck has cut off the blood to my brain Jobs denied this in an email, but given the way the question was worded (will you confirm that...) and the answer (nope), it's not done much to stem the rumours! Gk. From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Thoughts on Flash by Steve Jobs

2010-05-03 Thread Gregor Kiddie
If we are swapping rumours though... I liked the one that Apple had demanded a truly ridiculous sum of money from Adobe yearly to allow Flash on the iPhone, and when Adobe refused to pay up, SJ made it his mission to prevent it from happening! I'd call it a tithe, but that brings far too

RE: [flexcoders] Re: security flex

2010-04-19 Thread Gregor Kiddie
So, is it possible that Pandora's (100% Flex) payments system is secure? As Miti says, just don't hardcode things like developer, API, or encryption keys (so the swf can't be inspected to find them). You also realise that absolutely nothing on this earth is 100% secure, there are just

RE: [flexcoders] Re: With the latest eula agreement from Apple

2010-04-15 Thread Gregor Kiddie
I have no idea how Elips are doing it, but they haven’t got the Player code, so they must be pulling some other trick to get it all to hang together! From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Nick Collins Sent: 14 April 2010 23:54 To:

RE: [flexcoders] Re: With the latest eula agreement from Apple

2010-04-14 Thread Gregor Kiddie
I do agree that the main problem is that there isn't really an excellent competitor to the App store. Once Flash is on absolutely everything, the Flash Store will be that competitor. It doesn't matter what device you use, mobile, PC, television, set top box, tablet, some future brain implant, it's

RE: [flexcoders] NumericStepper as itemRenders in DataGrid don't work as expected

2010-04-13 Thread Gregor Kiddie
You need value binding to the data property mx:NumericStepper stepSize=0.01 minimum=0 maximum= dataChange=outerDocument.debug(event) value={data} or... set the itemEditor of the datagrid to be a class factory which generates NumericSteppers with the factory’s properties set up.

RE: [flexcoders] NumericStepper as itemRenders in DataGrid don't work as expected

2010-04-13 Thread Gregor Kiddie
This causes a stack overflow inside the Binding/Watch infrastructure. Really? Didn't expect that one. I never use inline renderers if I can help it! I suspect it'll need to be value={parent.data} or maybe owner.data ... again, I hate inline renderers. If I take out the mx:Component lines, it

RE: [flexcoders] NumericStepper as itemRenders in DataGrid don't work as expected

2010-04-13 Thread Gregor Kiddie
Playing with this... it's the formatter that's screwing things up. The NumericStepper uses the label for the cell and tries to parse it as a float. The dollar sign immediately makes it terminate with a NaN which the NumericStepper makes a 0 (It really should report it a NaN). Gk.

RE: [flexcoders] Re: With the latest eula agreement from Apple

2010-04-13 Thread Gregor Kiddie
That amounts to open sourcing the player, as anyone could take a look at the XCode project (or reverse engineer the player from it), which is a no-no from Adobe's perspective. Turning the player into ARM code was about the only way they could get round the licensing problems associated with the

RE: [flexcoders] AIR Software creations - Modules...

2010-04-13 Thread Gregor Kiddie
You can update bits of it without having to go through the whole updater process, which is nice if you have users who aren't administrators! Gk. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: 13 April 2010 17:28 To:

RE: [flexcoders] Re: With the latest eula agreement from Apple

2010-04-12 Thread Gregor Kiddie
Doesn't matter, the wording doesn't mention XCode, just the languages it's originally written in. They'll still be fine though, Apple is free to ignore the agreement when it suits them, and they aren't going to cut off Unity. They'll just reject anything written for Flash / DotNet. At the end

RE: [flexcoders] Scotland: Any Flash/Flex/AS3 conferences?

2010-04-06 Thread Gregor Kiddie
There's a few of us kicking round Dundee that do Flex / CF, but the majority of the Flex scene in Scotland has been in Edinburgh (financial firms mainly) Scotch On The Rocks was popular (and good), but appears to have gone on the road, I've not seen anything for it in Scotland of late. I

RE: [flexcoders] Re: Google combo like Flex interface

2010-02-04 Thread Gregor Kiddie
Gregor, Don't think I don't appreciate it. ;) Want some stickers? E-mail me off list. Nah, though if we run into each other at any of the conferences this year, you can buy me a beer (or pretend to if it's MAX)! ;) Gk.

RE: [flexcoders] Error in logout from channel in Flex 4

2010-02-04 Thread Gregor Kiddie
What's the size of the connection pool you've given the server to work with? If it's 2, then that suggests the connection isn't being released by the server. Does log out actually close the connection? I'm not sure that it does. Gk.

RE: [flexcoders] Google combo like Flex interface

2010-02-03 Thread Gregor Kiddie
Search for autocomplete comboboxes. There are several solutions, open source and paid for. Best of the paid for appears to be Flextras one ( http://www.flextras.com/?event=ProductHomeproductID=10 ) (Jeff Houser, you owe me commission for pushing your wares like a filthy pimp) Best of the open

RE: [flexcoders] Re: What's up Adobe?

2010-02-03 Thread Gregor Kiddie
Yes, I can see your point. I think the two of us are the only people who think that the Flex brand is weakened by the Flash moniker. No, there are more of us... We just aren't as vocal! Gk.

RE: [flexcoders] Adobe AIR and a Java bat file

2010-02-03 Thread Gregor Kiddie
Take a look at Merapi which is a java bridge for AIR, or at the AIR 2.0 beta which includes native process APIs. Gk.

RE: [flexcoders] Implementing Contextual Help

2010-02-01 Thread Gregor Kiddie
Iterating through an object on every location/interaction seems pretty expensive. Is there an equivalent of a Hash Map or a fast enough type of search that would make this perform optimally? Or, another approach altogether? Take a look at Object or Dictionary. Both have implementations which

RE: [flexcoders] Sort function does not work with turkish characters

2010-02-01 Thread Gregor Kiddie
IIRC, the default Sort uses the ASCII values of the characters, so the Turkish characters appear later in the alphabet than I and S. You may need to use a custom compare function which includes functionality for the Turkish alphabet. Gk. Hi everybody, I'm also a newbie

RE: [flexcoders] localization

2010-01-28 Thread Gregor Kiddie
In the best impression of Tom that I can manage... This link has all the answers. http://tinyurl.com/yet2dqc Gk. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of ZIONIST Sent: 28 January 2010 05:43 To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] How to create Value Objects dynamically at run time?

2010-01-26 Thread Gregor Kiddie
Take a look at ObjectProxy, it does a bit of what Tom has suggested, and gives hints into how to hook into the construction of properties. Gk. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tom Chiverton Sent: 26 January 2010 16:47 To:

RE: [flexcoders] Smallest module file sizes possible...

2010-01-25 Thread Gregor Kiddie
Don't worry about linking them externally. Optimise your module swf against the main swf, and it'll strip out any classes which will have already been loaded, while leaving the ones that the module requires. Note that you have to be very careful of your application domains when doing this,

RE: [flexcoders] Image contentWidth

2010-01-25 Thread Gregor Kiddie
Add an event listener in for the complete event. It gets fired once the content is loaded, so it'll fire each time, unlike creationComplete. http://www.adobe.com/livedocs/flex/3/langref/mx/controls/SWFLoader.html# event:complete Gk. From: flexcoders@yahoogroups.com

RE: [SPAM] [flexcoders] Multiple Script Files

2009-12-01 Thread Gregor Kiddie
Cairngorm's ViewHelper is a good example of this. http://www.actionscript.org/resources/articles/950/1/Cairngorm-Getting-S tarted--Part-2/Page1.html Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ

RE: [flexcoders] LocalConnection - Meh!

2009-11-24 Thread Gregor Kiddie
What's that Timmy? A LocalConnection has fallen down the well? 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

RE: [flexcoders] TabNavigator stacking order

2009-11-23 Thread Gregor Kiddie
Either write a custom TabNavigator which does it (I can't see any properties or styles for it), or Just use a Viewstack and TabBar yourself to do the same effect (TabNavigator doesn't actually add much to just using them individually). Gk. Gregor Kiddie Senior Developer INPS Tel

RE: [flexcoders] How to test if an object contains a certain property?

2009-11-12 Thread Gregor Kiddie
Try http://livedocs.adobe.com/flex/3/langref/Object.html#hasOwnProperty%28%2 9 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

RE: [flexcoders] flexcoders stats and charts (and full data download)

2009-11-04 Thread Gregor Kiddie
posts count? Time to piggy back all of Alex's with I approve this answer posts, or to auto generate an answer to any new thread containing the words module, garbage, or renderer with the reply check Alex's blog. Actually that's not a bad idea... Gk. Gregor Kiddie Senior Developer INPS Tel

RE: [flexcoders] Re: multiple filter function of combobox and two checkboxes

2009-11-04 Thread Gregor Kiddie
Jumping into this thread late, what didn't work with the code you posted on Tuesday? 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

RE: [flexcoders] Re: multiple filter function of combobox and two checkboxes

2009-11-04 Thread Gregor Kiddie
|| selectedLocation == All) (item.category == category.selectedValue) (!poolSelected || item.pool); } The (!poolSelected || item.pool) will equate to true when the checkbox isn't selected (!poolSelected ) or when the item has a pool when the checkbox is selected (item.pool). Gk. Gregor Kiddie Senior

RE: [flexcoders] JPG Encoding Speed Issue

2009-11-04 Thread Gregor Kiddie
is the best way to do it! 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 blocked::http://www.inps.co.uk

RE: [flexcoders] dispatchEvent

2009-11-03 Thread Gregor Kiddie
Use binding? 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 blocked::http://www.inps.co.uk

[flexcoders] Adobe comment on ASC-3136?

2009-11-02 Thread Gregor Kiddie
Anyone from Adobe want to comment on the closing of the issue on Proxies? http://bugs.adobe.com/jira/browse/ASC-3136 It got changed to deferred then closed, and no-one updated the comments with why! With 110 votes, it's a relatively hot topic. Gk. Gregor Kiddie Senior Developer INPS

RE: [flexcoders] Make Flex AIR app demand more system resources

2009-11-02 Thread Gregor Kiddie
when it isn't. Stupid suggestion, but running some AS code alongside the animations... Running something small and inconsequential in an enterframe handler. Does it change the game somewhat? Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread

RE: [flexcoders] Re: UDP via Flex socket

2009-11-02 Thread Gregor Kiddie
UDP support is being added in AIR 2.0. I don't know if that list extends to the Flash Player as well... http://blogs.adobe.com/cantrell/archives/2009/10/everything_new_in_air_2 .html Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a

RE: [flexcoders] Adobe comment on ASC-3136?

2009-11-02 Thread Gregor Kiddie
Cheers Matt, Is it possible to have an Adobe employee comment on the issue with something along those lines? Just for those folks who don't frequent this list but who are watching the issue. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread

RE: [flexcoders] Binding Model Objects

2009-10-28 Thread Gregor Kiddie
{ _bar = nbBar; } public function get nbBar() : String { return _bar; } public function dispatchChangeEvent() : void { dispatchEvent( new Event( fooChanged ) ); } } That's really horrible though... Gregor Kiddie Senior Developer INPS Tel

[flexcoders] Where did Livedocs go?

2009-10-28 Thread Gregor Kiddie
The link for them isn't working and returning a 404... Flex API http://livedocs.adobe.com/flex/3/langref/ ?? Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577

RE: [flexcoders] Adobe-like logo maker

2009-10-28 Thread Gregor Kiddie
Is this what you are after? http://clockmaker.jp/labs/air_icon/ 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

RE: [flexcoders] Where did Livedocs go?

2009-10-28 Thread Gregor Kiddie
Since some of my colleagues have come in, it's working for them, but I'm getting the Adobe 404 page back, rather than it failing to load (which suggests Adobe can't find the page for me, but it can for the person sitting beside me), weird... Gk. Gregor Kiddie Senior Developer INPS Tel

RE: [flexcoders] Re: Where did Livedocs go?

2009-10-28 Thread Gregor Kiddie
I've been thinking that too, but we are all served by the same proxy... I can't even blame this one on Service Capture being screwy! Weird... Using Igor Costa's online copy of the API instead... thanks Igor ;) Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered

RE: [flexcoders] Where did Livedocs go?

2009-10-28 Thread Gregor Kiddie
It came back for me earlier this afternoon, I reckon it had something to do with me being logged into a different Adobe account (though I can't replicate it) Nice site though! Haven't seen that one before! Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered

RE: [flexcoders] Binding Model Objects

2009-10-27 Thread Gregor Kiddie
services can both reduce the amount of traffic you need to send, and allow DTO mapping to be realistic (on both ends of the wire). Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number

RE: [flexcoders] Re: AIR Performance

2009-10-27 Thread Gregor Kiddie
on either my or reflexactions posts, you'd be making a huge mistake. Do the leg work yourself, prototype stuff (not just AIR, but other options too), and actually find out which meets your needs. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory

RE: [flexcoders] Re: AIR Performance

2009-10-27 Thread Gregor Kiddie
you a different answer ;) 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 blocked::http://www.inps.co.uk

RE: [flexcoders] Binding Model Objects

2009-10-27 Thread Gregor Kiddie
the presentation is going. Is that explained badly? Non-bindable DTOs assemble to bindable DOs in a way that minimizes the amount of event slinging going on... Gk, Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London

RE: [flexcoders] Binding Model Objects

2009-10-27 Thread Gregor Kiddie
I've only ever used ObjectProxy in spikes as a replacement for real objects which weren't available, never in a production app. My impression of them was they were quite slow (as with all dynamic classes), but YMMV... Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343

RE: [flexcoders] Re: Daylight Savings Time issues from Flex to ColdFusion 8.01

2009-10-26 Thread Gregor Kiddie
http://bugs.adobe.com/jira/browse/FP-1760 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 blocked::http

RE: [flexcoders] AIR Performance

2009-10-26 Thread Gregor Kiddie
. Answering your question more directly, yes you can use AIR for the project, it scales quite well when you start using modules, etc. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number

RE: [flexcoders] Daylight Savings Time issues from Flex to ColdFusion 8.01

2009-10-23 Thread Gregor Kiddie
the same issue applies to AIR. What I'd love to see, is Adobe allowing us to turn off the daylight savings code completely, and let us handle it ourselves! Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ

RE: [flexcoders] Daylight Savings Time issues from Flex to ColdFusion 8.01

2009-10-23 Thread Gregor Kiddie
I should add that Adobe blame Windows for the problem, not the Flash Player. 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

RE: [flexcoders] Question about function Date

2009-10-13 Thread Gregor Kiddie
It's the date / time of the pc that the swf is running on. 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

RE: [flexcoders] Flex with Sharepoint

2009-09-25 Thread Gregor Kiddie
way than sharepoint itself ;) 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 blocked::http

RE: [flexcoders] How can I view internet traffic for an Air App?

2009-09-25 Thread Gregor Kiddie
Use any of the HTTP sniffers to get a real breakdown of what's doing what traffic wise. Something like Charles http://www.topshareware.com/Charles-download-14516.htm Or Service Capture http://kevinlangdon.com/serviceCapture/ Gk. Gregor Kiddie Senior Developer INPS Tel: 01382

RE: [flexcoders] Strange screen behaviour when scrolling

2009-09-21 Thread Gregor Kiddie
it really easily with datagrids) The only work around we've found is... ...It doesn't happen in AIR. Sorry, Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered

RE: [flexcoders] Flex PMD forum?

2009-09-07 Thread Gregor Kiddie
We had it working last week using the command line version. Not tried the ANT version yet. They need to release the Ruleset creator and violation viewer as AIR app's though. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a

  1   2   3   4   >