Hi All, I am using a dynamic dataProvider (this is bindable) for the AutoCompleteManager. The data is loaded in this dataprovider based on the first 3...
2106
alariccole
Jan 4, 2010 8:09 pm
The component will lose focus if something else gains focus. If you'd like this to occur with say clicking on the background of your form, you'd need to add a...
2107
stevendbernard
Jan 5, 2010 2:53 pm
Hi there, I have a TabBar and I am trying to change the font style of the selected tab. Is this possible? I have tried this but it doesn't work... tabBar being...
2108
windyphox
Jan 5, 2010 3:04 pm
Hi, I am getting a list of compiler errors. I've done this 3 times now,re-downloading the zip package & re-importing the component package. I still get this...
2109
tripp.bridges
Jan 5, 2010 3:15 pm
Use setRendererStyle. http://developer.yahoo.com/flash/astra-flash/classreference/com/yahoo/astra/fl/controls/TabBar.html#setRendererStyle() ...
2110
stevendbernard
Jan 5, 2010 4:04 pm
Thanks Tripp, I tried that but it doesn't work, it keeps the original font styling. I have astra v1.4. best Steve...
2111
tripp.bridges
Jan 5, 2010 5:45 pm
I just tested and it works fine for me. (1.4) The following application class changes blue text to red when a tab button is selected. package { import...
2112
tripp.bridges
Jan 5, 2010 5:50 pm
How are you importing the component package? Have you installed the components using ExtensionManager CS4? Installation is described on the left nav of: ...
2113
windyphox
Jan 5, 2010 6:15 pm
Hi, Thanks for replying. I followed this exactly with the extension manager, then I drag&drop the Menu component into the library, and immediately when doing...
2114
stevendbernard
Jan 5, 2010 8:34 pm
That's bizarre, I've just done a new file from scratch and used snippets of your code below and it works fine?? Weird I have a tabbar on the stage and added...
2115
tripp.bridges
Jan 5, 2010 8:52 pm
This issue is discussed here: http://tech.groups.yahoo.com/group/ydn-flash/message/1873 If the above link does not help, we can try looking into the following:...
2116
windyphox
Jan 5, 2010 9:25 pm
Yep, that was it, I had a feeling it might be. Thanks for your help! I also don't know why that message wasn't found initially when I searched for it; I did...
2117
cs.gavino@...
cs.gavino...
Jan 6, 2010 6:45 am
I'm trying to run YOSSimple.fla @ YAP but I keep getting TypeError:Error#1034 session = new YahooSession(key, CONSUMER_SECRET, token, tokenSecret); seems to be...
2118
stevendbernard
Jan 6, 2010 9:56 am
OK Tripp I have this working perfectly now but I have another question for you is it possible to increase the gap between the tabs? As currently they butt up...
2119
LucasH
lucashaley
Jan 6, 2010 6:20 pm
Heya all -- I'm new to Astra, it looks great! I've been using the Tree component successfully, and was wondering if it was possible to change the color of the...
2120
stevendbernard
Jan 7, 2010 11:11 am
I solved this by adding a 5px 0% alpha fill either side of the tab, this creates a larger gap between the tabs Best Steve...
2121
windyphox
Jan 7, 2010 10:20 pm
Hi, I'm stuck on something else. I need to have the heights of the rows (or Cells) in the Menu code enlarged. I ran across this while searching here: ...
2122
alariccole
Jan 7, 2010 10:44 pm
Currently there's no explicit way to set heights of the rows, as they are determined through the size of the text/icon. You can adjust this in the...
2123
foooobar619
Jan 8, 2010 12:05 am
I can't get my Yahoo! Application Platform to run I keep getting denied access even though their policy file accepts requests from any domain. OK: Policy file...
2124
denisechoe
Jan 12, 2010 11:03 pm
Hi, I'm wondering how to show the axes (X & Y) title using actionscript. I've tried using the below but when I run it, the title doesn't show up ...
Hi Tripp, Thanks for the code below. Strangely, I've copied your code below and only the vertical axis title appear and not the horizontal axis title. Are...
2127
tripp.bridges
Jan 13, 2010 6:04 pm
You should not have to set any styles that need to be set. Below is code for an application class that I just put together and tested. If you are still...
2140
antwaing
Jan 15, 2010 9:43 pm
In the code below it works fine and has a dashed line for null values if you only have one dataProvider, but the moment you add a 2nd dataProvider(in this case...
2141
tripp.bridges
Jan 15, 2010 11:00 pm
It looks like you've found a bug. You will need to patch it in a local class file copy in your application39;s directory. 1. Copy Cartesian.as from the astra...
2151
wilsonsun
Jan 18, 2010 3:57 pm
I use a stacked Carousel in my flash, the content of Carousel, is a ColumnChart. If I only has 1 element in Carousel, it's ok. If more than 1 element, there is...
2152
wilsonsun
Jan 18, 2010 4:20 pm
Oh, I find solution by myself. simple: stackLayout.drawAllRenderers = false;...
2158
antwaing
Jan 19, 2010 3:38 pm
Thanks for you help. It compiles with no errors, but its skipping the null values completely in the 2nd LineSeries. Line2 is charted as if there are NO null...
2159
antwaing
Jan 19, 2010 3:39 pm
It compiles with no errors, but its skipping the null values completely in the 2nd LineSeries. Line2 is charted as if there are NO null values at all. Shows...
2160
antwaing
Jan 19, 2010 3:39 pm
I figured it out. Thanks for pointing me in the right direction. This is what I added. var item:Object = currentSeries.dataProvider[j]; if (!item){ ...