Re: [flexcoders] Returning 'this' from an overridden method?

2007-02-07 Thread shaun
for, but you might find one of these is an acceptable alternative. HTH. cheers, - shaun David_Stafford wrote: Please pardon this simple-minded question from an AS3 novice. My base class often returns 'this' from methods which makes it convenient to write code like: camera.move( 10, 12

Re: [flexcoders] is it a Flex compiler bug?

2007-02-22 Thread shaun
in the compiler: 1. Compiler attempts to inherit static declarations 2. As a result of (1), the compiler gets confused between the static property and a class type Cheers, Mark I'm new to Flex and AS so its possible Ive missed the point.. regards, - shaun

Re: [flexcoders] Help needed: Dynamic update XML for Tree

2007-02-22 Thread shaun
to use to change the label of the first node. I've tried a lot of different combo's, and can't seem to get the right syntax. Is there a way to update this in 1 statement? Sure! var userName:String = shaun; [EMAIL PROTECTED] = userName; You could probably qualify that if you wanted to, probably

Re: [flexcoders] dataProvider question

2007-02-22 Thread shaun
it starts with a one rather than a lowercase L) to listData, which you can read easily. I dont think that one character is going to slow you down much in typing speed but makes the code much more readable. HTH. cheerio, - shaun

Re: [flexcoders] Re: Not able to generate GUID

2007-03-05 Thread shaun
. You can also implement a strategy on the server side so your client app never gets a real database PK. cheers, shaun

Re: [flexcoders] Flex Player 9's (Flex 2) Memory Usage - What's Normal?

2007-03-05 Thread shaun
the display list. cheers, - shaun

Re: [flexcoders] Flex Player 9's (Flex 2) Memory Usage - What's Normal?

2007-03-05 Thread shaun
ok. I would have called removeChild so thats no worries. thanks, - shaun

Re: [flexcoders] E4X expression: return node by matching text() value

2007-03-07 Thread shaun
='q' item id='1' burger /item item id='2' fries /item /order //trace([EMAIL PROTECTED]); // WORKS, Output: 1 trace(asdf: +myXML.item.(text()==fries)[EMAIL PROTECTED] ); } cheerio, - shaun

Re: [flexcoders] Modules at 360Flex conference

2007-03-07 Thread shaun
are the outstanding issues? cheers, - shaun

Re: [flexcoders] Re: DB access in Apollo

2007-03-10 Thread shaun
come in handy, but I can live without it. cheers, shaun

Re: [flexcoders] XML to AS3 object

2007-03-13 Thread shaun
done any actual testing though, my data set wont get much larger than a 100-200 items, so havent bothered. cheerio, shaun

Re: [flexcoders] Binding - Fire a function on variable change (noob)

2007-03-14 Thread shaun
=NumberDisplay text=Your current balance is {numberToDisplay} / /mx:Panel I want the formatNumberDisplay() function to fire when numberToDisplay changes. This change already fires the changeNumberToDisplay event, how do I capture that here? Cheers Si HTH. regards, shaun

Re: [flexcoders] Need help with validation in a DataGrid

2007-03-14 Thread shaun
Lex wrote: Nobody knows? :( Should be straightforward to all the Flexmasters out there! :) I'm only guessing, but you might need to have, renderIsEditor=true Dunno. mx:DataGridColumn headerText=price textAlign=right editable=true itemRenderer={cf1} / - shaun

[flexcoders] Key Events not raised from Modules

2007-03-21 Thread Shaun
is not triggered, indicating that the module is not raising the event to the parent application. Is this just the way it is, or am I missing something? Thanks, shaun

[flexcoders] Re: Using Check Box as Item Renderer allows CLICKING

2007-03-21 Thread Shaun
You might try setting the mouseChildren property of your renderer to false. --- In flexcoders@yahoogroups.com, boy_trike [EMAIL PROTECTED] wrote: I am displaying a logical field in a grid using an checkbox item renderer.I do NOT want to allow the user to check the box, but that seems

[flexcoders] Load Tree Icon at Runtime

2007-03-22 Thread Shaun
out what to replace with. I've tried various ways of using an Image control, but the tree expects a type of Class and I can't seem to make that happen. Any thoughts? Thanks, Shaun

