[flexcoders] is ther a way to write those as STYLE

2006-03-16 Thread shemeshkale
hi, i m exploring the charts design option. have this code: mx:LineSeries yField=Expenses form=segment name=Expenses mx:stroke mx:Stroke weight=20 color=#ff alpha=100 / /mx:stroke mx:renderer mx:SimpleLineRenderer / /mx:renderer

[flexcoders] Re: is ther a way to write those as STYLE

2006-03-19 Thread shemeshkale
objects can't be expressed in styles. You could easily reuse it, however, by defining a subclass of LineSeries in mxml with all the value pre-defined. Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkale Sent: Thursday

[flexcoders] need help with programatic skin

2006-03-26 Thread shemeshkale
hi, i m working with the basic HALO skin. i m trying to change some things without luck. PLEASE HELP: - how do i change the padding (the space between the text and the border) inside a button? i want to make a deafult 2px. - i want to make a top and bottom border on the selected item of a tree.

[flexcoders] Re: need help with programatic skin

2006-03-28 Thread shemeshkale
PLEASE HELP ! or please refer me to a place i can learn... --- In flexcoders@yahoogroups.com, shemeshkale [EMAIL PROTECTED] wrote: hi, i m working with the basic HALO skin. i m trying to change some things without luck. PLEASE HELP: - how do i change the padding (the space between

[flexcoders] Re: need help with programatic skin

2006-03-29 Thread shemeshkale
width=150 label=Test / or mx:Button textAlign=left textIndent=15 width=150 label=Test / Hope that helps Jason -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de shemeshkale Envoyé : mercredi 29 mars 2006 09:11 À

[flexcoders] Re: need help with programatic skin

2006-03-29 Thread shemeshkale
included this. Adobe, what was your reasoning for not allowing us to have top and bottom margins? I can think of a couple things I could use it for. Peace, Mike On 3/29/06, shemeshkale [EMAIL PROTECTED] wrote: not what i meant. a button in flex have a default gap (padding in html/css

[flexcoders] Re: need help with programatic skin

2006-03-29 Thread shemeshkale
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de shemeshkale Envoyé : mercredi 29 mars 2006 15:01 À : flexcoders@yahoogroups.com Objet : [flexcoders] Re: need help with programatic skin that is the direction of my thought, but... allready tried that - it seems

[flexcoders] Re: need help with programatic skin

2006-03-30 Thread shemeshkale
shemeshkale Envoyé : mercredi 29 mars 2006 15:01 À : flexcoders@yahoogroups.com Objet : [flexcoders] Re: need help with programatic skin that is the direction of my thought, but... allready tried that - it seems to have some minimum!! i cant do marginRight=0... when i do that i

[flexcoders] how is this TabNavigator is done?

2006-04-06 Thread shemeshkale
hello, found a TabNavigator that the tabs can be on the bottom? here.. http://www.richinternetapps.com/archives/000106.html can someone please explain how is it made? there is no explanation there only the swc file to download. i want to learn how its done. -- Flexcoders Mailing List FAQ:

[flexcoders] how can i change column color in a column chart

2006-04-09 Thread shemeshkale
me using flex 1.5 i have a ColumnChart. how can i change one column color on mouse hover on it? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To

[flexcoders] labelfuction and column chart questions

2006-04-11 Thread shemeshkale
hi, 1) me using flex 1.5 i have a ColumnChart. how can i change one column color on mouse hover on it? 2) how can i show images with labelFunction? i m calling a function with labelFunction from a PieChart and want to display images in the label. -- Flexcoders Mailing List FAQ:

[flexcoders] Re: labelfuction and column chart questions

2006-04-16 Thread shemeshkale
as i m new to flex i couldnt resolve this... can u please show me the complete way of doing this? --- In flexcoders@yahoogroups.com, Ely Greenfield [EMAIL PROTECTED] wrote: 1) write a custom renderer for your columnseries. This renderer should fill the columns with the standard color,

[flexcoders] how to make different border thickness/color

2006-04-23 Thread shemeshkale
hi, i work on a Button but my question apply to all components.. how can i make each border side with different thickness and color?? for example: border-top: 2px green; border-right: 5px red; border-bottom: 1px blue; border-left: 4px white; i couldnt find a way to do this with style nor a

