Re: [flexcoders] Can't find bug in this piece of ActionScript

2007-02-02 Thread Ralf Bokelberg
Doesn't it have to be stateCB.selectedIndex = i; Cheers, Ralf. On 2/2/07, malik_robinson [EMAIL PROTECTED] wrote: Hi, I am trying to set the selectedIndex of my U.S. States custom combo box equal to what the user has stored in their record in our database. Someone posted a link to a

[flexcoders] how to get components value

2007-02-02 Thread sekar r
Hi all, i am create one panel with in the panel i added the tap navigator panel. i desgined some text box and text area and other components. thia all components. in this my question is. i have to design this all with form inside the tapnavigator? or can design directly

[flexcoders] Re: Can't find bug in this piece of ActionScript

2007-02-02 Thread malik_robinson
Hi, I dont think it does, I could be wrong, but I want to set the selectedIndex equal to the employeeStateId so if the employee has a stateId of say 3 for Arizona or whatever, I want the selectedIndex to be 3. Unless I am missing something. -M --- In flexcoders@yahoogroups.com, Ralf

Re: [flexcoders] Where is CalendarLayout?

2007-02-02 Thread Carlos Rovira
Hi Gordon, I saw it while I check the DateChooser class. I saw in different places that people needs more control over the layout in the DateChooser. Maybe that class should be more open to let developers customize its own DateChoosers. Thanks for the feedback. On 2/2/07, Gordon Smith [EMAIL

Re: [flexcoders] pop ups again

2007-02-02 Thread Roman Protsiuk
:) Thanks, Doug. I've just made the same thing you did. ;) R. On 2/1/07, Doug McCune [EMAIL PROTECTED] wrote: By the way, here's my modification to your example that works. Basically I extended TitleWindow to dispatch a custom event whenever the visiblity is changed, regardless of the flag

[flexcoders] Re: Importing mx packages into AS3 project

2007-02-02 Thread polestar11
Thanks Gordon I eventually ended up converting to an mx project, which bloated my app from 162K to 480K. At the moment size isnt an issue and I have gone for the ease of development over size. Customizing the flex component code is an option I havent considered yet, thinking that my only hopes

Re: [flexcoders] Re: Can't find bug in this piece of ActionScript

2007-02-02 Thread Ralf Bokelberg
Ah sorry, i haven't read the text ;) What if you try it like that: var selectedIndex : int = 0; for ( var i:int=0; i stateCB.dataProvider.length; i++ ) { if( employeeStateId == stateCB.dataProvider[i].stateId ) { selectedIndex = employeeStateId ; } } stateCB.selectedIndex =

[flexcoders] Re: Can't find bug in this piece of ActionScript

2007-02-02 Thread malik_robinson
Hi, The code works the first time around. First time around meaning click an employee from the datagrid and the screen changes to a detail view of that employee. For some reason every user I bring up after the first user has the same State (Arizona) for example selected thereafter. The first

[flexcoders] How to make a universal httpservice

2007-02-02 Thread oneproofdk
I am fairly new to Flex2 and AS3, 4 weeks of programming/experimenting under the hood. In a application I am using several (6-7) httpservice calls, to retrieve data for the various elements. Works great! One thing that _really_ annoys me, is that I have several mx:HTTPservice instances, one for

Re: [flexcoders] Re: Can't find bug in this piece of ActionScript

2007-02-02 Thread Ralf Bokelberg
That's probably because the creationComplete event is called just once. What if you use binding instead? selectedIndex={ getStateIndex( *employeeStateId:Number, dataProvider:Array*) } Cheers, Ralf. On 2/2/07, malik_robinson [EMAIL PROTECTED] wrote: Hi, The code works the first time

Re: [flexcoders] How do you make a copy of an XMLListCollection ( not instance of ) ...

2007-02-02 Thread Brian Dunphy
import mx.utils.ObjectUtil; var newList:Object = ObjectUtil.copy(oldList); Cheers, Brian On 2/1/07, helihobby [EMAIL PROTECTED] wrote: Can anyone please post sample code of how to make a copy of a XMLListCollection. Not a copy of the instance object but a new XMLListCollection

Re: [flexcoders] Drag-Resize MDI Example

2007-02-02 Thread Janis Radins
Hi! I think i just made somthing you were talking about. See this http://www.mediaverk.lv/trash/MinisableResizableWindow/ This is just a very first version just got it working so there mutch be some problems. I can make sources available if youre interested. Janis 2007/1/29, John Kirby [EMAIL