[flexcoders] Re: Load Tree Icon at Runtime

2007-03-22 Thread Shaun
be handled the same way... shaun --- In flexcoders@yahoogroups.com, Shaun [EMAIL PROTECTED] wrote: I'm trying to load a tree icon at runtime (don't want to embed because it will have already been cached by the browser before the flex app). I have a function like: private function treeIcon

[flexcoders] Re: Load Tree Icon at Runtime

2007-03-22 Thread Shaun
was already cached when the user initially visited my site, then your answer will work perfectly. thanks again, shaun --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 22 Mar 2007, Shaun wrote: Is this just not possible? I would think you could set

[flexcoders] Re: Load Tree Icon at Runtime

2007-03-22 Thread Shaun
to be externally loaded. You can steal most of the code from the FlexStore examples for the TileList renderer. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shaun Sent: Thursday, March 22, 2007 10:09 AM To: flexcoders

[flexcoders] Re: Two-Way Binding Solutions?

2007-03-26 Thread Shaun
can you not just create a new ContactVO with your form control values when the user goes to save their changes, and, depending on the result from the server, either set your form controls back to the model (you'll have to assign them manually as binding won't fire if the values don't change)

[flexcoders] Re: Parse Excel in Flex Applications

2007-03-27 Thread Shaun
Check out the following post. The user will have to copy and paste (I don't think there's any other way of doing it), but it works. http://mannu.livejournal.com/348299.html Shaun --- In flexcoders@yahoogroups.com, Pay Hub [EMAIL PROTECTED] wrote: Hi All, For our enterprise application

[flexcoders] Re: Modules not positioning children correctly

2007-03-27 Thread Shaun
Try setting percentWidth and percentHeight to 100 in your module tag. This is a known issue posted on the 2.0.1 release notes page, and setting percentWidth works around it. Shaun --- In flexcoders@yahoogroups.com, Mark Doberenz [EMAIL PROTECTED] wrote: Well, in case anyone else has

[flexcoders] Re: Modules not positioning children correctly

2007-03-27 Thread Shaun
Here is the link to the release notes. Check out the known issues section as there are some other useful tidbits in there that tripped me up until I read through it. http://www.adobe.com/support/documentation/en/flex/2/releasenotes_flex 201_sdk.html Shaun --- In flexcoders@yahoogroups.com

[flexcoders] Re: textInput for passwords

2007-03-27 Thread Shaun
displayAsPassword = true shaun --- In flexcoders@yahoogroups.com, Chad Gray [EMAIL PROTECTED] wrote: How do you get a text input to hide the characters you type in like you do with input type=password in HTML?

[flexcoders] Re: Connect and Retrieve from MS SQL Server 2005

2007-03-28 Thread Shaun
If you want to use .NET, check out the open-source Fluorine project: http://www.thesilentgroup.com/fluorine/fluorine/index.html --- In flexcoders@yahoogroups.com, hugocorept [EMAIL PROTECTED] wrote: Hello all, In your opnion, witch is the simple/best way to connect a MSSQLServer 2005.

[flexcoders] Variable width ListItems

2007-03-28 Thread Shaun
I have a horizontal list with items that can have variable widths. However, all items end up with the same width as the first item in the list. How do I allow variable width list items? Is there something similar to the datagrid's variableRowHeight setting that I'm missing? Thanks, Shaun

[flexcoders] Re: Variable width ListItems

2007-03-28 Thread Shaun
will if I have to of course. Thanks, Shaun --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Unfortunately, this is not supported. Do you have tons of items? If it is only a few, I'd use HBox From: flexcoders@yahoogroups.com [mailto

[flexcoders] Re: Center alignment problem

2007-03-28 Thread Shaun
. Shaun --- In flexcoders@yahoogroups.com, cardinalflexjeremy [EMAIL PROTECTED] wrote: I have a viewstack, that contains two sub components. One (the first) is simply a small login panel. (its actually just a canvas with text fields and a header etc inside it). The second is what is shown

[flexcoders] Re: Is anybody else getting duplicate messages?

2007-03-28 Thread Shaun
Yeah, I'm see the same thing. Rather annoying indeed. Yahoo must be having some problems --- In flexcoders@yahoogroups.com, Paul DeCoursey [EMAIL PROTECTED] wrote: I've been getting 2 sometimes 3 copies of many messages. It's quite annoying and this is on top of an already high

[flexcoders] Re: Variable width ListItems

2007-03-28 Thread Shaun
I see. I think then that in this case the repeater will be fine. Thanks Alex and Mark. ~Shaun --- In flexcoders@yahoogroups.com, Mark Doberenz [EMAIL PROTECTED] wrote: You put a repeater inside a hbox and set dataprovider of the repeater to what you're using on the list box. It's

[flexcoders] Re: 4 Color Gradient

2007-03-29 Thread Shaun
I don't know about that one, but you could check out the simplegradientborder class on Dirk Eisman's blog (scroll to bottom): http://www.richinternet.de/blog/index.cfm?mode=monthmonth=11year=2006 It can easily be modified to handle more than 2 colors. ~Shaun

[flexcoders] Make a component 'modal'

2007-03-30 Thread Shaun
on a particular component that is already in the displaylist. Thoughts on the best way to acheive this? Thanks, Shaun

[flexcoders] Re: Make a component 'modal'

2007-03-30 Thread Shaun
states, just change the state. Either way, that should accomplish what you are describing. HTH, Clint On 30 Mar 2007 07:36:17 -0700, Shaun [EMAIL PROTECTED] wrote: Is there any way to make a component modal/hilight it? I would like to be able to gray out (like when a popup is shown

[flexcoders] Re: Make a component 'modal'

2007-03-30 Thread Shaun
somewhere else or performing a conflicting action. Also, it would focus the user on what portion of the screen is relevant at the moment. Shaun --- In flexcoders@yahoogroups.com, Merrill, Jason [EMAIL PROTECTED] wrote: I don't know as much about Flex architecture yet - just the basics, but I

[flexcoders] Re: Make a component 'modal'

2007-03-30 Thread Shaun
Hmm, now that's an idea... a little bit of a hack, but I'm ok with simplicity over elegance to start with. I think I'll head down that path unless someone throws out another (more) brilliant solution :) Thanks for the help guys. Shaun --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL

[flexcoders] Re: Make a component 'modal'

2007-03-30 Thread Shaun
? What if I want to set focus to an arbitrary box that contains several components - i.e. something arbitrary that I can't create a new instance of? Is there some way to make a popup display an existing displayobject that I'm not aware of? Thanks again! Shaun --- In flexcoders@yahoogroups.com

[flexcoders] Re: Make a component 'modal'

2007-03-30 Thread Shaun
I actually tried that one, but from what I can tell it's not in the opensource part of the framework. Shaun --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Maybe investigate how the popups create the blur efffect? Tracy

[flexcoders] Re: Synchronized access to ArrayCollection ?

2007-03-30 Thread Shaun
Someone can correct me if I'm wrong, but Flex/Flash is single- threaded. I don't believe you will have any problems with synchronization in your scenario. Synchronization is only an issue on the backend server. Shaun --- In flexcoders@yahoogroups.com, kumaran_sb [EMAIL PROTECTED] wrote

[flexcoders] Re: Make a component 'modal'

2007-03-30 Thread Shaun
Tracy, I apparently didn't dig deep enough... I found the code that does it int the framework and am currently working my way through it. Shaun --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Maybe investigate how the popups create the blur efffect? Tracy

[flexcoders] Re: Make a component 'modal'

2007-03-30 Thread Shaun
I'll do the same if (err.. I mean when) I figure it out. Shaun --- In flexcoders@yahoogroups.com, Sean [EMAIL PROTECTED] wrote: Shaun, I'm working on this problem as well for an application that I'm developing. I'll be sure to post here if I come up with something ... but there seems

[flexcoders] Re: Make a component 'modal'

2007-04-03 Thread Shaun
Is this the kind of thing you might be able to share? Shaun --- In flexcoders@yahoogroups.com, Sean [EMAIL PROTECTED] wrote: So, returning to this issue ... I just ended up going through the PopUpManagerImpl code, looking at the createModalWindow() and showModalWindow() methods

[flexcoders] Re: Connect and Retrieve from MS SQL Server 2005

2007-04-03 Thread Shaun
Yes, Fluorine uses ASP.NET. So you can use any CLR compatible language. (Fluorine itself is written in C#) It also has an installer that creates a web site template project and comes with samples. I highly recommend it. Shaun --- In flexcoders@yahoogroups.com, hugocorept [EMAIL

[flexcoders] Re: getChildren

2007-04-03 Thread Shaun
If your object is not typed, you can do this: if (obj.getChildren) { obj.getChildren(); } This will not work if the object is typed (1069 error). Also, if it has a property by the name of getChildren, I think you'll get a 1006. Otherwise, it seems to work just fine. Shaun

[flexcoders] Re: Connect and Retrieve from MS SQL Server 2005

2007-04-05 Thread Shaun
#), though I believe you can use more than just those. You can do a google search for Microsoft CLR and find out plenty of additional information. Shaun --- In flexcoders@yahoogroups.com, hugocorept [EMAIL PROTECTED] wrote: Why i donĀ“t choose ASP.NET ? Because i havent any experecience

[flexcoders] Optimal Linking

2007-04-09 Thread Shaun
that are used by two or more of my modules... what is the best/easiest way of accomplishing this? I'm hoping FB3 will have much better support for managing linking (and for generating optimal libraries/RSLs). Shaun

[flexcoders] Re: Optimal Linking

2007-04-09 Thread Shaun
to apps if multiple modules use classes that aren't located in the RSL Thanks for the help. I'm trying to wrap my head around all of the linking options and I want to make sure I'm headed down the right path. Shaun --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I have

[flexcoders] Re: Optimal Linking

2007-04-09 Thread Shaun
PROTECTED] On Behalf Of Shaun Sent: Monday, April 09, 2007 11:23 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Optimal Linking Thanks for the response Alex. I look forward to seeing what the FB3 team cooks up! Was also wondering if you could confirm something for me. Would

[flexcoders] RSL Creation Help

2007-04-09 Thread Shaun
a small flex app on the home page and a larger one that they log into later. I would like to create an RSL containing everything the small one uses (both mx and custom classes/components), as I know all of them are also used in the larger one. Suggestions? Thanks shaun

Re: [flexcoders] for in loop dosen't work on custom class

2007-04-16 Thread shaun
. Ie) you can do the following: var item:ItemVO = new ItemVO(); item.property_that_doesnt_exist = a value; or var s:String = item.property_that_doesnt_exist; cheers, - shaun

[flexcoders] FlexBuilder bug?

2007-04-17 Thread Shaun
has an RSL, the other doesn't. Has anyone else experienced this? Solved it? Thanks, Shaun

[flexcoders] RSL Caching Problem

2007-04-17 Thread Shaun
to force a cache server to get a new version of my RSL? Am I just missing something, and this is not my problem? Thanks for any help, shaun

[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-17 Thread Shaun
-platform, and on and on... Shaun --- In flexcoders@yahoogroups.com, softwarecat [EMAIL PROTECTED] wrote: If you go and see the sample of the technology on the Silverlight website, it is not as smooth and elegent as the ones Ely has created. I think it will have it's audience, but IMHO I think

[flexcoders] Re: RSL Caching Problem

2007-04-17 Thread Shaun
In case anyone else runs into this problem... it turns out the machine I was coding on had Google Web Accelerator installed on it. This apparently was providing me with the old file every time despite the fact that it had changed. Shaun --- In flexcoders@yahoogroups.com, Shaun [EMAIL

[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-18 Thread Shaun
will be 100% windows (common for intranet/backoffice apps). When you don't know that everyone will be running Windows...Apollo to the rescue. Shaun --- In flexcoders@yahoogroups.com, Ralph Hauwert [EMAIL PROTECTED] wrote: ) Ability to leverage .NET developer pool -Who will have to do JS

Re: [flexcoders] boolean not casting ok from string

2007-04-18 Thread shaun
) is false b7 (unassigned null, undef) is false b8 (undef) is false b9 (as not a boolean ie, null) is false HTH, shaun

[flexcoders] Need help creating an image from a source control

2007-04-19 Thread Shaun
to look at, etc. would be greatly appreciated. Thanks, Shaun

[flexcoders] Re: Need help creating an image from a source control

2007-04-20 Thread Shaun
of the source image to pass into the BitmapData.draw() function? Any ideas? Thanks again, shaun --- In flexcoders@yahoogroups.com, Bjorn Schultheiss [EMAIL PROTECTED] wrote: On the click handler for my image i've got something like var dragInitiator:Canvas

[flexcoders] Re: Need help creating an image from a source control

2007-04-20 Thread Shaun
BitmapData.copyPixels(). For future reference, it allows you to copy a portion of a bitmap specified by a rectangle - exactly what I need. Thanks for the help, Bjorn. --- In flexcoders@yahoogroups.com, Shaun [EMAIL PROTECTED] wrote: Thanks Bjorn, I think I'm headed in the right direction

[flexcoders] How to measure text?

2007-04-23 Thread Shaun
of a string of text that accounts for the format/font of the text? Thanks, shaun

[flexcoders] Re: How to measure text?

2007-04-23 Thread Shaun
Thanks Daniel, that did help me out. Not as simple as getTextExtent, but it works. Shaun --- In flexcoders@yahoogroups.com, Daniel Freiman [EMAIL PROTECTED] wrote: mx.controls.Label truncates text if it doesn't fit. While this is not what you're looking

[flexcoders] Re: How to measure text?

2007-04-23 Thread Shaun
the textField's font size while the textField's measuredHeight is greater than the fixed height of my text control. When the text fits, I set the size of my text control. Works like a charm... so far :) Shaun --- In flexcoders@yahoogroups.com, Doug Lowder [EMAIL PROTECTED] wrote: I'm currently

Re: [flexcoders] Dynamic UI requires view-aware Commands, no?

2007-05-01 Thread shaun
if there is better way. HTH. shaun

Re: [flexcoders] Require urgent help

2007-05-11 Thread shaun
applications. Please help me as soon as possible. Waiting for your replies... Perhaps this nice page will help: http://www.betterthanflex.com/ or this one, http://weblogs.macromedia.com/pent/archives/2006/07/writing_flex_2.cfm HTH. - shaun

[flexcoders] Data Paging a la Matt Chotin for Flex 2.1

2007-05-23 Thread Shaun
on large datasets and will likely go down that path, but I'm in a time cruch and so the hope of saving some time, I am curious as to whether anyone has already ported his samples to 2.1 as they are from way back in 04. Or, if anyone has a better option, I'm all ears. Thanks, Shaun Matt's post

Re: {Disarmed} [flexcoders] Data Paging a la Matt Chotin for Flex 2.1

2007-05-23 Thread Shaun
of the data. With 150k records, I need the on demand paging. Shaun --- In flexcoders@yahoogroups.com, Jurgen Beck [EMAIL PROTECTED] wrote: Hey Shaun, You may want to check out the FlexBox components list. There are two components, one for a paged DataGrid, the other one for a paged

Re: {Disarmed} [flexcoders] Data Paging a la Matt Chotin for Flex 2.1

2007-05-23 Thread Shaun
Aww, what about us non-FDS guys, Matt? :-( Protecting the FDS revenue stream I take it? Actually, I would love to use FDS, but unfortunately this app requires a .NET backend and doesn't have the budget for FDS or WebOrb anyway. Oh well, time to start coding... :-) Shaun --- In flexcoders

Re: {Disarmed} RE: {Disarmed} [flexcoders] Data Paging a la Matt Chotin for Flex 2.1

2007-05-23 Thread Shaun
Thanks for the direction, Matt and Jurgen. I now have a plan of attack for tomorrow. Shaun --- In flexcoders@yahoogroups.com, Jurgen Beck [EMAIL PROTECTED] wrote: Additionally, if you're doing this in .NET you could let your class library handle the paging and simply just move the current

Re: [flexcoders] Re: Firefox - FlashTracer on Mac: still looking for flashlog.txt

2007-05-24 Thread shaun
/Users/flex/Library/Preferences/Macromedia/Flash\ Player/Logs/flashlog.txt' cheers, - shaun

Re: [flexcoders] still missing flashlog.txt on OS-X

2007-05-28 Thread shaun
your dirs and file have the correct permissions. cheers, - shaun -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the web, go

Re: [flexcoders] Regular expression

2007-06-03 Thread shaun
rid_b80 wrote: Hi all, In actionscript 3, is there any function that are able to check if the regular expression entered has the right syntax or not. Sure! Its called a regular expression! boom boom! (sorry, i just couldn't resist :) I'm trying to make a page that allows user to define

Re: [flexcoders] Problem with Event listeners

2007-08-26 Thread shaun
); cheers, - shaun

[flexcoders] Flex 3 Runtime Error

2007-08-27 Thread Shaun
I'm trying to get a flex 2 app I wrote working as an AIR app, but I'm getting an error that appears to occur when the styles are changed for buttons in my app: I'm hoping someone else has run into this issue (and resolved it :)) or have an idea of what might be causing it. Many thanks, Shaun

[flexcoders] Re: Flex 3 Runtime Error

2007-08-27 Thread Shaun
says source not found, even if I set the source path. Is there a reason for this? Thanks again, Shaun P.S. It appears that using the backward compatibility flag resolves this issue for me, but I can't use it due to the bug with datagridheaders and the backward compatibility flag

Re: [flexcoders] PrintDataGrid problem

2007-08-30 Thread shaun
it will(might) push the last bit of the grid off the page (I noticed that you have sizeToPage set to true and are setting printCanvas.height to printJob.height). HTH. shaun

Re: [flexcoders] more httpservice / ruby form post fun

2007-08-30 Thread shaun
grimmwerks wrote: mx:HTTPService id=temp url=http://localhost:3000/signup/ Hint: Dont call your variable temp! cheers, shaun -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders

Re: [flexcoders] Componentes positioning

2007-08-30 Thread shaun
should look into the MouseEvent. regards, - shaun

Re: [flexcoders] ObjectTranslator

2007-08-31 Thread shaun
; } } There are probably better ways to do this but I've had reasonable success to-date with the approach described above. The generated code really makes it easy when things are constantly changing during development. regards, - shaun

Re: [flexcoders] Re: Chart itemRenderers - how to get origional data values?

2007-09-06 Thread shaun
Hi Barry, barry.beattie wrote: rats! didn't work _label.text = _chartItem.item[BarSeries(_chartItem.element).xField]; Call to a possibly undefined method BarSeries var bs:BarSeries = _chartItem.element as BarSeries; if (bs) ... cheers, shaun

Re: [flexcoders] Phantom ComboBox warning

2007-09-07 Thread shaun
? I think it might be a style sheet declaration for ComboBox. regards, - shaun

Re: [flexcoders] Re: Chart itemRenderers - how to get origional data values?

2007-09-06 Thread shaun
, _chartItem = ChartItem(value); // else set the value var bs:BarSeries = _chartItem.element as BarSeries; if (bs){ _label.text = _chartItem.item[bs.xField]; } else { _label.text = No BS; // ;) } HTH, - shaun

Re: [flexcoders] building up the url for httpservice

2007-09-09 Thread shaun
grimmwerks wrote: Ok this is stupid. Since we've got an app that might be moving around, I was going to either pass the rootURL in flash vars or strip it from the main application.url. Well did all that but how do I set it in the httpservice's url with a variable AND a string:

Re: [flexcoders] Re: goto flex command?

2007-09-11 Thread shaun
djdyland wrote: --- In flexcoders@yahoogroups.com, djdyland [EMAIL PROTECTED] wrote: How do you jump to a section of a page or panel kinda like how you can in html.. like Go To Top of Page? Thanks Dylan Anyone?? maybe I'm not explaining myself right.. I have a canvas that

Re: [flexcoders] Re: A common question with no answer yet - Flex Debugger

2007-09-13 Thread shaun
this. Especially after an app has been integrated into an existing system (requiring a session id and other parameters being passed into the flex app). I started using this yesterday and was overjoyed. :) Thank again. - shaun