[flexcoders] how to make a vertical dragable guide?

2006-04-26 Thread shemeshkale
hi, i have to do a vertical guide (like in photoshop) i thought of a VRule that can be dragged only left or right. i didnt have any luck with my attempts with dragging. PLEASE help me. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

[flexcoders] how to read gutter size of chart?

2006-04-29 Thread shemeshkale
in charts (flex 1.5) - if not expicilty writing gutter size flex calculate it alone. how can i read this value? it is actually a style and if i dont write it (like gutterLeft=30) flex retrives me 'Undifiend'. how do i find the gutter size that flex calculate by itself? -- Flexcoders

[flexcoders] tryin to extend the Button (flex1.5)

2006-07-16 Thread shemeshkale
using flex1.5 i try to extend the Button. class myComponents.myButton extends mx.controls.Button { public function myButton(){ extraSpacing = 50; this.btnOffset = 1; label = NO LABEL; useHandCursor = true; } } and:

[flexcoders] Re: tryin to extend the Button (flex1.5)

2006-07-16 Thread shemeshkale
still not working, just to remind u - i m trying to use the useHandCurosr if i write it directly in the mxml tag (useHandCursor=true) it works great!! but when trying to do this from AS its not working. my guess it is something to do with the scope.. but what is the solution? Add:

[flexcoders] Re: tryin to extend the Button (flex1.5)

2006-07-16 Thread shemeshkale
this is the way it is structured in my site. the AS file name is myButton.as and it is inside myComponents folder. Er, wait a minute, what the heck is this? myComponents.myButton Why not: class MyComponent? What is the . for? Yahoo! Groups Sponsor

[flexcoders] Re: tryin to extend the Button (flex1.5)

