Re: [flexcoders] Re: Flex 1.5 SSL implementation solution required

2016-07-18 Thread Nick Collins ndcoll...@gmail.com [flexcoders]
Randall is correct. I use ES6 along with Babel and Webpack happily with my React coding. If you want to dig in and get your hands dirty, check out Gluestick (https://www.drivenbycode.com/getting-started-with-gluestick/) . It is an excellent (IMHO) CLI tool for scaffolding out a React site to get

Re: [flexcoders] Flex 1.5 SSL implementation solution required

2016-07-08 Thread Nick Collins ndcoll...@gmail.com [flexcoders]
800-0900 - Skype No Texting > 1-360-850-9322 Mobile > http://danielpride.com > www.linkedin.com/in/danielpride/ > http://archaeolibrary.com/ > https://headlessuber.com > > > > > > -- > *From:* "Nick Collins ndcoll...@gmail.com

Re: [flexcoders] Flex 1.5 SSL implementation solution required

2016-06-20 Thread Nick Collins ndcoll...@gmail.com [flexcoders]
Why on God's green earth would you be using a technology that is now nearly 15 years old?!?! On Mon, Jun 13, 2016 at 5:31 AM, Srinivasulu Thottempudi srinivas...@sankhya.net [flexcoders] wrote: > > > Dear flex developer, > > How to build the Flex 1.5 application ? >

Re: [flexcoders] Using Squiggly under Oracle's Weblogic 11g

2013-10-03 Thread Nick Collins
My first though is that it is likely something to do with the context of the application. Likely you are not using the WAR as the root context, so that will change the pathing. Your best bet is to use relative paths if possible . On Wed, Oct 2, 2013 at 10:06 AM, rabi...@yahoo.com wrote: **

Re: [flexcoders] Compiling and debugging against a remote Coldfusion server

2013-01-28 Thread Nick Collins
Again, to kind of echo what Brendan said, if this guy can't figure out simple remoting to a Coldfusion server, I would question my choice. Coldfusion is by far the simplest, most plug and play remoting to Flex there is, and there is plenty of documentation available showing you exactly how to do

Re: [flexcoders] Flex Mobile Android 4 (ICS)

2012-07-03 Thread Nick Collins
|| stage.orientation == rotatedRight ) currentState = landscape; else currentState = portrait; this.invalidateDisplayList(); } } -Jake On Fri, Jun 22, 2012 at 10:06 AM, Nick Collins ndcoll...@gmail.comwrote: ** I have been doing active development with Flex 4.6 on my HTC Inspire 4G

Re: [flexcoders] Flex Mobile Android 4 (ICS)

2012-07-03 Thread Nick Collins
protected function view_resizeHandler(event:ResizeEvent):void { if (widthheight) this.currentState=landscape; else this.currentState=portrait; } On Tue, Jul 3, 2012 at 6:11 AM, Nick Collins ndcoll...@gmail.com wrote: actually listen for a RESIZE event on the view, then check

Re: [flexcoders] Flex Mobile Android 4 (ICS)

2012-06-22 Thread Nick Collins
that it is. Solved by simply disconnecting the USB cable, then reconnecting it. I have also been developing on my ASUS Transformer Prime tablet running ICS with no orientation issues. Nick On Thu, Jun 21, 2012 at 5:22 PM, Jake Churchill reyna...@gmail.com wrote: ** I'm in the middle of writing a flex mobile

Re: [flexcoders] Re: Replacing double slash with a single slash

2011-11-09 Thread Nick Middleweek
Hi Valdor, Thanks for the reply, I've just tried this code but no joy... :( var doubleSlash : RegExp = //g; var slash : RegExp = //; winMessage = winMessage.replace( doubleSlash, slash ); I'm sure it's easy when you know how :) Nick On 8 November 2011 19:24, valdhor valdhorli

[flexcoders] Replacing double slash with a single slash

2011-11-08 Thread Nick Middleweek
Hi, I'm trying to replace a double slash with a single slash and am having a little trouble, has anyone done this before? Here's what I've got thus far... var doubleSlash : RegExp = /(\\)(\\)/g; var slash : RegExp = /(\\)/; winMessage = winMessage.replace( doubleSlash, slash ); Cheers, Nick

[flexcoders] Creating an unconvential Air app like kuler

2011-11-03 Thread Nick Middleweek
Hi, How does one create an Air app that has a non-rectangle window like Kuler? And is it possible to create an Air app that has multi windows? Thanks, Nick