Re: [flexcoders] Re: Is it possible to query a Flash SWF for its images / symbol list ?

2007-09-13 Thread shaun
I just saw this on the MXNA flex feed, not sure if it helps in your situation or not. http://wildwinter.blogspot.com/2007/09/how-to-load-external-assets-from-as3.html helihobby wrote: Anyone ??? :( --- In flexcoders@yahoogroups.com, helihobby [EMAIL PROTECTED] wrote: Hello all, I

Re: [flexcoders] Re: Is it possible to query a Flash SWF for its images / symbol list ?

2007-09-13 Thread shaun
, - shaun

Re: [flexcoders] Internet Explorer and Flex issues

2007-09-20 Thread shaun
it was a cache header in the response that needs to be set or unset, I dont remember the exact details. cheers, - shaun

Re: [flexcoders] Re: Code behind - class extend mxml vs. mxml extend class

2007-09-20 Thread shaun
is one of the most powerful features of Flex. Eh ? We use data binding with code behind all the time. It's fine. Which code behind approach do you use Tom? The extends approach or the source include? cheers, - shaun -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders

Re: [flexcoders] Where to start learning Flex

2007-09-25 Thread shaun
neugi wrote: Hi, where to start learning flex2? are there good books, or tutorials online? thx Download flexbuilder, read the developer guide and do the tutorials. cheers, - shaun

