[flexcoders] Re: Accessing the URLRequest object from the URLLoader?

2009-12-11 Thread Nick Middleweek
stupid :) I'm intrigued to what the experts think... Also, does this create an issue with garbage collection? Cheers, N 2009/12/11 Nick Middleweek > Hi, > > When we use URLLoader we pass it the URLRequest object either in the > constructor or via the load method... > &g

[flexcoders] Accessing the URLRequest object from the URLLoader?

2009-12-10 Thread Nick Middleweek
L that was Requested... I would've thought there would be a .request propery on the URLLoader but there isn't... Has anyone got any ideas on how I can achieve this? I was thinking about extending URLLoader and creating my own property and then overriding the load function. What are peoples thoughts? Thanks, Nick

Re: [Spam] [flexcoders] Re: new StringValidator() .source problem?

2009-12-10 Thread Nick Middleweek
were initialized but not measured/ positioned. But I guess I'm wrong... :) Cheers! Nick 2009/12/9 Tibor > > > purchOrg us most likely null when you are assigning it as the source of the > validator. > > Could you post the rest of the coded where purchOrg is defined? > >

[flexcoders] Re: new StringValidator() .source problem?

2009-12-09 Thread Nick Middleweek
I thought I'd try it by creating the MXML StringValidator... ... and adding that to the validation array. This works. So I must be doing something wrong with the ActionScript ? Can anyone see what I'm doing wrong? Thanks, N 2009/12/9 Nick Middleweek > Hi, > >

[flexcoders] new StringValidator() .source problem?

2009-12-09 Thread Nick Middleweek
Hi, I'm trying to use StringValidator in ActionScript. The following example shows MXML and then adding the ID's to an Array... http://blog.flexexamples.com/2007/08/13/validating-flex-forms-using-the-validator-classes/ ... I'd like to do this entirely in ActionScript but am getting an error abou

[flexcoders] Flex and Weblogic JMS

2009-12-02 Thread Nick Collins
a clustered environment, so I need to use the appserver's JMS capabilities. Thanks in advance! Nick

Re: [Spam] RE: [flexcoders] mx:ControlBar horizontalAlign="right" - doesn'twork?

2009-11-27 Thread Nick Middleweek
This is a bit old but i had the same problem again and it's quite easy to fix by setting the width of the controlBar :-) Thanks to my work colleague Gilles! :) 2009/10/6 Nick Middleweek > It just stays left aligned... > > that's odd... Could there be anything tha

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

2009-11-12 Thread Nick Middleweek
Thanks for your help guys... that works perfectly!...

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

2009-11-12 Thread Nick Middleweek
n routines to help with this? Thanks, Nick

Re: [Spam] RE: [flexcoders] tabbing between headerRenderers?

2009-11-11 Thread Nick Middleweek
Alex, I've sorted it... My mistake.. I wasn't using the correct event and I needed to assign it using AS, not MXML... http://pastebin.com/d5a59014b Thanks for your help!!!! :) Nick 2009/11/11 Nick Middleweek > Hey Alex, > > Thanks for your reply... I'm finding t

Re: [Spam] RE: [flexcoders] tabbing between headerRenderers?

2009-11-11 Thread Nick Middleweek
false and therefore event.preventDefault isn't working. Do you have any clues to how I can make cancelable = true? It's a R/O property so perhaps I need to do something to the text object? Thanks for any help.. Nick 2009/11/10 Alex Harui > > > Yes. You will need to overri

[flexcoders] tabbing between headerRenderers?

2009-11-10 Thread Nick Middleweek
ocus in to the next one?... Mm... Any suggestions are really welcome :) Thanks, Nick

[flexcoders] Re: Sending a message to each headerRenderer of an Adv DataGrid?

2009-11-10 Thread Nick Middleweek
. for(var intLoop:int = 0; intLoop < advancedDataGrid.headerItems[0].length; intLoop++){ if(advancedDataGrid.headerItems[0][intLoop] is HeaderFilterRenderer) HeaderFilterRenderer(advancedDataGrid.headerItems[0][intLoop]).clearFilter(); } Hope that helps someone... Nick 2009/11/10 Ni

[flexcoders] Sending a message to each headerRenderer of an Adv DataGrid?