[flexcoders] Util, Helper, Worker, etc Classes

2011-09-14 Thread Nick Middleweek
Hello, Does anyone know of a good list of Class types, their naming and usage conventions? I'm trying to find the difference between say a Worker or Helper Class, when to use each and what other standards there are? Cheers, Nick

[flexcoders] Can't see scrollbars on an MX list in a Spark TitleWindow

2011-09-09 Thread Nick Middleweek
, Nick

[flexcoders] Re: Can't see scrollbars on an MX list in a Spark TitleWindow

2011-09-09 Thread Nick Middleweek
? Cheers, Nick On 9 September 2011 16:31, Nick Middleweek n...@middleweek.co.uk wrote: Hi, Are there any obvious reasons why my MX List won't show scrollbars. It's tucked inside a Spark TitleWindow. The list has verticalScrollPolicy = on, width and height = 100% and the TitleWindow is width

Re: [flexcoders] What is the a correct lifecycle phase to add new child components?

2011-09-08 Thread Nick Middleweek
Alex, Not sure if I've overlooked something but how can the blue focus rectangle help? Cheers, Nick On 8 September 2011 03:11, Alex Harui aha...@adobe.com wrote: ** I think I’d just hack it in. You can probably hang it off of the DG when not used and grab it from there when needed

Re: [flexcoders] What is the a correct lifecycle phase to add new child components?

2011-09-08 Thread Nick Middleweek
at 3:21 PM, Nick Middleweek n...@middleweek.co.ukwrote: ** Alex, That's a good idea... What's your thoughts on approach to implement a shared Button? Would you create it at the parent view level and inject into the IR's using some kind of IFactory or perhaps attach it to the data property

Re: [flexcoders] What is the a correct lifecycle phase to add new child components?

2011-09-07 Thread Nick Middleweek
Douglas, Thanks... So as a rule of thumb, add all children that I know I need up front and show/ hide them using visibility in e.g. onMouseOver/ Out. Or set a dirty flag and then invalidateDisplayList(), then from within updateDisplayList(), check the dirty flags and addChild( x ) in there...

Re: [flexcoders] What is the a correct lifecycle phase to add new child components?

2011-09-07 Thread Nick Middleweek
buttons that would be created that are initially set visible = false; I'm assuming they are all in memory and when scrolling, this could impact scroll performance. Or is adding/ removing children dynamically and making each Item Renderer go through it's update cycle more expensive? Cheers, Nick

Re: [flexcoders] What is the a correct lifecycle phase to add new child components?

2011-09-07 Thread Nick Middleweek
Alex, That's a good idea... What's your thoughts on approach to implement a shared Button? Would you create it at the parent view level and inject into the IR's using some kind of IFactory or perhaps attach it to the data property? Cheers, Nick On 7 September 2011 17:27, Alex Harui aha

[flexcoders] Re: Flex 4: MouseOver not firing on a UIComponent Item Renderer

2011-09-06 Thread Nick Middleweek
OK, well I've settled with the white background for now... On 5 September 2011 11:36, Nick Middleweek n...@middleweek.co.uk wrote: Hi, We're using Flex 4 and have an Item Renderer that extends UIComponent. We're adding a TextField that's added in createChildren(). In the Constructor

[flexcoders] What is the a correct lifecycle phase to add new child components?

