Re: [flexcoders] creating MXML components with new-operator in ActionScript

2008-03-26 Thread Manish Jethani
. Well, tough luck. Another option is to add the objects to an invisible container in the application; once you get the 'creationComplete' event, you can remove the object and in the end just destroy the invisible container. I don't if that'll lead to other problems, but try it out. Manish

Re: [flexcoders] Where to search!!!!!

2008-03-26 Thread Manish Jethani
On 3/26/08, hworke [EMAIL PROTECTED] wrote: I am looking for a flex developer's job in Canada. Where do I search? http://tech.groups.yahoo.com/group/flexjobs/ Manish

Re: [flexcoders] Re: Perl with Flex - with proper question

2008-03-26 Thread Manish Jethani
On 3/26/08, chandra shekar [EMAIL PROTECTED] wrote: my question was, how can i call a perl script running on a server. whether i should use http service or is there any other way. Call it using HTTPService. Manish

Re: [flexcoders] Get the Domain the Flex app is running in

2008-03-26 Thread Manish Jethani
page. Quite a hack that would be! Manish

Re: [flexcoders] Design pattern for conditional Interfaces ?

2008-03-23 Thread Manish Jethani
On 3/23/08, Jeroen Beckers [EMAIL PROTECTED] wrote: [snip] If I want to analyze a list of items, those items must implement the correct interface, according to which analyzers you have added to the class. Fe: var myClass:AnalyzerBundle = new AnalyzerBundle(); myClass.addAnalyzer(new

Re: [flexcoders] Un-hilite the first link in a LinkBar

2008-03-22 Thread Manish Jethani
On 3/22/08, JRBower [EMAIL PROTECTED] wrote: I'm trying to figure out how to un-hilite the first link in a LinkBar so that no links are hilited at start up. Something like UnSelectIndex would be great if there were such a property. I'm using Flex 3. I assume your LinkBar is bound to a

Re: [flexcoders] MXML vs. ActionScript

2008-02-29 Thread Manish Jethani
use this hack if you really must. Manish

[flexcoders] OnClick event on tabnavigator

2008-02-15 Thread Manish Sharma
in the tab 1 or they will be lost. If the user selects yes then he can move onto the next tab if no then he should stay on the first tab. Thanks in advance for the help Regards Manish

Re: [flexcoders] Getting events from non-visual components created in actionscript?

2008-02-01 Thread Manish Jethani
(MyEvent.MY_EVENT, myEventHandler); function myEventHandler(event:MyEvent) { var sourceObject:* = event.relatedObject; ... } Manish

[flexcoders] Re: [flexcomponents] autoresize text area as a itemrenderer

2008-02-01 Thread Manish Jethani
On 2/1/08, learner [EMAIL PROTECTED] wrote: thanks Manish, But in which function shall i do that?? In measure(), in updateDisplayList () or commitProperty(). and . also the height of the textArea should affect the row height in list... so i also need to dosomething like

[flexcoders] How do you check if you have access to stage?

2008-01-29 Thread Manish Jethani
) { haveStageAccess = false; } stageAccessChecked = true; } Manish

Re: [flexcoders] How to create a link in flex ??