2006-07-18 Thread shemeshkale
MANY great tnx! it works! this is my final code: the onRelease = null is not necessary kuz a Button component allready transmit it. and the keyDown function fires a click event on ENTER key press. any comments? class myComponents.myButton extends mx.controls.Button { public function

[flexcoders] third state of checkbox - flex 1.5

2006-07-31 Thread shemeshkale
hi, i m using flex1.5 ! i need a third state in the checkbox, so i'll have 3 states to choose from: 1- checked. 2- un-checked. 3- SEMI-checked = could be represented by a circle inside the checkbox rectangle. how do i do this? does flex2 have this built in? -- Flexcoders Mailing List FAQ:

[flexcoders] Re: third state of checkbox - flex 1.5

2006-07-31 Thread shemeshkale
EXACTLLY THAT!! this is what i need it for but i dont know how to do it? do someone have an example? --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: I see these fairly often when using Check boxes on tree controls. The 'semi' state is used when not all items below

[flexcoders] flex 1.5 scroll bars not deleting good

2006-08-01 Thread shemeshkale
using flex 1.5 when i down size the browser i have a scroll vertical/horizontal. then when i drag and resize the browser the scroll is disappearing correctly. BUT - when i press the maximaize button the scroll itself is disappearing but the space it occupied stays. is this a bug? any solution?

[flexcoders] how to find initial size?

2006-08-07 Thread shemeshkale
hello group. flex1.5 : how do i find the initial widht/height of a component? i have a VBox that i change its height, later on i want to go back to its initial height. how do i find what it was? i dont want to use creationComplete and store the value in a var. how? -- Flexcoders Mailing List

[flexcoders] adding a custom property - flex 1.5

2006-08-10 Thread shemeshkale
using flex 1.5 i m extending a Button and have added a custom property: time. it is probably a small thing of syntax or scope. but the value is not passed to the class. the mxml component: myComponents:myBTN id=customBTN time=now / and the AS: class myComponents.myBTN extends mx.controls.Button {

[flexcoders] Re: adding a custom property - flex 1.5

2006-08-10 Thread shemeshkale
i do get the correct values on a click. but i do also need to get this property when component initialized - how do i do that? plus: how do i check from within the class if the value is changed? on an other button i have click=customBTN.time='later' and i have verified that the class gets this

[flexcoders] how to use get/set to make a custom property? HELP!

2006-08-13 Thread shemeshkale
hello group. using flex 1.5, i want to make a 3 state checkbox so i have extended a button to do this. on this button i have added a new property named : checkState. please see the code below for my 2 files. i know there is a better way (much more elegant) with the use of get/set to make a custom

[flexcoders] Re: how to use get/set to make a custom property? HELP!

2006-08-13 Thread shemeshkale
tnx, this works great. but i m still confused with this set/get. where can i read about it? questions like: - who and when invoke each one? - which happens first? - the return on the 'get' is returning where? . . . --- In flexcoders@yahoogroups.com, gotgoose09 [EMAIL PROTECTED] wrote: Rename

[flexcoders] how to set button colors - flex 1.5

2006-08-20 Thread shemeshkale
using flex 1.5 how do i set the fill-colors of a pressed (down) state of a button? how do i set its highlight color? not with using themeColor kuz i want every color being different. plus: how do i set the 'thickness' of the highlight color? -- Flexcoders Mailing List FAQ:

[flexcoders] Re: how to set button colors - flex 1.5

2006-08-22 Thread shemeshkale
PLEASE !! someone? if its not possible i would like to know. --- In flexcoders@yahoogroups.com, shemeshkale [EMAIL PROTECTED] wrote: using flex 1.5 how do i set the fill-colors of a pressed (down) state of a button? how do i set its highlight color? not with using themeColor kuz i want every

[flexcoders] Re: how to set button colors - flex 1.5

2006-08-23 Thread shemeshkale
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkale Sent: Tuesday, August 22, 2006 1:47 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: how to set button colors - flex 1.5 PLEASE !! someone? if its not possible

[flexcoders] Re: how to show/hide a line in a chart

2006-08-28 Thread shemeshkale
Igor, it seems u misunderstood my question. please read my first post again - i want to show/hide only ONE line (LineSeries) not the whole chart. your answer will hide the whole chart! since LineSeries can NOT have IDs the solution is not that simple. again: i have one chart with 4 different

[flexcoders] Re: how to show/hide a line in a chart

2006-08-30 Thread shemeshkale
anyone? please help! --- In flexcoders@yahoogroups.com, shemeshkale [EMAIL PROTECTED] wrote: Igor, it seems u misunderstood my question. please read my first post again - i want to show/hide only ONE line (LineSeries) not the whole chart. your answer will hide the whole chart! since

[flexcoders] slider with 2 thumbs a 3 colors, how?

2006-11-06 Thread shemeshkale
hello list, i have an HSlider with 2 thumbs: A-t1-t2-b now i want to have 3 colors: - A-t1 = red - t1-t2 = green - t2-b = blue how do i do that? (an example code will be greatly appreciated) -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Pie Chart display problem when the data is empty

2006-11-06 Thread shemeshkale
i called it the pizza-slice effect. my solution was to check if all values equal zero and if true i displayed a message no data --- In flexcoders@yahoogroups.com, haravallabhan [EMAIL PROTECTED] wrote: Hi, I am trying to display a set of data to say number of fruits of different variety. I

[flexcoders] Re: slider with 2 thumbs a 3 colors, how?

2006-11-06 Thread shemeshkale
, there is an example and download there. Peace, Mike On 11/6/06, shemeshkale [EMAIL PROTECTED] wrote: hello list, i have an HSlider with 2 thumbs: A-t1-t2-b now i want to have 3 colors: - A-t1 = red - t1-t2 = green - t2-b = blue how do i do that? (an example

[flexcoders] Re: how to do a ToggleButtonBar with multi buttons selection

2006-11-16 Thread shemeshkale
); child.getTextField().styleName = selectedButtonTextStyleName ? selectedButtonTextStyleName : activeButtonStyle; child.invalidateDisplayList(); } } } } } On 11/15/06, shemeshkale [EMAIL PROTECTED] wrote

[flexcoders] Re: what is the best way to format a chart data

2006-11-23 Thread shemeshkale
before you assign it to the chart. If you want to build the formatting into the chart itself, you'll have to write a custom series, which would be a lot more work. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkale

[flexcoders] multiply vertical axis maximum value

