RE: [flexcoders] Re: TextInput Ignoring CursorManager.set()

2007-04-30 Thread Alex Harui
Try setting selectable=false, and maybe editable=false and/or type="dynamic". I'm not sure if you are directly talking to a TextField or a TextInput. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Troy A. Binford Sent: Monday, April 30

RE: [flexcoders] Loading Fonts at runtime on OSX?

2007-04-30 Thread Alex Harui
What does the vomit look like? And what does the FontHolder class look like? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of joshuajnoble Sent: Monday, April 30, 2007 6:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Loading

RE: [flexcoders] Viewstack in a Popup

2007-04-30 Thread Alex Harui
Yes, if you are using the latest hotfix From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kyle.vanvranken Sent: Monday, April 30, 2007 12:27 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Viewstack in a Popup In my wandering I

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

2007-04-30 Thread shaun
Hi, ben.clinkinbeard wrote: > Depending on user choices, I need to instantiate and attach one of > several chunks of UI and related functionality (basically glorified > ViewStacks) in my Cairngorm based app. I know that Commands and the > model are supposed to be completely separated from the view

Re: [flexcoders] Solved. OT: out of my mind with IE & javascript (movie not defined error)

2007-04-30 Thread {reduxdj}
Well the fix was a hack, i document wrote a 1.1 pixel of a flash movie to the browser and gave it the same id as my other movie... and it works now. My methods from my flex app are calling the page. Has anybody else had this problem? "id undefined" in ie on complex pages (php?) with flash com

[flexcoders] Re: Obj A = Obj B then all changes in A happen in B and Vice versa! any way arou

2007-04-30 Thread ben.clinkinbeard
Hi Lucas, You're seeing what is known as "pass by reference". Basically, everything but primitive types (String, Number, Boolean, etc) get a reference to the original object passed, rather than a copy, when you do something like B = A. You might be able to use ObjectUtil.copy() to accomplish what

[flexcoders] Loading Fonts at runtime on OSX?

2007-04-30 Thread joshuajnoble
Wondering if anyone else has run into this: I'm loading fonts at runtime via a swf that has a font embedded in it. I can't get the font embedded on my OSX machine, so I compile the font swf on my pc and then bring it over to my OSX machine and try to load it into the application swf like so: priva

[flexcoders] Re: global variable vs passing parameters to the cus tom components

2007-04-30 Thread Lucas Pereira
HI all. maybe my question fits here. here it goes. I have an object A of some king and object b of same kind as A.. if I make B.someproperty = A.someproperty and then make changes to be property in B, such has, B.someproperty = "something", why do the someproperty in A also changes? Any way to g

[flexcoders] Obj A = Obj B then all changes in A happen in B and Vice versa! any way around?

2007-04-30 Thread Lucas Pereira
Hi all. Today I have this beginner question. If I create Object A of ArrayCollection for instance. And the create Object B also Array Collection, and Make B = A (it safes a lot of time and code, specially when the other object is a custom one). If I add an item to B, that item is also added to A

RE: [flexcoders] flex communication

2007-04-30 Thread Dimitrios Gianninas
Since you are starting off, I suggest you start small. Just build basic apps get them to run inside JBoss/Tomcat. Once that works then use the tag to communicate with a simple Java class and see if it does what you except, then get more complex from that. Dimitrios Gianninas Developer Optimal

[flexcoders] Re: How to find if something exists in an arraycollection

2007-04-30 Thread ben.clinkinbeard
OK, so you're not trying to find the value 'VIEW_ALL_CUSTS', you're trying to find an object whose rightKey property is 'VIEW_ALL_CUSTS'. Or at least find out if such an object exists. Your ArrayCollection is holding object, not strings, so in your function you'd need to do something like this: fo

[flexcoders] Coding Standards

2007-04-30 Thread vargomike
Hi all... I have lots of questions so I'll first say I appreciate you taking the time to read and potentially responding to them. I'll be posting them separately. == - Are there any coding standards and naming conventions out there that I can use? i.e. What values to put into the

[flexcoders] Re: navigateToURL

2007-04-30 Thread mapper2255
Thanks, Gordon. Yes, it works and the Adobe link worked. Not sure how Flex Builder/xampp/Windows wants to see the contructed URL though it seems like I have tried all options. Forward slashes/backward\with this directory without? I can go to file in browser. --- In flexcoders@yahoogroups.com

