[flexcoders] Re: HTML Monitor for Mac?

2007-05-07 Thread arieljake
Please note, you mean HTTP monitor for Mac. --- In flexcoders@yahoogroups.com, "stevekpeak8" <[EMAIL PROTECTED]> wrote: > > Thanks for all of the great pointers. > > I'll be looking these over, but it looks like I've got a couple of > good ones to choose from. > > Best regards, > > Steve > >

[flexcoders] Re: binding and dataProvider.filterFunction

2007-05-07 Thread arieljake
The issue I mentioned in the last post was due to a lack of [Bindable] clauses where they were needed. --- In flexcoders@yahoogroups.com, "arieljake" <[EMAIL PROTECTED]> wrote: > > In response: > > 1) I apparently must use {categoryData.allAvailableCategories.source} > as the source attribute bec

[flexcoders] Re: linkbar selectedItem = -1 bounds error

2007-05-07 Thread arieljake
I understand, thank you. I ended up taking out that complex layout. Note: "Designing the Obvious" by Robert Hoekman led me to do that. --- In flexcoders@yahoogroups.com, "Manish Jethani" <[EMAIL PROTECTED]> wrote: > > On 5/7/07, arieljake <[EMAIL PROTECTED]> wrote: > > > I want to add this code

RE: [flexcoders] Re: Keyboarding up/down editable columns in Datagrid

2007-05-07 Thread Alex Harui
What are you using the endEdit for? You should just let the DG call it when you change editedItemPosition. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike_Robinson_98 Sent: Monday, May 07, 2007 9:02 PM To: flexcoders@yahoogroups.com S

Re: [flexcoders] Loader and cross-domain

2007-05-07 Thread Bjorn Schultheiss
My bad... Tests proved this not the case. On 08/05/2007, at 3:06 PM, Bjorn Schultheiss wrote: Hey, I'm loading jpg's from a remote domain and wish to perform extract pixel data from the loaded assets. I have specified a loaderContext object in the Loader.load(). something like: var lc

[flexcoders] Loader and cross-domain

2007-05-07 Thread Bjorn Schultheiss
Hey, I'm loading jpg's from a remote domain and wish to perform extract pixel data from the loaded assets. I have specified a loaderContext object in the Loader.load(). something like: var lc:LoaderContext = new LoaderContext(); lc.checkPolicyFile = true; _loader = new Loader(); _loader.load

[flexcoders] Re: HTML Monitor for Mac?

2007-05-07 Thread stevekpeak8
Thanks for all of the great pointers. I'll be looking these over, but it looks like I've got a couple of good ones to choose from. Best regards, Steve --- In flexcoders@yahoogroups.com, Kevin <[EMAIL PROTECTED]> wrote: > > Charles is good as well depending on what you need it for: http://

[flexcoders] Re: Keyboarding up/down editable columns in Datagrid

2007-05-07 Thread Mike_Robinson_98
--- In flexcoders@yahoogroups.com, "Mike_Robinson_98" <[EMAIL PROTECTED]> wrote: > > --- In flexcoders@yahoogroups.com, "Manish Jethani" > wrote: > > > > On 5/8/07, Mike_Robinson_98 wrote: > > > Has anyone come up with a good way to let a user move up/down in an > > > editable column of a datagri

[flexcoders] error 2032 Stream Error

2007-05-07 Thread scott_flex
I just started getting the 2032 error when calling a web service and for the life of me cannot determine what's causing it. Code snippet looks like: var ws:WebService = new WebService() ws.addEventListener("fault", faultHandler); // alerts error ws.loadWSDL("http://mylocalservers/test.asmx?

[flexcoders] Re: Keyboarding up/down editable columns in Datagrid

2007-05-07 Thread Mike_Robinson_98
--- In flexcoders@yahoogroups.com, "Manish Jethani" <[EMAIL PROTECTED]> wrote: > > On 5/8/07, Mike_Robinson_98 <[EMAIL PROTECTED]> wrote: > > Has anyone come up with a good way to let a user move up/down in an > > editable column of a datagrid using the keyboard? These columns use a > > TextInput a

Re: [flexcoders] bottom="0" bug

2007-05-07 Thread Igor Costa
Tadas It's a Bug But a Bug with Work arround. Here's a little solution works, but the Bottom should work at all. http://www.adobe.com/2006/mxml"; layout="absolute"> Regards. Igor Costa On 5/6/07, Tadas Ziemys <[EMAIL PROTECTED]> wrote:

Re: {Disarmed} RE: [flexcoders] Convert Non-server Flex Project to Server Project

2007-05-07 Thread Igor Costa
Jurgen You can simplify passing new arguments to your basic project Like -services "config-mine.xml" Where this config-mine.xml has the Points to the Server-Side like FDS for example many ways to do the same The differents between the 3 options it's only passing new arguments to the compiler

Re: [flexcoders] bottom="0" bug

2007-05-07 Thread Tadas Ziemys
can anyone think of any solution? btw, where should i report bug? :) 2007/5/7, Manish Jethani <[EMAIL PROTECTED]>: On 5/7/07, Manish Jethani <[EMAIL PROTECTED]> wrote: > Here's what you mean: > > > http://www.adobe.com/2006/mxml"; > xmlns="*" layout="absolute" width="320" height="240"> > >

RE: [flexcoders] Pin a single child element to the bottom of a parent VBox?

2007-05-07 Thread Gordon Smith
You should be able to simply override updateDisplayList() and, after calling super.updateDisplayList(), reposition the one child that you want to be in a different location. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael

[flexcoders] Displaying an image from an input stream.

2007-05-07 Thread ivansebastiansurya
Hi everyone, Does anyone know how to display an image in Flex where the image is taken from an input stream? My Flex application will display image whose data is stored in a database, so my Flex application will need to be able to display an image given its data, not its URL. Does anyone know h

Re: [flexcoders] Masks, Filters, Soft Wipes

2007-05-07 Thread Lachlan Cotter
In case anyone else is interested, the solution to the bitmap cached mask issue is to make the mask a sibling of the target, rather than a child of the target, in the display hierarchy. Then you can position it as you wish and it filters properly. Cheers, Lach -

Re: [flexcoders] HTML Monitor for Mac?

2007-05-07 Thread Kevin
Charles is good as well depending on what you need it for: http:// www.xk72.com/charles/ - kevin On May 7, 2007, at 7:22 PM, Steve Kellogg wrote: Hello, When developing on a Windows machine, I find MS’s Fiddler utility to be a lifesaver (It let’s me see html traffic to/from the machin

[flexcoders] Re: HTML Monitor for Mac?

2007-05-07 Thread scalenine
Like Little Snitch? http://www.obdev.at/products/littlesnitch/index.html Juan scalenine.com --- In flexcoders@yahoogroups.com, "Steve Kellogg" <[EMAIL PROTECTED]> wrote: > > Hello, > > > > When developing on a Windows machine, I find MS's Fiddler utility to be > a lifesaver (It let's me see

[flexcoders] Re: HTML Monitor for Mac?

2007-05-07 Thread ba.chase
Its not free, but ServiceCapture (http://kevinlangdon.com/serviceCapture/) should do the trick. --- In flexcoders@yahoogroups.com, "Steve Kellogg" <[EMAIL PROTECTED]> wrote: > > Hello, > > > > When developing on a Windows machine, I find MS's Fiddler utility to be > a lifesaver (It let's me se

[flexcoders] Re: Zooming of the whole Application !!! Doesnt behave like a authorin tool pub

2007-05-07 Thread evilcflex
I too am having this same issue. For what it's worth, I have found that changing this.parent.width and this.parent.height (basically 'root1') to lower values (in my case about x=520 y = 310 by trial & error) then I can approximate the original size (1280 x 720) and the scaling still sizes wit

Re: [flexcoders] Re: Pin a single child element to the bottom of a parent VBox?

2007-05-07 Thread Michael Schmalle
Ian, Let me ask, what are your intentions? What is the purpose of the pinned instance? Then I could explain why I over engineered what Doug put so simply :) Peace, Mike On 5/7/07, Michael Schmalle <[EMAIL PROTECTED]> wrote: > One way you could do this is with a Spacer before the last child b

[flexcoders] Add a node to a tree programatically

2007-05-07 Thread Alejandro Narancio
Guys, I want to add a node programatically to a tree using ActionScript, anybodoy know how can I do that? Thanks in advance, Alex

Re: [flexcoders] Re: Pin a single child element to the bottom of a parent VBox?

2007-05-07 Thread Michael Schmalle
One way you could do this is with a Spacer before the last child box to push it to the bottom. Nice 'n' easy in static mxml. That is an easy way also if you do not have flexible children. When I was answering his question I was seeing in my head a layout independent of the view children. Peace,