[flexcoders] Re: need help on showing line series based on list box selection (Flex Charts)

2007-02-02 Thread arthurcoutinhoonline
Hi Ely, need a few minutes of your precious time,please if u can help me figure this out, it wud help! regards, Arthur

Re: [flexcoders] TitleWindow missing all focus events??

2007-02-02 Thread Roman Protsiuk
Overloading focusOutHandler/focusInHandler helps. You'll be able to handle FocusEvents there. Like in protected override function focusOutHandler(event : FocusEvent) : void { if (event.relatedObject == null || !contains(event.relatedObject)) { // event came from outside not from one

RE: [flexcoders] More knowledge of future component development?

2007-02-02 Thread Alistair McLeod
Hi Doug, I'll talk specifically about the Scheduling Framework here, which is something that the Adobe Consulting group have contributed to the community. There are currently no plans to bring that framework into the actual Flex SDK, so I wouldn't have any concerns in that area - I'll update the

[flexcoders] Re: Can't find bug in this piece of ActionScript

2007-02-02 Thread malik_robinson
Hi, I am new to actionscript and not quite sure how to implement that solution you suggested. It looks like the way to go because I do want to always have the right state selected when the detail screen first loads so I presume that is where the binding kicks in. Here is what I did in the code

Re: [flexcoders] Re: Adobe.com Servers?

2007-02-02 Thread Janis Radins
Oh comon. Adobe.com is slow for you for two minth? It's been slow as hell from here (eastern europe) all the time for years now, totally unusable. 2007/2/2, purcept [EMAIL PROTECTED]: Thanks very much. I'll do that. Don --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, John

Re: [flexcoders] AS variables at the top level of a package