[flexcoders] Re: FlexPrintJob not printing multiple formatted lines successfully

2007-04-30 Thread scott_flex
Well i have determined that it really doesn't matter what font family or size it is it just won't print the last line even though all lines appear on screen with no scroll bars. The html text of my mx:text object is: When i try to print this text from a mx:text control and the text wra

[flexcoders] OT: out of my mind with IE & javascript (movie not defined error)

2007-04-30 Thread Patrick Lemiuex
I have done this before on many pages and it's worked before. This page however is throwing me off. I tried adobe's AE_OEtags.js, and swfobject and a few other embed tag helpers out there to get around of the click to activate issue... The issue with this page is a javascript error - It a

[flexcoders] Re: Embedding font breaking other fonts...

2007-04-30 Thread alariccole
If the system doesn't think a font is available, it won't render. By embedding each of these fonts under the name "Verdana" you may be covering the others up. --- In flexcoders@yahoogroups.com, "Matt" <[EMAIL PROTECTED]> wrote: > > If I embed one font does it necessitate that I can henceforth only

RE: [flexcoders] flex communication

2007-04-30 Thread Tracy Spratt
If you ar a Java guy, then the RPC protocol, RemoteObject, is THE way to go. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of vargomike Sent: Monday, April 30, 2007 3:09 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] flex

[flexcoders] Re: Dynamic Legends in Chart

2007-04-30 Thread alariccole
Charts all accept a LegendItem to render, but you'd need to build your own for this functionality. Just look in the docs for charts and learn how to add/remove series at runtime (it's easy). --- In flexcoders@yahoogroups.com, "Arun Menon" <[EMAIL PROTECTED]> wrote: > > > Hi > > Does anybody h

[flexcoders] Re: TextInput Ignoring CursorManager.set()