2006-11-27 Thread shemeshkale
here is a question i sent to Ely Greenfield (a master of charts) and his answers (this is interesting stuff, worth the reading): ME: I have a column chart with 2 columnSeries. It's vertical axis is LinearAxis. My mission is to make the columns be 1/5 height of the overall chart height (but

[flexcoders] what trace panel do you use?

2006-12-07 Thread shemeshkale
what is the recommended trace panel? i want one that is not part of eclipse i would like to know what Adobe people using for trace.

[flexcoders] how to make my own keyboard shortcuts in flexbuilder/eclipse

2006-12-12 Thread shemeshkale
is there a way in FlexBuilder/Eclipse to make my own keyboard shortcuts? so that when, for example, i press Alt+k it will write oh my god they killed kenny ?? in Eclipse prefs under {Java.editor.templates} i can make a new template. but i dont see an option like this in Flex. if not possible -

Re: Fw: [flexcoders] how to make my own keyboard shortcuts in flexbuilder/eclips

2006-12-12 Thread shemeshkale
shemeshkale, Take a look http://eclipse-tools.sourceforge.net/shortcuts.html sincerely bora. - Forwarded Message From: shemeshkale [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, December 12, 2006 11:34:17 AM Subject: [flexcoders] how to make my own keyboard

[flexcoders] does charts have event for data change?

2006-12-13 Thread shemeshkale
as simple as that: does charts have an event that fires whenever its data changes? it seems that this: myGrid.addEventListener(CollectionEvent.COLLECTION_CHANGE, test); will work for DataGrid but not for charts any idea how to do this with charts?

[flexcoders] Re: does charts have event for data change?

2006-12-13 Thread shemeshkale
it to your data provider instead. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkale Sent: Wednesday, December 13, 2006 4:10 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] does charts have event

[flexcoders] Re: does charts have event for data change?

2006-12-13 Thread shemeshkale
you assign it to the chart, are you assigning it to the chart or the data providers, etc. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkale Sent: Wednesday, December 13, 2006 11:05 AM To: flexcoders

[flexcoders] Re: does charts have event for data change?

2006-12-13 Thread shemeshkale
as the dataProvider for the chart. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkale Sent: Wednesday, December 13, 2006 2:10 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: does charts have event for data change

Re: Fw: [flexcoders] how to make my own keyboard shortcuts in flexbuilder/eclips

2006-12-20 Thread shemeshkale
sorry to bring it up again. someone have an idea? --- In flexcoders@yahoogroups.com, shemeshkale [EMAIL PROTECTED] wrote: i have seen this, but this not what i meant. it is a list of predefined shortcuts that come with Eclipse. i want to know how can i make my own. like i said: i want

[flexcoders] extra line coming from an external text file

2007-01-23 Thread shemeshkale
hello, i have made this log watcher for my testing. it is very basic - loading an external file and putting its content to a TextArea. BUT.. for some reason it adds an extra redundant enpty line after every line - as if the text have two RETURNs (\n) on every line. what m i doing wrong? the

[flexcoders] ColumnChart - how to change the clicked column border

2007-01-28 Thread shemeshkale
hi, i got a simple ColumnChart. i want to make a selected column when one is clicked. kind of ToggleColumnChart :-) when a specific column is clicked its border shoul change. how do i change the clicked column border?? an example code would be great tnx

[flexcoders] Re: ColumnChart - how to change the clicked column border

2007-01-28 Thread shemeshkale
); g.lineTo(0,rc.height); g.lineTo(0,0); fill.end(g); this.buttonMode = true; } } } --- In flexcoders@yahoogroups.com, shemeshkale [EMAIL PROTECTED] wrote: hi, i got a simple ColumnChart. i want to make a selected column when one

[flexcoders] Re: ColumnChart - how to change the clicked column border

2007-01-29 Thread shemeshkale
CAN SOMEONE PLEASE HELP?! i m stuck! --- In flexcoders@yahoogroups.com, shemeshkale [EMAIL PROTECTED] wrote: please look at my code. i have managed to change the border on mouse roll over/out and select a column on mouse click. BUT... how do i unselect a previously selected column

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

2007-05-09 Thread shemeshkale
hi, 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?