2009-11-10 Thread Nick Middleweek
other way to talk to the headerRenderer to tell it to do something without it having to subscribe to a custom event? I had the same problem with itemRenderers and I've overcome it by creating/modifying an attribute flag on the XML which I then text for on the itemRenderers listData setter function. Nick

[flexcoders] Re: How to disable the folder/tree icon in Adv Data Grid?

2009-11-10 Thread Nick Middleweek
appended to the the Address node XML, which in turn will (hopefully) cause my listData setter to be modified for that row so I can then set the sub-Data Grid to visible = true. Has anyone else loaded data dynamically for a sub-Data Grid in side an itemRenderer of an Advanced Data Grid? Thanks, Nick

[flexcoders] How to disable the folder/tree icon in Adv Data Grid?

2009-11-10 Thread Nick Middleweek
under one of the column renderers. My initial problem is that now the node has children, the Adv Data Grid is now showing a folder icon, as if it is expandable and it is overriding my item Renderer - is it possible to stop this? Thanks for any help... Nick

Re: [Spam] [flexcoders] Re: Memory leak with Data Grid and Item Renderers

2009-11-09 Thread Nick Middleweek
y of Arrays for the renderers for each row/Column... I'm hoping I may be able to delete the 'children' this way? have you ever used this property? or perhaps there's another way to delete the 'children' of the Adv Data Grid? Thanks, Nick 2009/11/6 valdho

Re: [flexcoders] What's up with Flashbuilder beta2 and the export release build

2009-11-04 Thread Nick Collins
Um.. that's why it's Beta. On Tue, Nov 3, 2009 at 6:41 PM, djhatrick wrote: > > > Takes a half hour, then says my project has errors and can't do it -- the > compiler can't find em i guess -- what a suck-a-thon! > > >

Re: [Spam] [flexcoders] addEventListner help

2009-10-30 Thread Nick Middleweek
her function at the end of the myClickHandler, I guess you cuold just call it at the bottom of that function. Nick 2009/10/30 Darrin Kay > > > can some explain how these work? > > I have a function that calls an event, and on completion of the event I > want another functi

[flexcoders] Skinning a scrollbar with Symbols, SWFs with poor mans Flash CS?

2009-10-23 Thread Nick Middleweek
mages inside the SWF correctly. Thanks for any help on this fine Friday :) Nick

Re: [flexcoders] Developing Flash/Flex on Linux

2009-10-21 Thread Nick Collins
Personally, I'm not all that concerned about Flex Builder running on Linux, in and of itself. Now if they ported the Creative Suite as well, I would be totally psyched. Unfortunately, as long as CS is only available on Windows or OSX, I'm going to be tied to those platforms. That being said, for t

Re: [Spam] [flexcoders] Re: how to dynamically change the icon of a Button?

2009-10-15 Thread Nick Middleweek
Thanks Steve! :) you never fail :) 2009/10/15 valdhor > > > This should send you in the right direction... > > http://blog.benstucki.net/?p=42 > >

[flexcoders] how to dynamically change the icon of a Button?

2009-10-15 Thread Nick Middleweek
Has anyone done this before? Thanks, Nick

Re: [Spam] RE: [SPAM] Re: [Spam] Re: [flexcoders] Checkbox in Datagrid

2009-10-15 Thread Nick Middleweek
Ah ok... Thanks Tracy... Is that a bit like Application.application ? 2009/10/15 Tracy Spratt > > > An item renderer is a component and has its own scope. “outerDocument” > is a reference to the renderer’s parent document. You use it to access > public properties of the parent. > > > > Tr

Re: [Spam] [Spam] [flexcoders] Re: How do you understand the style properties and what values they need?

2009-10-15 Thread Nick Middleweek
Cheers Steve, I didn't modify the default.css - I created a new one with the same name at the top of the MXML file that contains the Adv DataGrid... Thanks for the links... Nick 2009/10/15 valdhor > > > I wouldn't modify any styles in the defaults.css file. I would c

Re: [Spam] [flexcoders] Re: How do you understand the style properties and what values they need?

2009-10-15 Thread Nick Middleweek
Ahhh... :) Sorry about this thread... I've just removed the backgroundColor, tried it again and the black border has appeared. I've tried adding a color: #FF; but that seems to be ignored no matter what I do?... So I'm still stuck and confused :) Cheers, Nick