2007-04-30 Thread Troy A. Binford
Setting mouseChildren to false gives me the desirable effect, and I can have an event set and unset the boolean. But how about this same issue for a TextField? It does not have a mouseChildren property. Any advice? Thanks, Troy --- In flexcoders@yahoogroups.com, "Troy A. Binford" <[EMAIL PROTECT

RE: [flexcoders] navigateToURL

2007-04-30 Thread Gordon Smith
Whatever problem you're having isn't related to event.label or probably to anything in your Flex code. When I tried this code it constructed the proper URL, such as http://localhost/FlashSite2/bin/ghostb Does that URL work when you paste it into a browser? - Gordon __

[flexcoders] Re: Bug in Flex while setting DataGridColumn.width programatically?

2007-04-30 Thread manfred.maierhofer
Of course. http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=kb401224 Cheers, Mane

[flexcoders] Re: How to find if something exists in an arraycollection

2007-04-30 Thread boy_trike
Here is my problem. I want to see if the user has the VIEW_ALL_CUSTS rightkey. When I try: model.userRights.contains('VIEW_ALL_CUSTS') I always get a false. It doesnt matter if I pad with extra spaces to make the fields the same size: Following is what the data looks like: userRights =

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

2007-04-30 Thread ben.clinkinbeard
Well, I suppose I could, but that doesn't seem like an appropriate use of states to me. I could be wrong though. Do states use deferred instantiation? There will eventually be several sets of screens and most users will only ever use one. I would like to refactor to Modules eventually, so I'm also

[flexcoders] Validate a UK postcode?

2007-04-30 Thread munene_uk
does anyone know or have links on how to validate a uk postode, seeing as flex only has the us zip code by defualt?

[flexcoders] my 2 cents! Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-30 Thread Patrick Lemiuex
IE7 Sucks. Silverlight sounds like it will suck. click to activate sucks. I mean come on... I hate developing for IE how come firefox works so beautifully - but you have to grab a hacksaw to make something work in ie? If you use IE (other than checking for cross browser compatibility

[flexcoders] navigateToURL

2007-04-30 Thread mapper2255
Can any one tell me why I cannot get this event.label to work, keeps giving "not found"? Code is straight out of help files. http://localhost/FlashSite2/bin/' + String (event.label).toLowerCase()), '_blank');"> ghostb Direct

Re: [flexcoders] Re: creating instances, addChild question

2007-04-30 Thread Michael Schmalle
Gordon, I must say when you look at it(instantiation), it's a very strong algorithm at that :) It's also nice to know that the impact of calling new before the display list cares is really important for some component's performance. Peace, Mike On 4/30/07, Gordon Smith <[EMAIL PROTECTED]> wrot

[flexcoders] How to align the text inside the title of a TitleWindow or Panel

2007-04-30 Thread tjcox1969
Which property do I changed to align the text in the header of a TitleWindow (or Panel). I changed the header height to 15 from the default because I didn't like how tall the header height was, but now the title text seems to be hugging the top of the title area. I would like to add some padding

Re: [flexcoders] DataGrid column header - wordWrap - but not break whole words

2007-04-30 Thread slangeberg
Ok, disregard. Fix should be: col.headerRenderer = new ClassFactory( HeaderRenderer ); As found here: http://www.returnundefined.com/tags/as3/ -Scott On 4/30/07, slangeberg <[EMAIL PROTECTED]> wrote: Is there any reason why you can't set the headerRenderer in AS3? I'm getting the following

Re: [flexcoders] DataGrid column header - wordWrap - but not break whole words

2007-04-30 Thread slangeberg
Is there any reason why you can't set the headerRenderer in AS3? I'm getting the following error (and this is just pointing at the 'default' class - I want to extend it): var col:DataGridColumn = new DataGridColumn(); col.headerRenderer = IFactory(DataGridItemRenderer); -

RE: [flexcoders] Re: creating instances, addChild question

2007-04-30 Thread Gordon Smith
The generated class doesn't look like that. Instead, the MXML compiler creates a tree of UIComponentDescriptor instances in order to support a feature of Flex known as deferred instantiation. BTW, another reason that the children don't get created at 'new' time is that inherited styles aren't kno

[flexcoders] Re: creating instances, addChild question

2007-04-30 Thread bhaq1972
thanks for the input Gordon, When i think of creating mxml components, i'm thinking lazy/convenience programming. i want all the component and its children to be created. I can give the children some default values which i can then change after the 'new', if i wish eg My PrintView.mxml

[flexcoders] TextInput Ignoring CursorManager.set()

2007-04-30 Thread Troy A. Binford
Is there a way to stop a TextInput control from displaying its I-bar when I hover over it? I have previously set a custom cursor to display and I would like it to stay the same when it moves over a TextInput control. Thanks, Troy

[flexcoders] Flash Library Assets Loading into Flex at Runtime?

2007-04-30 Thread parker77rocks
What is the best way to accomplish the following: - User makes selection in simple form - Based on selection, the Flex app would THEN load the proper swf (library assets that are movieclips) - Library movieclips (class instances) to be used in Flex containers as needed I understand and have trie

[flexcoders] disabling effects

2007-04-30 Thread Tom Sobut
I have hideEffects defined for the child views of a nested viewStack. At some point in my workflow, that viewStack gets hidden. Before I bring it back into view, I'd like to change the selectedIndex without triggering the hideEffects. I've tried using a function in the hideEffect property that

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

2007-04-30 Thread Erik Price
On 4/30/07, ben.clinkinbeard <[EMAIL PROTECTED]> wrote: > Basically, when the user selects a certain task, I need to attach a > set of screens to the stage and allow them to begin working. If they > later choose a different option, I need to remove the existing stack > and attach the new one. I d

[flexcoders] Re: creating instances, addChild question

2007-04-30 Thread bhaq1972
Thanks Mike this is great advice and knowledge. > What problems are you facing without being able to access box children after > the new call and before the addChild() call? I'm modifying a printing example from the livedocs which uses a print template component. I was making a more generi

RE: [flexcoders] creating instances, addChild question

2007-04-30 Thread Gordon Smith
This doesn't make the children get created at 'new' time. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Yiðit Boyar Sent: Monday, April 30, 2007 11:25 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] creating instan

[flexcoders] Change dataprovider based on selection

2007-04-30 Thread johnesocko
I currently have an array created by a loop, which outputs to a list; when the list is selected, I want the data provider to update accordingly. My dataprovider looks like this cRequest.lastResult."¿selectedItem?".user but I am not sure how to build it right so the datagrid acceptds it and then pos

[flexcoders] Viewstack in a Popup

2007-04-30 Thread kyle.vanvranken
In my wandering I have seen conflicting reports on if you can use a ViewStack/TabNav/Accordian component within a popup. The following link's author appeared to be having an issue memory wise when they used one of these components in a popup. http://www.adobe.com/cfusion/webforums/forum/messagevi

[flexcoders] flex communication

2007-04-30 Thread vargomike
Hi all... I have lots of questions so I'll first say I appreciate you taking the time to read and potentially responding to them. I'll be posting them separately. === We're creating a brand new application from scratch using Flex as our front end. The back end will consist of JBoss and some relati

[flexcoders] Re: How to find if something exists in an arraycollection

2007-04-30 Thread ben.clinkinbeard
ArrayCollection.contains() --- In flexcoders@yahoogroups.com, "boy_trike" <[EMAIL PROTECTED]> wrote: > > My security system has a user rights table, which has a list of TEXT > keys that each user has. I am storing this in an arraycollection. > What I want to do is see if this key exists in the

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

2007-04-30 Thread ben.clinkinbeard
Depending on user choices, I need to instantiate and attach one of several chunks of UI and related functionality (basically glorified ViewStacks) in my Cairngorm based app. I know that Commands and the model are supposed to be completely separated from the view, but I am having a hard time thinkin

[flexcoders] How to find if something exists in an arraycollection

2007-04-30 Thread boy_trike
My security system has a user rights table, which has a list of TEXT keys that each user has. I am storing this in an arraycollection. What I want to do is see if this key exists in the array collection. Is there an easy way to do this? Thanks Bruce

[flexcoders] Dynamic Legends in Chart

2007-04-30 Thread Arun Menon
Hi Does anybody have a code snippet to add Legend dynmicall. The requirement is for the Legend to be a checkbox. And when i uncheck the Legend i shld be able to hide the Line Series related to the legend Thx Arun

RE: [flexcoders] TileList scrollbar issue

2007-04-30 Thread Alex Harui
Try calling invalidateList() on the TileList after the state changes From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of astronaute75 Sent: Monday, April 30, 2007 6:52 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] TileList scrollba

Re: [flexcoders] Re: Bug in Flex while setting DataGridColumn.width programatically?

2007-04-30 Thread slangeberg
Manfred, can you post a link to this fix? Thanks, -Scott On 17 Apr 2007 07:31:29 -0700, manfred.maierhofer < [EMAIL PROTECTED]> wrote: After recompiling a few times it works properly. I spend a whole day to fix this issue. Thanks a lot for your hint, Mane -- : : ) Scott