2011-09-06 Thread Nick Middleweek
? Is it simply 'ok' to *this.addChild( *myNewButton *)* in a MOUSE_EVENT function handler or should I be setting some dirty flag to trigger off an invalidation and then add the button in a lifecycle override function? Thanks, Nick -- Sent by Nick Middleweek ( { email: n...@middleweek.co.uk, mobile

[flexcoders] Using RemoteClass meta tag

2011-09-06 Thread Nick Middleweek
it's using casting I can't see where the [RemoteClass] is actually of any use? Thanks, Nick

Re: [flexcoders] What is the a correct lifecycle phase to add new child components?

2011-09-06 Thread Nick Middleweek
invalidateProperties() from the setter but would that make any real difference? I mean, is it the same calling addChild(myButton) from onMouseOver() function handler or from within commitProperties? Does anything naturally happen (life cycle wise) after commitProperties() is invoked? Thanks, Nick On 6

Re: [flexcoders] What is the a correct lifecycle phase to add new child components?

2011-09-06 Thread Nick Middleweek
Thanks for this... So I'm extending UIComponent, does this mean I'm doing it the MX way? Cheers... On 6 September 2011 14:38, Haykel BEN JEMIA hayke...@gmail.com wrote: ** Hi Nick, if you use Spark components and the child components you want to add are fixed and known, e.g. a 'close

Re: [flexcoders] Re: Flex 4: MouseOver not firing on a UIComponent Item Renderer

2011-09-06 Thread Nick Middleweek
and it will still work. You can also set background=true and pick a backgroundColor on the TextField and not have to draw the fill. On 9/6/11 2:18 AM, Nick Middleweek n...@middleweek.co.uk wrote: OK, well I've settled with the white background for now... On 5 September 2011 11:36

Re: [flexcoders] Re: Flex 4: MouseOver not firing on a UIComponent Item Renderer

2011-09-06 Thread Nick Middleweek
and not have to draw the fill. On 9/6/11 2:18 AM, Nick Middleweek nick@... wrote: OK, well I've settled with the white background for now... On 5 September 2011 11:36, Nick Middleweek nick@... wrote: Hi, We're using Flex 4 and have an Item Renderer

[flexcoders] Flex 4: MouseOver not firing on a UIComponent Item Renderer

2011-09-05 Thread Nick Middleweek
(); ... the MouseOver event DOES fire on the red background. Is there a way of achieving this without drawing a rectangle? I did think of setting the rect to white but this doesn't seem like the correct approach. Thanks for any help... Nick -- Sent by Nick Middleweek ( { email: n

Re: [flexcoders] Licence component

2011-08-03 Thread Nick Collins
I don't know of any free component, but you may want to investigate either Zarqon ( from Cliff Hall, the creator of PureMVC ), or NitroLM. On Wed, Aug 3, 2011 at 5:14 AM, isa_loyer isa_lo...@yahoo.fr wrote: ** Dear Flexer, I'm developping an AIR application. I'd like include licence

[flexcoders] Setting a custom Air app version/ release number

2010-09-06 Thread Nick Middleweek
version numbers and this would be handy for releases... Thanks, Nick

Re: [flexcoders] Setting a custom Air app version/ release number

2010-09-06 Thread Nick Middleweek
ah nice one Rob, thank you. On 6 September 2010 14:09, Rob Parkhill rob_parkh...@yahoo.com wrote: There is a version number section in the XML for the application. Same place where you can enter app name and such. Rob -- *From:* Nick Middleweek n

[flexcoders] FB4: DataGroup not resizing when dataProvider is updated

2010-08-27 Thread Nick Middleweek
but with the DataGroup.height = 100%, the itemRenderers are being placed ontop of each other. The Layout of the DataGroup is set to VerticalLayout. Has anyone had any success with anything similar? Thanks in advance and happy bank holiday! Nick

[flexcoders] NumericInput UI control

2010-08-24 Thread Nick Middleweek
? I need to support standard number formatting, decimals, negative and positive values... Any initial thoughts or should I just extend TextInput and roll my own control? Thanks, Nick

[flexcoders] Semi-dial / speedo-type control in flex

2010-08-23 Thread Nick Middleweek
Hi, I thought there was a dial or speedometer control built into Flex 3? Does anyone have any references to one if I'm mistaken? Thanks, Nick

[flexcoders] Player Security - Local SWF accessing local and network?

2010-08-03 Thread Nick Middleweek
. Cheers, Nick

Re: [flexcoders] Player Security - Local SWF accessing local and network?

2010-08-03 Thread Nick Middleweek
Cheers Alex - I'll continue playing with the settings and report back... Thanks... On 3 August 2010 18:48, Alex Harui aha...@adobe.com wrote: The settings manager and/or flashplayertrust files make the sandbox rules LOCAL_TRUSTED instead of one of the other LOCAL_XXX sandboxes. I think

Re: [flexcoders] How to split a String on spaces but including Quoted Phrases?

2010-08-02 Thread Nick Middleweek
Guys, I missed this one... Thank you for your replies... I'll check out the code and see what works. I did end up writing a string parser but I'm now curious to see how RegEx stands up to the task. Cheers, Nick On 29 July 2010 23:30, Oleg Sivokon olegsivo...@gmail.com wrote: Ouch, actually

[flexcoders] Mouse coordinates on DragEvent = DragManager.MOVE

2010-07-30 Thread Nick Middleweek
dragEvent_X : int = DragEvent( event ).stageY; var point : Point = new Point( this.contentMouseX, this.contentMouseY ); Thanks for any help on a friday afternoon! Nick

[flexcoders] Re: Mouse coordinates on DragEvent = DragManager.MOVE

2010-07-30 Thread Nick Middleweek
Got it... var point : Point = new Point( this.contentMouseX, this.contentMouseY ); point = contentToGlobal( point ); On 30 July 2010 14:22, Nick Middleweek n...@middleweek.co.uk wrote: Hi, Has anyone been able to obtain the MouseX and MouseY

[flexcoders] How to split a String on spaces but including Quoted Phrases?

2010-07-28 Thread Nick Middleweek
Thanks, Nick

[flexcoders] How to detect the decimal point character?

2010-07-27 Thread Nick Middleweek
decimalCharacter : String = Math.PI.toString().substr( 1, 1 ); Thanks, Nick

Re: [flexcoders] Re: who know flex builder2 download location??

2010-07-14 Thread Nick Collins
Flex Builder 2 doesn't either. You would need to have Flex 1.5... and Flex Builder at that point was basically Dreamweaver. Good luck working with that! On Wed, Jul 14, 2010 at 8:02 AM, sevengeon seveng...@yahoo.co.kr wrote: i want programming use as2.0 on FlashPlayer 8 but fb3 is not

[flexcoders] How to remove the DateField textInput border?

2010-07-13 Thread Nick Middleweek
); ... to be honest, I'm not even sure if that's the correct approach? is there a way to do it through code? Thansk in advance!! Nick

Re: [flexcoders] Re: Capturing ENTER key in a Numeric Stepper

2010-07-11 Thread Nick Middleweek
? Cheers, Nick On 11 July 2010 03:46, Andrew cottag...@gmail.com wrote: In my applications I use the change event to fire events( like change='doThisThing()'). Seems to work for the number stepper just fine. --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Nick

Re: [flexcoders] Capturing ENTER key in a Numeric Stepper

2010-07-11 Thread Nick Middleweek
of the TextInputs but if I pop a NS control on the form and press ENTER from within that it doesn't invoke the defaultButton?... Here's my code: http://pastebin.com/65HwfuGf Cheers for the help... Nick On 11 July 2010 01:26, dorkie dork from dorktown dorkiedorkfromdorkt...@gmail.com wrote

Re: [flexcoders] Re: Capturing ENTER key in a Numeric Stepper

2010-07-11 Thread Nick Middleweek
stepper and sends whatever its current value is to the search function. a --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Nick Middleweek n...@... wrote: Hi Andrew. Can you trap the ENTER (keyCode = 13) on a Numeric Stepper? I've been failing to do this... :( When

[flexcoders] Capturing ENTER key in a Numeric Stepper

2010-07-10 Thread Nick Middleweek
? On enter, I want to dispatch a submitSearch event but can't seem to detect this for the NS control.. Any ideas will be great.. Cheers, Nick

[flexcoders] focusrect on custom components?

2010-07-08 Thread Nick Middleweek
and not the individual component... I've just started looking into the NumericStepper for an example but it seems quite involved... Do I carry on hunting or is there an easy way? :-) Cheers, Nick

Re: [flexcoders] User Interface Design Groups

2010-07-08 Thread Nick Middleweek
Hi, I wil get it compiled an upload to a site and post a follow up - thanks for the message :) Cheers, NIck On 7 July 2010 22:21, dorkie dork from dorktown dorkiedorkfromdorkt...@gmail.com wrote: nick, i know the perfect group, its called flexcoders. ...or flashcoders. most flash