2007-09-10 Thread Manish Pareek
Link creates a borderless Button ...for this link tomperform some action a click handler must be there for the tag...this is what i think so.. Regards - Original Message From: Baljeet singh [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, September 10, 2007 2:24:14 PM

Re: [flexcoders] mx:VideoDisplay myVid.play();

2007-06-08 Thread Manish Jethani
On 6/6/07, Rohan Pinto [EMAIL PROTECTED] wrote: mx:VideoDisplay id=videoDisplay height=350 width=450 source={video} autoPlay=true/ [snip] I have 2 issues. 1. the play/pause/stop buttons dont work... Hard to say why, but maybe it's because binding is firing on the source property and since

Re: [flexcoders] Re: Content overflow problem in a Box

2007-06-07 Thread Manish Jethani
On 6/6/07, de.newsight [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: What happens when you set minWidth and minHeight to 0 on the Canvas? When I set minWidth/minHeight to the Canvas I get the same behavior. The VBox is sized

Re: [flexcoders] Architectural advice - reusable shell

2007-06-06 Thread Manish Jethani
On 6/6/07, borekbe [EMAIL PROTECTED] wrote: The idea is to develop custom component which encapsulates this shell and all related functionality, like page navigation etc. Here is the ideal MXML: custom:Shell mx:ViewStack!-- maybe we could omit this but I like FB's support for ViewStack --

Re: {Disarmed} RE: [flexcoders] Landscape printing in Flex

2007-06-06 Thread Manish Jethani
On 6/6/07, Tom Chiverton [EMAIL PROTECTED] wrote: When I rotate a PrintDataGrid, all the cells become empty. For rotating text to work you have to embed the font (IIRC).

Re: [flexcoders] Content overflow problem in a Box

2007-06-06 Thread Manish Jethani
On 6/6/07, Artur Kordowski [EMAIL PROTECTED] wrote: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Panel bottom=10 left=10 right=10 top=10 layout=absolute mx:VBox bottom=5 left=50 right=50 top=5 borderColor=#CC

Re: [flexcoders] Selecting a bunch of cells in DataGrid.

2007-06-06 Thread Manish Jethani
On 6/6/07, Dharmendran A [EMAIL PROTECTED] wrote: Any Idea how to select cells in flex data grid?? Set selectedIndices/selectedItems (see API docs).

Re: [flexcoders] Here comes a new challenger!!! Sun announces JavaFX

2007-05-10 Thread Manish Jethani
On 5/10/07, Manish Jethani [EMAIL PROTECTED] wrote: On 5/9/07, dmiramontesval [EMAIL PROTECTED] wrote: http://java.sun.com/javafx/ [...] So now we have a new player, which on my personal opinion considering the position of Java in the market, might bring some good and sane competition

Re: [flexcoders] Re: 2nd transition not working

2007-05-10 Thread Manish Jethani
On 5/10/07, bill.fogarty17 [EMAIL PROTECTED] wrote: I wonder was there any other component that I could have used to get the same effect? I would simply create a new component as a subclass of DividedBox with the dragging functionality disabled. You could also maybe write your own component

Re: [flexcoders] thoughts on loading graphics into my sprite

2007-05-10 Thread Manish Jethani
On 5/11/07, blc187 [EMAIL PROTECTED] wrote: I've been trying to attach some things to a sprite with no luck. I was originally drawing into the graphics of it but decided I needed to load a graphic instead. So I tried var img:Image = new Image(); img.source = ... sprite.addChild(img);

Re: [flexcoders] creating components

2007-05-09 Thread Manish Jethani
On 5/9/07, André Rodrigues Pena [EMAIL PROTECTED] wrote: I'd like to know WHERE I can find information about details of the composition of a flex component. I mean, what components form a DataGrid for instance? I always look at the source. The framework source is in

Re: [flexcoders] CMMI Standards

2007-05-09 Thread Manish Jethani
On 5/9/07, rahul1sharma [EMAIL PROTECTED] wrote: Excellent material on supplier agreement management, project management and control and many more in accordance with the CMMI standards is available to further enhance your knowledge in the relevant area of study. A Must Read!! Apparently

Re: [flexcoders] Here comes a new challenger!!! Sun announces JavaFX

2007-05-09 Thread Manish Jethani
On 5/9/07, dmiramontesval [EMAIL PROTECTED] wrote: http://java.sun.com/javafx/ [...] So now we have a new player, which on my personal opinion considering the position of Java in the market, might bring some good and sane competition to this game called RIA. From what I can tell, it's just

Re: [flexcoders] how to find how many rows in a Tile?

2007-05-09 Thread Manish Jethani
On 5/9/07, shemeshkale [EMAIL PROTECTED] wrote: i got a Tile with a Repeater inside (the repeater makes a lot of buttons). how do i find how many columns and rows does the tile have? You can tell the number of columns from the number of children with y=0 and the number of rows from the number

Re: [flexcoders] Image Component Nightmare

2007-05-08 Thread Manish Jethani
On 5/8/07, vitcheff [EMAIL PROTECTED] wrote: What I'm trying is to achieve is to have a thumbnails bar with some images in it, which, when clicked, should display the corresponding large version in a Canvas. I'm doing this through AS3 in UIComponent-based class. There is an Image component

Re: [flexcoders] newb need help with states

2007-05-08 Thread Manish Jethani
On 5/8/07, Derrick Anderson [EMAIL PROTECTED] wrote: 1) setting the 'right' property of a panel- i get an error saying that Container does not have that as a property. right is a style. Use SetStyle instead. 2) setting the 'visible' property- i have found that no matter what i use as a