Re: [Spam] [flexcoders] Re: How do you understand the style properties and what values they need?

2009-10-15 Thread Nick Middleweek
Hi again :) In fact, this didn't fully work... it only implemented a green backgroundColor... The border styles were completely ignored, Mmmm?... :) 2009/10/15 Nick Middleweek > > e.g. By chance I just tried this and alas it worked but my question now is > is everything j

Re: [Spam] Re: [flexcoders] Checkbox in Datagrid

2009-10-15 Thread Nick Middleweek
Hey Angleo, Just curious here but what's the outerDocument. prefix for on the change event for? Cheers, Nick 2009/10/15 Angelo Anolin > > > Agha, > > You need to use Itemrenderer to render your checkbox control inside your > gridview: > > > >

Re: [Spam] Re: [flexcoders] Checkbox in Datagrid

2009-10-15 Thread Nick Middleweek
Hey Angleo, Just curious here but what's the outerDocument. prefix for on the change 2009/10/15 Angelo Anolin > > > Agha, > > You need to use Itemrenderer to render your checkbox control inside your > gridview: > > > > >/> > > > > > and then in your script section, d

Re: [Spam] [flexcoders] Re: How do you understand the style properties and what values they need?

2009-10-15 Thread Nick Middleweek
way to find out what else I have in my armoury... :) .headerDragProxyStyle { borderColor: black; borderStyle: sold; borderThickness: 3; backgroundColor: green; } Thanks :-) 2009/10/14 valdhor > > > In line... > > > --- In flexcoders@yahoogroups.com , Nick > M

[flexcoders] How do you understand the style properties and what values they need?

2009-10-14 Thread Nick Middleweek
radient. but can someone help me with this please?... DataGrid > Styles > headerDragProxyStyleName = "headerDragProxyStyle". Also, is "headerDragProxyStyle" affected if I use a headerRenderer? Thanks for any help or links so i can read up... Cheers, Nick

Re: [Spam] [flexcoders] Re: Can I fix the right hand column to the right side of the Adv Data Grid?

2009-10-14 Thread Nick Middleweek
Thanks for your reply on this, I'll check out those posts... I'll try adjusting the width as well - thanks... In general, can I just set measuredWidth of the column to a new value? or is that a read only property? Thanks, nick 2009/10/14 valdhor > > > No. From my under

[flexcoders] headerDragProxyStyleName property on an Adv Data Grid?

2009-10-14 Thread Nick Middleweek
e a breakdown of what CSS properties makes up the "headerDragProxyStyleName" property. if that makes sense? I'm thinking it has a border, font, etc? Or is there another way to make the dragging highlight more visible? Thanks, Nick

[flexcoders] data and listData

2009-10-14 Thread Nick Middleweek
into the other column values... I'm a bit lost :) Cheers, Nick

Re: [flexcoders] Catalyst with Flex Builder

2009-10-14 Thread Nick Collins
Technically, yes it is possible to open the code in Flex Builder 3. However, code created in Catalyst is only compatible with the Flex 4.0.0 SDK, so you will have to configure FB3 to use the Flex 4 SDK. The Adobe Open Source site has instructions on how to do this, I believe. On Wed, Oct 14, 2009

[flexcoders] Can I fix the right hand column to the right side of the Adv Data Grid?

2009-10-13 Thread Nick Middleweek
pixels but I'm finding it is being as a variable width. Is it possible to fix it to the far right side? Thanks, Nick

Re: [Spam] RE: [flexcoders] How to create a zoom UI object?

2009-10-12 Thread Nick Middleweek
Hello... I'm back... I'm thinking I can use the PopUpButton object for this... I'll let you know how I get on :) Cheers, Nick 2009/10/12 Nick Middleweek > Hi Alex, > > Loving the combox box - good work, I'll have to pinch that if that's OK :) > >

Re: [Spam] RE: [flexcoders] How to create a zoom UI object?

2009-10-12 Thread Nick Middleweek
ck to expand it, it doesn't show an icons, just different percentage values. If this was HTML/CSS, I'd just use a bunch of DIV tags to render a custom object but I'm not advanced with Flex yet... yet he says :) Cheers... Nick 2009/10/9 Alex Harui > > > There are icon