Re: [flexcoders] Input formatter?

2010-07-07 Thread Nick Middleweek
Ok, cool... Thanks Scott... I was hoping there'd be a built in way that I can apply to different objects, I'm using it on the DateField object... I'll check that link out and have a hunt around... Nick On 7 July 2010 04:23, Scott h...@netprof.us wrote: Sorry, my bad. I

[flexcoders] User Interface Design Groups

2010-07-07 Thread Nick Middleweek
Hi, 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? Cheers, Nick

[flexcoders] Input formatter?

2010-07-06 Thread Nick Middleweek
Formatter or something similar? How do others handle this? Thanks, Nick

Re: [flexcoders] Input formatter?

2010-07-06 Thread Nick Middleweek
the year... I'm after a data entry filter to help the users not enter invalid entries. Thanks, Nick On 6 July 2010 13:10, Scott h...@netprof.us wrote: Yes, you can use formatters… http://livedocs.adobe.com/flex/3/html/help.html?content=formatters_2.html Bind the component

[flexcoders] Data Import Web Service... Where has it gonein FB4?

2010-06-25 Thread Nick Middleweek
but what are other peoples thoughts on this? It was quite easier previously, import the WSDL, copy the value objects and plumb in the SchemeType declarations... Cheers, Nick

Re: [flexcoders] Data Import Web Service... Where has it gonein FB4?