Re: [flexcoders] Complex AS Objects to a file (serialization)

2007-05-08 Thread Manish Jethani
On 5/8/07, nxzone [EMAIL PROTECTED] wrote: How we can serialize a objects and save it to a file like xml? var bytes:ByteArray = new ByteArray(); bytes.writeObject(myComplexObject); // write bytes to file

Re: [flexcoders] HTTPservice and Images

2007-05-08 Thread Manish Jethani
On 5/8/07, Denis [EMAIL PROTECTED] wrote: I'm developer and maintainer for the IIPImage software, iipimage.sf.net , and I would like to provide it with a flash viewer. I've started investigating httpservice and the result is not so good, I query the server for a jpeg image, the server send to

Re: [flexcoders] Parent not talking to Children

2007-05-08 Thread Manish Jethani
On 5/9/07, Matt [EMAIL PROTECTED] wrote: When a container gets hidden shouldn't it throw a hide event to the children? I have a TitledWindow and a Canvas inside it and when I set visible to false on the TitledWindow I can't seem to capture anything on the Canvas telling me it was hidden, it

Re: [flexcoders] newb need help with states

2007-05-08 Thread Manish Jethani
On 5/9/07, Derrick Anderson [EMAIL PROTECTED] wrote: SO.. if my default state needs to hide a panel (removeChild) that gets added in state 2, how do you do it? In your state 2, you add the object. In your base state, you do nothing -- the object added in state 2 will get removed automatically.

Re: [flexcoders] bottom=0 bug

2007-05-07 Thread Manish Jethani
On 5/6/07, Tadas Ziemys [EMAIL PROTECTED] wrote: i wanted to make ApplicationControlBar in bottom of my site. It works well as long as there is no vertical scroll bar. When it appears and i scroll down ApplicationControlBar (or anything else with property bottom=0), doesnt move and appears

Re: [flexcoders] bottom=0 bug

2007-05-07 Thread Manish Jethani
On 5/7/07, Manish Jethani [EMAIL PROTECTED] wrote: Here's what you mean: ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; xmlns=* layout=absolute width=320 height=240 mx:Panel height=300 top=10 / mx:ApplicationControlBar bottom=0 left=10

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

2007-05-07 Thread Manish Jethani
On 5/7/07, arieljake [EMAIL PROTECTED] wrote: I want to add this code in the itemClicks: other-link-bar-id.selectedIndex = -1; Unfortunately this throws this error: TypeError: Error #1034: Type Coercion failed: cannot convert mx.skins.halo::[EMAIL PROTECTED] to mx.controls.Button. The

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 which

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 those

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.

Re: [flexcoders] Re: DateChooser

2007-05-07 Thread Manish Jethani
? You'll have you look into extending the component and modifying the dayBlockArray in the CalendarLayout object. The DateChooser probably needs something like a selectedDateStyleName. --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 5/4/07, kredding.geo [EMAIL

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 in

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!

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 and

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

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 the

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

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 datagrid to

Re: [flexcoders] Shouldn't this VBox have a scrollbar?

2007-05-06 Thread Manish Jethani
On 5/6/07, Tom Bray [EMAIL PROTECTED] wrote: Shouldn't the height of the VBox below end up being 300? Shouldn't height=100% make it fill up the area allotted to it by it's parent? Instead it ends up having a height of 612 and no scrollbar: (Former Adobe guy who worked on this stuff...)

