Re: [flexcoders] Data Grid with dynamic columns ignoring % width or right style.

2009-01-12 Thread Wesley Acheson
On Mon, Jan 12, 2009 at 7:45 PM, Manish Jethani wrote: > On Sun, Jan 11, 2009 at 3:51 AM, wesley.acheson > wrote: > > > I've a problem with the DataGrid ignoring the % width, while using > > Canvas as the parent. When I dynamically create columns it stretches > > to beyond the origional area. T

Re: [flexcoders] Flex 3 Dialog Boxes ...

2009-01-12 Thread Wesley Acheson
Looks like an issue with Java SWT to me. Do you have a recient JDK installed? On Sat, Jan 10, 2009 at 8:22 AM, SJF wrote: > Hello All, > > I'm using Flex 3 and working on pure actionscript projects (i.e: File > New > > ActionScript Project). > > I often have issues with numerous dialog boxes a

Re: [flexcoders] Stupid Question - Flex width and height

2009-01-12 Thread Wesley Acheson
On Mon, Jan 12, 2009 at 9:48 PM, Wally Kolcz wrote: > This is probably a dumb question but... > > I am trying to do a Flex app primarily in AS. In the constuctor I am trying > to create an ApplicationControlBar that is the same as this: > > > I am having a problem with trying to create the same

Re: [flexcoders] Re: Expanding size of panel, and its contained objects.

2009-01-12 Thread Wesley Acheson
For all the children try using percentage widths and heights, I don't really know about the font of things. Maybe you could increase the font size by giving everything a font size attached to a variable. Or try using CSS to benefit from Cascading rules? Regards, Wesley Acheson On Mon, J

[flexcoders] Disableing FlexBuilders CSS editor.

2009-01-13 Thread Wesley Acheson
although I think that that may be impossible with the way the Adobe folders are linked. Has anyone got any suggestions/run into this problem. Regards, Wesley Acheson

Re: [flexcoders] Re: Disableing FlexBuilders CSS editor.

2009-01-13 Thread Wesley Acheson
other bug however. Regards, Wesley Acheson On Tue, Jan 13, 2009 at 3:08 PM, valdhor wrote: > Check your preferences... > > Window->Preferences->General->Editors->File Associations > > > --- In flexcoders@yahoogroups.com, "Wesley Acheson" > wrote: &

Re: [flexcoders] Flex to Ajax/Javascript

2009-01-13 Thread Wesley Acheson
That works fine I've even used it to log objects in firebug. HOWEVER be aware that if you have a recursive object. I.e. an object that refers to itself or has a child that refers to the parent. So you may not be able to pass some of the flex internal objects, as they do this. You'll eventually g

Re: [flexcoders] When to use the include directive?

2009-01-13 Thread Wesley Acheson
I don't think that forcing people to follow OOP is necessarly the best idea. I'd imagine that a lot of the people who use flex come from more of a web presentation background then any other background and don't necessarily know the best practices. The thing about the include statement is that it

Re: [flexcoders] Re: Comparing Array and Object, not expected results