2007-02-02 Thread Tom Chiverton
On Friday 02 Feb 2007, Stembert Olivier (BIL) wrote: Sorry but it's 7AM here in Luxembourg and I don't see... Okay, try it this way: package { class Test { } } You have created an object called Test. You can only have one public object in a package (even if your package

Re: [flexcoders] Flex 2 Compiler / Metadata Question

2007-02-02 Thread Tom Chiverton
On Thursday 01 Feb 2007, gtuhl wrote: Anyone have any ideas? Remind us of the problem you are trying to solve. -- Tom Chiverton Helping to professionally strategize visionary supply-chains This email is sent for and on behalf of Halliwells

Re: [flexcoders] ASDoc ignoring [Bindable] properties in mxml files

2007-02-02 Thread Tom Chiverton
On Thursday 01 Feb 2007, jer_ela wrote: I am finding that ASDoc (2.01) is ignoring bindable properties in mxml files public var myProperty:String gets documented [Bindable] public var myBindableProperty:String What about [Bindable] public var myBindableProperty:String=''; ? -- Tom

Re: [flexcoders] Re: Can't find bug in this piece of ActionScript

2007-02-02 Thread Ralf Bokelberg
Ok, i understand. Ty it like that: public function getStateIndex( employeeStateId : Number, dataProvider : Array) : int { var selectedIndex : int = 0; for ( var i:int=0; i dataProvider.length; i++ ) { if( employeeStateId == dataProvider[i].stateId )

RE: [flexcoders] AS variables at the top level of a package

2007-02-02 Thread Stembert Olivier (BIL)
Okay I understand. So, I can never declare my method as public at the package level, right? But what do you understand when reading the doc??? If you do declare variables, functions, or namespaces at the top level of a package, the only attributes available at that level are public and

Re: [flexcoders] Where is CalendarLayout?

2007-02-02 Thread Tom Chiverton
On Thursday 01 Feb 2007, Gordon Smith wrote: intentionally not hinted and not listed in the Flex 2 Language Reference (i.e., the ASDoc) because it is unsupported and subject to change without notice in a future release. Is that not true of all the internal interfaces ? I assumed it was... --

[flexcoders] Accordion child icon bug

2007-02-02 Thread Danko Kozar
I noticed a bug in Accordion (Flex 2.0.1). I have an Accordion with three children end every one of them has another image as icon property: mx:Accordion myForm:Form icon={icon1} / myForm:Form icon={icon2} / myForm:Form icon={icon3} / /mx:Accordion The problem is that THE LAST ONE (icon3)

RE: [flexcoders] Apollo features

2007-02-02 Thread Christian Weibell
Me too – I am also planning on doing some speech input processing and will need to pass microphone audio to an exe or dll to process it and then pass back state info to the Apollo app. Christian _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of geminy555

[flexcoders] Re: What is the best way to draw about 10,000 to 15,000 rectangles?

2007-02-02 Thread Derrick Grigg
I ran across a similar problem for an application I worked on in Actionscript 2. I had a very large image broken into 10x10 tiles. Each tile related to an image and some data. Instead of drawing a pile of boxes (or rectangles) as MovieClips, I created a Bitmap drawing that had all the tiles I

[flexcoders] Trial Expiration Message with Flex SDK

2007-02-02 Thread primemate10
I'm using the Flex SDK with Eclipse. I was under the assumption that the SDK is FREE! unlike the Flex IDE version that sells for a few hundred bucks. Is anyone else get an expiration notice when using the Flex SDK? thanks

[flexcoders] How I can to modify a xml with Flex and Php?

2007-02-02 Thread alphaclass525
How I can to modify a xml with Flex and Php?

Re: [flexcoders] Flex Builder 2.0.1 Eclipse Plugin Issues

2007-02-02 Thread Rich Tretola
Well I just updated to eclipse 3.2 and the problem persists. :( On 2/1/07, Rich Tretola [EMAIL PROTECTED] wrote: Are you only doing Flex projects or have you tried to create a Java project with Flex files included within? On 2/1/07, Jeffry Houser [EMAIL PROTECTED] wrote: Flex Builder

Re: [flexcoders] How I can to modify a xml with Flex and Php?

2007-02-02 Thread cisnky
Do you have anymore information. Maybe start with how would you go about modifying xml with php and then look at the flex bit. On 2/2/07, alphaclass525 [EMAIL PROTECTED] wrote: How I can to modify a xml with Flex and Php?

Re: [flexcoders] Trial Expiration Message with Flex SDK

2007-02-02 Thread Abdul Qabiz
Thing that you have been using with eclipse is FlexBuilder2, that is not free. Flex SDK is free, which is basically flex-framework, command-line tools (compiler, debugger) and other libraries. -abdul On 2/2/07, primemate10 [EMAIL PROTECTED] wrote: I'm using the Flex SDK with Eclipse. I

[flexcoders] Re: Flex 2 Compiler / Metadata Question

2007-02-02 Thread gtuhl
Sure thing, The ideal scenario for us would be to use our own custom metadata tags in our Flex code. We have built a DWR wrapper that lets us use DWR in Flex 2, and many of the methods that automate this would benefit enormously from being able to read various things from an ActionScript

Re: [flexcoders] How I can to modify a xml with Flex and Php?

2007-02-02 Thread Abdul Qabiz
Right. You need to focus on PHP code that would read/write/manipulate XML. Once you are done with that, you can read how can Flex apps communicate with backend (PHP, JSP etc). Generally, there are following methods used:- 1) HTTPService class of Flex framwork - To communicate over standard HTTP

RE: [flexcoders] Non-Clustered CPU, Clustered, Distributed and Mirroring Environment????

2007-02-02 Thread Matt Chotin
Assuming you have multiple CPUs (non-virtual) running FDS for the same application, in all of those scenarios you still need a license per-CPU. The only scenario where you do not need a license is where FDS is running on one CPU (and it can support as many applications as you like). If you

Re: [flexcoders] Re: Flex 2 Compiler / Metadata Question

2007-02-02 Thread Tom Chiverton
On Friday 02 Feb 2007, gtuhl wrote: The ideal scenario for us would be to use our own custom metadata tags in our Flex code. We have built a DWR wrapper that lets us use DWR in Flex 2, and many of the methods that automate this would benefit enormously from being able to read various things

Re: [flexcoders] Drag-Resize MDI Example

2007-02-02 Thread Clint Tredway
I would like to see the source for this... I am interested in seeing how its done. On 2/2/07, Janis Radins [EMAIL PROTECTED] wrote: Hi! I think i just made somthing you were talking about. See this http://www.mediaverk.lv/trash/MinisableResizableWindow/ This is just a very first version

[flexcoders] rollOver Tree Node

2007-02-02 Thread Greg Morphis
I'm trying to set up a toolTip for the Tree Node and get some data in it from XML.. Does anyone have experience in doing this? I do something like rollOver(getName(event)) in the Tree however that forces a MouseEvent, which doesn't have the selectedTarget method... I can get the data on click,

Re: [flexcoders] Apollo features

2007-02-02 Thread Kevin Newman
Tom Chiverton wrote: Does anyone or has read somewhere, if Apollo will allow you to launch native local applications ? As far as I know, Apollo is using webkit, does this include the ability to run other plugins besides Flash (like Java)? If so, can you use one of those other plugins

Re: [flexcoders] Drag-Resize MDI Example

2007-02-02 Thread Brian Dunphy
I've created a Dashboard that acts as an MDI with custom Widgets (TitleWindows that flip over to configure, etc). The one thing I'd really like to see though is some example code for is how to tile the windows evenly across the screen. I assume that there is some degree of math to figuring out

[flexcoders] how and when is updateDisplayList called ?

2007-02-02 Thread arpan srivastava
Hi all, Can anyone tell how and when is updateDisplayList called ? I always call super.updateDisplayList() when ever I override it. I created a datagrid which contains line graph in one of it's columns. Now once I removed super.updateDisplayList() from the my itemrenderer and

Re: [flexcoders] Apollo features

2007-02-02 Thread Tom Chiverton
On Friday 02 Feb 2007, Kevin Newman wrote: Tom Chiverton wrote: Does anyone or has read somewhere, if Apollo will allow you to launch native local applications ? As far as I know, Apollo is using webkit, I would *expect* them to do that, did read something somewhere ? does this include

Re: [flexcoders] Apollo features

2007-02-02 Thread Jerome Clarke a.k.a sinatosk
To be honest... all this talk I've been hearing about Apollo being used as desktop applications using web technologies... I would kinda expect that you can launch exe passing parameters ( like CLI style or something similar ), talk to dynamic libraries like .dll ( Windows ), .so ( Linux )...

[flexcoders] Updating dataProvider from a control that uses it?

2007-02-02 Thread Danko Kozar
I'm trying to create a control that receives a dataProvider (which is an ArrayCollection of Objects) and draws these objects as Sprites on screen (the object contains x and y property (coordinate) of the Sprite). My question is: when moving the object with mouse, how can it's new position

Re: [flexcoders] Updating dataProvider from a control that uses it?

2007-02-02 Thread Clint Tredway
in your dragDrop event, broadcast the items x y along with its arrayCollection identifier and update the collection. On 2/2/07, Danko Kozar [EMAIL PROTECTED] wrote: I'm trying to create a control that receives a dataProvider (which is an ArrayCollection of Objects) and draws these objects

[flexcoders] Re: Updating dataProvider from a control that uses it?

2007-02-02 Thread Danko Kozar
Yes I now that - but I'd like to happen automattically. Just as when you alter the property of the DataGrid item like this: myDataGrid.items[3].myProperty = 2007 ... that action itself broadcasts the change to the grid's dataProvider! So I'd like to have only the line: mySprite.x = 123

[flexcoders] Re: rollOver Tree Node

2007-02-02 Thread Greg Morphis
BTW, the error message I get is TypeError: Error #1009: Cannot access a property or method of a null object reference. at com.alltel.rapid.aopscheduler.view::SearchByLocationView/::getRSM() at com.alltel.rapid.aopscheduler.view::SearchByLocationView/__locationsTree_rollOver()

[flexcoders] Flex certification, anyone take the exam?

2007-02-02 Thread lar.drolet
Just curious if anyone has take the exam and passed it? I will not ask about the exam because I know you are not supposed to say a thing, I will only ask if you felt prepared? I read that the scoring was similar to the CF exam in that scoring over 80% you were awarded an expert status while

Re: [flexcoders] Print Preview Help

2007-02-02 Thread Abdul Qabiz
Hi, and the preview should be able to show the number of pages that would be present in the Printed hard copy. To show that you need to know the paper size, that is not known until you start printjob.start (..), once printjob.start (..) is called Print dialogue box is shown and Flash Player

[flexcoders] Re: Updating dataProvider from a control that uses it?

2007-02-02 Thread Danko Kozar
Does my control have to implement some interfaces which are implemented by DataGrid? I'd like a simple explanation what list controls do behind the scene when it's item is updated. Thanks.. --- In flexcoders@yahoogroups.com, Danko Kozar [EMAIL PROTECTED] wrote: Yes I now that - but I'd

RE: [flexcoders] Apollo features

2007-02-02 Thread Jason Hawryluk
I have to agree here, if we can't extend it with our own dll's then what is the real value proposition for Apollo. I think support for dll’s is important (com, managed, other). Allowing us to reuse our existing middle tiers/frameworks, and use Apollo to create engaging user experiences.

[flexcoders] Problem setting efects on TitleWindow

2007-02-02 Thread Jesús Iglesias
Hi all, I have a problem trying to set a Zoom efect on showing one TitleWindow as popup. Effect is made ok, but at the end it throws one error: ReferenceError: Error #1069: No se encontró la propiedad autoLayout en _AdminContenidos_mx_managers_SystemManager y no hay ningún valor

[flexcoders] Re: using soapHeaders to pass UserName and Password

2007-02-02 Thread Mark
Another developer and I worked thru this function and really had a hard time making heads or tails of everything. In my first post I added a working version from Flash MX Pro. I just need to pass a username and password (hard coded in the AS) to the webservice in order to retreive the XML.

Re: [flexcoders] Apollo features

2007-02-02 Thread Mike Chambers
You probably heard drag and drop into apollo (local file into app). However, it should be possible to simulate drag from browser into apollo app. mikeh chambers [EMAIL PROTECTED] Tom Chiverton wrote: I'm sure there was a quote about being able to drag applications of web sites onto

Re: [flexcoders] Apollo features

2007-02-02 Thread Mike Chambers
Only Flash and PDF are supported in 1.0. I will update the FAQ with the info. http://labs.adobe.com/wiki/index.php/Apollo:developerfaq mike chambers [EMAIL PROTECTED] Kevin Newman wrote: Tom Chiverton wrote: Does anyone or has read somewhere, if Apollo will allow you to launch

Re: [flexcoders] Apollo features

2007-02-02 Thread Mike Chambers
Actually, that is not necessarily the case. If you look at our descriptions of Apollo, we try to make it very clear that Apollo is focused at bringing RIAs to the desktop. It is this use case that is driving feature prioritization. From the FAQ:

[flexcoders] Re: Gantt Chart

2007-02-02 Thread napearson99
Nice Doug. What about dates? In theory how would that part hook up? I would argue that a time line of dates might be the most important part. I like what you did a lot. If we could combine what you did with the sliders with how the scheduler works I think we would have a really useful Gantt

[flexcoders] Re: Flex Builder 2.0.1 Eclipse Plugin Issues

2007-02-02 Thread Chris Luebcke
Did you try launching eclipse with the -clean flag? http://www.adobe.com/support/documentation/en/flex/2/install.html#installingfb2 - Chris --- In flexcoders@yahoogroups.com, Rich Tretola [EMAIL PROTECTED] wrote: Well I just updated to eclipse 3.2 and the problem persists. :( On

Re: [flexcoders] Apollo features

2007-02-02 Thread Shannon Hicks
The real value of Apollo would be cross-platform applications. I can't run your DLL's on my Mac. If you need DLL's, use VB to build your app, and don't tease me with the false hope of a cross-platform application by building with Apollo and then ruining it with windows-only code. :) Shan

[flexcoders] ByteArray / URLLoader / Loader / Image / Size?

2007-02-02 Thread Andrew D. Goodfellow
(I have searched for this answer on the list and in the docs and can't find anything so I'm gonna go ahead and post. If I missed a previous post, I apologize, please point me towards it.) I have an image in a ByteArray and I want to display it within a specific width and height inside an Image

[flexcoders] Re: TabNavigator Tab BackgroundImage

2007-02-02 Thread potentialunfounded
Check out http://www.scalenine.com . I just added a theme based on the soon to be released Yahoo Messenger for Windows Vista. There's a lot of samples and source files that I think could help. Basically to set a background image for a tab you have to specify a tabStyle in the TabNavigator

Re: [flexcoders] Apollo features

2007-02-02 Thread Mike Chambers
I think that just getting the app out of the browser is also a major advantage. It will still be possible to create platform specific Apollo apps, but (at least for 1.0), when we prioritize features, we are going to prioritize those which enable and encourage cross platform applications. mike

[flexcoders] Re: Can't find bug in this piece of ActionScript

2007-02-02 Thread Doug Lowder
Hi, The bug is that you are continuing through the loop even after you have found the employeeStateId you are looking for. What you really want is something like: ... if( employeeStateId == stateCB.dataProvider[i].stateId ) { stateCB.selectedIndex = employeeStateId ;

Re: [flexcoders] ByteArray / URLLoader / Loader / Image / Size?

2007-02-02 Thread Doug McCune
Your problem is that you're calling addChild on the Image component. This won't work with how the ImageComponent works (or rather SWFLoader, which is the base class). But the SWFLoader should be able to load a DisplayObject, if you set that as the source. Also, BTW, you don't need the

RE: [flexcoders] Apollo features

2007-02-02 Thread João Fernandes
Mike, Just a very small question, we see a lot of html flash stuff about apollo but what about PDF ? what will we able to do with it? Just read them? Can my offline app generate a pdf file for me? Can you provide any info about this? João Fernandes From: flexcoders@yahoogroups.com

[flexcoders] Re: How do you make a copy of an XMLListCollection ( not instance of ) ...

2007-02-02 Thread helihobby
I event try: newList = ObjectUtil.copy(x) as XMLListCollection; for each (var node1:XML in x ){ trace( + node1); } for each (var node2:XML in newList ){ trace( + node2); } I see the traces for

Re: [flexcoders] How to create a Windows taskbar notification?

2007-02-02 Thread Rachel Maxim
Thanks for the ideas. Apollo was the first thing that popped into my mind too when our users asked :) this app is a prime candidate for Apollo anyway. It's an internal web app, so we have a good amount of control over our environment. I did find an ActiveX control, I was figuring I could embed

Re: [flexcoders] Apollo features

2007-02-02 Thread Mike Chambers
Yeah. We have been focusing on the underlying infrastructure and HTML, which is why we havent given too many details on PDF. You will be able to leverage PDF within Apollo applications, although we don't have a lot of details around the integration just yet. Technically, you could create PDFs

[flexcoders] Re: Adding columns in DataGrid dynamically

2007-02-02 Thread Doug Lowder
You can reassign the grid's columns property to accomplish this. Array methods like push don't emit the events necessary for the component to detect that the array has changed, thus the component will not update. Try: public function populateData() { // code snipped var newCols: Array = [];

[flexcoders] Module Loader progress bar

2007-02-02 Thread mthielman11
We have a large app we are building and decided to break it into modules. We have the module loading after a user successfully logins in. After the login it changes states to a box that just contains th moduleLoader. Its all working fine except we get no feedback as to the progress of the

[flexcoders] Re: Modules and Cairngorm - Solution... I think

2007-02-02 Thread alimcleod
Hi, This does look like a bug with SequenceCommand. I've been looking at the various options as to how to fix this. I've never been overly enamoured with SequenceCommand (it wasn't something we ever used in projects), but there was enough requests for us to add it. I suppose my initial

Re: [flexcoders] Panel and Scrollbars (basic question)

2007-02-02 Thread Rachel Maxim
Hi Neil, Sorry, I couldn't actually run this because of the PredefinedEntitiesFromReport data being missing (nothing populated). I see what you are saying about the dynamic sizing, I don't think I can suggest a better way than what you have. If you were to make the layout of the base component

[flexcoders] Re: using soapHeaders to pass UserName and Password

2007-02-02 Thread Dave Wolf
Mark, Does this blog entry give you any help? In building this mashup Andy had to add credentials to the SOAP headers. See further down for example source. http://www.cynergysystems.com/blogs/page/andrewtrice?entry=census_mashups_using_strikeiron_web -- Dave Wolf Cynergy Systems, Inc. Adobe

[flexcoders] Adding Favorites

2007-02-02 Thread trk247
Whats the best way for an application to add and substain favorites in a datagrid. I can use php cookies, but was hoping flash 9 has something built in that can accomplish the same task. Any help is greatly appreciated.

[flexcoders] Flex Automation API

2007-02-02 Thread gettier
I am trying to get more information on use and capabilities of the Flex Automation API. The Class and Interface info from the Language Reference doesn't really show how to use the API. Thanks for your help! Al

Re: [flexcoders] Apollo features

2007-02-02 Thread Paul Hastings
On 2/3/07, Mike Chambers [EMAIL PROTECTED] wrote: Technically, you could create PDFs within Apollo by doing it via ActionScript, but we do have built in APIs for dynamically generating PDF content. wow. Do you have an example of what you would like to do with generating PDF content? (you

[flexcoders] Re: Non-Clustered CPU, Clustered, Distributed and Mirroring Environment????

2007-02-02 Thread sanjaypmg
Hi Matt, Thanks a lot for your response. but I am still expecting more description for the same Thanks sanjay --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Assuming you have multiple CPUs (non-virtual) running FDS for the same application, in all of those

[flexcoders] Re: Can't find bug in this piece of ActionScript

2007-02-02 Thread malik_robinson
Hi, Thanks for all the help. It works now. The latest snippet you provided did the trick. Its nice when it works... Thanks Ralf! Thanks for your post too Doug. -Malik --- In flexcoders@yahoogroups.com, Ralf Bokelberg [EMAIL PROTECTED] wrote: Ok, i understand. Ty it like that: public

[flexcoders] Re: using soapHeaders to pass UserName and Password

2007-02-02 Thread Mark
This is actually very funny. I just ran across this example not even 5 minutes ago. Not only did this help, it's exactly what I needed. I tested it out and it now works perfectly. My thanks to you Dave and special thanks to Andrew Tice and his Blog! --- In flexcoders@yahoogroups.com,

[flexcoders] Re: rollOver Tree Node

2007-02-02 Thread Greg Morphis
anyone? Is there anyway to capture the leaf that the mouse is currently over? mx:Tree id=locationsTree height=100% width=100% dataProvider={ MyModel.getInstance().allLocationsXML } labelField=@label

RE: [flexcoders] Re: Flex 2 Compiler / Metadata Question

2007-02-02 Thread Ely Greenfield
I checked around internally, and the feature is supposed to work in release mode, and evidently we have some proof that it does, at least in our scenarios. So a simple sample that shows it failing might help. Ely. p.s. the reason metadata is stripped by default is for SWF size

Re: [flexcoders] Adding Favorites

2007-02-02 Thread Brendan Meutzner
Take a look at the SharedObject class... Brendan On 2/2/07, trk247 [EMAIL PROTECTED] wrote: Whats the best way for an application to add and substain favorites in a datagrid. I can use php cookies, but was hoping flash 9 has something built in that can accomplish the same task. Any help is

Re: [flexcoders] Apollo features

2007-02-02 Thread Jerome Clarke a.k.a sinatosk
heh since when did I say .dll files under Mac? you ofcourse will have to dispatch both the .dll and the .so files with it and program your apollo app to see if your running on windows or linux or mac ( I don't know much about the mac ) to use the correct dynamic library... and I don't use VB

Re: [flexcoders] Apollo features

2007-02-02 Thread Mike Chambers
Oops. I meant to type: -- but we do NOT have built in APIs for dynamically generating PDF content. -- Sorry about any confusion. mike chambers [EMAIL PROTECTED] Mike Chambers wrote: Yeah. We have been focusing on the underlying infrastructure and HTML, which is why we havent given too

RE: [flexcoders] Re: How do you make a copy of an XMLListCollection ( not instance of ) ...

2007-02-02 Thread Brian Holmes
Just create a new XMLListColletion with the source of the one you want to copy from. var a:XMLListCollection = new XMLListCollection(xmlList); var b:XMLListCollection = new XMLListCollection(a.source); -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

Re: [flexcoders] ByteArray / URLLoader / Loader / Image / Size?

2007-02-02 Thread Andrew D. Goodfellow
Thanks Doug! When I do that I'm getting the error: Error: Error #2099: The loading object is not sufficiently loaded to provide this information. at flash.display::LoaderInfo/get width() at mx.controls::SWFLoader/get ::contentHolderWidth() at mx.controls::SWFLoader/::doScaleContent()

RE: [flexcoders] Module Loader progress bar

2007-02-02 Thread Roger Gonzalez
Yes, the module loading code dispatches loading events, so you can create a component that displays very similar to the Flex download progress bar. My preferred way to do it so that it is usable from MXML is to subclass ModuleLoader. -rg From:

Re: [flexcoders] ByteArray / URLLoader / Loader / Image / Size?

2007-02-02 Thread Doug McCune
Right, FlexLoader (which is pretty much just the same as the Loader component) doesn't fire the complete event. Do this and replace yourCompleteEventHandler with you event handler function: loader.contentLoaderInfo.addEventListener(Event.COMPLETE, yourCompleteEventHandler); -Doug Andrew

RE: [flexcoders] Non-Clustered CPU, Clustered, Distributed and Mirroring Environment????

2007-02-02 Thread Dimitrios Gianninas
Your best answer would be to contact an Adobe Sales Rep. The license is per CPU, so you could end up paying in all cases depending on how many CPUs your servers have. You might not end up paying in case #1 if it is a single CPU server (thats FDS Express). Dimitrios Gianninas RIA Developer

RE: [flexcoders] ASDoc ignoring [Bindable] properties in mxml files

2007-02-02 Thread Stephen Gilson
Do you have a test file that I can try? I just ran ASDoc on Button.as, which inserts [Bindable] before setter/getters for labelPlacement, listdata, and several other properties and it works as expected. I then modified Slider.as to add [Bindable] before allowThumbOverlap and allowTrackClick and

[flexcoders] Re: TitleWindow missing all focus events??

2007-02-02 Thread zhongtie
Thanks, Roman. Actually you answered my another question: I have been trying to figure out why I cannot focus in the edit control inside the titlewindow :) Where did you learn those good tips about relatedObject ?!! I am still a little puzzled by how focusIn works. I realized I have to do these

RE: [flexcoders] Re: Modules and Cairngorm - Solution... I think

2007-02-02 Thread Dimitrios Gianninas
I vote for the change, I ran into this issue myself. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of alimcleod Sent: Friday, February 02, 2007 12:58 PM To:

RE: [flexcoders] FDS/Hibernate Sample of updating hierarchical list of values

2007-02-02 Thread Jeff Vroom
My apologies - this does look like a bug. I need to do more testing on this case myself, but I think one of the big problems here is that we are trying to do conflict detection on our own in the hibernate assembler's updateItem method. Unless you are using a strict isolation level in your DB

[flexcoders] ExternalInterface bug with swf inside form tag- will it be fixed?

2007-02-02 Thread ben.clinkinbeard
I was super excited yesterday when I started playing with FABridge and saw how great it worked. Fast forward to this morning when we moved the code and swf into the deployed .ASPX page and everything broke. Turns out this is a well documented (by users, not Adobe/MM) bug with ExternalInterface

[flexcoders] Integerating Flex and Java using mx:RemoteObject

2007-02-02 Thread Mukesh
Hi There, I was trying Daniel Harfleet's sample example , where he is showing how to integrate Java and Flex using a simple RPC example. I followed the steps, but I am getting an error on the Server console. My Flex application is deployed on JBoss server 4.0.5. I've made sure that the java class

[flexcoders] HTTP Headers sent when FP loads content from remote server

2007-02-02 Thread João
Hello, when a flash application requests content from the http server, are the http headers sent the same the browser sends? I imagine that FP delegates the responsibility of loading any type of content via HTTP to the browser, so the headers should be the same. I have tried Service Capture

RE: [flexcoders] Integerating Flex and Java using mx:RemoteObject

2007-02-02 Thread Peter Farland
Did you restart the server when changing the remoting-config.xml file? Did you clean/recompile your application (assuming you're pointing it to this same services configuration and not programmatically creating channel sets)? From: flexcoders@yahoogroups.com

Re: [flexcoders] Project structure

2007-02-02 Thread Beverly Guillermo
Do you mean creating multiple mxml files that have mx:Application tag? I didn't think that was allowed? I know that if I have components that I build using .mxml files I could just use a package structure which allows me to put them in sub-folders and access those components... On 2/2/07,

Re: [flexcoders] Flex Automation API

2007-02-02 Thread Jim Cheng
gettier wrote: I am trying to get more information on use and capabilities of the Flex Automation API. The Class and Interface info from the Language Reference doesn't really show how to use the API. There isn't much documentation right now, so until Adobe remedies this, you'll need to

[flexcoders] More Mac licensing issues: [WAS:: Max OS X Flex Builder 2.01 License Issue - still waiting

2007-02-02 Thread Chris Allen
To anyone at Adobe who's listening: I'm working on a Flex2 project for Scholastic http://scholastic.com and we are running into a wall in terms of getting our Flex Builder licenses transfered to the Macintosh platform. We purposely bought Windows versions knowing that it wouldn't be a problem to

Re: [flexcoders] Re: Adobe.com Servers?

2007-02-02 Thread John Dowdell
Janis Radins wrote: Oh comon. Adobe.com is slow for you for two minth? It's been slow as hell from here (eastern europe) all the time for years now, totally unusable. That's consistent with what David Hatch, of the Adobe web team, described... the San Jose servers have already been updated,

  1   2   >