Re: [Spam] [flexcoders] what is wrong with this code?

2009-10-12 Thread Nick Middleweek
umber and needs converting if you want to concat it to a String. Nick

Re: [Spam] RE: [flexcoders] How to create a zoom UI object?

2009-10-09 Thread Nick Middleweek
Blog: http://blogs.adobe.com/aharui > > > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Nick Middleweek > *Sent:* Friday, October 09, 2009 7:39 AM > *To:* flexcoders@yahoogroups.com > *Subject:* [flexcoders] How to create a zoom UI object? &

[flexcoders] How to create a zoom UI object?

2009-10-09 Thread Nick Middleweek
opup? I think I need a few pointers so any guidance would be great... :) Thanks, Nick

[flexcoders] Relative font size to the browser?

2009-10-08 Thread Nick Middleweek
to do anything similar? Thanks in advance, Nick

[flexcoders] Data Grid as itemRenderer not getting mouse events

2009-10-07 Thread Nick Middleweek
sing a custom itemRenderer? Is there a property I can set instead? Thanks, Nick

Re: [Spam] RE: [flexcoders] mx:ControlBar horizontalAlign="right" - doesn'twork?

2009-10-06 Thread Nick Middleweek
It just stays left aligned... that's odd... Could there be anything that is over riding it? Thanks, Nick 2009/10/5 Alex Harui > > > Works for me. What did you see? > > > > Alex Harui > > Flex SDK Developer > > Adobe Systems Inc. <http://www.ado

[flexcoders] mx:ControlBar horizontalAlign="right" - doesn't work?

2009-10-05 Thread Nick Middleweek
Hi, I've got this MXML... ... and I'm trying to get the button to be right aligned it doesn't work. Am I missing something? Thanks, Nick

Re: [flexcoders] Re: Is Adobe Customer Support (or worse yet adobe) falling apart

2009-09-15 Thread Nick Collins
I'd probably try to contact Robert Christensen or Mike Chambers about the AIR beta. On Tue, Sep 15, 2009 at 10:47 AM, Jim Hayes wrote: > > > > Mmmm, just taken me 3/4 hour to get though after a wait of 2 weeks odd for > a reply on the "support portal" which asked me to ring. > I've been told tha

Re: [flexcoders] Re: BlazeDS use secure channel when loaded over https.

2009-09-11 Thread Nick Collins
, Tom Chiverton wrote: > > > On Friday 11 Sep 2009, Nick Collins wrote: > > You might put something like the following code in a preinitialize event > > handler: > > You could just but both a secure and non-secure channel in the Channels > list... it's what we do.

Re: [Spam] [flexcoders] Re: printing off the Adobe Flex References?

2009-09-11 Thread Nick Middleweek
OK, thanks... I guess readin through the others will take me so long we'll be on v4 or 5 :) 2009/9/9 valdhor > > > Not that I've found. > > Although, it's a moving target (3.0 - 3.4 so far) so it's probably better > left as HTML. > > > --- In

Re: [flexcoders] Re: BlazeDS use secure channel when loaded over https.

2009-09-11 Thread Nick Collins
han https, and modify the channels accordingly to operate on a regular AMFChannel instead of a SecureAMFChannel. Nick Collins On Thu, Sep 10, 2009 at 4:27 PM, Wesley Acheson wrote: > > > Does anyone else know where I can ask or point me somewhere I might find > more information? > &g

[flexcoders] printing off the Adobe Flex References?

2009-09-09 Thread Nick Middleweek
I've got these PDF's... http://www.adobe.com/support/documentation/en/flex/ But is there a good way to print off the language reference? Thanks, Nick

[flexcoders] How to organise Flex projects and call one from another?

2009-09-07 Thread Nick Middleweek
ueryStrings and then set the viewstacks to show the right screen but I'm stumped with how to load the other project? What's the best way to achieve this without things getting messy? Thanks, Nick

[flexcoders] Flex Builder help system

2009-09-07 Thread Nick Middleweek
Hello, Is there a way to change Flex Builder 3 so that when I press F1 over a component, rather than the help page open within FB3, can it open up in a web browser? Thanks, Nick