[flexcoders] Embedding font breaking other fonts...

2007-04-30 Thread Matt
If I embed one font does it necessitate that I can henceforth only use embedded fonts within my application? For example, in a little test I wrote I have a RichTextEditor that works just fine with different fonts. However, if I add the following code to my MXML file: @font

[flexcoders] FlexPrintJob not printing multiple formatted lines successfully

2007-04-30 Thread scott_flex
I have a text control displayed with multiple lines of wrapped text , no scroll bars, all text is completely displayed on screen. When i send this text to the printer only the first line is printed. The text control is displaying html formatted text. This only happens to certain font/size co

Re: [flexcoders] creating instances, addChild question

2007-04-30 Thread Yiðit Boyar
try setting creationPolicy="all" in your component - Original Message From: bhaq1972 <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, April 30, 2007 2:56:41 PM Subject: [flexcoders] creating instances, addChild question This question is very

[flexcoders] Announcement: Los Angeles Flex Users Group (LAFUG)

2007-04-30 Thread Robert Cadena
Hi everyone, I'm going to be holding the first Los Angeles Flex Users Group meeting on Tuesday, May 8th. The topic for this meeting will be an intro and tour of Flex and Flex builder. There's more info about the meeting - including directions and parking info - on the website: http://www.

[flexcoders] Non-hierarchical data with tree control

2007-04-30 Thread mersian
So, I've been trying to figure out how to get a non-hierarchical data set to work with the Flex 2 Tree control. My data is a simple array of Objects. Each object has a member called PARENT_ID; this is either the string ID of its parent, or '' signifying that it should be on the uppermost level.

Re: [flexcoders] Coming from Laszlo background - anyone know some migration tips?