Re: [flexcoders] Pin a single child element to the bottom of a parent VBox?

2007-05-07 Thread Michael Schmalle
Hi, As it is the Box disregaurds x and y. My advice as a component developer is, subclass the Box and create a bottomRenderer property that is IFactory. Create a method that overrides layoutChrome() and layout the renderer based on your required dimensions. This instance would be added to rawChi

[flexcoders] HTML Monitor for Mac?

2007-05-07 Thread Steve Kellogg
Hello, When developing on a Windows machine, I find MS's Fiddler utility to be a lifesaver (It let's me see html traffic to/from the machine). Does anyone know of a similar utility for Mac OS X? TIA Steve

[flexcoders] Re: Pin a single child element to the bottom of a parent VBox?

2007-05-07 Thread Doug Lowder
One way you could do this is with a Spacer before the last child box to push it to the bottom. Nice 'n' easy in static mxml. --- In flexcoders@yahoogroups.com, Ian Skinner <[EMAIL PROTECTED]> wrote: > > Is this possible in a standard 'vertical' layout VBox, or does one have > to go 'absolute

[flexcoders] Re: Switching View States - Destroying Resources

2007-05-07 Thread munkydung
I ran into this same problem. It's a shame there isn't a formal way for dealing with this in the framework. Here's my solution... Step 1: Extend the State component. The main difference being an event handler listening for FlexEvent.EXIT_STATE to remove children package blah.blah { import mx.

[flexcoders] Re: pulling in HTML content - looking for ideas

2007-05-07 Thread barry.beattie
> have you looked generating flashpaper via cf? hey Paul, how'd you know I was a CF programmer? does it really show that bad? how embarrassing... Sadly, there's no server-side code in this case to lean on. it all has to be static HTML and swf's. So far my choices are - Alex's suggestion of fl

[flexcoders] Pin a single child element to the bottom of a parent VBox?

2007-05-07 Thread Ian Skinner
Is this possible in a standard 'vertical' layout VBox, or does one have to go 'absolute' layout? I have a VBox displaying 1-N child boxes, and I want one to be pinned to the bottom. Is this possible or do I need to wrap an absolute layout around this?

[flexcoders] AS3 codegen

2007-05-07 Thread Kevin
I noticed that this post was over a year old, but I am wondering if the codegen plugin is still appropriate for use. We have over 50 Java objects that we would like to generate AS3 VO from for a Cairngorm app. Can anyone advise... http://weblogs.macromedia.com/pmartin/archives/2006/04/ xd

[flexcoders] Re: Help! Object integrity across DataService.commit()

2007-05-07 Thread simonjpalmer
Thanks for the response Jeff. I now return an object in the parent with just the id fields populated. I have switched off autoSyncEnabled from the client end, but not in the destination. My destinations are as follows: . . ..beanPortfolioAssembler ..spring .. ... ... .. . . . ..beanPlanPoint

Re: {Disarmed} RE: [flexcoders] Convert Non-server Flex Project to Server Project

2007-05-07 Thread Jurgen Beck
Yeah, thought about that too. However, running this in Flex Builder on the Mac, it seems that those features are disabled on the context menu, even on another FDS project I have going. Brian Holmes wrote: Don't know if it works for a basic flex project, but I know that with other types of pr

[flexcoders] new flex coder community

2007-05-07 Thread Patrick Lemiuex
I started a new flexcoder community. it's brand new, if anybody would like to talk things flex... flexcoders.me.com (If you know me at least sign up, please) I am using Renaun's example for an adobe rss feed eater - sweet! Patrick

RE: [flexcoders] Convert Non-server Flex Project to Server Project

2007-05-07 Thread Brian Holmes
Don't know if it works for a basic flex project, but I know that with other types of projects I've done a right click on the project and select Apply Flex Nature From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jurgen Beck Sent: Monday, M

[flexcoders] Re: Mouse Event - Mouse Pressed

2007-05-07 Thread helix206
Flex rules, autoRepeat is what i needed ! thx alot! --- In flexcoders@yahoogroups.com, "Daniel Freiman" <[EMAIL PROTECTED]> wrote: > > you might also want to take a look at Button.autoRepeat and Button styles > repeatDelay and repeatInterval. > > Daniel Freiman > nondocs

Re: [flexcoders] Re: How can google index a Flex / SWF site ?