Re: [flexcoders] e4x question

2007-09-25 Thread shaun
namespace = ns; trace(+xml.status.presence.(@aaa::lang=='en')); // Away } cheers, - shaun

Re: [flexcoders] Where to start learning Flex

2007-09-25 Thread shaun
[EMAIL PROTECTED] wrote: What do you mean by the tutorials ? Oh sorry, I should have been clearer. I mean the lessons that are part of flexbuilder. :) shaun wrote: neugi wrote: Hi, where to start learning flex2? are there good books, or tutorials online? thx Download flexbuilder

Re: [flexcoders] e4x question

2007-09-26 Thread shaun
in the XML document, however I received an error. If I had read the stacktrace message more carefully I'd have seen it was caused by me calling the namespace variable xml AND the XML variable xml. Whoops! :) cheers, - shaun

Re: [flexcoders] Re: Very strange runtime behavior - if logic doesn't work?????

2007-09-26 Thread shaun
and it will go into the true block. includeBase of false and it will go into the false block. I find this very very hard to beleive. I'm betting you changed the way your exercising the code (ie) by passing in an explicit false or true to the function. [snip] HTH. - shaun

Re: [flexcoders] Re: Very strange runtime behavior - if logic doesn't work?????

2007-09-28 Thread shaun
in a flex superclass? cheers, - shaun