2007-04-30 Thread Peter Hall
> > of course, flex could do the same thing, but it will necessary some > coding to create this kind of enviroment. > If some of that work is implementing XPath, I'm working on a project here: http://code.google.com/p/xpath-as3/ It's usable, but not yet fully tested or performance tuned. Peter

Re: [flexcoders] creating instances, addChild question

2007-04-30 Thread Michael Schmalle
Yeah Gordon, you can say it with 2 sentences. Peace, Mike On 4/30/07, Gordon Smith <[EMAIL PROTECTED]> wrote: > when i create an instance of MyPrintView, its children are not created. why is that? > if you addChild() to the Applicationthey are created. why is that? The reason that compo

RE: [flexcoders] creating instances, addChild question

2007-04-30 Thread Gordon Smith
> when i create an instance of MyPrintView, its children are not created. why is that? > if you addChild() to the Applicationthey are created. why is that? The reason that components do not create their children immediately when they are created is so that you can set properties after calling

Re: [flexcoders]How does Flex work on Mobile devices

2007-04-30 Thread dorkie dork from dorktown
lol. i'll try that. ;) On 4/27/07, Nick Collins <[EMAIL PROTECTED]> wrote: tell him laptops are technically "mobile" devices? :-) On 4/27/07, Clint Tredway <[EMAIL PROTECTED]> wrote: > > none at this point as the player for devices is not able to run flex > apps. > > On 4/27/07, dorkie do

[flexcoders] Re: Request: Example of Custom itemRenderer for Plot Chart

2007-04-30 Thread Lucas Pereira
Hi. If you look at http://www.quietlyscheming.com/blog/charts/, you will find a lot of charting examples. One of then is a custom .as renderer that adds labels to a bar series. If you pick that example you can easily adopt it to a plot series. I've my self done a renderer that draws a colored dot a

Re: [flexcoders] Regd flex

2007-04-30 Thread Prayank Swaroop
Have you looked at Apollo? http://labs.adobe.com/technologies/apollo/ Otherwise once you get the SWF you can use 3 party vendor tools like Zinc for SWF to EXE - but Adobe does not support it. Prayank Swaroop Adobe Inc. Evangelist (Asia Pacific) Direct: +91 (80) 4193 9590 Mobile: +91 99456

[flexcoders] Re: Different webservice results in IE and Firefox

2007-04-30 Thread manfred.maierhofer
I sent a request for one row in IE and it returned 1252 bytes. The same request in Firefox returned 1228. The difference of 24 bytes are exactly the one description that is missing in one column. All other entries are equal, so very strange behaviour. In Firedebug I get this error message as Respo

[flexcoders] Problems using Zoom effect.

2007-04-30 Thread beecee1977
Hi, I'm having a couple of problems with Zoom effects. Here's my simple test application: http://www.adobe.com/2006/mxml"; layout="absolute"> The idea is the have a toolbar where as I scroll over the images are

[flexcoders] Request: Example of Custom itemRenderer for Plot Chart

2007-04-30 Thread supertodda
Hello, Is there anybody out there that can give me an example of a custom itemRenderer .as class for a Plot Chart? I've looked and cannot find anyting that fits the bill. Simple is good, one that just draws a circle and adds a tool tip would be appreciated. Thank you.

[flexcoders] Tree Event

2007-04-30 Thread mapper2255
Hello, I am moving forward everyday with knowledge of Flex. However it always seems like to takes a long time to customize examples to my needs. Is there someone out there who has a handler developed for the openTree event. I would like to finish my first complete site and need to have the lea

Re: [flexcoders] Re: creating instances, addChild question

2007-04-30 Thread Michael Schmalle
Hi, Basically, you have to change the way you think about instantiation. Calling the new operator creates memory allocation, accessibility, enables and adds some listeners. This is like preinitialization. What you now have to think is, addChild() is now the constructor of any UIComponent. If y

RE: [flexcoders] MySpace taking on Flex!

2007-04-30 Thread Grant Davies
yeah I saw that too but didn't notice it was flex based... nice! Grant ... > b l u e t u b e i n t e r a c t i v e .: The connection between creative and engineering .: grant davies .: 404.428.6839 (c) .: 708-983-1577 (F) > [EMAIL PROTECTED] > h

RE: [flexcoders] Deploying Flex Applications