2007-05-07 Thread Greg Fuller
I'm considering using FXT, but I can't find any evidence that search engines will index the XML in the web page. Has anyone that used FXT had their pages indexed by a search engine? Or more generally, how can I know that search engines will index XML inside a script tag (

[flexcoders] Convert Non-server Flex Project to Server Project

2007-05-07 Thread Jurgen Beck
Is there a way to convert a non-server Flex project to a server project? When setting up a Flex project I can of course select the type. However, I need to convert a Basic Flex Project to a Flex Data Services project. Seems like the in the Flex properties for the project the Flex Server items a

RE: [flexcoders] Re: How to prevent children from causing a mouseOut event

2007-05-07 Thread Gordon Smith
DisplayObjects in which you don't draw anything don't dispatch mouse events. (You can draw transparent pixels, though.) - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Sobut Sent: Monday, May 07, 2007 10:02 AM To: flexcoders@

RE: [flexcoders] Re: Help! Object integrity across DataService.commit()

2007-05-07 Thread Jeff Vroom
Answers inline: From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of simonjpalmer Sent: Monday, May 07, 2007 11:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Help! Object integrity across DataService.commit() Anyone else

Re: [flexcoders] SpiderChart

2007-05-07 Thread Igor Costa
I had the same problem today , you can also check out here http://livedocs.adobe.com/flex/2/langref/mx/charts/chartClasses/PolarChart.html Polar, Radar and Spider it's usually the same name. Regards. Igor Costa On 4/30/07, lruinelli <[EMAIL PROTECTED]> wrote: Hello, does it exist in flex

Re: [flexcoders] Keyboarding up/down editable columns in Datagrid

2007-05-07 Thread Manish Jethani
On 5/8/07, Mike_Robinson_98 <[EMAIL PROTECTED]> wrote: > Has anyone come up with a good way to let a user move up/down in an > editable column of a datagrid using the keyboard? These columns use a > TextInput as the itemEditor. > > Right now I use a handler for the keyFocusChangeEvent on the datagr

Re: [flexcoders] flex passing values

2007-05-07 Thread slangeberg
Simplest approach is to have one .mxml file that contains two other components, such as Input.mxml and Output.mxml. I tend to follow the Cairngorm approach, even if just by using a Singleton ModelLocator, which allows you to store values such as _searchString - input by user - globally. Input.mx

Re: [flexcoders] Re: DateChooser

2007-05-07 Thread Manish Jethani
On 5/7/07, kredding.geo <[EMAIL PROTECTED]> wrote: > I read the source code and am trying to understand it. . I'm sorry. Here's how I would extend the DateChooser component to add support for a "selectedDayStyleName" style. public class MyDateChooser extends DateChooser { override creationC

Re: [flexcoders] Staging an AS3 for Flash 8?

2007-05-07 Thread slangeberg
Sorry Nate, You can't run an AS3/VM2 (Flash 9) .swf under the AS2/VM1 player (Flash 8). Same as you can't run a flash 7 movie in the flash 6 player. RE: I can't use getURL on myspace due to the new FP9 security features. Flash 9 uses URLLoader, and not getURL(). I'm afraid I don't have any

[flexcoders] Staging an AS3 for Flash 8?

2007-05-07 Thread jnbeck86
I have a flash embed that gets hotlinked on many of the social networks (MySpace, Bebo, Friendster, etc...). I want to port my flash application to AS3 to benefit from the new features it entails. However, my analytics report that only 86% of my users are using Flash Player 9. I want to keep my cu

Re: [flexcoders] Send With CFMAIL

2007-05-07 Thread Oliver Tupman
The quick and dirty way would be on the user clicking some send button, the data is taken from the text area and a quick and dirty HTTPService call. Something like this: http://www.adobe.com/2006/mxml"; layout="vertical"> http://localhost:8080/MailReceiver/emailer.jsp"; method="POST"

[flexcoders] flex passing values

2007-05-07 Thread Kulsum Arif
I am new to flex and want to design a search page: Basically once user gives his input, the search page should go away and teh results should appear. I tried doing 2 mxml files for this and passing values as query string params. The 2 page setup works but I am not able to pass values as quer

[flexcoders] Keyboarding up/down editable columns in Datagrid

2007-05-07 Thread Mike_Robinson_98
Has anyone come up with a good way to let a user move up/down in an editable column of a datagrid using the keyboard? These columns use a TextInput as the itemEditor. Right now I use a handler for the keyFocusChangeEvent on the datagrid to handle TAB and Shift-TAB keys to move horizontally throug

[flexcoders] Chart Annotations

2007-05-07 Thread Brendan Meutzner
Hi All, Finally got around to posting the source and sample for the Charting Annotation package I did here at CNET last fall. Enjoy... http://www.meutzner.com/blog/index.cfm/2007/5/7/Flex-Chart-Annotations-Source-and-Example Brendan

Re: [flexcoders] rtmp sniffer

2007-05-07 Thread Kevin
will Service Captur sniff rtmp? I have been using Charles (which I love), but it seem to be only appropriate for http traffic... I'll look into Service Capture and see if it will work. - kevin On May 7, 2007, at 2:43 PM, Patrick Lemiuex wrote: i use service capture, it has some issues

Re: [flexcoders] rtmp sniffer

2007-05-07 Thread Patrick Lemiuex
i use service capture, it has some issues tho, like when you try to drag the bottom hd-dividedbox all the way to the left, it is buggy... it messes up the whole entire UI. Has anybody had the time to make one in Apollo yet? I like service capture's functionality i just wish it wasn't buggy

[flexcoders] Re: Help! Object integrity across DataService.commit()

2007-05-07 Thread simonjpalmer
Anyone else trying to lazily load a parent-child relationship with fds? The more I look at this the more I think it may be the key to solving my problem. I have some fundamental questions: 1. What *should* I return as the parent object on the child when I return an object in response to an item

RE: [flexcoders] Re: pulling in HTML content - looking for ideas

2007-05-07 Thread Alex Harui
It sounded like more_info.html was an html file with # anchors in it. If you stick that in an IFrame of id="moreInfo" you can add JS code the main html to talk to the IFrame and give it new urls with the right #. Your more_info will be a floating IFrame in HTML floating over the SWF if you can

[flexcoders] Re: DateChooser

2007-05-07 Thread kredding.geo
I read the source code and am trying to understand it. That's why I asked the question. Thanks for your words of wisdom. --- In flexcoders@yahoogroups.com, "Manish Jethani" <[EMAIL PROTECTED]> wrote: > > On 5/7/07, kredding.geo <[EMAIL PROTECTED]> wrote: > > How do I access the CalendarLayout o

RE: [flexcoders] Remove white space around list items

2007-05-07 Thread Alex Harui
try paddingTop paddingBottom From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Igor Costa Sent: Monday, May 07, 2007 9:22 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Remove white space around list items Extend the Class oth

RE: [flexcoders] Zooming of the whole Application !!! Doesnt behave like a authorin tool published SWF

2007-05-07 Thread Alex Harui
In theory, you either want the player to do the scaling or Flex to do the scaling. Flex doesn't really know how so it just looks at the new stage size and tries a non-scaled layout. If the player also tries to scale, you'll get the wrong result. Setting a non% width/height should prevent Flex

RE: [flexcoders] Zooming of the whole Application !!! Doesnt behave like a authorin tool published SWF

2007-05-07 Thread Alex Harui
Because both the player and Flex are trying to scale. Set the app to be some fixed non% size and see if that helps. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jon Bradley Sent: Monday, May 07, 2007 7:40 AM To: flexcoders@yahoogroups.c

Re: [flexcoders] Re: Tree/Accordion Type Component?

2007-05-07 Thread Michael Schmalle
Well, When a semi budget is there, 119$ for repeated use sure beats the cost of a developer doing that same thing. Our components are built solid and have excellent examples and support. Thanks for looking. :) Mike On 5/7/07, scalenine <[EMAIL PROTECTED]> wrote: Jon, I went through the sa

[flexcoders] Re: Tree/Accordion Type Component?

2007-05-07 Thread scalenine
Jon, I went through the same thing. Check out the Lightroom theme I made (I called it Darkroom so people wouldn't expect all the functionality to be there). http://scalenine.com/blog/2007/05/05/darkroom-theme-available/ I got the functionality you're looking for to work, but I had to abuse some

Re: [flexcoders] Tree/Accordion Type Component?

2007-05-07 Thread Jon Bradley
LOL. That is almost exactly what I'm looking to do. Unfortunately I don't have a budget for the components I need, so purchasing at the time is not an option. I was hoping it was just a hack to the current accordion component to resize the container and keep items open. Juan just pointed t

[flexcoders] Re: How to prevent children from causing a mouseOut event

2007-05-07 Thread Tom Sobut
To add to this, I found that when you implement rollOver and rollOut on a formItem, you'll need to define a backgroundColor on the formItem. Without it you will get rollOuts and rollOvers between the children in your formItem. If anyone knows a better way around this, let me know. Otherwise,

[flexcoders] ON CLicking the bar the Color of the Bar in a Bar chart should change

2007-05-07 Thread haravallabhan
Hi All, The subject says it all.. I want the color of the bar in a bar chart to change itself when it is clicked. Any one has any idea... Thanks in advance. Hara

[flexcoders] Re: xml to e4x Help Please!!!

2007-05-07 Thread emobilecat
Yeah, you would need to create an xml file in a data folder and then insert this text: t-shirt 1.50 false polo 2.00 true sweater 2.50 false car 3.00 false

Re: [flexcoders] Remove white space around list items

2007-05-07 Thread Igor Costa
Extend the Class otherwise you can't solve in work arround. rowHeight you could find a way limiting the size of font into the divided /2 On 5/7/07, Ian Skinner <[EMAIL PROTECTED]> wrote: "Using the rowHeight can solve your problem." Ok, that is what I have been using, but it seems to d

Re: [flexcoders] How to uses the slider to control VideoDisplay?

2007-05-07 Thread Manish Jethani
On 5/6/07, underyang <[EMAIL PROTECTED]> wrote: > When I click Button to play xxx111.flv, have noquestion.But,When > i change slider and click another button to play xxx222.flv,the > question is happen.Slider's value is wrong.How can I solve this > problem? Try calling stop() and close() on t

[flexcoders] VerifyError: Error #1053: Illegal override of SeriesEffect in mx.charts.effects.SeriesEffect

2007-05-07 Thread Jim Robson
Hey guys, I'm getting the error referenced in the subject line when I place any series effect anywhere in any application. I get it with SeriesInterpolate, SeriesSlide, and SeriesZoom tags. I also get it if I try to apply the effect in ActionScript using the setStyle method of a chart series (e.g.

[flexcoders] Re: Tree/Accordion Type Component?

2007-05-07 Thread scalenine
I've seen this, but it's $119 I think. http://www.teotigraphix.com/product#taskpanefx Here's a sample of it in action: http://www.teotigraphix.com/flexAssets/taskpanefx/DualPaneExample.html Juan scalenine.com --- In flexcoders@yahoogroups.com, Jon Bradley <[EMAIL PROTECTED]> wrote: > > Hey al

[flexcoders] Re: Skinning dataTip - Slider

2007-05-07 Thread scalenine
You can call them out separately in CSS styling: VSlider { [insert styling attributes here] } HSlider { [insert styling attributes here] } or if you want to create more variations: .anotherSlider { [insert styling attributes here] } Another way is to just style the sliders inline in the compon

Re: [flexcoders] Tree/Accordion Type Component?

2007-05-07 Thread Michael Schmalle
Hi, You could check out; http://www.teotigraphix.com/components/containers/taskpanefx I you were interested, I could implement the task pane with indentation of the task list components. Mike On 5/7/07, Jon Bradley <[EMAIL PROTECTED]> wrote: Hey all, Looking to see if anyone has develop

RE: [flexcoders] Remove white space around list items

2007-05-07 Thread Ian Skinner
"Using the rowHeight can solve your problem." Ok, that is what I have been using, but it seems to do a poor job of trimming the space around the list items. I'm finding the list items cropped from the bottom, instead a vertically centered in the rowHeight. Is there anything one can easily do t

Re: [flexcoders] Zooming of the whole Application !!! Doesnt behave like a authorin tool published SWF

2007-05-07 Thread Manish Jethani
On 5/7/07, Jon Bradley <[EMAIL PROTECTED]> wrote: > ps: i wish the list weren't on Yahoo - I love all the junk it throws into > every message. Those sponsored links and the whole footer are getting a bit > annoying when you just want to reply to a snippet of information. Tell me about it. I'm rea

Re: [flexcoders] rtmp sniffer

2007-05-07 Thread Manish Jethani
On 5/7/07, Kevin <[EMAIL PROTECTED]> wrote: > what do people use to view their RTMP traffic? *raises hand* Ethereal.

Re: [flexcoders] Access dragImage within dragDrop event?

2007-05-07 Thread Manish Jethani
On 5/7/07, slangeberg <[EMAIL PROTECTED]> wrote: > Here's the handler to capture the 'dragDrop' event: > > private function onDragDrop(event:DragEvent):void {...} > > Is there any way to access the dragImage from that DragEvent? I think you'll have to just hold a reference to your dragImage an

Re: [flexcoders] Re: DateChooser

2007-05-07 Thread Manish Jethani
On 5/7/07, kredding.geo <[EMAIL PROTECTED]> wrote: > How do I access the CalendarLayout object? You're looking at extending the DateChooser component. That means you're looking at reading and understanding the source code of the DateChooser component. Use the Source, Luke!

[flexcoders] Possible to access dragImage within a DragEvent?

2007-05-07 Thread slangeberg
I want to access the thumbnail created in drag/drop operations, to create an item exactly where you see this thumbnail on stage. I initiate drag/drop here, where Thumbnail is basically a component with an Image and metadata. I want to be able to access the Thumbnail that is created and dragged ar

Re: [flexcoders] Setting a ViewStack.selectedIndex in States

2007-05-07 Thread Manish Jethani
On 5/7/07, Christoph Diefenthal <[EMAIL PROTECTED]> wrote: > The Problem: > > There are two state, in which both do the same: > Set the selectedIndex of a ViewStack to 1. > But when you execute them one after another. The second to be executed > always sets the selectedIndex to 0 ! Bug i

[flexcoders] Access dragImage within dragDrop event?

2007-05-07 Thread slangeberg
Here's the code I used to initiate the drag - Thumbnail is just a component with an image and metadeta: var dragProxy:Thumbnail = new Thumbnail(); // Call the DragManager doDrag() method to start the drag. // For information on this method, see // the "I

[flexcoders] Re: DateChooser

2007-05-07 Thread kredding.geo
How do I access the CalendarLayout object? --- In flexcoders@yahoogroups.com, "Manish Jethani" <[EMAIL PROTECTED]> wrote: > > On 5/7/07, kredding.geo <[EMAIL PROTECTED]> wrote: > > Both of those seem like they only work for the background square that > > gets highlighted when selected. I need t

[flexcoders] rtmp sniffer

2007-05-07 Thread Kevin
what do people use to view their RTMP traffic? - Kevin

Re: [flexcoders] Remove white space around list items

2007-05-07 Thread Igor Costa
Ian What exactly you have in mind? to adopt a behavior in this list. Here's a little approach Item 1 Item 2 Item 3 Item 4 Item 5 Using the rowHeight can solve your problem. On 5/4/07, Ian Skinner <[EMAIL PROTECTED]> wrote: I have a list control

Re: [flexcoders] Re: DateChooser

2007-05-07 Thread Manish Jethani
On 5/7/07, kredding.geo <[EMAIL PROTECTED]> wrote: > Both of those seem like they only work for the background square that > gets highlighted when selected. I need the background to be blank, but > I need to actually modify the text font and color. Is there no way to > do this without using a .swf

[flexcoders] Skinning dataTip - Slider

2007-05-07 Thread rashmi_nraj
Hi All, Can anyone tell me how to skin VSlider and HSlider separately? Regards, Rashmi

[flexcoders] Webservice-WSDL not loaded in FireFox

2007-05-07 Thread brunot985
Hi @ll, currently I'm working on accessing a SAP web service (ABAP stack). The SAP system resides on a different host, so reading the cross-domain policy file is an issue, which requires HTTP basic authentication. While using Internet Explorer, everything works like a charm and as expected. Using

[flexcoders] Tree/Accordion Type Component?

2007-05-07 Thread Jon Bradley
Hey all, Looking to see if anyone has developed (or knows of an existing) a component that acts like an accordion and tree combined. I'm developing something that calls for a panel with collapsable content items that need to fit into a scrolling view and dynamically align to the previous e

[flexcoders] Convert one Object to another -possible?

2007-05-07 Thread Thomas Viktil
Hello! I've followed the tutorial from How To Forge (http://howtoforge.com/amfphp_adobe_flex2_sdk) on how to use amfphp 1.9 and Flex 2. Everything seems to work fine, except one little thing. Flex keeps giving me this error message: TypeError: Error #1034: Type Coercion failed: cannot convert

Re: [flexcoders] Zooming of the whole Application !!! Doesnt behave like a authorin tool published SWF

2007-05-07 Thread Jon Bradley
I'm having the same problem actually. When the scale mode is set to showall the size of the stage is 200% larger than the browser window (?!?!). Makes no sense to me why it would do that. Application is set to be 100% on the width and height, but why Flex is causing the content to be twice

[flexcoders] Re: Series mouse trackball

2007-05-07 Thread Selvakumar K
Have you resolved this issue? Am facing a similar problem in my new requirement. If solved, kindly elaborate little more on the solution.

[flexcoders] Changing symbol attributes

2007-05-07 Thread nodovu
Is it possible to change the color of a Symbol embedded in a SWF file? For example, if you create a Flash 8 or Illustrator 10 SWF file with a blue box; Can I import that into Flex and change the color of the blue box with a color picker control. When the Symbol is loaded I see it can only be a Sp

Re: [flexcoders] pulling in HTML content - looking for ideas

2007-05-07 Thread Paul Hastings
barry.beattie wrote: > so, can anyone suggest another way to do this? have you looked generating flashpaper via cf? we use this for help systems ("popping up" the cf-generated flashpaper in TitleWindows) & let cf help manage the "caching" of the help bits.

[flexcoders] chart init problem

2007-05-07 Thread vogtmitvogt
i'm quit new with flex. i have done a chart app, where i load xml and then populate the chart. i have different states. in the application bar i have a buttonbar to change the views. actually everthing works fine, but the chart is shown only after i switched for the second time to the state.

[flexcoders] Help with extending RegExpValidator - cannot output post processing errors.

2007-05-07 Thread Amine Diab
Hi, I am trying to do a post RegExpValidation error processing on a password field, such as testing the password field for null and password length. I cannot get flex to generate the post error messages when the RegExpValidator generates a VALID match. Could you please take a look,I would appr

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

2007-05-07 Thread Manish Jethani
On 5/1/07, tjcox1969 <[EMAIL PROTECTED]> wrote: > Which property do I changed to align the text in the header of a > TitleWindow (or Panel). Try setting the titleStyleName style.

[flexcoders] Setting a ViewStack.selectedIndex in States

2007-05-07 Thread Christoph Diefenthal
Hello flexcoders! I have had a little break since working with Flex1.5 but now I am back. And I must say: Flex2.0 is great. But there are still some issues which confuse me... States and ViewStacks is one of it. Please have a look at the following code, and maybe you can tell me whether I have'nt

Re: [flexcoders] Re: bottom="0" bug

2007-05-07 Thread Tadas Ziemys
For example this application. Button should stick to the bottom and it does if you resize browsers window, but as you scroll down it doesnt move. http://www.adobe.com/2006/mxml"; layout="absolute"> 2007/5/7, simonjpalmer <[EMAIL PROTECTED]>: Can you send along some abridged fragme

Re: [flexcoders] How to include an external stylesheet ONCE and have all components use it?

2007-05-07 Thread Manish Jethani
On 5/2/07, tjcox1969 <[EMAIL PROTECTED]> wrote: > Is it possible to include a style sheet in the main application mxml > file and then have all other components and custom components use > those styles? Yes. You just declare your styles in your main application and all custom components can use th

[flexcoders] Re: RIA: record insert best practices

2007-05-07 Thread simonjpalmer
What connection do you need between the unique identities in the persistent store and the unique identities on the client? Is it possible in your app to separate them? If it is, then read on. In principle there's no reason for not having different IDs. I understand Barry's points below, and by

[flexcoders] Re: Binding on a singleton

2007-05-07 Thread ecpmaz
Thank you for your code, but my problem is not the singleton implementation but how to make a binding on a singleton (watch the changes of the _instance value...) In fact to make a binding on a static property ?? {Maz} > issue in my sample: > > replace _user with testClass (should be _testCl

Re: [flexcoders] Popup Menu Button. I want to click anywhere on the button

2007-05-07 Thread Manish Jethani
On 5/7/07, boy_trike <[EMAIL PROTECTED]> wrote: > If I click on the arrow, I get the itemClick event and everything is fine > since I get a menuEvent > and I can tell which item was selected. My problem is that I want to let the > user click on the > label in the button and still be able to tell

[flexcoders] Re: RIA: record insert best practices

2007-05-07 Thread kyle.vanvranken
+1 for the back end. If nothing else to further abstract your underlying data layer. It might help to think of flex as your medium for displaying/interacting with all that data in a useful/meaningful way. Leave things like UID generation serverside.

[flexcoders] Popup Menu Button. I want to click anywhere on the button

2007-05-07 Thread boy_trike
If I click on the arrow, I get the itemClick event and everything is fine since I get a menuEvent and I can tell which item was selected. My problem is that I want to let the user click on the label in the button and still be able to tell which item they selected. I am having problems with

  1   2   >