[flexcoders] Alert.show for debug mode only

2009-09-05 Thread Nick Middleweek
this, has anyone else done something similar that I could use :) or are there some other usefull tools out there already for this kind of thing? Thanks, Nick

Re: [Spam] [flexcoders] Re: What does [Bindable("dataChange")] do?

2009-09-03 Thread Nick Middleweek
or the IDataRender Class?... I mean is it a coincidence that the property is called "data" and the event is called "data"Change? Or does the IDataRenderer dictate that there must be this [Bindable("dataChange")] meta tag in order for the data getter and setter to functi

[flexcoders] What does [Bindable("dataChange")] do?

2009-09-03 Thread Nick Middleweek
nd variable declarations and before the first function. Can anyone shed some light on it please? Cheers, Nick

Re: [Spam] [Spam] Re: [flexcoders] click and doubleClick on the same button?

2009-09-02 Thread Nick Middleweek
Hi George, This post was part of research into fixing a problem with Event bubbling... See thread: "Stopping double-click of a button 'bubble' to the datagrid row". Cheers, Nick 2009/9/2 grg_blls > > > Hi! > > May I ask why you need a MouseEvent.CLICK an

[flexcoders] Re: Stopping double-click of a button 'bubble' to the datagrid row

2009-09-01 Thread Nick Middleweek
Beau + Alex! Thank you! I've used event.stopPropagation(); //This is exactly what I needed! Chers, Nick 2009/9/1 Nick Middleweek > Hello, > > I've got an advancedDataGrid (AvDG) and the first column has an item > renderer which has a button on it. The butt

[flexcoders] Stopping double-click of a button 'bubble' to the datagrid row

2009-09-01 Thread Nick Middleweek
n the button in hope that it would handle it and therefore stop the row event from being fired but ti didn't work. Now I think i need to capture the doubleClick cancel event in the button object and prevent it from bubbling from the button to the AvDG. Where do I set event.cancelable = true? Thanks, Nick

Re: [Spam] Re: [flexcoders] click and doubleClick on the same button?

2009-09-01 Thread Nick Middleweek
Beau, Thanks for this code... I've got another question though, I'll post it as another thread... Cheers, Nick 2009/9/1 Beau Scott > > > The only way I've been able to accomplish this is to use a timer to filter > out a double click, and then ferry the original

[flexcoders] click and doubleClick on the same button?

2009-09-01 Thread Nick Middleweek
Hello, I'm having difficulty setting both a click and a doubleClick event on the same button. Is it possible? Thanks, Nick

Re: [Spam] Re: [flexcoders] Creating a flex library project that referencesa remote SVN path?

2009-08-28 Thread Nick Middleweek
Ah nice one Jeffry... Thanks for your reply... Linked driectories... Ok, I'll look into those. Some guy at work has just said download teh SVN, do an export to clean the SVN files and use the SWC in my main flex projects lib folder... That sound about right? Cheers, Nick 2009/8/28 J

[flexcoders] Creating a flex library project that references a remote SVN path?

2009-08-28 Thread Nick Middleweek
I'm using FB3 with Subclipse installed if that helps. Cheers, Nick

Re: [Spam] RE: [Spam] RE: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-27 Thread Nick Middleweek
Tracy/ Beau... Thanks for your replies...That's helped me understand how things work a bit more... I'm going to try it though! haha :-) Cheers, Nick 2009/8/27 Tracy Spratt > > > Flex procedural code is essentially single threaded. The loop will stop > all other p

Re: [Spam] RE: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-27 Thread Nick Middleweek
Why won't it work? I can't see why it wouldn't... I'm still learning Flex so perhaps I've overlooked something. I do agree, it is bad coding but I can't see why it wouldn't work. The boolAlertContinue variable is in affect acting like semaphore... Chee