[flexcoders] skins of buttons in ToggleButtonBar

2007-09-06 Thread shemeshkale
HI, how do i set the skins for each button in a ToggleButtonBar? each button in this ToggleButtonBar should get its own skin. what i m tying to do is to set the upSkin, downSkin, overSkin, selectedUpSkin, selectedOverSkin, selectedDownSkin for each one of them buttons. this ToggleButtonBar is

[flexcoders] Re: skins of buttons in ToggleButtonBar

2007-09-06 Thread shemeshkale
(selectedOverSkin, i3b); Button(btnBar.getChildAt(2)).setStyle(selectedDownSkin, i3b); } is this the only way? --- In flexcoders@yahoogroups.com, shemeshkale [EMAIL PROTECTED] wrote: HI, how do i set the skins for each button in a ToggleButtonBar? each button in this ToggleButtonBar should

[flexcoders] Re: how to show/hide a line in a chart

2006-08-31 Thread shemeshkale
(see the first post in this topic) FLEX 1.5 ! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the web, go to:

[flexcoders] Re: how to show/hide a line in a chart

2006-09-03 Thread shemeshkale
Ely, that would be the greatest solution - but unfortunately its NOT working. any idea why? (again: i m with flex 1.5) --- In flexcoders@yahoogroups.com, Ely Greenfield [EMAIL PROTECTED] wrote: You can get at the nth lineSeries as: myChart.series[i]._visible = true/false; Ely.

[flexcoders] how to cancel down arrow on a combobox

2006-09-06 Thread shemeshkale
hello i m using FLEX 1.5 !! the ComboBox have a default behavior that when pressing the down/up arrows it selects the next/previous object in its list. how do i cancel this behavior??? i need that arrow down/up on a ComboBox will do NOTHING !! how? -- Flexcoders Mailing List FAQ:

[flexcoders] Re: how to cancel down arrow on a combobox

2006-09-10 Thread shemeshkale
anyone have an idea how to do this? --- In flexcoders@yahoogroups.com, shemeshkale [EMAIL PROTECTED] wrote: hello i m using FLEX 1.5 !! the ComboBox have a default behavior that when pressing the down/up arrows it selects the next/previous object in its list. how do i cancel this behavior

[flexcoders] Re: how to cancel down arrow on a combobox

2006-09-10 Thread shemeshkale
Jason, tnx. it seems pretty easy, BUT!!! i m using flex 1.5 ! tried the preventDefault() but its not working here. ? --- In flexcoders@yahoogroups.com, Jason Hawryluk [EMAIL PROTECTED] wrote: Listen to the key events and prevent the default Paste below in a new application to test

[flexcoders] how to: cornerRadius only for specific corners

2006-10-08 Thread shemeshkale
hello, using FLEX 2. i have an HBox with solid border on top+right+left only (no bottom) i also gave it cornerRadius=5 and backgroundColor=#ff what happens is that on bottom left+right corners the background color is rounded but the border is not, and that looks not good ! how do i determine

[flexcoders] how to use multiple symbols from same swf

2006-10-08 Thread shemeshkale
i have seen people using this : @Embed(source='/assets/rasta.swf#hello') what does the #hello mean? that i can use multiple sympols from one swf? like rasta.swf#hello __ rasta.swf#ganjah __ rasta.swf#whatever ??? how do i do this? -- Flexcoders Mailing List FAQ:

[flexcoders] Re: how to use multiple symbols from same swf