[flexcoders] Flex3 Beta 1 vs Beta 2 SWF file sizes - Debug code not removed?

2007-10-13 Thread Shaun
. This happens to be the same size as the -debug.swf I get from Beta 1, which makes me think that FB3 Beta 2 does not remove the debug code from the swf it exports. Has anyone else seen this issue? Is there some new setting I need to be using? A workaround? Thanks, Shaun _ capitalHcoder http

Re: [flexcoders] Cairngorm vs PureMVC

2007-10-22 Thread shaun
object graph. The Objects are not just simple VOs(DTOs) but have state, behaviour, event listeners and handlers. cheers, - shaun

Re: [flexcoders] Cairngorm vs PureMVC

2007-10-22 Thread shaun
it should be IMO. It seems like the Command, which is meant to be a Controller? according to the quote above (although we have a Front Controller aswell! Whats up with that picture?) is playing the role that the model should be. Seems bogus to me.. :) cheers, - shaun -- Flexcoders Mailing

Re: [flexcoders] Cairngorm vs PureMVC

2007-10-22 Thread shaun
Bjorn Schultheiss wrote: Hey Shaun, I'm not trying to play the Cairngorm Don here, but thats how i understood it. No, I didn't think that. I'm not either. I was just trying to get the converstion going, as I have had doubts about some of the things I have done with it todate. I'm

Re: [flexcoders] Cairngorm vs PureMVC

2007-10-23 Thread shaun
the rules when I use CG. cheers, - shaun -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the web, go to: http

Re: [flexcoders] Re: Croping area

2007-10-24 Thread shaun
fills as holes since it's faster and gives you more flexibility on the look. Anz --- any possibility we can take a look at your version of the picnic-style crop tool? cheers, - shaun

[flexcoders] Foreign Language Characters

2007-10-25 Thread Shaun
I am looking for recommendations on how to most easily enable my users to enter foreign language characters into my Flex TextInput, TextArea, and and RichText controls. (easiest on the users that is) Many Thanks, Shaun

  1   2   >