RE: [flexcoders] Apollo features

2007-02-02 Thread Jason Hawryluk
So your saying it's better for a company to re create the wheel then to leverage their existing investments. 80%+ of business applications are specific to windows not leveraging that investment is just stupid. So now if I have a client that wants to leverage Apollo I have to let them know t

Re: [flexcoders] What is the best Flex Message Board ( Other than this group Yahoo ) ?

2007-02-02 Thread Shannon Hicks
Probably the Adobe Flex forum. Shan helihobby wrote: What is the best Flex Message Board ( Other than this group Yahoo ) ? Thanks for the help, Sean.

Re: [flexcoders] Re: rollOver Tree Node

2007-02-02 Thread Greg Morphis
Thanks guys, I'll look into doing that. Tracy can you provide an example? Thanks On 2/2/07, Doug Lowder <[EMAIL PROTECTED]> wrote: > Yeah, moving the mouse off the tree and then back again to see the new > toolTip text is exactly what I was talking about. The event fires > correctly, it just see

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

2007-02-02 Thread parkerwhirlow
Jeff, thanks for looking into this... while you're at it, I posted this as a bug to the "wishlist" site, but it didn't make it into 2.0.1... I've taken to building the HibernateAssembler myself to try to get things working, but this is dedfinitely a defect: HibernateAssembler.java (fds2.0.1 relea

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

2007-02-02 Thread Andrew D. Goodfellow
That did it, thanks so much for your help Doug. Anyone know why the FlexLoader isn't in the docs anywhere? -Andy On 2/2/07, Doug McCune <[EMAIL PROTECTED]> wrote: Right, FlexLoader (which is pretty much just the same as the Loader component) doesn't fire the complete event. Do this and re

[flexcoders] Re: rollOver Tree Node

2007-02-02 Thread Doug Lowder
Yeah, moving the mouse off the tree and then back again to see the new toolTip text is exactly what I was talking about. The event fires correctly, it just seems that dynamically changing the toolTip that way isn't supported for some reason. I also thought that the combination of showDataTips and

Re: [flexcoders] Re: PNG transparency failing in @Embed?

2007-02-02 Thread Pan Troglodytes
FYI, I got a response from my bug report. Since I couldn't include the PNG on the bug report page, the Adobe person wasn't able to reproduce the problem. So I did some research and created a test app to send them to. You can view it here: http://three.fsphost.com/flex2/pngbug/PNGBug.html (Not

[flexcoders] What is the best Flex Message Board ( Other than this group Yahoo ) ?

2007-02-02 Thread helihobby
What is the best Flex Message Board ( Other than this group Yahoo ) ? Thanks for the help, Sean.

[flexcoders] Re: Displaying Mathematical Formulas in Flex

2007-02-02 Thread mindmillmedia
Thanks for that reference. The Mathiwyg tool would probably work for this project. Thanks! David Tucker

RE: [flexcoders] Re: Importing mx packages into AS3 project

2007-02-02 Thread Gordon Smith
This is a surprising amount of bloat. Do you have a list of the framework components that you're using? - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of polestar11 Sent: Friday, February 02, 2007 1:07 AM To: flexcoders@yahoog

[flexcoders] Re: rollOver Tree Node

2007-02-02 Thread devforflex
dataTipFunction will do the trick, the signature is : public function handleDataTip( itme:Object ):String item is the object passed into the item renderer, which in another view, is like what Tracy's doing (setting the tooltip inside the renderer itself), you could set a break point and see the c

RE: [flexcoders] Where is CalendarLayout?

2007-02-02 Thread Gordon Smith
I'm not sure what you're asking. If an API -- class, interface, property, method, style, event, whatever -- isn't documented in ASDoc, you should be wary of using it. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: F

[flexcoders] Can Flex directly replace Flash????

2007-02-02 Thread Mike Anderson
Hello All, As I dive into converting my commercial Flash Map Application, into a Flex-based Application, I am quickly finding out that Flex may not be able to perform some key functions. This of course, may be attributed to my lack of understanding of Flex - so my main goal of this post, is to ge

RE: [flexcoders] how and when is updateDisplayList called ?