2007-04-30 Thread Tracy Spratt
I suggest you use only relative urls, or if the url is fully qualified, use "http" not "file" protocol. Also, if the data id accessed from a different domain than the swf, you will need a crossdomain.xml file on the server providing the data. Tracy From

[flexcoders] Re: creating instances, addChild question

2007-04-30 Thread bhaq1972
Thanks Mike If i want to create a new instance of an mxml component, how can i ensure its children get created as well. --- In flexcoders@yahoogroups.com, "Michael Schmalle" <[EMAIL PROTECTED]> wrote: > > the flow, > > new VBox() > > "I was wrong about the constructor calling initialize()"

[flexcoders] MySpace taking on Flex!

2007-04-30 Thread nathanpdaniel
Anyone else with a myspace account notice the new updated pic uploader? :D

Re: [flexcoders] Re: Error: default arguments may not be interspersed with other options

2007-04-30 Thread Erik Price
On 4/30/07, Shailesh Mangal <[EMAIL PROTECTED]> wrote: > Thanks Bjorn, > > It certainly worked, So you keep two copies of SDK or is there a way > to point FlexBuilder to this new version of FlexSDK and delete from > its original location (/Applications/Adobe Flex Builder 2 Plug-in/Flex > SDK 2/) I

[flexcoders] Flexbuilder 2.01, but it keeps locking up Apache!

2007-04-30 Thread Jatin Nanda
Hi people, thanks in advance for any suggestions. This is my problem: - I keep getting a problem : not sure if specific to this, or to Flexbuilder 2.01, but it keeps locking up Apache! After only one or two tries, I stop getting remoting responses, then apache stops serving all together. Only a

RE: [flexcoders] Regd flex

2007-04-30 Thread Paramjit Jolly
Use Apollo Best option for Desktop application. Thanks & Regards Jolly Life Fitness - A Division of Brunswick Corporation #09-02, The Signature, Changi Business Park Central 2, Singapore-486066 (Cell) 65 -96216408

Re: {Disarmed} Re: {Disarmed} [flexcoders] Regd flex