Re: [flexcoders] Scrubbing in a MP3-file

2007-05-06 Thread Manish Jethani
On 5/6/07, mychemic Carlo Gulliani [EMAIL PROTECTED] wrote: Excuse me for my English, Whether can this component show ID3 Tags? Also maybe do you know how to display cover artwork mp3 file? See the id3 property of the component. I'm not sure what cover artwork means.

Re: [flexcoders] Problems using Zoom effect.

2007-05-06 Thread Manish Jethani
On 4/30/07, beecee1977 [EMAIL PROTECTED] wrote: mx:Zoom id=zoomEffect zoomHeightFrom=0.5 zoomHeightTo=1 zoomWidthFrom=0.5 zoomWidthTo=1 / mx:Image id=im1 source=im1.png rollOver=zoomImg(event) rollOut=zoomImg(event) scaleX=0.5 scaleY=0.5 x=28

Re: [flexcoders] youtube

2007-05-05 Thread Manish Jethani
On 5/5/07, André Rodrigues Pena [EMAIL PROTECTED] wrote: but loading from youtube server? You can start here: http://mannu.livejournal.com/326881.html The demo doesn't work because of cross-domain issues. But you can extract the code for fetching the FLV URL and use it in your app. PS: Yes,

Re: [flexcoders] Setting the styles to Text .htmlText at runtime

2007-05-05 Thread Manish Jethani
On 5/5/07, b_alen [EMAIL PROTECTED] wrote: I have a string that goes somthing like this: var str:String = p class=\H1\section/p; var str:String += p class=\TXT\main text/p; and then I populate the Text component like this: txtPage.htmlText = str; Now, I want to add styles to this text

Re: [flexcoders] How do I set the text color of a row in a datagrid (without memory problems)?

2007-05-05 Thread Manish Jethani
On 5/5/07, fidelityphil [EMAIL PROTECTED] wrote: I need to change the text color of a given row of a datagrid if one of the columns has a value. I put in an instream itemRenderer on the datagrid (above the columns definition) which works fine. However, if I then try to sort one of the

Re: [flexcoders] flex 2 with vb6

2007-05-05 Thread Manish Jethani
On 5/5/07, b_rajesh_k [EMAIL PROTECTED] wrote: I want to use flex 2 charts in my VB6 app. Can someone please tell me how i can do it? Just a wild guess: Can't you, like, embed the Flash Player ActiveX control into your VB6 application? Oh, wait, here's a quick search on Google:

Re: [flexcoders] Re: Setting the styles to Text .htmlText at runtime

2007-05-05 Thread Manish Jethani
On 5/5/07, b_alen [EMAIL PROTECTED] wrote: Thanks a lot Manish. I wasn't even aware of the mx_internal thing. It works great for what I need. However, I do have doubts that this is the most elegant solution. mx_internal is the namespace for internal stuff in the Flex framework. You can access

Re: [flexcoders] youtube

2007-05-05 Thread Manish Jethani
On 5/5/07, Benoit Hediard [EMAIL PROTECTED] wrote: Are you sure that it is allowed to play FLV directly without the official YouTube player? Yes. But you have to get the FLV URL right. That's the tricky part.

Re: [flexcoders] Problem using getDefinitionByName in a ClassFactory

2007-05-05 Thread Manish Jethani
On 5/4/07, Tom Chiverton [EMAIL PROTECTED] wrote: I have a componet I want to pass a dynamic renderer into: coreView:MonthCalendar date={ thisMonth } dataProvider={foo} dayRenderer=com.halliwells.flex.bma.view.HearingDay/ It's a TileList type control, so at some stage

Re: [flexcoders] Masks, Filters, Soft Wipes

2007-05-05 Thread Manish Jethani
On 5/4/07, Lachlan Cotter [EMAIL PROTECTED] wrote: Can anybody help shed some light on an odd problem with filters? I want to create soft edge wipe effects. I've got a pretty good proof of concept that works like so: target.cachePolicy = 'on' mask.filters = [new