2009-01-13 Thread Wesley Acheson
I agreen but I think that === will give you the behaviour you expect. On Tue, Jan 13, 2009 at 5:33 PM, andrii_olefirenko wrote: > This happens because of implicit type conversion (in this case it's > more than just type conversation but it makes sense here). notice that > adding another element t

Re: [flexcoders] Binding and the Model

2009-01-13 Thread Wesley Acheson
I think you can add something like. {model.duration + model.start} Regards, Wesley On Tue, Jan 13, 2009 at 8:37 PM, stldvd wrote: > Hi guys, > > I'm trying to concatenate a series of string literals and bound variables > into a model > variable called 'summary', which will be displayed in a '

Re: [flexcoders] Re: Binding and the Model

2009-01-13 Thread Wesley Acheson
quote on this monitor so I deemed it confusing. but if you have a model object. Why not add summary as a field to that object? Regards, Wesley Acheson --- In flexcoders@yahoogroups.com, "Wesley Acheson" > wrote: > > > > I think you can add something like. > >

Re: [flexcoders] Data Grid with dynamic columns ignoring % width or right style.

2009-01-14 Thread Wesley Acheson
On Mon, Jan 12, 2009 at 10:49 PM, Wesley Acheson wrote: > > > On Mon, Jan 12, 2009 at 7:45 PM, Manish Jethani > wrote: >> >> On Sun, Jan 11, 2009 at 3:51 AM, wesley.acheson >> wrote: >> >> > I've a problem with the DataGrid ignoring the % wid

Re: [flexcoders] BlazeDS server environment configuration

2009-01-14 Thread Wesley Acheson
Really thats more of a java question then a flex one. for using mysql and tomcat try http://www.opensourcetutorials.com/tutorials/Databases/MySQL/tomcat-and-mysql/page2.html

Re: [flexcoders] Re: BlazeDS server environment configuration

2009-01-14 Thread Wesley Acheson
> So I still consider any additional hint towards a good book on > BlazeDS, covering both some examplary applications as well as > pointing to differences to say JBOSS for instance. This as I want to > go a bit deeper into the subject and understand better.. some aspects. > Its pretty much the sam

Re: [flexcoders] Data Grid with dynamic columns ignoring % width or right style.

2009-01-15 Thread Wesley Acheson
>>> Okay sorry If I wasn't clear enough about it basically the data grid >>> stretches, but not enough to accomidate all columns. Nor even enough to >>> fill the container. Setting a width of 0 makes the datagrid remember its >>> constraint layout. Some other intresting factors in my test case

[flexcoders] How to stop null on delayed execution.

2009-03-10 Thread Wesley Acheson
t text. How do I avoid this? Should I just just listen to the property change event on set text? Imagine now that I had multiple different children. Is there a method I can override such as commitProperties so that all this will be done in the same place. I'm sorry if this isn't too clear what I asking. Wesley Acheson.

Re: [flexcoders] Re: How to stop null on delayed execution.

2009-03-10 Thread Wesley Acheson
nyone know of a way to not auto archive treads that I've been involved with? Regards, Wesley Acheson On Tue, Mar 10, 2009 at 5:40 PM, Tim Hoff wrote: > > Override createChildren() and add the child there; instead of trying to > re-invent the component lifecycle by using IN

Re: [flexcoders] Re: How to stop null on delayed execution.

2009-03-10 Thread Wesley Acheson
ponent > out there; for an example. > > -TH > > --- In flexcoders@yahoogroups.com, Wesley Acheson > wrote: > > > > Thanks I thought that always initialising either in the constructor or > in > > the variable declaration was a bit hacky. It is what I

Re: [flexcoders] Re: How to stop null on delayed execution.

2009-03-10 Thread Wesley Acheson
On Tue, Mar 10, 2009 at 7:44 PM, sunild99 wrote: > > This page in the Flex Developer's Guide was very helpful in explaining how > to override the Flex component life cycle methods. I also recommend reading > the pages before/after this page as well: > > http://livedocs.adobe.com/flex/3/html/

Re: [flexcoders] Re: How to stop null on delayed execution.

2009-03-10 Thread Wesley Acheson
ue, Mar 10, 2009 at 8:05 PM, valdhor wrote: > Why? > > Standard OOP practice is to initialize variables in the constructor (That's > what it's there for). > > > --- In flexcoders@yahoogroups.com, Wesley Acheson > wrote: > > > > Thanks I thought that

[flexcoders] Prevent a custom controll appearing in the Design view.

2009-03-12 Thread Wesley Acheson
How do I prevent some custom controls appearing in the design view. For example when doing ItemRenderers or extending DataGridColumn or other such like. There is no reason for the controls to appear in the custom components box as they don't make sense to add to a layout. Regards, W

Re: [flexcoders] Question about binding and circular reference

2009-03-16 Thread Wesley Acheson
ch is much better IMHO. Regards, Wesley Acheson On Wed, Mar 11, 2009 at 3:42 PM, Yves Riel wrote: > The problem you are experiencing is caused by the fact that when the > player executes the line [ mf.foo = "bar" ], your text input is not even > created in your form yet. So,

Re: [flexcoders] Question about binding and circular reference

2009-03-17 Thread Wesley Acheson
ost in the thread. I'd like to prevent the reverse binding occuring until the control is fully initialisaed. Regards, Wesley Acheson On Tue, Mar 17, 2009 at 3:35 AM, Josh McDonald wrote: > I'm good with bindings, what's your specific problem? I didn't see earlier &g

Re: [flexcoders] Question about binding and circular reference

2009-03-17 Thread Wesley Acheson
On Tue, Mar 17, 2009 at 2:38 PM, Josh McDonald wrote: > I re-read the original post, and it makes sense. I always use change > events rather than bindings on the way back from components, which is what > I'd recommend rather than two-way bindings. > Yes that is what I was trying to give as an ans

Re: [flexcoders] Re: converting a Java object into a chart dataprovider

2009-03-18 Thread Wesley Acheson
Assuming Blaze or LiveCycle to create an object that is rendered as an actionscript object with subobjects use a map. Maps are serialised as simple objects. On Wed, Mar 18, 2009 at 3:47 PM, netdeep wrote: > > In the previous implementation, I would send an ArrayList of custom Objects > containi

Re: [flexcoders] Running multiple copies of FlexBuilder Help window - is it possible?

2009-03-19 Thread Wesley Acheson
You can find the documents in the zip file, On my computer the location is C:\Program Files\Adobe\Flex Builder 3 Plug-in\eclipse\plugins\com.adobe.flexbuilder.help_3.0.205647 but I guess that depends on the build path. Just extract the docs.zip somewhere. 2009/3/18 Libby > Hi Peoples. Many time

[flexcoders] ADG Memory leak.

2009-03-20 Thread Wesley Acheson
I've wasted most of the day trying to figure out why my application was leaking memory. I was dynamically adding and removing columns from the AdvancedDataGrid. I noticed that it was slowing down a lot. I naturally assumed that it was my custom item renderer and even after reading Alex's blog en

Re: [flexcoders] MySQL and Flex

2009-03-22 Thread Wesley Acheson
I could be wrong but as far as I know you need a server technology to talk to the database. You then need to communicate with your server technology. Is this for an Air app or one to be deployed to a browser? On Sun, Mar 22, 2009 at 10:14 AM, christophe_jacquelin < christophe_jacque...@yahoo.fr>

Re: [flexcoders] Java beans to AS class with ANT integration

2009-03-22 Thread Wesley Acheson
Is it difficult to move to graniteds if blazeDS is already utilised? I'd really like to generate my remote objects (both ways) if this is possible then I'd like to switch but we are currently nearing the end of our development cycle and I can't afford to change technology if it mean rewriting subs

Re: [flexcoders] A ModuleLoader issue

2009-03-22 Thread Wesley Acheson
On Wed, Mar 18, 2009 at 12:36 PM, grg_blls wrote: > Hi all, > > Finally that client is logged out when finished. > > Now if he does a new login as a customer, "module1" loads and offers again > the customers options, but if he tries the same option (which leads to > loading "module1a"), an error

Re: [flexcoders] Re: Using ItemRenderer with IHierarchicalData DataProvider

2009-03-23 Thread Wesley Acheson
Sorry I'm not really understanding. Are you saing that you want all children nodes automatically expanded?- On Mon, Mar 23, 2009 at 8:55 AM, yossi.baram wrote: > Guys, > There mast be somebody knows how to preserve hierarchy and to allow the > TreeGrid to look the same with parents and children

Re: [flexcoders] ADG Memory leak.

2009-03-23 Thread Wesley Acheson
countering. I've > been working on trying to encapsulate our logic so I can post it here as I > know a lot of other folks have run into the same problems and could probably > use the help. > > Best, > Adrian > > Wesley Acheson wrote: > > I've wasted most

Re: [flexcoders] Re: How to separate Flex code and server code in different servevr?

2009-03-23 Thread Wesley Acheson
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14213&sliceId=1basically it needs to go on the web root of the server the data is served from. 2009/3/23 markflex2007 > > What is the syntax for crossdomain.xml ? > > where I have to save the file? webroot? > > Thanks > > Mark > > > >

Re: [flexcoders] How much actionscript 3 do you need to know in order to develop in Flex 3

2009-03-23 Thread Wesley Acheson
Best off thinking of it like the following. Your entire presentation "could" be in mxml but the logic needs to be in AS. However you can mix the AS in mxml files via the script tag. To do anything non trivial requires AS in my opinion. The answer really depends on your definiation of seriously.

[flexcoders] Change DataGrid Columns

2009-03-24 Thread Wesley Acheson
I'm hoping that someone would be able to help me with this. Is it possible in theory to subclass DataGrid to add and remove columns in such a way that not all the columns are invalidated? Basically I've got an ItemRenderer which is quite expensive, Changing all the item renderers doesn't make sen

Re: [flexcoders] Re: Dynamic Accordion

2009-03-24 Thread Wesley Acheson
Okay just knocked this together very quickly. There may be errors but it should be enough to get you started. http://www.adobe.com/2006/mxml"; layout="absolute" creationComplete="doCreationComplete()"> On Tue, Mar 24, 2009 at 4:08 PM, timgerr wrote: > So I have been reading actionscr

[flexcoders] Changelog. - upgrading flex.

2009-03-24 Thread Wesley Acheson
Is there a change log regaring the changes between 3.0, 3.2, 3.3 etc. I haven't upgraded to 3.3. Should it just be fine to go up a minor version number? Is it true that gumbo doesn't have scroll bars? Our apps have extensive scrolling but mostly in datagrids and vboxes and the ilk. Regards, We

Re: [flexcoders] Change DataGrid Columns

2009-03-24 Thread Wesley Acheson
> > > > Alex Harui > > Flex SDK Developer > > Adobe Systems Inc. <http://www.adobe.com/> > > Blog: http://blogs.adobe.com/aharui > > > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Wesley Acheson > *Sent

Re: [flexcoders] How to show alert without buttons so it cannot be closed

2009-03-25 Thread Wesley Acheson
You could just use popupManager to popup a panel or canvas or similar. I don't think that it should close on escape. On Wed, Mar 25, 2009 at 3:11 PM, rondo_smith wrote: > Hello, > > I need to show an alert box (or something similar) which has no buttons and > it also must not allow the user to

Re: [flexcoders] Changelog. - upgrading flex.

2009-03-25 Thread Wesley Acheson
The scrollbars think I read here. http://butterfliesandbugs.wordpress.com/2009/03/13/how-to-add-a-scrollbar-to-a-gumbo-application/ On Wed, Mar 25, 2009 at 3:05 PM, Tom Chiverton wrote: > On Tuesday 24 Mar 2009, Wesley Acheson wrote: > > I haven't upgraded to 3.3. Should it just

Re: [flexcoders] What is a fair price - Opinions Please.

2009-03-26 Thread Wesley Acheson
This all seems reasonable. Its more or less the metric I would use too. It will probably sound daunting to a private client though. If you want to break into doing this on a regular basis. You might want to charge considerably less especially as you said it was your first private work. Its in y

[flexcoders] ViewStack uninitialise

2009-03-27 Thread Wesley Acheson
associated with it and its childern) when the component was hidden? Then if viewStack.selectedIndex was set back to the same component it should re-initialise. Is my understanding of how this works correct? Regards, Wesley Acheson