2006-10-09 Thread shemeshkale
/0975.html - Original Message - From: shemeshkale [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Sunday, October 08, 2006 3:43 PM Subject: [flexcoders] how to use multiple symbols from same swf i have seen people using this : @Embed(source='/assets/rasta.swf#hello

[flexcoders] how to detect click on MenuBar root?

2006-10-09 Thread shemeshkale
i have a MenuBar that have one root with no childs. how do i detect a click on the root? it seems that the itemClick only catch clicks on the menu itself, it doesn't catch the clicks on the root. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

[flexcoders] Re: how to detect click on MenuBar root?

2006-10-10 Thread shemeshkale
anyone? someone? --- In flexcoders@yahoogroups.com, shemeshkale [EMAIL PROTECTED] wrote: i have a MenuBar that have one root with no childs. how do i detect a click on the root? it seems that the itemClick only catch clicks on the menu itself, it doesn't catch the clicks on the root

[flexcoders] Re: Where to Download Eclipse 3.1.x?

2006-10-15 Thread shemeshkale
i m running FlexBuilder 2.0 plug-in on Eclipse 3.2.0 and did not encounter any problems. i have installed the Eclipse 2.0 and the FlexBuilder as a plugin. are there any known problems/limitations to this setup ? --- In flexcoders@yahoogroups.com, Dimitrios Gianninas [EMAIL PROTECTED] wrote:

[flexcoders] does FLEX2 support text direction right to left?

2006-10-17 Thread shemeshkale
hello, can someone tell me if flex2 have an option of RTL text? i need to use hebrew and arabic in my flex app but i know the flash player do not have support for RTL text. or does it? is there any way to work with RTL texts ? -- Flexcoders Mailing List FAQ:

[flexcoders] how do i access properties of a component inside a repeater?

2006-10-26 Thread shemeshkale
i have a Tile with repeater inside. inside the repeater - a button. pretty simple. with a slider i want to change the size (width/height) of the button. i works great if i bind width/height to slider value. but how i do it the other way? from the slider to the button? what should come inside the

[flexcoders] Re: how do i access properties of a component inside a repeater?

2006-10-29 Thread shemeshkale
; btnWhatever[0].height = 100; } mx:Button id=btnWhatever height=50 width=50 label={String(rp.currentItem)}/ --- In flexcoders@yahoogroups.com, shemeshkale baldhead72@ wrote: i have a Tile with repeater inside. inside the repeater - a button. pretty simple. with a slider i

[flexcoders] how to explode a wedge on mouse over?

2006-10-31 Thread shemeshkale
hello, i have a pieChart. how do i make a specific wedge explode on mouse over on it? mouse out will revert the explosion. plus: how do i alert the wedge under the mouse? got this : mouseOver=Alert.show('over: '+event.hitData.index) but it is error, what is right? -- Flexcoders Mailing List

[flexcoders] Re: how to explode a wedge on mouse over?

2006-11-01 Thread shemeshkale
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkale Sent: Tuesday, October 31, 2006 12:42 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] how to explode a wedge on mouse over? hello, i have a pieChart. how

[flexcoders] how do i control a .SWF file inside flex?

2006-05-24 Thread shemeshkale
hi, i want to implement a swf file inside flex 1.5 and the control it from flex. i want to tell this swf to gotoAndPlay(10), gotoAndStop(98)... etc. how do i do this? can u point me to an example? -- Flexcoders Mailing List FAQ:

[flexcoders] Re: how do i control a .SWF file inside flex?

2006-05-25 Thread shemeshkale
. mx:Image id=mySwf src="" .../ Then in as: mySwf.content.gotoAndPlay(10); or var sValue:String = mySwf.content.myPublicProperty; Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkale Sent: Wednesday, May 24, 20

[flexcoders] how to set a specific node in a tree to be bold?