Re: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-26 Thread Nick Middleweek
loop... do { //Not sure if there's a 'dummy' command to prevent CPU hog so we'll just check the time... var dtmNow:Date = new Date(); } while (boolAlertContinue); or you could probably initialise your myAlert:int = null and in the do ... while loop check for (myAler

Re: [Spam] Re: [Spam] Re: [Spam] Re: [flexcoders] Will Flex Builder be updatedwith 3.4 SDK release?

2009-08-26 Thread Nick Middleweek
ok , thanks... 2009/8/26 Richard Rodseth > > > Nick > > He's using the command line and invoking the MXML compiler with the > -version option. In FlexBuilder, you can right-click on a project, and > choose Properties, then choose Flex Compiler. > > > On

Re: [Spam] Re: [Spam] Re: [flexcoders] Will Flex Builder be updated with 3.4 SDK release?

2009-08-26 Thread Nick Middleweek
Hi Tom, Thanks for your reply but what does this mean:* # /opt/flex/bin/mxmlc -version* Cheers, Nick 2009/8/26 Tom Chiverton > > > On Wednesday 26 Aug 2009, Nick Middleweek wrote: > > How do I determine what version of the SDK I'm using? > > Surprised you couldn&

Re: [Spam] Re: [flexcoders] Will Flex Builder be updated with 3.4 SDK release?

2009-08-26 Thread Nick Middleweek
Hi, How do I determine what version of the SDK I'm using? Thanks, Nick 2009/8/26 Tom Chiverton > > > > http://feedproxy.google.com/~r/flexteam/~3/N5sOTl8SLUE/flex_sdk_34_released_and_secur.html<http://feedproxy.google.com/%7Er/flexteam/%7E3/N5sOTl8SLUE/flex_sdk_34_rel

[flexcoders] Re: Grouping issue on Advanced DataGrid

2009-08-26 Thread Nick Middleweek
Answer = use GroupingField.groupingFunction :-) Does anyone know what the groupingObjectFunction does? What is the returned Object for? Thanks, Nick 2009/8/26 Nick Middleweek > Hello, > > I've got an advanced datagrid with 5 columns, The number_Group column has > data like

[flexcoders] Grouping issue on Advanced DataGrid

2009-08-26 Thread Nick Middleweek
to show 1-10, 11-20. Perhaps I can intercept this and modify it? Thanks, Nick

[flexcoders] Re: How to loop XML data and adding another attribute?

2009-08-25 Thread Nick Middleweek
I've done it :-) for each(var address:XML in dataXML.children()){ var buildingNumber = address.attribute("Building_Number").toString().replace(/[^0-9]/g, ""); addre...@building_numeric = buildingNumber; } Is there a better or quicker way to do this? Thank

[flexcoders] How to loop XML data and adding another attribute?

2009-08-25 Thread Nick Middleweek
ly easy but can someone give me a pointer please... I'm getting a tad lost... Thank you, Nick

Re: [Spam] RE: [flexcoders] Resizeble columns that don't shrink theneighbouring column

2009-08-25 Thread Nick Middleweek
e.com/aharui > > > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Nick Middleweek > *Sent:* Tuesday, August 25, 2009 12:28 PM > *To:* flexcoders@yahoogroups.com > *Subject:* [flexcoders] Resizeble columns that don't shrink the > neighbouri

[flexcoders] Resizeble columns that don't shrink the neighbouring column

2009-08-25 Thread Nick Middleweek
Hello, I'm working on someone elses code, it's an Advanced Data Grid that has resizeable columns. When column A is made bigger, this makes Column B smaller which is annoying the users. Is there a way to prevent this or do I have to write my code to support this feature? Thanks in advance, Nick

Re: [Spam] [flexcoders] Pb with URLVariables

2009-08-21 Thread Nick Middleweek
variables.currency_code = cur; variables.currency_codes = "EUR"; //debugged here What are you experiencing? Nick 2009/8/21 christophe_jacquelin > > > Hello, > > The following code is not working: > > var variables:URLVariables = new URLVariables(); >

Re: [Spam] RE: [flexcoders] 5 Datagrids ontop of each other, one resizes andthe ones below shift up or down?

2009-08-20 Thread Nick Middleweek
te" styleName="plain"> 2009/8/20 Nick Middleweek > Alex, > > Awesome, that makes total sense now! of cou

[flexcoders] How do I test if the DG row is a grouping row?

2009-08-20 Thread Nick Middleweek
rride function for "listData" and I've tried testing the .hasChildren inside the set function but it's always false even when the grouping function is expanded - perhaps I've misunderstood it. What's the best approach to test this? Thanks in advance! Nick