Re: [flexcoders] Hoe to Extend the EmailValidator using the Model approach?

2007-05-05 Thread Manish Jethani
On 5/5/07, Amine Diab [EMAIL PROTECTED] wrote: Hello, I need to customize the EmailValidator class to perform post validation on multiple email fields on a flex form. I am using the mx:model to pass the mulitple email fields to the validator: mx:Model id=client registration email

Re: [flexcoders] date localization

2007-05-05 Thread Manish Jethani
On 5/4/07, xho [EMAIL PROTECTED] wrote: Anyway, I cannot find usefull informations on how to create and build a working italian locale for flex or download a working one: in a default flex installation i can only find one locale in [...]\Flex SDK 2\frameworks\locale\ where the only

Re: [flexcoders] Re: 2nd transition not working

2007-05-05 Thread Manish Jethani
On 5/3/07, bill.fogarty17 [EMAIL PROTECTED] wrote: Thanks for your feedback, I tried my best to debug the code, but was unable to find out anything like that. I'm running the application in Debug mode, have set breakpoints and have my variables window open. But in the variables panel area, i

Re: [flexcoders] Newbie in need of help with graphics

2007-05-05 Thread Manish Jethani
On 5/5/07, williamkusumo [EMAIL PROTECTED] wrote: Please forgive this stupid question. I can't seem to figure out how to draw a simple rectangle in a Flex app...:( I know it involve the graphics object and I have to call drawRect at some point. But where do I put this code, and how do I

Re: [flexcoders] Datagrid - case-insensitive sort

2007-05-05 Thread Manish Jethani
On 5/5/07, Paul Booth [EMAIL PROTECTED] wrote: I can't find a way to tell the Datagrid (or DatagridColumn) to sort in a case-insensitive manner. Can someone please enlighten me? In your headerRelease event handler: import mx.collections.*; var

Re: [flexcoders] binding and dataProvider.filterFunction

2007-05-05 Thread Manish Jethani
On 5/6/07, arieljake [EMAIL PROTECTED] wrote: [snip] It seems that setting the filterFunction is affecting the allAvailableCategories variable when I trace the length of the allAvailableCategories variable after the listData is refreshed. Why? here is the code: model:CategoryData

Re: [flexcoders] Re: Using Application Domain