2010-06-25 Thread Nick Middleweek
Hi, Unless I'm mistaken but I think that is the same as selecting Connect to Web Service... from the Data menu ? I was hoping to get to the FB3 import Web Service feature... Cheers, Nick On 25 June 2010 15:29, claudiu ursica the_bran...@yahoo.com wrote: Data Services Tab, usually near

Re: [flexcoders] setting the border thickness on a Spark mx.controls.VBox ?

2010-06-23 Thread Nick Middleweek
on a VBox when using Spark + Halo under SDK v4... Is it possible? Cheers, Nick On 23 June 2010 17:07, Alex Harui aha...@adobe.com wrote: Which theme? On 6/22/10 3:24 PM, Nick Middleweek n...@middleweek.co.uk wrote: Hi, Sounds a bit contradictory - Spark and mx.controls but I'm

[flexcoders] setting the border thickness on a Spark mx.controls.VBox ?

2010-06-22 Thread Nick Middleweek
Hi, Sounds a bit contradictory - Spark and mx.controls but I'm using Flex 4 but working on some Flex 3 code and can't update to Spark at the moment. I'm struggling to find out how to set the border thickness of my VBox to 10. Has anyone acheived this ? Thanks, Nick

Re: [flexcoders] how to place cursor in textinput

2010-06-17 Thread Nick Middleweek
that helps... Nick -- Sent by Nick Middleweek ( { email: n...@middleweek.co.uk, mobile: +44(0)774 035 5424, blog: http://blog.middleweek.co.uk } ); On 17 June 2010 06:34, venkatreddy_006 venkatreddy_...@yahoo.com wrote: Hi everyone, i was setthe focus to the TextInput component

[flexcoders] Different effects

2010-06-09 Thread Nick Middleweek
Hi, I'm reading up about Flex Effects... Can anyone explain the difference between the three types: 1). MaskEffect 2). TweenEffect 3). CompositeEffect. I'm guessing that Tween is animation and Composite is a combined effect such as move and resize. Thanks, Nick

[flexcoders] Defining layouts in Spark controls

2010-06-09 Thread Nick Middleweek
, Nick

[flexcoders] removeEventListener - is it important?

2010-06-02 Thread Nick Middleweek
if I remove that DateField from the stage, are the event handlers still attached and therefore the DateField is referenced by these handlers and therefore won't get GD'd ? Mmmm Cheers, Nick -- Sent by Nick Middleweek ( { email: n...@middleweek.co.uk, blog: http://blog.middleweek.co.uk } );

Re: [flexcoders] removeEventListener - is it important?

2010-06-02 Thread Nick Middleweek
(Event.REMOVED_FROM_STAGE, removedFromStageHandler); } The removedFromStageHandler() function, seems to be doing some clean ups, so I guess that's kind of like it's .dispose() method. Nick On 2 June 2010 12:44, Oleg Sivokon olegsivo...@gmail.com wrote: If you are adding handlers to events

[flexcoders] Has the Flex 4 component architecture changed much from Flex 3?

2010-06-01 Thread Nick Middleweek
Hi, Has the Flex 4 component architecture changed much from Flex 3? I was recommended to get the Flash Builder 4 Flex 4 Bible to learn about writing components but I'm still working with Flex 3 projects and realistically, I probably will be for a couple more years... Thanks, Nick

Re: [flexcoders] Has the Flex 4 component architecture changed much from Flex 3?

2010-06-01 Thread Nick Middleweek
Hi Paul, Although I'll be working with Flex 3 for a couple more years, any new projects will be Flex 4. More importantly though, in what way has the component architecture changed? Cheers, Nick On 1 June 2010 11:29, Paul Andrews p...@ipauland.com wrote: On 01/06/2010 11:00, Nick

Re: [flexcoders] Get URL that user typed in

2010-05-28 Thread Nick Middleweek
i think you're after the HTTP referrer. You can access this information server-side and I believe some of the data is available from JavaScript so from Flex, just reach out. HTH, Nick -- Sent by Nick Middleweek ( { email: n...@middleweek.co.uk, blog: http://blog.middleweek.co.uk } ); On 28

[flexcoders] Changing the dataProvider for a ComboBox doesn't seem to work properly

2010-05-28 Thread Nick Middleweek
wrong? Thanks, Nick -- Sent by Nick Middleweek ( { email: n...@middleweek.co.uk, blog: http://blog.middleweek.co.uk } );

[flexcoders] advanced flex architecure books?

2010-05-28 Thread Nick Middleweek
said You don't know what you can do until you know how to do it... Are there any must read books to master Flex, the framework and writing components, etc (the right way)? Cheers, Nick

Re: [flexcoders] How to store information in Cookies ???

2010-05-27 Thread Nick Middleweek
that helps, Nick -- Sent by Nick Middleweek ( { email: n...@middleweek.co.uk, blog: http://blog.middleweek.co.uk } ); On 27 May 2010 10:14, Nini7016 Nini7016 nahloulaha...@hotmail.com wrote: Hello :) I have a menu item et i would like to store these information in CookiesI didn't work

Re: [flexcoders] How to store information in Cookies ???---Thank you :) Nick , Do you have an example of what you have done

2010-05-27 Thread Nick Middleweek
= zoomMenu.dataProvider[ zoomMenu.selectedIndex ].label; intFontScalePercentage = zoomMenu.dataProvider[ zoomMenu.selectedIndex ].scale; zoomScale.close(); CookieUtil.setCookie( 'intFontScalePercentage', intFontScalePercentage.toString(), 120 ); } HTH, Nick

[flexcoders] Setting UI components in a composite component to private?

2010-05-27 Thread Nick Middleweek
Hi, When we create a composite component, such as an itemRenderer, based on an HBox and there's a button and TextInput inside, those sub-components are public, is there a way to specify they're private? Thanks, Nick -- Sent by Nick Middleweek ( { email: n...@middleweek.co.uk, blog: http

[flexcoders] Intuitive search UI ideas?

2010-05-26 Thread Nick Middleweek
would return all males above 25 and all females above 20. Now using a 'standard' search screen, this isn't possible. Does anyone have any examples or ideas on how to present such custom query options to the user and keeping it relatively easy and nice :) Cheers, Nick -- Sent by Nick Middleweek

Re: [flexcoders] The Flex DOM?

2010-05-25 Thread Nick Middleweek
-DOM and was thinking could I apply similar concepts?... (I've got another question and it's not abut squares :) but I'll create another thread). @Paul - I'll have a quick search, thanks. Cheers guys, Nick On 24 May 2010 22:30, Jake Churchill reyna...@gmail.com wrote: It's kind of like

Re: [flexcoders] Detecting Browser Re-Size

2010-05-25 Thread Nick Middleweek
maybe forget that you've got an IFRAME and SWF, this fluid layout concept will apply to any HTML objects such as two images. Hope that helps somehow... (unless I've misread your problem?) Cheers, Nick -- Sent by Nick Middleweek ( { email: n...@middleweek.co.uk, mobile: +44(0)774 035 5424, blog

Re: [flexcoders] Set Width of An Item Renderer Component Based on Visible Property of the Control

2010-05-25 Thread Nick Middleweek
from within the itemRenderer itself. I'm saying only do this on row one, just to optimise it, otherwise it'll run for ever row in the DG, which would hinder performance. Hope this helps, ask if you need anymore help. Cheers, Nick -- Sent by Nick Middleweek ( { email: n...@middleweek.co.uk

[flexcoders] Looping to addChild TextInputs, then removeAllChildren, are they GC'd?

2010-05-25 Thread Nick Middleweek
benefit from reading soemthing, I'd appreciate some links to articles. Thanks guys, Nick

[flexcoders] The Flex DOM?

2010-05-24 Thread Nick Middleweek
Hi, Might be a silly one but Flex doesn't have a DOM does it... or does it? I'm pretty sure I've seen a debugger app that shows a hierachical view starting from the Application level and displays all the containers and objects within. Thanks, Nick

Re: [flexcoders] Re: var myVar : Function = new Function ? examples?

2010-05-21 Thread Nick Middleweek
--- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Nick Middleweek n...@... wrote: Hello, I can't find any examples on how to create Functon variables? Does anyone have any to hand please? Thanks, Nick -- Sent by Nick Middleweek ( { email: n...@..., blog

[flexcoders] var myVar : Function = new Function ? examples?

2010-05-20 Thread Nick Middleweek
Hello, I can't find any examples on how to create Functon variables? Does anyone have any to hand please? Thanks, Nick -- Sent by Nick Middleweek ( { email: n...@middleweek.co.uk, blog: http://blog.middleweek.co.uk } );

Re: [flexcoders] var myVar : Function = new Function ? examples?

2010-05-20 Thread Nick Middleweek
) : void { var myReq : URLRequest = new URLRequest(path); var myLoad : URLLoader = new URLLoader(); var completeHandler : Function = function (evt : Event) : Type { // handle data load } myLoad.addEventListener(Event.COMPLETE, completeHandler) myLoad.load(myReq); } Cheers, Nick

Re: [flexcoders] flash 4 and flex 3

2010-05-19 Thread Nick Collins
Flash 4 could net you some big money by selling it to the Smithsonian? j/k On Wed, May 19, 2010 at 2:23 AM, cholid cholid cholid_rid...@yahoo.comwrote: Hi all What advantages of flash 4 compare with flex 4? thanks cholid_ridwan

Re: [flexcoders] how to style a ComboBox - Dropdown ?

2010-05-13 Thread Nick Middleweek
ok, cool... Thanks Alex, Does it say that in the docs? I can't see it and have been stumped on similar things like this before when a styleProperty refers to another .stylename Cheers, Nick On 13 May 2010 18:30, Alex Harui aha...@adobe.com wrote: It depends on the dropdown. The default

Re: [flexcoders] how to style a ComboBox - Dropdown ?

2010-05-13 Thread Nick Middleweek
ah ha... ComboBox.dropdownFactory = Class factory that creates an mx.controls.List On 13 May 2010 19:45, Nick Middleweek n...@middleweek.co.uk wrote: ok, cool... Thanks Alex, Does it say that in the docs? I can't see it and have been stumped on similar things like this before when

[flexcoders] Resource bundles/ locales?

2010-05-11 Thread Nick Middleweek
this one... . . search.save=Save . . . This seems pretty neat and better than using label={...@resource(bundle='labels', key='search.save')} everywhere. Has anyone seen this before and do you know how it is working? Thanks, Nick

[flexcoders] Re: Resource bundles/ locales?

2010-05-11 Thread Nick Middleweek
OK, found the answer to this one... Basically, the static vars are being looped and replaced with the actual bundle.properties key-value. Hope this helps someone, it did me :) On 11 May 2010 14:42, Nick Middleweek n...@middleweek.co.uk wrote: Hi, I'm looking at Resource bundles and Locales

Re: [flexcoders] Resource bundles/ locales?

2010-05-11 Thread Nick Middleweek
Yep - it's funny what you find when you spend a little longer digging around... But I thought it was some undocumented waay of using resource bundles... Pretty cool stuff. Cheers Andriy :) Nick On 11 May 2010 16:01, Andriy Panas a.pa...@gmail.com wrote: Hi Nick, Have a closer look

Re: [flexcoders] how to find redundant classes?

2010-04-23 Thread Nick Middleweek
if there are any errors or if it's an unused Class... So perhap you mean something else? Is there a Flex project to ASDocs generator? Cheers Oleg... Nick On 23 April 2010 00:01, Oleg Sivokon olegsivo...@gmail.com wrote: Not a real answer: document them with ASDocs - it will try to document

Re: [flexcoders] how to find redundant classes?

2010-04-23 Thread Nick Middleweek
Cheers Aaron... Thanks! On 23 April 2010 01:48, Aaron Hardy aaronius...@gmail.com wrote: FlexPMD would probably do the trick: http://opensource.adobe.com/wiki/display/flexpmd/FlexPMD Aaron

Re: [flexcoders] how to find redundant classes?

2010-04-23 Thread Nick Middleweek
Ah ok, thanks Oleg... Cheers for the other tip - link-report, I'l give that a try too. Nick On 23 April 2010 09:46, Oleg Sivokon olegsivo...@gmail.com wrote: Hi, yes, just as Aron said. I was simply judging from my previous experience - usually the old classes would contradict

Re: [flexcoders] how to find redundant classes?

2010-04-23 Thread Nick Middleweek
FlexPMD only works on projects that do not have spaces in the the path name... Hopefully they fix that one soon... On 23 April 2010 10:00, Nick Middleweek n...@middleweek.co.uk wrote: Ah ok, thanks Oleg... Cheers for the other tip - link-report, I'l give that a try too. Nick On 23

Re: [flexcoders] Re: TitleWindow.title won't update from a setter

2010-04-22 Thread Nick Middleweek
Thanks Amy... I'm now doing that and silly me forgot to use super.commitProperties() after the .title in commitProperties(). That took a while to work out :) Cheers, Nick On 22 April 2010 20:05, Amy amyblankens...@bellsouth.net wrote: --- In flexcoders@yahoogroups.com flexcoders

[flexcoders] how to find redundant classes?

2010-04-22 Thread Nick Middleweek
of doing this from Eclipse or otherwise? I'm using the FB4 plugin with the 3.4 SDK. Thanks, Nick

Re: [flexcoders] TitleWindow.title won't update from a setter

2010-04-21 Thread Nick Middleweek
component but that's a bit hacky isn't it?... mx:TitleWindow title = {(iFormID.length 0) ? 'Create Vendor by iForm' : 'Create Vendor'} . . . / Perhaps I need to take a step back somewhere?... Thanks, Nick On 21 April 2010 07:39, Alex Harui aha...@adobe.com wrote: Are you

Re: [flexcoders] TitleWindow.title won't update from a setter

2010-04-21 Thread Nick Middleweek
help... Nick On 21 April 2010 18:09, Alex Harui aha...@adobe.com wrote: Interesting. Try calling validateNow after addPopUp.

Re: [flexcoders] Re: Find tree node in groupingcollection?

2010-04-20 Thread Nick Middleweek
Thanks Amy... Reading the docs a bit closer, that does make sense... GroupingCollection inherits from HierarchicalData which implements IHierarchicalData and the source of HierarchicalCollectionView is of type IHierarchicalData. Great stuff, thanks again! Nick On 19 April 2010 16:00, Amy

Re: [flexcoders] Re: GroupingCollection.getParent() doesn't exist?

2010-04-20 Thread Nick Middleweek
ok - thanks Amy! :) So if were to extend GroupingCollection and create MyGroupingCollection, I could then have a public function on MyGroupingCollection that in turn calls the getParent() protected function of GroupingCollection. Cheers, Nick On 19 April 2010 16:09, Amy amyblankens

[flexcoders] Using Flash Player 10 in Full Screen mode, check this out!

2010-04-20 Thread Nick Collins
http://blog.nc-design.net/post.cfm/flash-player-10-hardware-acceleration-fail The gist is that in certain circumstances, the Flash Player has problems with its full screen mode.

[flexcoders] TitleWindow.title won't update from a setter

2010-04-20 Thread Nick Middleweek
a dirty_flag, calling invalidateProperties() and setting the .title from within commitProperties() but no joy there either... Thanks for any help... Nick

[flexcoders] Cairngorm/ Command/ AdvancedDataGrid.expandChildrenOf() ?

2010-04-18 Thread Nick Middleweek
'see' the view. Should I update the model from the Command and have a ChangeWatcher on the view to run the AdvancedDataGrid.expandChildrenOf() code? Is there a right and wrong way of solving this? Thanks, Nick

Re: [flexcoders] Cairngorm/ Command/ AdvancedDataGrid.expandChildrenOf() ?

2010-04-18 Thread Nick Middleweek
Hi Jake, Thanks for the info... I know this sounds crazy but because of project/ company politics we have extreem difficulty getting 3rd party libraries on the project. Are there any preferred alternative ways? Cheers, Nick On 18 April 2010 19:11, Jake Churchill reyna...@gmail.com wrote

Re: [flexcoders] Cairngorm/ Command/ AdvancedDataGrid.expandChildrenOf() ?

2010-04-18 Thread Nick Middleweek
Hey Jake, Cheers for the response... I've gone with a ChangeWatcher approach. Update the model from the command and I've dropped in the ChangeWatcher in the view, seems to be working but was curious who others would solve this... I'll look into CG Extensions though, cheers for the idea! Nick

[flexcoders] Find tree node in groupingcollection?

2010-04-18 Thread Nick Middleweek
and reference the tree node so i can then vendorComplexSearch.advancedDataGrid.expandChildrenOf(treeNode, false); vendorComplexSearch.advancedDataGrid.expandChildrenOf(treeNode, true); to force a refresh only on that tree node without collapsing the whole AdvancedDataGrid. Thanks for any help... Nick

  1   2   3   4   5   6   >