Re: [Spam] Re: [Spam] [flexcoders] ImageSnapshot without scroll bars?

2009-08-20 Thread Nick Middleweek
hat's produced... Nick 2009/8/20 flexjunker > > > Hey Nick, yeah ImageSnapShot is a class that basically takes a UI component > and spits out the bitmapData, which you can encode as a jpg / png. > > > http://www.cs.vu.nl/~eliens/im/assets/flex3/langref/mx/graphics/ImageSn

Re: [Spam] RE: [flexcoders] 5 Datagrids ontop of each other, one resizes andthe ones below shift up or down?

2009-08-20 Thread Nick Middleweek
loper > > Adobe Systems Inc. <http://www.adobe.com/> > > Blog: http://blogs.adobe.com/aharui > > > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Nick Middleweek > *Sent:* Wednesday, August 19, 2009 1:20 PM > *To:* flex

Re: [Spam] [flexcoders] ImageSnapshot without scroll bars?

2009-08-19 Thread Nick Middleweek
Sorry for the newbie question but what do you mean image snapshot?... Do you mean take a screen shot of a certain area in flex and save it as a JPEG or something? Cheers, Nick 2009/8/19 flexjunker > > > Anyone know of how to avoid the scroll bars in an imagesnapshot of a &g

[flexcoders] 5 Datagrids ontop of each other, one resizes and the ones below shift up or down?

2009-08-19 Thread Nick Middleweek
onent help me? Or do I write it all myself using maths and do the resizing using top and bottom properties of the DG's? Thanks for any help... Nick

Re: [Spam] Re: [flexcoders] Fields grouping?

2009-08-19 Thread Nick Middleweek
ill it be a 'hack' - checking for TAB on keypress events and applying focus to the desired field... bit messy I guess and prone to breakage. Am I wrong? Hope so... Also, where is the Shapes area in FB3? Are there drawing tools or do i have to draw within a specific container? Chee

[flexcoders] Fields grouping?

2009-08-18 Thread Nick Middleweek
I draw it? Is there a line tool? Thanks! :) Nick

Re: [flexcoders] Foaming at the mouth for Flex4... or Flashbuilder4

2009-05-19 Thread Nick Collins
Hey if you're using the Flex SDK, you still ARE a Flex developer. On Tue, May 19, 2009 at 10:21 AM, djhatrick wrote: > > > BTW, I am going to keep calling myself a flex developer (pays better)... > > When's the beta coming out? June when? > > thanks, > Patrick > > >

Re: [flexcoders] Pure MVC vs Cairgorm

2009-05-19 Thread Nick Collins
Depends on your requirements. Personally between those two, I lean more toward PureMVC, although the ideal would be to simply roll your own "framework" based on only the design patterns you need. On Tue, May 19, 2009 at 12:44 PM, mhbmarcos wrote: > > > Hi!!!, which is the best option? > > >

[flexcoders] Re: Flex to excel sheet report

2009-05-18 Thread Nick
t into a class for reuse. Shoot me an email and I will send you the files if you would like. Good luck! Nick --- In flexcoders@yahoogroups.com, Vikram Singh wrote: > > I need to create excel report from flex data. > When clicked on "Excel Button", particular data fetched fr

[flexcoders] Re: Autofilter Datagrid

2009-04-29 Thread Nick
ntrols. Does anyone have any good examples of this filter as you type functionality? Thanks again. Nick --- In flexcoders@yahoogroups.com, Pedro Sena wrote: > > I would not recommend to the things this way. > > I'm thinking that you want to filter the data as user type

[flexcoders] Autofilter Datagrid

2009-04-29 Thread Nick
accomplished before I just can't seem to find the best solution. Any thoughts on the best way to approach this? Thanks. Nick

[flexcoders] Re: Flex with IBM Websphere / DB2

2009-04-29 Thread Nick
to Flex. I am assuming here that the Linux server does have access to DB2 and Websphere. At the very least you will probably want to get a LAMP stack running on the Linux machine. Just some thoughts. Nick --- In flexcoders@yahoogroups.com, "byte.sensei" wrote: > > I

Re: [flexcoders] Flex Builder on Linux been scrapped ?