Re: [flexcoders] Start Column Chart Y-axiz from non-zero value

2009-03-27 Thread Wesley Acheson
piate. It depends though on what the client wants. Regards, Wesley Acheson On Thu, Mar 26, 2009 at 6:59 PM, GeeTee wrote: > > Hi everyone, > > I was making a stacked column chart (in which a user can see the data > between a 'Start Date' and an 'End Date' u

Re: [flexcoders] Hashmap vs Datagrid

2009-03-27 Thread Wesley Acheson
A hashmap is a map which will be converted to a dynamic object. see http://livedocs.adobe.com/blazeds/1/blazeds_devguide/help.html?content=serialize_data_3.html 2009/3/27 senthilkumarirtt > i need to retrive hashmap return from java class to datagrid in mxml. > > > > ---

Re: [flexcoders] Combobox and prompt

2009-03-27 Thread Wesley Acheson
Try setting an empty string as the first item in the data provider. I should imagine that should work fine. 2009/3/27 markgoldin_2000 > I am trying to use a blank Prompt with my combobox in order to have a blank > item on the top. But after selecting a non blank item the blank one is not > in t

Re: [flexcoders] Re: Separate browser sessions in AIR

2009-03-30 Thread Wesley Acheson
cookies are used (cookies with an expiry time) than yes Amy's observation is completly correct. SAM - you should be able to destroy the cookies. Also try not setting an expiry time or TTL on the cookies. It may help. (depends on how your spanwing windows I think) Regards, Wesley Acheson

Re: [flexcoders] Re: How to make some rows in ADG invisible

2009-03-30 Thread Wesley Acheson
Could you not just use a filter function on the dataprovider. I think thats simpler than hiding rows. I could be wrong. Regards, Wesley Acheson On Mon, Mar 30, 2009 at 10:15 AM, yossi.baram wrote: > sorry, I ment > If I have 100 rows, and paging of 10, > and the user chooses page

Re: [flexcoders] Send an Email, and Email in Form

2009-04-01 Thread Wesley Acheson
On Wed, Apr 1, 2009 at 7:18 PM, christophe_jacquelin < christophe_jacque...@yahoo.fr> wrote: > Hello, > > How to send an Email from a flex application to confirm a registration ? http://www.esnips.com/web/SMTPMailer > > > How to verify that the text in an INPUT is corresponding to an email ? >

Re: [flexcoders] Flash player fails to install on vista!

2009-04-01 Thread Wesley Acheson
Its still a binary component therfore just as much a risk as an activex one. 2009/4/1 Cato Paus > Hi all, this is veard, I have a clean install(Windows Vista Ultimate) on my > laptop and IExploer do not want to install the flash player (ActiveX) ! > switching to FireFox, up yours MS! > > > >

Re: [flexcoders] Enumeration???

2009-04-02 Thread Wesley Acheson
"; var properties:String = ""; for (var name:Object in obj) { properties=properties + name + ", "; } Alert.show(properties); // Should return "firstName, lastName, age," properties="" for each(var value:Object in obj) { properties=properties + va

[flexcoders] ComboBox SelectedItem why not inspectable.

2009-04-03 Thread Wesley Acheson
Hi, Why isn't the ComboBox.selectedItem available in MXML? It would be better then selectedIndex in many cases. Regards, Wesley Acheson

Re: [flexcoders] ComboBox SelectedItem why not inspectable.

2009-04-03 Thread Wesley Acheson
metadata is > set to none. I assume that hides it from code hinting. > > However, despite that you should be able to use it w/ no problems in MXML > just as you would w/ ActionScript. > > Wesley Acheson wrote: > > Hi, > > Why isn't the ComboBox.selectedItem avail

Re: [flexcoders] ComboBox SelectedItem why not inspectable.

2009-04-03 Thread Wesley Acheson
lopment services available > ------ > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Wesley Acheson > *Sent:* Friday, April 03, 2009 10:48 AM > *To:* flexcoders@yahoogroups.com > *Subject:* Re: [flexcoders] ComboBo

Re: [flexcoders] Custom Item Renderer

2009-04-03 Thread Wesley Acheson
I assume you've seen something like this http://www.adobe.com/devnet/flex/quickstart/using_item_renderers/ Is there anything specifically that you have a problem with? Regards, Wes On Fri, Apr 3, 2009 at 8:11 AM, v.ponvino wrote: > Hi, > I am using AdvancedDataGrid control it is getting da

Re: [flexcoders] Uploading file over HTTPS produces Error #2038: File I/O Error.

2009-04-13 Thread Wesley Acheson
I don't know if its related but the security certificate for www.elitehealth.com is invalid (belongs to dev.elitehealth.com). On Sun, Apr 12, 2009 at 8:03 PM, simonjohnriley wrote: > > We're uploading and downloading medical files using flex, so it has to be > over HTTPS. I've got the upload work

[flexcoders] Correct way to notify flex of an event that occurs in a java webapp.

2009-05-20 Thread Wesley Acheson
esponsible for exceptions to do with running out of permgen space in JBoss. Is there no interface to call to send a message. Thanks, Wesley Acheson

Re: [flexcoders] Problem with Flex tree and arraycollection

2009-07-24 Thread Wesley Acheson
Does UID work like hashcode in java? On Thu, Jul 23, 2009 at 1:03 AM, Alex Harui wrote: > > > If there are duplicate items (items with the same UID) it may not work > correctly > > > > Alex Harui > > Flex SDK Developer > > Adobe Systems Inc. > > Blog: http://blogs.adob

Re: [flexcoders] Flex Architecture Question

2009-07-24 Thread Wesley Acheson
ample applications. Regards, Wesley Acheson On Thu, Jul 23, 2009 at 8:23 PM, guess what wrote: > > I am struggling to get the Best Architecture. Can anyone suggest me some > direction . > Its a very simple Web App , which needs some data grid and filters on the > page . > > > Fr

Re: [flexcoders] Re: FileReference Upload

2009-07-24 Thread Wesley Acheson
bsite. This will probably write a session cookie. Go back to your flex application and then try the test thats failing. If it works then its something server side thats requiring a session. Regards, Wesley Acheson On Fri, Jul 24, 2009 at 9:52 PM, [p e r c e p t i c o n] < percepti...@gmail.co

Re: [flexcoders] Re: FileReference Upload

2009-07-24 Thread Wesley Acheson
gt; > thanks > > percy > > > On Fri, Jul 24, 2009 at 1:04 PM, Wesley Acheson > wrote: > >> >> >> If the file is uploaded and the data is sent. Then its something on the >> application servers side. It sounds like you require a session to write >>

Re: [flexcoders] Flex Architecture Question

2009-07-24 Thread Wesley Acheson
ex can connect to any > backend including Java using SOAP Webservices or REST Webservices which do > not require BlazeDS or anything similar. > > Wesley Acheson wrote: > > > > I think you may be a bit confused. Flex won't talk directly to a Java > server application

Re: [flexcoders] Re: How to Export data from an AdvancedDataGrid to excel

2009-07-26 Thread Wesley Acheson
Or as another work arround sent the values to the clipboard tab delimited. This requires the user post to flex. On Sun, Jul 26, 2009 at 1:11 PM, mitchgrrt wrote: > Two separate problems: how to get the data out of the AdvancedDataGrid and > how to get it into Excel. > > Getting the data: if yo

Re: [flexcoders] Re: this group isn't very good [1 Attachment]

2009-08-03 Thread Wesley Acheson
you can always add a search plugin to firefox. http://labnol.blogspot.com/2006/09/learn-to-create-firefox-search-plugin.html or to IE http://www.microsoft.com/windows/ie/searchguide/en-en/default.mspx# or probably any other browser that supports open search http://a9.com/-/spec/opensearch/1.1/"

Re: [flexcoders] Re: How to make variables persist across application

2009-08-07 Thread Wesley Acheson
Static properties are properties bound to a class instance. This is usually the way I would do it. you create a class login info as normal then inside you can put public static var userId:String; This can then be accessed anywhere in the application by LoginInfo.userId as stated by Gordon. The

[flexcoders] TabNavigator changing from MXML to actionscript.

2009-08-12 Thread Wesley Acheson
Hi I've an application already mostly written. *Background*: This application uses several custom components that extend or contain TabNavigators. A requrirement which I've missed is that if the user doesn't have permission to view a tab then the tab doesn't appear in the tab navigators. Howeve

[flexcoders] This mailing list vs the forum.

2009-08-12 Thread Wesley Acheson
I saw a mail a while ago about new Adobe forums. Those of you who use both which do you perfer flexcoders or the Adobe forums? I've an impression that the community is pretty strong here. ] Please only answer If you use both. Its not a real opinion to get the opinion of someone who only uses the

Re: [flexcoders] Re: Instantiation of State Objects

2009-08-12 Thread Wesley Acheson
Maybe you could use the activate event instead of the creation complete event? On Tue, Aug 11, 2009 at 2:23 AM, Geoffrey wrote: > I'm getting a clearer picture of why I'm seeing state-related issue. > > In my setup, state B is a custom component. This component has event > listeners for creatio

Re: [flexcoders] TabNavigator changing from MXML to actionscript.

2009-08-12 Thread Wesley Acheson
Lariat Services, development services available > -- > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Wesley Acheson > *Sent:* Wednesday, August 12, 2009 11:06 AM > *To:* flexcoders > *Subject:* [flexcoders] Tab

Re: [flexcoders] Execute events while loop is iterating - possible?

2009-08-12 Thread Wesley Acheson
Short answer no. I'm not sure If thats a good thing in your use case or not. Basically flex is single threaded so the events only get processed after the loop finishes. If you need it to be otherwise you have to break out of the loop. The other problem with doing a 10 iterations is that you

Re: [flexcoders] Embedding Emmentaler Fonts

2009-08-12 Thread Wesley Acheson
Maybe the font only has bold. You need a seperate embedding for bold fonts. On Wed, Aug 12, 2009 at 9:51 PM, Tim Sawyer wrote: > Hi, > > I'm trying to embed the Emmentaler font from lilypond (www.lilypond.org) > in order to be able to output musical notation with Flex. > > If I embed the font li

Re: [flexcoders] Re: How to use XML file as dataProvider for

2009-08-12 Thread Wesley Acheson
If you want to load it from the server its easiest to make a http request. If you don't need to change it at runtime. You can embed an xml easy enough. anyway to load one see http://livedocs.adobe.com/flex/3/html/help.html?content=13_Working_with_XML_11.html regards wes On Wed, Aug 12, 2009 at

Re: [flexcoders] Re: TabNavigator changing from MXML to actionscript.

2009-08-12 Thread Wesley Acheson
"; > > Good luck! > > --- In flexcoders@yahoogroups.com, Wesley Acheson > wrote: > > > > Hi I've an application already mostly written. > > > > *Background*: > > > > This application uses several custom components that extend or contain > > Ta

Re: [flexcoders] Re: TabNavigator changing from MXML to actionscript.

2009-08-13 Thread Wesley Acheson
propriate viewstate based on user permissions. > Similar to your init() code, it might look something like: > > if (Permissions.hasPermission("restrictedTab") > { > currentState = "stateWithRestrictedTab"; > > Good luck! > > --- In flexcoders@yaho

Re: [flexcoders] This mailing list vs the forum.

2009-08-13 Thread Wesley Acheson
I don't think I'm going to bother joining the forums then. On Thu, Aug 13, 2009 at 5:38 PM, Tom Chiverton wrote: > > > On Thursday 13 Aug 2009, Gregor Kiddie wrote: > > It does have to be said, I use the Mailing list functionality of the > > Adobe forums rather than visiting the forum directly..

Re: [flexcoders] Re: This mailing list vs the forum.

2009-08-14 Thread Wesley Acheson
> > > The Adobe Web Site has "contact us" links that are for things like buying > their products but has no way at all to report something like a broken web > page or a broken link. It seemed to me like Adobe is a company that makes > great technology but thinks they a

Re: [flexcoders] simple RSS reader can't read with one item

2009-08-15 Thread Wesley Acheson
I think its because it doesn't know if its an item or a collection try the following. If its not this I can't help. var f_Array:ArrayCollection = event.result.RDF.item as ArrayCollection; if (f_Array == null) { f_Array = new ArrayCollection([event.result.RDF.item]); } myDataGrid.dataPro

Re: [flexcoders] Flex and NT Login

2009-08-15 Thread Wesley Acheson
I think this is LDAP authentication. If your using server technology look at what that sever supports http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&productId=2&postId=7122 On Fri, Aug 14, 2009 at 9:01 PM, ballofmagic wrote: > Do you know how to create an NT Authentica

Re: [flexcoders] Html and Google rank

2009-08-15 Thread Wesley Acheson
I probably woudn't use that file in production. You can easily copy out areas that you want. Google Rank I don't know. Get many incomming links. On Sat, Aug 15, 2009 at 10:04 PM, christophe_jacquelin < christophe_jacque...@yahoo.fr> wrote: > Hello, > > How to set the balise Title,Description,

[flexcoders] Content area of a container.

2009-08-15 Thread Wesley Acheson
How do I find the content area of a container? For example a panel. This as far as I can tell is different to its height, width, explicitHeight, explicitWidth are all the height and width of the panel not of its content area.

Re: [flexcoders] Hierarchical Tree Data

2009-08-15 Thread Wesley Acheson
I usually do this at the server level. I collect all my data from the database and then I put it into objects. (I use java) Then I use Xstream to convert to XML if required. However usually I just use a remote object and bypass the XML stage. Regards, Wesley Acheson On Fri, Aug 14, 2009 at 10

Re: [flexcoders] Content area of a container.

2009-08-16 Thread Wesley Acheson
ewMetrics > > > > Alex Harui > > Flex SDK Developer > > Adobe Systems Inc. <http://www.adobe.com/> > > Blog: http://blogs.adobe.com/aharui > > > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Wesley Acheson &g

Re: [flexcoders] Hierarchical Tree Data

2009-08-16 Thread Wesley Acheson
l all levels are fulfilled? > > Cheers, > Baz > > > > > On Sat, Aug 15, 2009 at 2:23 PM, Wesley Acheson > wrote: > >> >> >> I usually do this at the server level. I collect all my data from the >> database and then I put it into objects. (I use ja

Re: [flexcoders] Hierarchical Tree Data

2009-08-16 Thread Wesley Acheson
s, send that entire strucutre off > to flex through remote object (amf). What do you get in flex, a nested > ArrayCollection of objects, with a nested ArrayCollection of objects, > indefinitely until all levels are fulfilled? > > Cheers, > Baz > > > > > On Sat, Aug

Re: [flexcoders] Content area of a container.

2009-08-16 Thread Wesley Acheson
Never mind I found it. On Sun, Aug 16, 2009 at 9:19 AM, Wesley Acheson wrote: > Thanks thats what I needed. > > Looking at viewmetrics it says it factors the scrollbar if the policy is > on. Is there a way to factor the scrollbar if the scroll policy is auto? > This is a subcla

[flexcoders] Why doesn't move effect occur?

2009-08-17 Thread Wesley Acheson
HI, I've got an application I'm trying to implement a custom layout. I'm trying to get move and resize effects to work on the children but it doesn't seem to work. Have I missed something obvious? Also... When I'm extending Canvas am I changing the correct method to recalculate the size and pos

Re: [flexcoders] Application with WebCam

2009-08-17 Thread Wesley Acheson
Isn't this a bit vague? Googleing for "flex webcam" came up with several results. What is it you need exactly. To fetch video from the webcam? On Mon, Aug 17, 2009 at 7:35 PM, christophe_jacquelin < christophe_jacque...@yahoo.fr> wrote: > Hello, > > I am searching an example of a flex applicatio

Re: [flexcoders] Swf in a html

2009-08-18 Thread Wesley Acheson
http://www.w3schools.com/flash/flash_inhtml.asp On Tue, Aug 18, 2009 at 6:25 PM, christophe_jacquelin < christophe_jacque...@yahoo.fr> wrote: > Hello, > > How to put a swf carrousel made with Flex, in the middle of a html page ? > > Thank you, > Christophe, > > > > > -

Re: [flexcoders] Fields grouping?

2009-08-18 Thread Wesley Acheson
On Tue, Aug 18, 2009 at 7:07 PM, Nick Middleweek wrote: > > > hi guys, > > Is there a component that allows us to group fields/ objects together? I > can't find a built in object, I'm after something visual that i can use to > group fields, such as all the address fields together and another group

Re: [flexcoders] ReferenceError #1069 property not found on native class

2009-08-18 Thread Wesley Acheson
All I can think of is check the verson of flash player but I don't know if it could cause that problem. On Tue, Aug 18, 2009 at 7:17 PM, dhchang77 wrote: > Hi folks, > > Any chance anyone here has run into the following? > > ReferenceError: Error #1069: Property reencrypt not found on > flash.da

[flexcoders] Re: Flex UI and NT Login

2009-08-19 Thread Wesley Acheson
Whats your server technology? On Wed, Aug 19, 2009 at 6:58 AM, ballofmagic wrote: > Thank you! I tried to download the project.zip to work with the code and I > received a decompression failure. Any other recommendations? > > Would it be difficult to use the wizard login then set up a remote obj

Re: [flexcoders] Capturing URL Requests in AIR application (HTML/HTMLLoader/HTMLHost)

2009-08-19 Thread Wesley Acheson
Is it not the responseHeaders that you need? on the following object http://livedocs.adobe.com/flex/3/langref/flash/events/HTTPStatusEvent.html Regards, Wesley Acheson On Wed, Aug 19, 2009 at 12:54 PM, Barry Evans wrote: > Hi, > > This post is quite lengthy, but I really need to e

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

2009-08-19 Thread Wesley Acheson
eypress 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? > > > Cheers for

Re: [flexcoders] VBox constrains - A simple question :-p

2009-08-19 Thread Wesley Acheson
try setting the minWidth also. On Wed, Aug 19, 2009 at 6:29 PM, fotis.chatzinikos < fotis.chatzini...@gmail.com> wrote: > xmlns:mx="http://www.adobe.com/2006/mxml"; >width="640" >height="480" >> > horizontalAlign="left" verticalGap="5" id="debugWinVB_ID"> >

Re: [flexcoders] VBox constrains - A simple question :-p

2009-08-20 Thread Wesley Acheson
the box getting bigger than the > application instead of staying @ bottom 10. > > If i set the height or maxHeight it works as advertised. > > I am not trying to just fix it though.. I am trying to understand/know why > it does not work.. > > Thanks, for the reply though > &g

Re: [flexcoders] VBox constrains - A simple question :-p

2009-08-20 Thread Wesley Acheson
Probably the documentation could be clearer if it does mean this. Personally I think thats misleading and contradictory. Regards, Wesley Acheson On Thu, Aug 20, 2009 at 11:19 AM, Fotis Chatzinikos < fotis.chatzini...@gmail.com> wrote: > > > Thanks! Setting the minimum height

Re: [flexcoders] how to wait for more than one httpserivice/remoteobject result to finish?

2009-08-20 Thread Wesley Acheson
private var list1Result:ResultEvent; private var list2Result:ResultEvent; private function handleList1Result(event:ResultEvent):void { list1Result = event; if(list2Result) { handleResults(list1Result, list2Result); } } private function handleList2Result(event:ResultEvent):void { lis

Re: [flexcoders] Help trying to sort data provider for DataGrid

2009-08-20 Thread Wesley Acheson
I've not experienced it yet my self but the problem is probably the dates. Flex does string comparison on the dates not object comparison. (even if they were dates which they're probably strings by the time they get into your application. I haven't verified the accuracy of said post but at a glanc

Re: [flexcoders] matrix math help

2009-08-21 Thread Wesley Acheson
Just FYI we can't view that without a username / password On Fri, Aug 21, 2009 at 7:03 PM, grimmwerks wrote: > > > I'm building a sort of image zoomer/viewer -- you've seen it all before -- > one large image that scales with a smaller image showing the full image. As > you zoom into the large im

Re: [flexcoders] Navigating to a jsp while flex movie is loaded

2009-08-22 Thread Wesley Acheson
Redirecting the request when responding a to a flex call will only redirect the result of that call not the page the browser is on. You need to send back information to flex and have it do the redirection On Fri, Aug 21, 2009 at 8:19 AM, Ram Mohan wrote: > > Hi all, > > My requirement is that wh

Re: [flexcoders] How to iterateOverChildren of an component not in display

2009-08-23 Thread Wesley Acheson
It may be because of deferred instantiation the component doesn't actually have children yet. On Fri, Aug 21, 2009 at 10:29 PM, alexeoscar wrote: > Suppose you have a MyView.mxml file, which is basically a Panel with > several children (Form, FormItems, Buttons...). > > Is it possible to iterate

  1   2   >