2007-02-02 Thread Gordon Smith
> Can anyone tell how and when is updateDisplayList called ? updateDisplayList() is called during the next 'render' event that occurs after invalidateDisplayList() is called. > I always call super.updateDisplayList() when ever I override it. This is generally a good idea. > Now on

Re: [flexcoders] Re: rollOver Tree Node

2007-02-02 Thread Greg Morphis
Hey Doug, thanks for the reply That works great, and I think I found the snag.. itemRollOver doesnt fire when I move from item to item.. I have to move out of the Tree and back in and on another item for it to change? Is that why you said that the toolTip wasnt want I needed? I tried playing arou

Re: [flexcoders] Re: Gantt Chart

2007-02-02 Thread Clint Tredway
no, i havent tried to do that so I have not run into that issue On 2/2/07, napearson99 <[EMAIL PROTECTED]> wrote: Hey Clint, im having problems with the scheduler. After reading up on it some it seems that it can't handle large dates spans. For example I can't have an entry with a year betwee

RE: [flexcoders] Project structure

2007-02-02 Thread Tracy Spratt
This recently became an issue for me as well. I think the why is because FB tries to put everything in the bin folder, and is not smart enough to make the bin folder structure multiple levels deep. Just guessing though really. Multiple applications are certainly allowed. Tracy _

RE: [flexcoders] Re: rollOver Tree Node

2007-02-02 Thread Tracy Spratt
I use a treeItemRenderer and set the tooltip on the node itself. What is available in the mouse event object? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Morphis Sent: Friday, February 02, 2007 5:02 PM To: flexcode

RE: [flexcoders] Flex 2 code to reload the entire application?

2007-02-02 Thread Tracy Spratt
While some might judge it a "hack", others are successfully using navigateToUrl, with the url pointing to the flex app url itself, and the target _self. I've not used it myself, but there was just a thread about it here. Search the archives for more detail. Tracy _

RE: [flexcoders] How to make a "universal" httpservice

