[flexcoders] webservice issue

2008-03-12 Thread ravi mishra
hi group, i am not able to access the nodes of the result of a webservice (E4X format) by using xml descendant function. xml.descendants(DataItem); //does not give me anything. but when i take the result of webservice in an XML file and try to access this file using HTTPService

Re: [flexcoders] webservice issue

2008-03-12 Thread kapil b
Have you tried using debugger to check the result of webservice. -Kapil - Original Message From: ravi mishra [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, 12 March, 2008 11:22:28 AM Subject: [flexcoders] webservice issue hi group, i am not able

Re: [flexcoders] webservice issue

2008-03-12 Thread ravi mishra
yes kapil, i have check it using debugger. i get the complete result of webservice in the result event object, but i am not able to get the descendants using descendant function of xml or xmllist. ravi kapil b [EMAIL PROTECTED] wrote: Have you tried using debugger to

[flexcoders] Tree SelectedItem

2008-03-12 Thread Rafael Faria
If i'm dragging a item from tree1 to tree2 how do i select the item after i drop it on tree2?

[flexcoders] Measure Twice... upload once.

2008-03-12 Thread Rick Winscot
So. I was interested in getting a new economical car and stopped by the Toyota website to give the Yaris a look see. I had to chuckle when I clicked next in the trim accordion and up came the flash player debug window and runtime errors oh my!

[flexcoders] Filter function Sort of working

2008-03-12 Thread JRBower
I have a filter function that works fine so long as there is data in each column. In the following function a flight number (FlightNumber) hasn't been added so any search attempt (i.e., filter on FirstName, LastName or UserID) results in a #1009 error. // Datagrid Filter public function

Re: [flexcoders] Measure Twice... upload once.

2008-03-12 Thread Paul Andrews
Seems fine now. - Original Message - From: Rick Winscot To: flexcoders@yahoogroups.com Sent: Wednesday, March 12, 2008 7:09 AM Subject: [flexcoders] Measure Twice... upload once. So. I was interested in getting a new economical car and stopped by the Toyota website to

Re: [flexcoders] Filter function Sort of working

2008-03-12 Thread Giles Roadnight
I'd do it somethign like this: // Datagrid Filter public function processFilter(item:Object):Boolean { var result:Boolean=true; var pattern:RegExp = new RegExp(^+userIDFilter.text,i); if(item.UserID != null !item.UserID.match(pattern))return false; if(item.FirstName != null

Re: [flexcoders] Measure Twice... upload once.

2008-03-12 Thread Giles Roadnight
Nope, it's still broken!! :) I suppose only a very small fraction of the visitors to the site are going to see this but does it look unprofessional On Wed, Mar 12, 2008 at 8:12 AM, Paul Andrews [EMAIL PROTECTED] wrote: Seems fine now. - Original Message - *From:* Rick Winscot

Re: [flexcoders] Tree SelectedItem

2008-03-12 Thread Giles Roadnight
You'll have to add an eventListener that fires on the itemDrop (or whatever it is) event. In that code then just set the selected Item to the object passed in the event. On Wed, Mar 12, 2008 at 6:22 AM, Rafael Faria [EMAIL PROTECTED] wrote: If i'm dragging a item from tree1 to tree2 how do i

Re: [flexcoders] Filter function Sort of working

2008-03-12 Thread JRBower
I gave it a try but all rows disappear. I also tried var result:Boolean=true; and var result:Boolean=false; The text input also has a change event if this is relevant: mx:TextInput id=userIDFilter change=this.masterList.dataProvider.refresh() / Any other ideas? Giles Roadnight

Re: [flexcoders] Filter function Sort of working

2008-03-12 Thread Giles Roadnight
Well, I didn't intend that you use the code exactly as I typed it. I just wanted to give you an idea of how I would write that function. It's a while since I wrote a filter function so I'll leave it to someone else to correct my code. On Wed, Mar 12, 2008 at 8:56 AM, JRBower [EMAIL PROTECTED]

[flexcoders] Testing with Flex Framework RSL's

2008-03-12 Thread Romeo Obane
Hi, I've read many articles regarding RSL's and I'm quite interested especially in Flex Framework RSL. We have now a Flex Application that has Flex Framework merged, and now I tested separating it through RSL. I would like to test the RSL, and I was thinking of deleting the two frameworks ( swz

Re: [flexcoders] Testing with Flex Framework RSL's

2008-03-12 Thread Tom Chiverton
On Wednesday 12 Mar 2008, Romeo Obane wrote: is already a signed flex framework cached into the player. One more thing also, can we clear the cache in Flash Player? If you can find them, I would expect just deleting them to work. -- Tom Chiverton Helping to revolutionarily transform seamless

Re: [flexcoders] Testing with Flex Framework RSL's

2008-03-12 Thread Muzak
On Win Vista I think it's: C:\Users\[USER]\AppData\Roaming\Adobe\Flash Player\AssetCache - Original Message - From: Tom Chiverton [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, March 12, 2008 11:14 AM Subject: Re: [flexcoders] Testing with Flex Framework RSL's On

Re: [flexcoders] Re: Multiple Destinations in CF8

2008-03-12 Thread Tom Chiverton
On Tuesday 11 Mar 2008, Brendan Meutzner wrote: Bumping... has nobody else had this issue? Maybe if you included your broken config files we could help more. -- Tom Chiverton Helping to ambassadorially aggregate enterprise environments on: http://thefalken.livejournal.com

[flexcoders] progress bar with remote objects

2008-03-12 Thread Tom Preet
Hi, I am using RemoteObject method within my Flex application. Here for retriving data it was getting some few seconds. for that I need to use Progress bar instead of using showbusy cursor. can anyone give me some suggestions of using progress bar with remote object method. Thanks, Tomt.

Re: [flexcoders] progress bar with remote objects

2008-03-12 Thread Tom Chiverton
On Wednesday 12 Mar 2008, Tom Preet wrote: can anyone give me some suggestions of using progress bar with remote object method. Unless you page the data in yourself across multiple calls, I don't think you can do that as there's no 'progress' property such as 'bytesLoaded' from RemoteObject

[flexcoders] Re: progress bar with remote objects

2008-03-12 Thread Mark
I'd like to jump on this question if that's alright... I'm going to be loading a flat XML file, is it possible to use the progress bar for that? And if so how would I go about doing it. I haven't seen many samples using the PBar. Any ideas? Thanks, Mark

[flexcoders] Simple ActionScript math help needed using dates

2008-03-12 Thread Mark
I'm getting a list of employees where the Hire Date is one of the fields. I'd like to change that into length of service by way of yy/mm/dd. Can anyone help me with the math on this please? Thanks, Mark

[flexcoders] Re: progress bar with remote objects

2008-03-12 Thread Cato Paus
Hi, I do it like this: in my mxml file: mx:ControlBar paddingLeft=2 paddingRight=2 paddingTop=2 paddingBottom=2 mx:ProgressBar hideEffect={pbfadeOut} showEffect={pbfadeIn} visible=false id=bpProgressBar labelPlacement=center indeterminate=true width=100%/

[flexcoders] Re: blazeds and oc4j

2008-03-12 Thread netdeep
Yes, here is the full stack trace: MessageBrokerServlet failed to initialize due to runtime exception: java.lang.SecurityException: Unauthorized access from application: blazeds to MBean: java.lang:type=ClassLoading at

[flexcoders] Re: Flex Charts with Large Data Set

2008-03-12 Thread Abyss Knight
From my understanding is that AMF, because it is binary encoded, is the fastest mode of transfer available. I've seen a couple links around the web profiling AMF vs. JSON vs. XML and from what I've worked on personally, the JSONDecoder is very slow, XML tends to have a large transfer size, and AMF

[flexcoders] Re: progress bar with remote objects

2008-03-12 Thread twcrone70
Looks like that would 'work' but it is usually a bad idea to pass a view component to a service method. Another option would be to have the method that is parsing the XML file to fire off events (or in PureMVC notifications) that something managing the progress bar can listen for. The event (or

[flexcoders] Re: Flex Charts with Large Data Set

2008-03-12 Thread twcrone70
James Ward has a RIA benchmark app which is probably at least a little self-serving since he IS an Adobe Flex Evangelist but...still could shed some light on different transfer format speeds. http://www.jamesward.org/census/ - Todd --- In flexcoders@yahoogroups.com, Abyss Knight [EMAIL

[flexcoders] Clipping of charts

2008-03-12 Thread mavdzee
Hi, I noticed that if I have a BarChart and set the maximum manually to a value smaller than some bars in the chart (and hence don't fit in the chart), then these bars are completely dropped from the chart. Is there an easy way to show these bars anyway and fill it to the manually set maximum?

Re: [flexcoders] Measure Twice... upload once.

2008-03-12 Thread Daniel Freiman
Sounds like a bug specific to (or fixed for) a browser/OS/player version. I'm not sure how many times you would need to measure to check all of those options. On Wed, Mar 12, 2008 at 4:18 AM, Giles Roadnight [EMAIL PROTECTED] wrote: Nope, it's still broken!! :) I suppose only a very small

[flexcoders] Extending AdvancedDataGrid

2008-03-12 Thread markgoldin_2000
If I subclass AdvancedDataGrid should I define columns also or they are defined when a class is implemented? Thanks

Re: [flexcoders] Measure Twice... upload once.

2008-03-12 Thread Paul Andrews
I can see a problem under internet explorer - firefox is fine. As far as it being unprofessional - I think we've all been there at one time or another due to the monkey on our back. I won't be throwing any stones in my glasshouse. Paul - Original Message - From: Giles Roadnight

Re: [flexcoders] DataBinding Question

2008-03-12 Thread DannyT
Thanks Tracey this is what I'd discovered. I hadn't realised that: mx:whatever dataProvider={arrDataSource} / is different to: function setSomething() { myComponent.dataProvider = arrDataSource } So I'm assuming that basically the {} in mxml does all the event wiring to actually Bind the

[flexcoders] Code is not executed

2008-03-12 Thread markgoldin_2000
I am extending DataGrid: package yardmodel.modulecode { import mx.controls.advancedDataGridClasses.AdvancedDataGridColumn; public class codeDestinationGrid extends AdvancedDataGrid { public function codeDestinationGrid() {

[flexcoders] Re: Howto build Blazeds sample for websphere

2008-03-12 Thread Jim Boone
If I can paraphrase, I think you are trying to get the sample code to work with Websphere. I agree that the current distribution of BlazeDS could use improvement, but it isn't that difficult. I am familiar with JBoss, but Websphere is conceptually the same. With JBoss, you could dump the sample

[flexcoders] SWF download problem

2008-03-12 Thread qau_yasir
Hello I tried to build an application that downloads a swf file and installed it. Although the code I used was from the tutorial from Adobe Livedocs. but still I find exception Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed. My code is private function

Re: [flexcoders] Error: channel not found for reference 'my-http'

2008-03-12 Thread Nayan Savla
its not and hence the following error, channel not found for reference 'my-http'. project Unknown 1205219746960 1210 thanks Nayan On Mar 11, 2008, at 1:59 PM, Seth Hodgson wrote: Check the Problems tab in FlexBuilder, and make sure your app is successfully compiling against your

RE: [flexcoders] Re: FYI - iPhone won't support Mobile Flash

2008-03-12 Thread Steve Howard
I've seen the same on several Apple-centric sites. Seems that the negative rumour mill is in full fledge. Steve From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter Witham Sent: Wednesday, March 05, 2008 18:32 To: flexcoders@yahoogroups.com Subject: Re:

[flexcoders] Re: Populating an Image control from an HTTPService request

2008-03-12 Thread mammatusstratusnimbuscumulus
Ah that explains it! I was using a distortion effect on the image which was triggering the security violation. Thanks so much, you just saved me many more hours of frustration! :) --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: You can load images from any domain, but

[flexcoders] Re: Populating an Image control from an HTTPService request

2008-03-12 Thread mammatusstratusnimbuscumulus
Ah that explains it! I was using a distortion effect on the loaded image which was resulting in a security error. Thanks much! --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: You can load images from any domain, but you can't access their bits w/o crossdomain.xml

[flexcoders] Re: SWFLoader stripping query string?

2008-03-12 Thread deltheil
Thanks Alex. It works perfectly! --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: The 'this' pointer in the loaded app is the application. Application.application is the top level application. Thus, if you load this MXML as the loaded app with ?foo=bar you can

[flexcoders] Re: Flash + data-aware GUI components + mxml + layout management = Flex? (aka Fl

2008-03-12 Thread Kingman
I dont think you have to sacrifice what Flex provides in data services just because you are using Flash- I was a flash developer that moved to Flex because of the IDE (last week!). as I understand: If you have installed the Flex sdk I believe all the components and libraries are available to

[flexcoders] localization issue: acute accents display incorrectly

2008-03-12 Thread paulbohnenkamp
Hi, I have the following key-val combo in locale/es_US/app.properties file: Meeting.Info=Informacion para Reunión In my app when I switch language to Spanish at runtime it appears correctly, except the o in the last word with the acute accent over it displays as a square. Any ideas what I'm

[flexcoders] Policy mechanism, crossdomain.xml

2008-03-12 Thread Ali Anil SINACI
Hello All, I have a problem about the policy file mechanism in my flex application. First, let me shortly describe the problem. I am creating a secure socket connection to another port on the same machine as the flex application. I have implemented the secure connection, everything goes through

[flexcoders] Slider Track Skinning

2008-03-12 Thread fabiofrp
Hello everyone, I have a HSlider, and this HSlider has several thumbs, I get the position of these thumbs on the fly, so I set their position when I initialize my HSlider, mx:HSlider id=hslider initialize=getData() creationComplete=crTest() width=100%

(solved) Re: [flexcoders] Error: channel not found for reference 'my-http'

2008-03-12 Thread Nayan Savla
funny, i deleted the project and created a new one. now it works fine. weird issue. I had tried closing and opening the project but that didn't help. On Mar 12, 2008, at 12:32 AM, Nayan Savla wrote: its not and hence the following error, channel not found for reference 'my-http'. project

RE: [flexcoders] Re: Duplicate HTTP response headers

2008-03-12 Thread Tim Stewart
No, the documentation didn't mention that. (By documentation you mean readme.txt in development/eclipse/projects, right?) Once I installed ant-contrib, the build process gets a lot further, lots of compiling etc. then ends as follows: compile-swf: [mxmlc] Loading configuration file

[flexcoders] Re: Testing with Flex Framework RSL's

2008-03-12 Thread Darrell Loverin
The Flash Player framework cache is location if different places depending on the OS. You can use the Global Storage Settings Panel (http://www.macromedia.com/support/documentation/en/flashplayer/help/ settings_manager03.html) to delete the Player cache. To delete the cache uncheck the Store

[flexcoders] Error accessing URL problem

2008-03-12 Thread Hasan Maqbool
Hey Techies, I am working with an open BI Suite which is known as Pentaho and I am designing the front end with Flex 3.0. Now, the problem is, I am using action sequences in pentaho to get the data from the source system. This data is exposed as an XML Soad Message through a URL. So, my code in

[flexcoders] Re: blazeds and oc4j

2008-03-12 Thread meteatamel
Can you try the following to see if it can work around the issue for now? Edit services-config.xml in WEB-INF/flex folder and under server section change manageable to false: system manageablefalse/manageable -Mete --- In flexcoders@yahoogroups.com, netdeep [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: FYI - iPhone won't support Mobile Flash

2008-03-12 Thread Tom Chiverton
On Monday 10 Mar 2008, Tom Chiverton wrote: Sun are making Java for the iPhone... Or not. -- Tom Chiverton Helping to proactively build granular web-readiness on: http://thefalken.livejournal.com This email is sent for and on behalf of

Re: [flexcoders] Re: Duplicate HTTP response headers

2008-03-12 Thread Tom Chiverton
On Wednesday 12 Mar 2008, Tim Stewart wrote: [mxmlc] Loading configuration file C:\dev\blazeds\trunk\frameworks\flex-config.xml [mxmlc] Error: PermGen space Did you try adding some more via your java command line ? -- Tom Chiverton Helping to augmentatively exploit back-end

Re: [flexcoders] Clipping of charts

2008-03-12 Thread Brendan Meutzner
Just off the top of my head, I believe the cause of this is when the bar chart renderer goes to draw, it's getting NaN values because the transform methods used to get x,y position against axis values don't exist. My suggestion, if you know the maximum value of your axis, retool your dataProvider

Re: [flexcoders] Simple ActionScript math help needed using dates

2008-03-12 Thread Brendan Meutzner
Check out Jeff Tapper's DateFunction class... it's saved me hours and hours and hours and hours of Date frustration... http://jeff.mxdj.com/datediff_for_actionscript.htm For your issue, look at the dateDiff to compare for y, m, d between your hire date and current date. Brendan On Wed, Mar

[flexcoders] Re: Simple ActionScript math help needed using dates

2008-03-12 Thread Amy
--- In flexcoders@yahoogroups.com, Mark [EMAIL PROTECTED] wrote: I'm getting a list of employees where the Hire Date is one of the fields. I'd like to change that into length of service by way of yy/mm/dd. Can anyone help me with the math on this please? Where is this list coming from?

Re: [flexcoders] Clipping of charts

2008-03-12 Thread Brendan Meutzner
Maybe allowing them to change the vertical axis between Logarithmic and Linear might be an easier solution for this? Brendan On Wed, Mar 12, 2008 at 11:11 AM, Andrej van der Zee [EMAIL PROTECTED] wrote: Yes that's what I just did. I had to take some special actions for the datatips since

Re: [flexcoders] localization issue: acute accents display incorrectly

2008-03-12 Thread Andrew Wetmore
I had the same problem until I figured out that when you create a properties file Flex Builder does not give it a UTF-8 encoding. Create a new properties file, right mouse click on it and select Properties select other encoding and select UTF-8 from the dropdown menu, save the settings, copy the

[flexcoders] Re: Flash + data-aware GUI components + mxml + layout management = Flex? (aka Flash or Flex for my next project)

2008-03-12 Thread actionscript_czar
This is a good question to ask. At my work we are definately a design oriented interactive agency. We have started asking this question on a per project basis. Beyond skins, there is a lot you can do with Flex, including loading in .swf files created from anywhere( runtime or embedded ). So

Re: [flexcoders] best flex books

2008-03-12 Thread [p e r c e p t i c o n]
Thanks! So I picked up a copy of the training from the source book (Flex 2 but still valid in some cases) I haven't gone through all the lessons but I noticed that in their projects there are 3 mxml files with the application tag...how are they navigating between these?? thanks percy On Sun,

Re: [flexcoders] Flash + data-aware GUI components + mxml + layout management = Flex? (aka Flash or Flex for my next project)

2008-03-12 Thread George
Marcelo de Moraes Serpa wrote: I've been off the Flash world for some time now and my next project will probably be built on the Flash Platform. I love the Flash Platform. I used to work with Flash and built a big application in the past in Flash 8 (using the FAMES combo). Coming

[flexcoders] Bookmark Window

2008-03-12 Thread Amy
I'm trying to be more productive in Flex Builder, so I've added some bookmarks. The only problem is I don't think I can use them without the bookmarks window. The Help says I can open this with WindowShow ViewBookmarks, but there is no Show View option in the Window menu. What am I missing?

[flexcoders] LCDS fill with AutoSyncEnabled = false, Paging Takes Twice as Long?

2008-03-12 Thread Kevin
Has anyone encountered this before? I am filling a collection of about 1500 objects. With autoSyncEnabled = false, the paging from the server seems to double in time. (The server call returns in about the same time, as expected.) I would actually expect the opposite, but either way, I am

Re: [flexcoders] best flex books

2008-03-12 Thread Paul Andrews
Do you mean to run them? Just open the file and run the application, or change the default application and then run. Paul - Original Message - From: [p e r c e p t i c o n] To: flexcoders@yahoogroups.com Sent: Wednesday, March 12, 2008 4:55 PM Subject: Re: [flexcoders] best

RE: [flexcoders] SWF download problem

2008-03-12 Thread Alex Harui
Use SWFLoader From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of qau_yasir Sent: Wednesday, March 12, 2008 1:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] SWF download problem Hello I tried to build an application that

Re: [flexcoders] best flex books

2008-03-12 Thread [p e r c e p t i c o n]
I'm trying to understand if there's a way to navigate between them so if you're running the ecomm mxml file can you navigate to the DataEntry mxml file or is this what they're trying to illustrate at all? thanks p On Wed, Mar 12, 2008 at 9:59 AM, Paul Andrews [EMAIL PROTECTED] wrote: Do you

RE: [flexcoders] Error accessing URL problem

2008-03-12 Thread Tracy Spratt
You will need either a crossdomain.xml file on 'http://hasanmaqbool:8080/ http://hasanmaqbool:8080/pentaho/ServiceAction'+serverURL+'action=MyOwn Data.xaction' , or you will need to proxy the data call through a server. Without a crossdomain policy file, the Flash Player is not allowed to acces

Re: [flexcoders] best flex books

2008-03-12 Thread Sherif Abdou
No for that book it is 3 Different Applications - Original Message From: [p e r c e p t i c o n] [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, March 12, 2008 12:09:11 PM Subject: Re: [flexcoders] best flex books I'm trying to understand if there's a way to navigate

[flexcoders] Re: Flex + AMFPHP + POG?

2008-03-12 Thread JWOpitz
Here is a link to the tutorial - http://jwopitz.wordpress.com/2008/03/12/tutorial-flex-amfphp-pog/ --- In flexcoders@yahoogroups.com, JWOpitz [EMAIL PROTECTED] wrote: Alrighty folks. I got this figured out. With some help from a fellow at Adobe, I got Flex + AMF + POG running smoothly. I

Re: [flexcoders] best flex books

2008-03-12 Thread [p e r c e p t i c o n]
ok...that's great to know...i was worried that i missed something! thanks p On Wed, Mar 12, 2008 at 10:42 AM, Sherif Abdou [EMAIL PROTECTED] wrote: No for that book it is 3 Different Applications - Original Message From: [p e r c e p t i c o n] [EMAIL PROTECTED] To:

[flexcoders] Bindable Metatag

2008-03-12 Thread reflexactions
I've read the docs but they left me wanting to know more! According to the docs I can add [Bindable] at the top of a class to make everything bindable. Fine but is there a downside to that or do I just blindly make whole classes bindable just in case or do I selectively make bindable only

[flexcoders] ANN: PyAMF 0.2

2008-03-12 Thread Thijs Triemstra | Collab
We released PyAMF 0.2, a lightweight library that allows Flash and Python applications to communicate via Adobe's ActionScript Message Format. AMF3 and RemoteObject are supported in all the implemented Remoting gateways, currently supported for Django, Twisted, Web2Py and WSGI. This

Re: [flexcoders] best flex books

2008-03-12 Thread [p e r c e p t i c o n]
nevermind...looks like you can... thanks On Wed, Mar 12, 2008 at 11:21 AM, [p e r c e p t i c o n] [EMAIL PROTECTED] wrote: ok... so my next question is...if i've created an mxml component based on canvas or hbox...can i use that instead of specifying the hbox or canvas tag in the view

[flexcoders] Re: Code is not executed - ignore

2008-03-12 Thread markgoldin_2000
I found it. Never mind. --- In flexcoders@yahoogroups.com, markgoldin_2000 [EMAIL PROTECTED] wrote: I am extending DataGrid: package yardmodel.modulecode { import mx.controls.advancedDataGridClasses.AdvancedDataGridColumn; public class codeDestinationGrid extends

[flexcoders] Re: DataGrid as an itemRenderer

2008-03-12 Thread markgoldin_2000
I am working on that solution desite other suggestions. Want to spend some time before I give up. I've got some results. I am showing a small grid in another grid's cell. I even have data shown in the internal grid. One (I am sure of many) problem I am having already is that whether I would

[flexcoders] Export To outlook in flex...

2008-03-12 Thread bhaskar M
Hi I need to implement Export To Outlook feature in flex application.. could anyone give tips. Thanks Bhaskar. - Looking for last minute shopping deals? Find them fast with Yahoo! Search.

[flexcoders] Debugging manual drag and drop events

2008-03-12 Thread dsds99
Ok I drag the green box onto the white one during the capture phase bigBox.addEventListener(DragEvent.DRAG_ENTER,dragEnterHandler) output = Entered bigBox Now if I set it to capture phase bigBox.addEventListener(DragEvent.DRAG_ENTER,dragEnterHandler,true) output = nothing I think the output

[flexcoders] Re: DataGrid as an itemRenderer

2008-03-12 Thread Cato Paus
Hi have you try to set the variableRowHeight to true on the datagrid? Cato Paus www.umbrellacorp.no --- In flexcoders@yahoogroups.com, markgoldin_2000 [EMAIL PROTECTED] wrote: Can datagrid be an itemrenderer for a column in another datagrid? If yes, then if my item grid is an mxml file then

[flexcoders] Re: DataGrid as an itemRenderer

2008-03-12 Thread markgoldin_2000
Yes, it was it Thanks --- In flexcoders@yahoogroups.com, Cato Paus [EMAIL PROTECTED] wrote: Hi have you try to set the variableRowHeight to true on the datagrid? Cato Paus www.umbrellacorp.no --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2000@ wrote: Can

RE: [flexcoders] Debugging manual drag and drop events

2008-03-12 Thread Alex Harui
Nope, that's correct behavior. There is no capture phase on the target, only on its parents. http://www.w3.org/TR/DOM-Level-3-Events/events.html#Events-flow From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dsds99 Sent: Wednesday, March

[flexcoders] captureImage not drawing fresh images

2008-03-12 Thread netdeep
I'm having a problem creating a png snapshot of a chart I'm drawing. I can use the ImageSnapshot captureImage method but it only draws the elements added during the creation of the component and if I later add data from messaging or with actionscript (addChild), it only draws the original

[flexcoders] Re: Debugging manual drag and drop events

2008-03-12 Thread dsds99
Nope, that's correct behavior. There is no capture phase on the target, but then there is no bubble phase on the target either so then it should output nothing as well... ok i'm abit confused i do understand that there is the capture phase, target phase, then bubble phase but the way it works

RE: [flexcoders] Export To outlook in flex...

2008-03-12 Thread Kevin Aebig
Export what? Email, Mail Folders, Contacts, other? Please be more precise in and post what you've tried already to accomplish this on your own. Perhaps one of the list members will be able to help you work through the problems. !k _ From: flexcoders@yahoogroups.com

[flexcoders] Re: LCDS fill with AutoSyncEnabled = false, Paging Takes Twice as Long?

2008-03-12 Thread Kevin
Thanks for the explanation. It now makes sense. It is possible to use Hibernate caching with dataservices to cache objects in hibernate in order to speed up large fills? - Kevin --- In flexcoders@yahoogroups.com, Jeff Vroom [EMAIL PROTECTED] wrote: With auto-sync-enabled = false, we no

[flexcoders] Re: best flex books

2008-03-12 Thread Blake Eaton
The Training from the Source book has already been mentioned. Another really good resource is http://www.theflexshow.com/blog/index.cfm/Podcast http://www.theflexshow.com/blog/index.cfm/Podcast . I have been listening for a while and it's helped me know what is going on in the Flex community and

[flexcoders] Re: SOLUTION multiple ComboBox data with HttpService e4x format xml file !

2008-03-12 Thread Aymen
First special thanks to brendansjunk my teacher :) -- The solution of my post is : xml structure example is :(gouv.xml) * ?xml version=1.0 encoding=utf-8? tunisie gouv nom=ARIANA 1 deleg nom=ARIANA

[flexcoders] Embeded assets in CSS - can't resolve DV path

2008-03-12 Thread Greg Hess
Hi Folks, I am currently skinning our application and embedding many image assets in the css. I am using Design View when editing the CSS and am able to browse to my images, edit the scale9 ect no problem. However, when I return to 'source' and compile the application all the skin paths

[flexcoders] Embeded Assets in CSS can't resolve DV path

2008-03-12 Thread Greg
Hi Folks, I am currently skinning our application and embedding many image assets in the css. I am using Design View when editing the CSS and am able to browse to my images, edit the scale9 ect no problem. However, when I return to ‘source’ and compile the application all the skin paths

RE: [flexcoders] Re: Flash + data-aware GUI components + mxml + layout management = Flex? (aka Flash or Flex for my next project)

2008-03-12 Thread Najier Khan
Try this combination: Flash CS3 (Widget Engine) + Granite Data Service (a Remoting Data Service framework). U will need a Java/Hibernate back-end. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of actionscript_czar Sent: Wednesday,

[flexcoders] SoundChannel and it's position

2008-03-12 Thread gbkpicasso
Hello, I would like to be able to play a sound and stop it at a specific position. I know I can start playing a sound at any point by mySound.play(1000.005) but I would like to stop the sound when the position = 5005.5008. How can I stop the sound when the Soundchannel.position gets to a value

Re: [flexcoders] Best practices for developing flex projects with CF components

2008-03-12 Thread Mike Chabot
I don't think it matters too much whether the project is local or on your dev server, assuming you have a fast connection to your dev server making speed a non-issue. You don't need to install anything special on the dev server. Good luck, Mike Chabot On Wed, Mar 12, 2008 at 2:29 PM, kpjj31

[flexcoders] How to use e4x to extract the name of the node - NOT the value

2008-03-12 Thread guitarguy555
I have a component that has a datagrid that is bound to an XMLList. I want to be able to extract the ID column of the grid but not specifically hardcode the name of the XML node inside the component's code. Sometimes this ID node value will be named differently. eg. EmployeeID, or ManagerID

[flexcoders] problem : scrollbar track is disabled when applying skin to scroll bar

2008-03-12 Thread Yochikoh Haruomi
Dear list, I need help regarding the behavior of a scroll bar track. Before I applied the skin, when the data is larger than the display area, a scroll bar is added automatically. When the scrollbar track is pressed, the page will be scrolled and the thumb will move. However, after I

[flexcoders] Re: How to use e4x to extract the name of the node - NOT the value

2008-03-12 Thread guitarguy555
Thanks guys! That's exactly what I needed. Cheers --- In flexcoders@yahoogroups.com, vardpenguin [EMAIL PROTECTED] wrote: once you've nagivated to the node you're wanting to look at you can use name().localName: once example might be: var nodeName : String =

[flexcoders] Problem with Panel Sizing

2008-03-12 Thread Nate Pearson
If the title on my panel exceeds the size of my panel the children in the panel are expanded and there's a horizontal scroll bar. Anyone know how to make it so it stays the size of my panel? IE panel.width = 300 I want everything bellow it to stay at 300 even if my title is 400. (I want the

RE: [flexcoders] Re: Debugging manual drag and drop events

2008-03-12 Thread Alex Harui
If you read the spec, the listeners are not assigned by phases. There is just capture phase, or non-capture phase. Non-capture listeners get all target and bubble phase events at that node in the DOM. e.stopPropagation only prevents bubble listeners higher up in the DOM from getting the event

RE: [flexcoders] captureImage not drawing fresh images

2008-03-12 Thread Jim Hayes
I'd suspect that maybe you're calling captureImg() immediately after setting the data/drawing the elements in your code? If so, it may not actually be rendered to the components graphics when the snapshot is taken. Just a guess, but it smells a bit like a timing problem to me (I've made too

[flexcoders] Re: BlazeDS Subtopics from Java - SOLVED

2008-03-12 Thread Geoffrey
Trial and error solved this since I couldn't find any examples or documentation. The AsyncMessage object in the Java class needs to be set up like this: ... msg.setDestination(siteMessages); msg.setHeader(DSSubtopic, siteData.userSummary); ... siteMessages is the name of the destination set up

[flexcoders] Kiosk support in AIR?

2008-03-12 Thread Beau Scott
So the FAQ on the old labs site for AIR noted that kiosk support was planned, but it gave no mention of which specific kiosk-bits of functionality would be available. Anyone know if this made it in and if so what/where?

[flexcoders] Re: How to use e4x to extract the name of the node - NOT the value

2008-03-12 Thread guitarguy555
Argh..now I'm having difficulty using this variable in an e4x filtering expression. here was my old code that worked fine with a named value var myXMLList:XMLList = xl.(EmployeeId == _selectedRowID); Now, I know that I can use the variable name to refer to an XML node like so:

[flexcoders] Error Codes HTTPService

2008-03-12 Thread bbeban7
Hey there. The issue I'm having, is that our company's back-end team (I'm on the front-end team) under certain conditions sends 404 codes back, along with a response message for us to parse such that we can display the appropriate explanatory message to the user. These messages are stored and

[flexcoders] Re: Bindable Metatag

2008-03-12 Thread Andrew Strader
I think the ability to put the metatag at the top of the class is a shortcut for putting it on every public property. In certain cases it can be a huge time saver, but you shouldn't do it just in case. You should do it because you really want to allow binding to every single property. Maybe I

[flexcoders] Looking for a multi-select drop-down list component

2008-03-12 Thread Tracy Spratt
I am confident I can build an acceptable component myself, but want to ask if anyone has seen such a thing first. Nothing showed up in my searches. From other posts, making ComboBox a multi-select component does *not* seem like the way to go. My plan woud be to composit a component using a

RE: [flexcoders] SWF download problem

2008-03-12 Thread Blake Barrett
Well also, you are listening to Event.INIT. If you use a SWFLoader, listen to contentLoaderInfo for the Event.COMPLETE event; or at least that's how you'd do it in Flex AS3. Blake From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex

  1   2   >