2006-06-06 Thread shemeshkale
hi, i have a tree in flex 1.5 how do i set a specific node to be bold? i need 2 methods - 1: by the node name. 2: by node location in tree. for the first - is it possible to do this with labelFunction? tried this without success (it returns the b as text): function lblFunk(item:Object) : String{

[flexcoders] two tabnavigators with different tab colors?

2006-06-07 Thread shemeshkale
hi, i have two TabNavigators in flex 1.5 i want to give each of them different tab colors. fillColors is not working on a TabNavigator but only on Tab in the style declartion. so how do i give each navigator different tab colors? Yahoo! Groups Sponsor

[flexcoders] Re: two tabnavigators with different tab colors?

2006-06-07 Thread shemeshkale
{ fillColors: #FF, #CC; tabStyleName: myTabStyle; } .myTabStyle { fillColors: #FF, #CC; } _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkale Sent: Wednesday, June 07, 2006 8:12 AM

[flexcoders] Re: two tabnavigators with different tab colors?

2006-06-07 Thread shemeshkale
: .MyTabNavigator { background-color:#FF; tabStyleName: myTabStyle; } _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkale Sent: Wednesday, June 07, 2006 9:22 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: two tabnavigators

[flexcoders] Re: two tabnavigators with different tab colors?

2006-06-07 Thread shemeshkale
. _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkale Sent: Wednesday, June 07, 2006 9:59 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: two tabnavigators with different tab colors? oops.. here is the code again: NOT WORKING. ?xml version

[flexcoders] Re: two tabnavigators with different tab colors?

2006-06-08 Thread shemeshkale
tnx allnothing of the suggested methods above works in flex 1.5 :the tabStyleName property is not working in flex 1.5the getTabAt() is not recognized in flex 1.5and usig Tab in style (as in the ASDoc example) is setting the same color to all tabs throughout the applicatioso what r u

[flexcoders] how to set ProgressBar height?

2006-06-11 Thread shemeshkale
using flex 1.5 is there a way to change the ProgressBar height? the height property isn't working. Yahoo! Groups Sponsor ~-- Get to your groups with one click. Know instantly when new email arrives

[flexcoders] in flex 1.5 highlightColor does NOT work !

2006-06-12 Thread shemeshkale
m using flex 1.5 and trying to change the focus color of a component. not with theme color. for some reason the documented style highlightColor is not working ! is this a bug? any way around it? Yahoo! Groups Sponsor ~-- Everything you need is

[flexcoders] how to create a component in AS?

2006-07-04 Thread shemeshkale
on the Adobe website there is a tutorial to create an AS clock. here : http://www.adobe.com/devnet/flex/articles/creating_comp.html i want do add a label to show the time in digits on top of all. how do i create this label inside the AS file? Yahoo! Groups Sponsor

[flexcoders] which event to use on component display?

2006-07-11 Thread shemeshkale
hi, using flex1.5 i need an event to fire everytime a component is displayed on screen. creationComplete/initialize happens only once so they are not good for me. for example i have this code: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;

[flexcoders] Re: which event to use on component display?

2006-07-11 Thread shemeshkale
in flex1.5 the show event is not what i need. and actually i want an event from the component itself (the Label in my example) and not from his parent. i m looking for something generic that can be applied to any component. --- In flexcoders@yahoogroups.com, Ralf Bokelberg [EMAIL PROTECTED]

[flexcoders] how to add effects to the Alert?

2007-11-05 Thread shemeshkale
i want my alert to zoom in/out when it is hidden/shown. how do i do that? alertObj.setStyle(removedEffect, Zoom); not working.

[flexcoders] changing a container's registration point.. how?

2008-01-12 Thread shemeshkale
hello, a known fact the every registration point in Flex is the top left corner of the component, and every transformation (scale, rotate...) starts from there. how do i change this point to be someplace else other then the top left? i have a subclass of Container and i want the registration

[flexcoders] Re: changing a container's registration point.. how?

2008-01-12 Thread shemeshkale
RIGHT, but that's cheating... it is not really moving the reg' point but instead moving the container... this cause some problems with consistency... but i guess is my only option. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: IMHO, you can't. The Flex layout

[flexcoders] Error #2044: Unhandled SecurityErrorEvent:. text=Error #2047: Security sandbox

2008-01-17 Thread shemeshkale
i get this error, but only on IE. on FF it doesn't show: Error #2044: Unhandled SecurityErrorEvent:. text=Error #2047: Security sandbox violation: LocalConnection.send: mymachinename cannot access http://mymachinename:8087/app/app.swf. what does it mean?

[flexcoders] Re: Error #2044: Unhandled SecurityErrorEvent:. text=Error #2047: Security sandb

2008-01-17 Thread shemeshkale
Same player versions ? YES... both = Version 9,0,115,0

[flexcoders] Re: Error #2044: Unhandled SecurityErrorEvent:. text=Error #2047: Security sandb

2008-01-17 Thread shemeshkale
] wrote: --- In flexcoders@yahoogroups.com, shemeshkale baldhead72@ wrote: i get this error, but only on IE. on FF it doesn't show: Error #2044: Unhandled SecurityErrorEvent:. text=Error #2047: Security sandbox violation: LocalConnection.send: mymachinename cannot access http