2007-04-30 Thread Jurgen Beck
Zinc is available for both Windows and Mac OS. mychemic Carlo Gulliani wrote: but this mdm zinc version support only macos, but not support win - Original Message From: Jurgen Beck <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, April 30, 2007 4:05:18 PM Subject: Re: {

[flexcoders] using XMLListCollection and it's filterFunction... how to filter children nodes

2007-04-30 Thread jensen.axel
any one have any advice on this? --- In flexcoders@yahoogroups.com, "jensen.axel" <[EMAIL PROTECTED]> wrote: > > Problem: > > Trying to filter a mx:Tree to show only things that I type… when I > filter, it filters the folders, and the main root items, but not any > children, I'm using an xmlListC

[flexcoders] Re: Error: default arguments may not be interspersed with other options

2007-04-30 Thread Shailesh Mangal
Thanks Bjorn, It certainly worked, So you keep two copies of SDK or is there a way to point FlexBuilder to this new version of FlexSDK and delete from its original location (/Applications/Adobe Flex Builder 2 Plug-in/Flex SDK 2/) -Shailesh --- In flexcoders@yahoogroups.com, Bjorn Schultheiss <[

[flexcoders] TileList scrollbar issue

2007-04-30 Thread astronaute75
Hello, I would like to display another state when user click on TileList item, but have some weird problem with scrollbar after displaying the state. I can actually select an item, the state changes and display a VBox in it, but after that, impossible to scroll using scrollbar or mouse wheel. C

Re: [flexcoders] Crossdomain.xml

2007-04-30 Thread Daniel Grace
I ran into this same problem. I am assuming that you're using XMLSocket. The default seems to have changed from looking for /crossdomain.xml to asking over the socket. The documentation implies that it will fall back to looking to HTTP for the file, but that in practice seemed not to be the case.

[flexcoders] Re: Regd flex

2007-04-30 Thread sher_ali2004
I am also new to flex, but I think flex doesn't provide such facility. You can develop desktop applications using the Apollo extension with flex 2.0

[flexcoders] Can't recompile app? Odd caching with flexbuilder.

2007-04-30 Thread Austin Kottke
Hi, I have a project which is being compiled in flex builder. I then come back to it today and try to recompile and whatever I change in the source it is not reflected in the changes. I do a clean all, I delete the previous bin directories SWFs and then rebuild it through flex builder - it makes

[flexcoders] Questions for Flex Application Developer(s)

2007-04-30 Thread 1charmedlife
Hi All, I'm a total noob to Flex, after years of working in Flash MX and doing my own web work for 1.0 companies who wanted Flashy Things, I got out of the business, but am now going into a business that very much will need a custom application and it looks like Flex is probably a suitable platfor

[flexcoders] Re: > ID3 v2+ parser available for albumart

2007-04-30 Thread nikko_leborgne
--- In flexcoders@yahoogroups.com, João Fernandes <[EMAIL PROTECTED]> wrote: > > The Mighty Ben Stucki may have what you need. > > http://blog.benstucki.net/?id=24 > > João Fernandes > Hello, I tried ID3Strema Explorer, and it works well. But now, I want to parse my mp3's. So, in the example, in

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

2007-04-30 Thread emendezgonzalez
Mmmm, let's see: + Flex (generates) Actionscript (runs-in) Flash So, if: + Flex (generated) Javascript + WPF/E (run-in) Silverlight Just an idea, Eduardo.

RE: [flexcoders] addChild problems

2007-04-30 Thread Paramjit Jolly
Hi You need to type cast the object/component to DisplayObject Just keep in mind: any container you want to add any object just typecast to DisplayObject(); i.e Here mainGrpHolder is some kind of holder container i.e canvas, VBox, HBox var gObj: ColumnChart = new ColumnChart ();

[flexcoders] Re: Formattin dates in DataGrid with itemRenderer

2007-04-30 Thread kkinaru
Thanks Manish, I've some examples using a custom class extending Label, but But I can't make them work. Another question... I have to use formatted data to make some operations, but I can't manage it. I use DataGridItemRenderer in some columns, assigning as: DataGrid.columns[1].itemRenderer = new

Re: [flexcoders] Regd flex

2007-04-30 Thread mychemic Carlo Gulliani
Run swf file and select File- create project - Original Message From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Sent: Monday, April 30, 2007 3:56:16 PM Subject: [flexcoders] Regd flex Hi, Thanks in Advance I am new to Flex, h

Re: {Disarmed} [flexcoders] Regd flex

2007-04-30 Thread mychemic Carlo Gulliani
but this mdm zinc version support only macos, but not support win - Original Message From: Jurgen Beck <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, April 30, 2007 4:05:18 PM Subject: Re: {Disarmed} [flexcoders] Regd flex You need to b

Re: [flexcoders] creating instances, addChild question

2007-04-30 Thread Michael Schmalle
Ha it's the morning and just waking up... The real anwer is, addChild() will eventually call createChildren(). Since you have not called addChild() on your VBox mxml component, createChildren() has not been called. createChildren() does not get called from a constructor call, just initialize().

Re: {Disarmed} [flexcoders] Regd flex

2007-04-30 Thread Jurgen Beck
You need to be looking at something like MDM Zinc, which supports Flash and Flex: http://www.multidmedia.com/ Jurgen [EMAIL PROTECTED] wrote: Hi, Thanks in Advance I am new to Flex, how to Convert the flex project into Exe Version as we do in Flash. Awaiting for your reply mail. Than

Re: [flexcoders] creating instances, addChild question

2007-04-30 Thread Michael Schmalle
the flow, new VBox() "I was wrong about the constructor calling initialize()" :) addChild() - addChildAt() - childAdded() - initialize() - createChildren() Peace, Mike On 4/30/07, Michael Schmalle <[EMAIL PROTECTED]> wrote: Ha it's the morning and just waking up... The

Re: [flexcoders] creating instances, addChild question

2007-04-30 Thread Michael Schmalle
Hi, Don't quote me but, I think it has to do that you do not have a parent on your main VBox instance. I don't think createComponentsFromDescriptors() is called until parentChanged() or something is called (IE the parent VBox actually has a parent). This shouldn't be a problem, the timing of i

[flexcoders] Regd flex

2007-04-30 Thread [EMAIL PROTECTED]
Hi, Thanks in Advance I am new to Flex, how to Convert the flex project into Exe Version as we do in Flash. Awaiting for your reply mail. Thanking you, Yours faithfully, R.Denesh Kumar [EMAIL PROTECTED] - Ahhh...ima

[flexcoders] creating instances, addChild question

2007-04-30 Thread bhaq1972
This question is very similar to a question someone else is asking (may even be the same thing) I've got a component called MyPrintView.mxml when i create an instance of MyPrintView, its children are not created. why is that? if you addChild() to the Applicationthey are creat

Re: [flexcoders]How does Flex work on Mobile devices

2007-04-30 Thread Tom Chiverton
On Friday 27 Apr 2007, Nick Collins wrote: > tell him laptops are technically "mobile" devices? :-) These UMPC things will run Flash 9 too. -- Tom Chiverton Helping to paradigmatically deliver scalable users on: http://thefalken.livejournal.com **