2009-04-28 Thread Nick Collins
Well, if you really want to develop Flex on Linux, you could always check out IntelliJ IDEA 8.1, which I'm told has pretty nice Flex development features. Just missing the design view and profiler, really... On Tue, Apr 28, 2009 at 10:55 AM, Johannes Nel wrote: > > > :( > > > On Tue, Apr 28, 2009

Re: [flexcoders] Re: Flex Developer Needed (Fulltime)

2009-04-15 Thread Nick Collins
Hehe, well, everything costs more in Chicago... we do have a 10.25% sales tax On Wed, Apr 15, 2009 at 2:06 PM, flexaustin wrote: > > > Senior guys in Austin are 90k. > > --- In flexcoders@yahoogroups.com, Nick Collins wrote: >> >> Good luck getting a senior level

Re: [flexcoders] Flex Developer Needed (Fulltime)

2009-04-15 Thread Nick Collins
Good luck getting a senior level Flex dev for that pay range. Most senior level guys I know are getting between 100-120k. Granted, that's in Chicago, not the middle of Utah. On Tue, Apr 14, 2009 at 2:37 PM, joshbuhler wrote: > > > Rain in American Fork, Utah is currently looking for a (preferably

Re: [flexcoders] SDK 3.3 and flash.* imports

2009-04-03 Thread Nick Collins
I had something similar happen where I could no longer access the Graphics class. I couldn't use code completion with it, and in fact I couldn't even compile anything that was using it. Reinstalling Flex Builder then adding in the newer SDK did fix the problem though. On Fri, Apr 3, 2009 at 2:13 P

[flexcoders] Re: RemoteObject in AS3 Project

2009-04-01 Thread Nick
the RemoteObject path I was going down. Any draw back to this approach that I may be missing? Thanks! Nick --- In flexcoders@yahoogroups.com, "Nick" wrote: > > Hello all! > > I am trying to use the RemoteObject class along with ResultEvent etc in an > AS3

[flexcoders] RemoteObject in AS3 Project

2009-04-01 Thread Nick
results suggests it is not BUT I could of sworn I have seen some people doing this a while back. Am I mistaken? I appreciate it!! Thanks. Nick

Re: [flexcoders] Here's a Flash plugin for iPhone

2009-03-26 Thread Nick Collins
It does required a jailbroken iPhone, as it says you need to use Cydia or the Installer app to install it. Also of note is it is not a Flash Player for the iPhone, but rather allows the iPhone to play FLVs. On Thu, Mar 26, 2009 at 8:24 AM, Tom Chiverton wrote: > On Thursday 26 Mar 2009, oneworld9

Re: [flexcoders] Where I can download Flex 4 Builder trial version?

2009-03-24 Thread Nick Collins
You can't. They did distribute an early preview release at MAX on the DVD, but it's not available for download yet. http://labs.adobe.com/technologies/gumbo/ On Tue, Mar 24, 2009 at 11:02 AM, markflex2007 wrote: > Thanks > > Mark > >

Re: [flexcoders] Smallest filesize of a swf in Flex 3 is larger then Flex 2?

2009-03-17 Thread Nick Collins
have a smaller size all compiled into a single SWF, and loading bits of the application via modules, which are only loaded as needed. Nick On Mon, Mar 16, 2009 at 8:55 PM, Dan wrote: > Hi Flexcoders, > > It is always claimed that by caching framework.swz of Flex 3, the swf size > is a

Re: [flexcoders] Re: Gumbo / Flex 4 release date estimate?

2009-02-21 Thread Nick Collins
I'm pretty sure that was more of an Alpha, or very, very early beta... from the information on the opensource.adobe.com it seems they're still hashing out core features such as the FX namespace for Gumbo components, etc. so it's nowhere near production ready. On Sat, Feb 21, 2009 at 1:10 PM, Vivia

Re: [flexcoders] Code Generator for Flex/Java/Hibernate/Spring/Maven/BlazeDS

2009-01-17 Thread Nick Collins
I believe much of this functionality is already available for free in Clear Data Builder from Farata Systems. On Fri, Jan 16, 2009 at 11:16 PM, Kelly wrote: > Hi > > I am building a code generator for building enterprise Java/Flex apps. > > It is model driven and can generate more then 50% of a F

<    1   2   3   4   5   6   >