2007-02-02 Thread Tracy Spratt
Untested: private function getHTTPData(url:string,aParms:Array,sQueryId):void { var oResult:Object = new Object(); var oParm:Object; for (var i:int=0; i private function onResult(oEvent:ResultEvent):void { var xmlResult = XML(oEvent.result); var sQueryId:String = oEvent.

[flexcoders] Re: Gantt Chart

2007-02-02 Thread napearson99
Hey Clint, im having problems with the scheduler. After reading up on it some it seems that it can't handle large dates spans. For example I can't have an entry with a year between the start and end date. I guess this is because they used int where they should of used Number. Have you encount

[flexcoders] Re: rollOver Tree Node

2007-02-02 Thread Doug Lowder
You may want to look at the dataTipFunction property of Tree instead of using toolTip, since I don't think toolTip will give you the results you want. That said, you can use the following to get the tree item under the mouse: import mx.events.ListEvent; public function

[flexcoders] Re: Module Loader progress bar

2007-02-02 Thread Alexander Tsoukias
Is there a way I could have an example of how this module trick loads another swf file at runtime? {a} --- In flexcoders@yahoogroups.com, "Roger Gonzalez" <[EMAIL PROTECTED]> wrote: > > Yes, the module loading code dispatches loading events, so you can > create a component that displays very simil

RE: [flexcoders] Displaying Mathematical Formulas in Flex

2007-02-02 Thread Samuel R. Neff
Here's a Flash product that does MathML editing and rendering. They have a licensing option which includes source in which case you could port it to Flex for internal use. http://www.terradotta.com/index.cfm?FuseAction=MathIWYG.PurchaseForm HTH, Sam --

[flexcoders] Flex 2 code to reload the entire application?

2007-02-02 Thread D O
Hi everyone, is there any actionscript code I can use to reload the entire swf? I have a computer based training module that a user can reset at the end and erase all of their use data. Right now the data is being removed, but I'm not sure how to refresh the swf to reset the UI. Something simila

[flexcoders] Tree itemOpening animation issue

2007-02-02 Thread metalbeard
Hello guys, I was trying to change the icon of the tree nodes each time they open an' I succeded in that but the issue is that when am using the itemOpening event to place the icon i lose the animation when opening or closing any node while when I use the itemOpen event i don't lose the animati

Re: [flexcoders] DVD-based interactive application possible?

2007-02-02 Thread Nick Collins
If it's for a Data DVD with the data being hard-coded or XML on the disk, sure you can do it with Flex 2. If you're wanting it to play in a standalone DVD player, I'm afraid your only option would be to use a DVD authoring tool, like DVD Studio Pro (apple) or Encore DVD (pc) and it's going to be v

[flexcoders] Re: Determining if there has been any user input on a page

2007-02-02 Thread dean_w_schulze
Thanks for the responses. I was thinking along the lines of Jari's solution. That involves adding an event handler for each control which isn't too much work. I like Ben's solution because it handles the case where a user makes a change and then undoes the change leaving the control with no ch

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

2007-02-02 Thread Bjorn Schultheiss
I use sequence command and I vote for change. What ever works best... --- In flexcoders@yahoogroups.com, "Dimitrios Gianninas" <[EMAIL PROTECTED]> wrote: > > I vote for the change, I ran into this issue myself. > > Dimitrios Gianninas > RIA Developer > Optimal Payments Inc. > > > __

RE: [flexcoders] Displaying Mathematical Formulas in Flex

2007-02-02 Thread Roger Gonzalez
Cool problem. If you're willing to write some code, I think its entirely feasible to do this in AS3. Rendering MathML in Actionscript would be a really fun project! -rg From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mindmillm

Re: [flexcoders] Displaying Mathematical Formulas in Flex

2007-02-02 Thread Patrick Mineault
You could use a LaTeX renderer to do this, which would be located on the server. I've used MimeTex and it's worked great for me. If you wanted, you could eventually port that C code to AS3 and do the rendering in Flex itself. That would be a major, major undertaking IMHO though. Patrick mindmi

[flexcoders] Displaying Mathematical Formulas in Flex

2007-02-02 Thread mindmillmedia
I am the lead on a project that I really want to use flex on. However, I have a bit of a problem. Without going into a great deal of detail, I need to be able to generate and display mathematical equations within flex (complicated ones). I had a few thoughts on the issue: 1. If I could have

[flexcoders] Re: rollOver Tree Node

2007-02-02 Thread Greg Morphis
can anyone assist me in this? I've tried using itemRollOver, no luck, I can only get it on click. Does anyone know if it's possible to get the tree item that the mouse is over? Thanks On 2/2/07, Greg Morphis <[EMAIL PROTECTED]> wrote: > anyone? > Is there anyway to capture the leaf that the mouse

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,

[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" t

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 r

Re: [flexcoders] Project structure

2007-02-02 Thread Beverly Guillermo
Do you mean creating multiple mxml files that have 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, Stembert Olivier (

RE: [flexcoders] Integerating Flex and Java using

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 [ma

[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 (htt

[flexcoders] Integerating Flex and Java using

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] 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 (whi

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 (re

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: flexcoders@yahoogroups.

[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 tw

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 t

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 Op

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 D.

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: flexcod

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] 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 Beha

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

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 than

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] 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 reaso

[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? I've got a field in my XML called mgrname and would like to make it the toolTip text of the Tree when mousing over the leaves. Thanks On 2/2/07, Greg Morphis <[EMAIL PROTECTED]> wr

[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, "Dav

[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: > > publ

[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

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? (

[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

[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] 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 F

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 a

[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 questi

[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 module

[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 = []; n

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 w

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 it

[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 XX

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

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 URLLoader

[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 ; return;

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: How do you make a copy of an XMLListCollection ( not instance of ) ...

2007-02-02 Thread helihobby
Thank for the reply ... I know it should work as I have tried this but it does not ... :( I tried copying the data using this utility and it does not seem to copy the data for XMLListCollection Doing: [Bindable] public var newList:XMLListCollection; ... var x:XMLListCollection = event.data.e

[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 attribut

[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 ob

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 Ja

[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. :( > > > >

[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 ch

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: http://labs.adobe.com/wiki/index.php/Apollo:dev

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
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 deskt

[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. A

[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 predetermina

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. ja

[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'

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 st

[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 pas

[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() whe

[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 ..

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] 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 auto

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 )... kinda

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 i

[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] 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 how

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 (j

[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, usi

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 ju

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 thing

  1   2   >