Re: [flexcoders] Cairngorm 2.2 on Adobe Labs

2007-04-30 Thread Tom Chiverton
On Friday 27 Apr 2007, Alistair McLeod wrote: > Cairngorm 2.2. This isn't a major release, with only a few minor Well, our current in-progress project needed no changes, but dropped in size by about 150K, cool :-) -- Tom Chiverton Helping to proactively harvest bleeding-edge content on: http://

Re: [flexcoders] Formattin dates in DataGrid with itemRenderer

2007-04-30 Thread Manish Jethani
On 4/30/07, kkinaru <[EMAIL PROTECTED]> wrote: > I need to format some dates in a datagrid, data comes in MMDD > format, and I have to show as DD/MM/ date. I've read some articles > about this, but I do not manage to understand too much. > > I'm using a custom DataGridItemRenderer extensio

[flexcoders] Re: SpiderChart

2007-04-30 Thread lruinelli
...thanks a lot...but isn't what I need. Spider chart is a type of chart (like e.g. columnchart, piechart,...)...looking in the net, you can find a spider chart image sample at the url: http://www.pspglobal.com/images/kalrez-performance.jpg Saluti Lorenzo --- In flexcoders@yahoogroups.com, "g_odd

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

2007-04-30 Thread simonjpalmer
...and therein lies another horrible truth, the MBP hardware is a winner, OS/X is not. I myself am using a MBP and it is awesome, but guess what, I'm not using OS/X (although I return for doses of sanity). My anecdotal study of the three Starbucks in walking distance from my house shows 75% of pe

Re: [flexcoders] Flash Document Viewer like scribd

2007-04-30 Thread Muzak
Have a look at: http://www.adobe.com/products/flashpaper/ Coldfusion can generate these on the fly (as well as pdf's). - Original Message - From: "deepbits" <[EMAIL PROTECTED]> To: Sent: Monday, April 30, 2007 11:19 AM Subject: [flexcoders] Flash Document Viewer like scribd Hi there,

[flexcoders] Re: SpiderChart

2007-04-30 Thread g_odds
I've not heard the term Spider Chart before but I think http://mark-shepherd.com/blog/springgraph-flex-component/ is the type of chart you mean. Graham --- In flexcoders@yahoogroups.com, "lruinelli" <[EMAIL PROTECTED]> wrote: > > Hello, > > does it exist in flex any SpiderChart implementation e

[flexcoders] Flash Document Viewer like scribd

2007-04-30 Thread deepbits
Hi there, I am trying to create a flash document viewer like the one used on "Scribd". Does anyone have any ideas on how they created it? Do they convert all their documents into PDF and then render the PDF in their Document Viewer? Or are these images that we scroll through? Will look forwar

[flexcoders] Re: Formattin dates in DataGrid with itemRenderer

2007-04-30 Thread simonjpalmer
what's wrong with your current method? I think that is exactly the way to do it. --- In flexcoders@yahoogroups.com, "kkinaru" <[EMAIL PROTECTED]> wrote: > > Hello all... > > I need your advices once more time. > > I need to format some dates in a datagrid, data comes in MMDD > format, and I

[flexcoders] Formattin dates in DataGrid with itemRenderer

2007-04-30 Thread kkinaru
Hello all... I need your advices once more time. I need to format some dates in a datagrid, data comes in MMDD format, and I have to show as DD/MM/ date. I've read some articles about this, but I do not manage to understand too much. I'm using a custom DataGridItemRenderer extension Clas

  1   2   >