2007-05-04 Thread Manish Jethani
On 5/4/07, residentevil_64 [EMAIL PROTECTED] wrote: Hi, I am having the following class: public class Controller { private static var singleInstance:Controller; public static function getInstance():Controller { if(singleInstance ==

Re: [flexcoders] Setting ByteArray to a specific string value ?

2007-05-04 Thread Manish Jethani
On 5/4/07, jamiebadman [EMAIL PROTECTED] wrote: I need to call a webservice which has as a parameter a base 64 binary field. This needs to contain a password field in an encrypted (string) form. This has been provided to me as a string and it is this exact value I need to send to the

Re: [flexcoders] form not filling parent Canvas

2007-05-04 Thread Manish Jethani
What is the width/height of the outer canvas? What is the width/height of the vbox? What is the width/height of the canvas? What is the width/height of the form? What are the *expected* widths/height of the above? Horizontal scrollbar or vertical scrollbar? If you can provide these answers,

Re: [flexcoders] Box Y adjustment fails when mx:Text/ is child

2007-05-04 Thread Manish Jethani
On 5/4/07, beatportdavem [EMAIL PROTECTED] wrote: I am running into a weird bug. I have a VBox with an id=w1, within w1 there is a mx:Text component. I am attempting to adjusting the y coord. It doesn't work. BUT, when I replace mx:Text with mx:TextArea component in the VBox, I _can_

Re: [flexcoders] modules with video

2007-05-04 Thread Manish Jethani
On 5/4/07, John Robinson [EMAIL PROTECTED] wrote: I have an app that has a few external modules that it switches my main view between. One of these modules has an externally loaded video (using VideoDisplay, or whatever it's called). It's called VideoDisplay. When I load this module up

Re: [flexcoders] ProgressBar doesn't get updated immediately

2007-05-04 Thread Manish Jethani
On 5/2/07, Pan Troglodytes [EMAIL PROTECTED] wrote: This time, I have the progress bar working in event mode, cranking through sending off progress events. It works fine, except when it gets to one section of the code. I want to send back the progress while this one very long and time

Re: [flexcoders] Page access problem

2007-05-04 Thread Manish Jethani
On 5/2/07, Vinoth [EMAIL PROTECTED] wrote: when button `Load page2 from main' or `Load page1 from main' selected corresponding page will get load in the main How to load page2 when `Load Page2 from page1' button selected ? mx:Button label=Load Page2 from page1

Re: [flexcoders] disabling effects

2007-05-04 Thread Manish Jethani
On 5/1/07, Tom Sobut [EMAIL PROTECTED] wrote: I have hideEffects defined for the child views of a nested viewStack. At some point in my workflow, that viewStack gets hidden. Before I bring it back into view, I'd like to change the selectedIndex without triggering the hideEffects.

Re: [flexcoders] Re: Actionscript - copy constructor/ assignment operator question

2007-05-04 Thread Manish Jethani
On 5/4/07, Troy Gilbert [EMAIL PROTECTED] wrote: String is a primitive type, like int/uint/Number (which have operators) and Boolean, which all have special casting rules and operator overloading. There's no special operator overloading in String. For example: var n:int = hello.length;

Re: [flexcoders] display hand cursor on flex chart

2007-05-04 Thread Manish Jethani
On 5/5/07, Raider226 [EMAIL PROTECTED] wrote: Does anyone know how to display the hand cursor over a chart element in flex 2.0? I was able to do this in 1.5 using the method described here: http://www.prismix.com/blog/2005/11/how_do_i_display_a_hand_cursor.cfm but it doesn't seem to work

Re: [flexcoders] youtube

2007-05-04 Thread Manish Jethani
On 5/5/07, André Rodrigues Pena [EMAIL PROTECTED] wrote: is there a way to embed a youtube video inside a flex 2 application? You could either embed the YouTube video player itself (SWF) using SWFLoader, or you could play the FLV directly using VideoDisplay.

Re: [flexcoders] Remove white space around list items

2007-05-04 Thread Manish Jethani
On 5/5/07, Ian Skinner [EMAIL PROTECTED] wrote: I have a list control in a fairly small area, I would like to tighten up the items in the list by removing some of the whitespace around each item, but I'm not getting clear results with what I have tried so far. Did you try setting paddingLeft

Re: [flexcoders] Acessing stage Height

2007-05-04 Thread Manish Jethani
On 5/5/07, Michael Wills [EMAIL PROTECTED] wrote: Hmm... sorry newbie here. So it's returning null because this, the _preloader, hasn't actually been instantiated yet? But if this were called after applicationComplete then it would be fine? It's null because the application has not been

Re: [flexcoders] Application close event

2007-05-04 Thread Manish Jethani
On 5/4/07, André Rodrigues Pena [EMAIL PROTECTED] wrote: Is it possible to make a flex application to throw a HTTPService at close event?. I mean, when the user closes de browser? As far as I know, when the user closes the browser, the Flash Player instance is dead, so is the Flex app -- can't

Re: [flexcoders] How to remove validators created at runtime?

2007-05-04 Thread Manish Jethani
On 5/4/07, Cosma [EMAIL PROTECTED] wrote: I have some fields that I want to validate on the fly, so I've bound the following method to a button click: private var validateThisStep():Boolean { var myValidator:Validator = new Validator(); myValidator.source = aTileList;

Re: [flexcoders] DateChooser

2007-05-04 Thread Manish Jethani
On 5/4/07, kredding.geo [EMAIL PROTECTED] wrote: Is there any way to modify the text color and size of the selectedRanges in the DateChooser? You have the selectionColor and selectionIndicatorSkin styles. I think you're looking for the latter (custom skin in which you control the colours,

Re: [flexcoders] Re: Horizontal scrollbars on a list component populated from a SOAP service

2007-05-03 Thread Manish Jethani
On 5/2/07, ria_coder [EMAIL PROTECTED] wrote: Here is the sample code where it doesn't work: [snip code] Just wanted to say that I tried your code with Flex 2.0 and it works fine. Maybe something changed in 2.0.1. I'm downloading 2.0.1 right now so will get back on this.

[flexcoders] List admins, remove [EMAIL PROTECTED]

2007-05-03 Thread Manish Jethani
Hello list admins, Kindly remove [EMAIL PROTECTED] for make benefit of flexcoders list. We are all getting bounces from this address and it is irritate and time waste. Hi 5! Manish

Re: [flexcoders] Stopping embedded flash in Flex

2007-05-03 Thread Manish Jethani
On 5/2/07, John [EMAIL PROTECTED] wrote: I have a ViewStack that has a SWFLoader as one of the views. The problem is when I change views the flash on the first view(as well as the audio) is still running in the background. Anyway of stopping/pausing the flash when I switch Views? You can

Re: [flexcoders] Activating styles at runtime

2007-05-03 Thread Manish Jethani
On 5/2/07, Guillermo Villasana [EMAIL PROTECTED] wrote: I get the xml throught httpservice and I parse it from there. and assign color1 from my xml as well as color2. I use for example: StyleManager.getStyleDeclaration(Application).setStyle('color',color2);

Re: [flexcoders] How to constrain child elements within a flexable parent?

2007-05-03 Thread Manish Jethani
On 5/2/07, Ian Skinner [EMAIL PROTECTED] wrote: Manish Jethani So this is what you want: ?xml version=1.0? … That is close to what I want. It worked fine when the label itself was constrained as I had been testing to simplify my code. But in my actual code, where the label

Re: [flexcoders] Constrain a label to a flexible length.

2007-05-03 Thread Manish Jethani
On 5/2/07, Ian Skinner [EMAIL PROTECTED] wrote: I desire to constrain the text in a label to its width, but I want that width to be flexible when the browser is resized. When I use a percentage for the width of the label the text is not constrained, rather the label and any percentage width

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

2007-05-03 Thread Manish Jethani
On 4/30/07, jensen.axel [EMAIL PROTECTED] wrote: any one have any advice on this? --- In flexcoders@yahoogroups.com, jensen.axel [EMAIL PROTECTED] wrote: Problem: Trying to filter a mx:Tree to show only things that I type… when I filter, it filters the folders, and the main root

Re: [flexcoders] Detect text wrap?

2007-05-03 Thread Manish Jethani
On 5/3/07, qnotemedia [EMAIL PROTECTED] wrote: I have a collection of vertically placed TextInput and TextArea boxes. I'm using a resize function that manually resizes each of the boxes' heights depending on the amount of text that is in each, so that there's never any extra space, and all of

Re: [flexcoders] Re: Menu bar root menu click

2007-05-03 Thread Manish Jethani
On 5/2/07, Devin [EMAIL PROTECTED] wrote: I figured it out... I extended the menubar private function mouseDownHandler (event:MouseEvent):void { ... var click:MenuEvent = new MenuEvent(MenuEvent.ITEM_CLICK);

Re: [flexcoders] 2nd transition not working

2007-05-03 Thread Manish Jethani
On 5/2/07, bill.fogarty17 [EMAIL PROTECTED] wrote: I'm working on a transition, I'm using a Hdividedbox and when the divider is pressed, I want the panel to close with a transition to the left. When the divider is pressed a second time, I want the panel to open again with a transition to the

Re: [flexcoders] Is this a bug? 1195 - Attempted access of inaccessible method name ...

2007-05-03 Thread Manish Jethani
On 5/3/07, mattjshannon [EMAIL PROTECTED] wrote: I keep getting a 1195 compiler error when trying to invoke what i believe is a public non-static method from a singleton class instance. private function onCreationComplete() : void { var tst : ATest =

Re: [flexcoders] Why aren't we allowed to process the event queue? (eg: like DoEvents)

2007-05-03 Thread Manish Jethani
On 5/3/07, Troy Gilbert [EMAIL PROTECTED] wrote: I think the best solution for Flash would be to introduce a first-class thread object. That way developers could spawn long-lasting tasks to a separate thread. If threading is introduced in the player, much of the Flex framework might have to

Re: [flexcoders] Howto dynamicly bind XML element to a TextInput component using BindingUtils?

2007-05-03 Thread Manish Jethani
On 4/27/07, xyjaws [EMAIL PROTECTED] wrote: The question is: Howto dynamicly bind XML element to a TextInput component using BindingUtils? Not sure you can use BindingUtils for XML. You can just call setNotification() on the XML object and your callback will be called every time that node is

Re: [flexcoders] accordion selected / normal text style

2007-05-03 Thread Manish Jethani
On 5/3/07, kasey.mccurdy [EMAIL PROTECTED] wrote: does anyone out there know how to change the text style for a selected accordion panel vs. a non selected one? I think there are some selected styles, but you can also do it with a custom header renderer. See this example below. ?xml

Re: [flexcoders] Sending complex objects through AMF3 to a server

2007-05-03 Thread Manish Jethani
On 5/4/07, Austin Kottke [EMAIL PROTECTED] wrote: Hi - is it possible to send an array of VOs over an AMF3 gateway to a server and have the server correctly parse this? I've noticed that only strings and ints are supported in the tests I'm doing. Is this true? Yup. You can send stuff.

Re: [flexcoders] Removing Popups

2007-05-03 Thread Manish Jethani
On 5/4/07, Carlos Rovira [EMAIL PROTECTED] wrote: Could you post some example, I'm finding this issue too, and want to know more about this since maybe we are using it in a bad way. when I remove the popup with PopupManager I suppose I'm removing it form memory, or I'm only removing from

Re: [flexcoders] Re: Function to check if component supports a style?

2007-05-03 Thread Manish Jethani
On 5/3/07, zzwi89 [EMAIL PROTECTED] wrote: Thanks, but I don't think it actually outputs style info. Unless one of the following IS style information and I'm just overlooking it: [snip] Did you compile with -keep-as3-metadata as Gordon said? Are there any negative effects to setting a

Re: [flexcoders] Activating styles at runtime

2007-05-01 Thread Manish Jethani
On 5/1/07, Guillermo Villasana [EMAIL PROTECTED] wrote: 1) I genereted an xml with all the parameters (colors, font types, font sizes...etc) 2) In the mxml aplication i call initialize=initApp() 3) in the initApp I read the xml and assign all the styles to the different componentes How

Re: [flexcoders] when is setFocus() not?

2007-05-01 Thread Manish Jethani
That is in the focusIn handler. mx:TextInput id=ti focusIn=removeSelection() / mx:Script private function removeSelection():void { ti.selectionBeginIndex = 0; ti.selectionEndIndex = 0; } /mx:Script On 5/1/07, Alex Harui [EMAIL PROTECTED] wrote:

Re: [flexcoders] IViewCursor, Datagrid, Sort and itemRenderer

2007-05-01 Thread Manish Jethani
On 5/1/07, matmls [EMAIL PROTECTED] wrote: ### mx:DataGridColumn textAlign=left headerText=Resource wordWrap=true width=300 mx:itemRenderer mx:Component mx:LinkButton rollOverColor=#66 textDecoration=underline label={data.title} click={navigateToURL(new URLRequest (data.url));}

Re: [flexcoders] can you trigger button states?

2007-05-01 Thread Manish Jethani
On 5/1/07, blc187 [EMAIL PROTECTED] wrote: i have a button that i want to trigger the over and down states for without actually mousing over or clicking on it. There's an mx_internal phase property that you can set. See mx.controls.ButtonPhase.

<    1   2   3   4   5   6   7   8   9   10   >