Re: [Junk E-Mail - LOW] [flexcoders] DataChange event in DataGrid

2006-07-18 Thread polestar11
--- Chaitu Vadlapatla [EMAIL PROTECTED] wrote: Hi tracy, did you manage to find a way to do the dataChange fire off. Thanks Chaitu. Hi Chaitu Yes, I did manage to get the dataChange to work, but I did change the code slightly. The latest Flex documentation says that one should

[flexcoders] [Bindable] not working

2006-07-20 Thread polestar11
Hi there I have a class containing 2 variables, which I am trying to bind to a seperate component. I am not using Cairngorm, although the structure is quite similar, in that I have a component (view) that references values in a singleton class (model) In the model-like class I have the

[flexcoders] Re: [Bindable] not working - Formatting a bound ArrayCollection in a model

2006-07-25 Thread polestar11
Hi there I managed to get Ralf's version to work half got mine to work by applying the [Bindable] tag to my MyClassObject. I am working on something different at the moment, and again have run into trouble with binding on an ArrayCollection in a model class. I would like to run my

[flexcoders] Formatting a bound ArrayCollection in a model

2006-07-27 Thread polestar11
Hi there I have an ArrayCollection value in my model class, which I would like to run through a formatter function in my view. This method works with a string, but performs strangely for a collection, where: 1) The format function is never called on update 2) The bound control reflects the update

[flexcoders] Overlying UIComponent prevents click event

2006-08-03 Thread polestar11
Hi there I have an Image control that sits ontop of a button. I am trying to capture the click event of the underlying button, but it looks like the overlaying image is blocking access to the button. How can I disable this behaviour? The actual setup is slightly more complex: parent canvas: -

[flexcoders] Event listeners: Removing a listener prevents future added listeners

2006-08-14 Thread polestar11
Hi there I'm struggling with a series of KeyboardEvents. Here is the scenario: - I have mouse-down and mouse-up event listeners for my UIComponent. - In the mouse-down event I add a new listener for key-up(so that I can capture mouse-down + a key pressed) - I remove the key-up listener in the

[flexcoders] Embed an image for a Sprite

2006-08-24 Thread polestar11
Hi there How does one attach an image to a sprite class? I have tried the following example, but nothing gets displayed on the screen: package { import flash.display.Bitmap; import flash.display.Sprite; public class MySprite extends Sprite{

[flexcoders] Re: Embed an image for a Sprite

2006-08-24 Thread polestar11
Ok, I managed to figure out what the problem was from a previous post - one cannot add a sprite directly to a container, one has to first add it to a UIComponent type. Anyone with more info / experience with this? Cheers Tracy --- In flexcoders@yahoogroups.com, polestar11 [EMAIL PROTECTED

[flexcoders] TextField.embedFont strange behavior

2007-01-23 Thread polestar11
Hi there I'm getting a strange error when dynamically adding a TF and turning on the embedFonts property. Without the property turned on, all the text is displayed, but with embedFonts set to true I only see the text up to 'ABCDEFGH'. This is very odd behavior, am I missing something blatantly

[flexcoders] Re: TextField.embedFont strange behavior

2007-01-25 Thread polestar11
--- In flexcoders@yahoogroups.com, Daniel Freiman [EMAIL PROTECTED] wrote: I hate to ask a stupid question, but are you sure the entire font (or at least the Latin characters) is embedded? How are you embedding the font? Hi Daniel I wasnt embedding the font at all other than specifying the

[flexcoders] Importing mx packages into AS3 project

2007-01-30 Thread polestar11
Hi there I have an AS3 project want to use the rich Flex components (since AS3 components are non-existant and I dont feel like re-inventing the wheel). I recently discovered that u can only use these in a Flex project. The reasons why I wanted an AS3 project was to leave out all the heavy stuff

[flexcoders] Re: Importing mx packages into AS3 project

2007-02-02 Thread polestar11
Thanks Gordon I eventually ended up converting to an mx project, which bloated my app from 162K to 480K. At the moment size isnt an issue and I have gone for the ease of development over size. Customizing the flex component code is an option I havent considered yet, thinking that my only hopes

[flexcoders] Re: Importing mx packages into AS3 project

2007-02-05 Thread polestar11
, Gordon Smith [EMAIL PROTECTED] wrote: This is a surprising amount of bloat. Do you have a list of the framework components that you're using? - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of polestar11 Sent

[flexcoders] Re: Importing mx packages into AS3 project

2007-02-05 Thread polestar11
To the best of my knowledege this is done through: Project-Properties-Flex Compiler-Additional compiler arguments: -debug=false I have done this for both projects. Debug files are still created for both despite this option being specified. My Flex project is reduced to 440KB (vs 485KB), which is

[flexcoders] Bitmap or BitmapData used for backgroundImage

2007-02-12 Thread polestar11
Hi there I want to know if its possible to use Bitmap or BitmapData for the backgroundImage style property of a Flex Container component. My reason for this is that I store all my styling assets in a swf file have a method that extracts them as MovieClips transforms them into Bitmaps. An

[flexcoders] HDividedBox - on-release-outside + updateAfterEvent problems

2007-02-19 Thread polestar11
Hi there I have an HDividedBox control that divides 2 children that resize with dragging. There are 2 issues that I am having with this control: 1) the updates to the child container sizes dont occur simultaneously, resulting in visual errors of size position (which are fixed when dragging

[flexcoders] Tree labelField and hiding leaf nodes

2007-03-08 Thread polestar11
Hi there I have a Tree component that I feed in XML as its dataProvider. I clean up this XML data before passing it too the tree by adding a new attribute @nodeName to nodes that should be displayed. My assumption is that nodes without this field would not be displayed, but what actually happens

[flexcoders] Re: Error 2025 with images?

2007-03-15 Thread polestar11
--- In flexcoders@yahoogroups.com, John Wilker [EMAIL PROTECTED] wrote: I'm working on a quicky little RSS Reader and having some trouble. I've got a DG on one side, which then populates a textArea on the other side. Here's the feed (mine) http://www.red-omega.com/blog/rss.cfm?mode=full

[flexcoders] Re: Auto-expand Treenodes - ValidateNow - THANKS!!

2007-03-19 Thread polestar11
I've also been having serious problems with tree nodes: auto-expanding child nodes and setting (highlighting) a selected node. MyTree.validateNow() was the answer to getting all of this working. What I did to get it working was: 1) Search my dataProvider for a particular item (returning an

[flexcoders] Error 2025 with images

2007-03-26 Thread polestar11
Hi there This question was previously asked on Flexcoders and not addressed: http://tech.groups.yahoo.com/group/flexcoders/message/64576 I have dug futher into the problem know what may be causing it. Here is a description of the problem: I load html text into a textarea. I then edit the text

[flexcoders] Detect focusOut on Application / Stage

2007-05-10 Thread polestar11
Hi there I would like to detect a user entering and exiting a Flex app. My initial assumption was to use FocusIn/Out on either the generic stage / application objects: stage.addEventListener( FocusEvent.FOCUS_IN, onFocusIn ); stage.addEventListener( FocusEvent.FOCUS_OUT, onFocusOut ); This

[flexcoders] Re: Datagrid auto sorting. Has anyone done this?

2007-05-22 Thread polestar11
Hi there I tried exactly that in various different ways, but wasnt able to get it to work. I have an array, which I convert to an array collection, on which I sort and refresh, after which I set as a dataProvider for my DataGrid. Still no sort arrow is shown. I then tried extending the

[flexcoders] Re: Datagrid auto sorting. Has anyone done this?

2007-05-24 Thread polestar11
Thanks Alex My sort was pretty simple straight-forward, but I was doing something wrong. So eventually I ended up sub-classing the header renderer like you suggested got it to work well. I actually used your Custom Header Renderer example to get me started:

[flexcoders] Flex Fonts: How to implement the Bitmap text (no anti-alias) effect in Flex

2007-09-06 Thread polestar11
Hi there Flash 8 and up provide an option in the property panel for textfields, Bitmap text (no anti-alias). I can use this with embedded fonts to get clear text without depending on the user having the font installed. How do I do this with the Flex compiler? From what I can see, I can only set

[flexcoders] Re: @Embed directive in mx:source tag not working for swfs

2007-09-07 Thread polestar11
I have experienced something similar think it is to do with the different paths for design view vs runtime view. Runtime uses the assets in the bin folder while compilation design view use the assets relative to the project folder. Just check that assets are found in both. Alternatively you

[flexcoders] [Bindable] not binding

2007-09-13 Thread polestar11
Hi there I've used the [Bindabe] meta-tag 100's of times, but for some reason it seems to have stopped working. I have a very straight-forward setup with a controller, properties and a view. I have a bindable reference to the controller in the view, while the controller has a bindable 'title'

[flexcoders] Re: [Bindable] not binding

2007-09-13 Thread polestar11
controller: QController = new QController(); - Original Message From: polestar11 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, September 13, 2007 6:20:12 AM Subject: [flexcoders] [Bindable] not binding Hi there I've used the [Bindabe] meta-tag

[flexcoders] Re: [Bindable] not binding

2007-09-13 Thread polestar11
--- Sean wrote: Event better would be to do it like cairngorm and create your controller before the view then your view objects well be correctly bound from the beginning. - Me: Modified the code slightly so that the controller is created before the view. Still no luck --- Jon wrote: Shot in

[flexcoders] Re: What do you do when you're waiting for moxie to build?

2007-09-21 Thread polestar11
My Flexbuilder slowness has reached a new record high. After thinking that 3mins was completely unbearable, the new record is approaching 8minutes. This is with all possible attempts / options of setting FB up for optimal build time. I am working with a library project which i build then copy

[flexcoders] FLV Recorded stream contains strange additional blank space / frames

2007-10-26 Thread polestar11
Hi there We're recorded a series of flv files using getCamera() Red5. Some of our recorded flv's have a chunk of dead video space at the begining. Using RichFLV to analyze the timeline, one can see a few key frames, then a huge chunk of blank space spanning for about 1 minute, then continuing

[flexcoders] Multiple classes per package

2006-10-16 Thread polestar11
Hi there Does anyone know if Actionscript 3 and Flexbuilder2 support multiple classes per package, where only 1 class is declared as public, while the remaining classes are only available inside the package? Eg. package mypackage { public class MainClass { public function MainClass() {}

[flexcoders] Re: Multiple classes per package

2006-10-17 Thread polestar11
--- In flexcoders@yahoogroups.com, Claus Wahlers [EMAIL PROTECTED] wrote: Use the 'internal' access modifier: // File mypackage/MainClass.as package mypackage { public class MainClass { // .. } } // File mypackage/HelperClass.as package mypackage { internal class

[flexcoders] Re: Multiple classes per package

2006-10-18 Thread polestar11
Thanks, Claus That's exactly what I was looking for. Tracy -- 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

[flexcoders] Re: Cairngorm - mx:HTTPService result=event.call.resultHandler( event )... do

2006-06-05 Thread polestar11
--- In flexcoders@yahoogroups.com, Iuliu Burtoiu [EMAIL PROTECTED] wrote: Hello again! I'm trying for some time now, to add a custom webService in my Services.mxml control. However, the dummyDelegate HTTPService from the old version of Cairngorm LOGIN sample doesn't seem to work

[flexcoders] Re: Help on Illegal assignment to function

2006-06-08 Thread polestar11
Gordon wrote: In AS3, if a class has declared a method at compile time, you can't reset that method at runtime to be a different function. In AS3 one should be able to change methods and properties at runtime of dynamic classes: A dynamic class defines an object that can be altered at run time

[flexcoders] Definition _ could not be found: itemRenderer component in Flex2Beta3

2006-06-09 Thread polestar11
Hi there I am using a datagrid with an itemRenderer component for one of the columns. I have never been able to get this to work in Flex2Beta3, always getting the error: Definition (my component) could not be found. [CODEGEN ... (path to my file)] If I use the component outside of a datagrid

[flexcoders] Re: Definition _ could not be found: itemRenderer component in Flex2Beta3

2006-06-19 Thread polestar11
)... itemRenderer=my.path.to.DataListItem Hope that helps, Brendan On 6/9/06, polestar11 [EMAIL PROTECTED] wrote: Hi there I am using a datagrid with an itemRenderer component for one of the columns. I have never been able to get this to work in Flex2Beta3, always getting

[flexcoders] Reducing padding / margin between UI items

2006-06-20 Thread polestar11
Hi there Does anyone know how to control the padding / margin amounts between UI items, some kind of a container command equivallent to childPaddingLeft/Right. I have a TileList that contians a item-rendered component that contians 2 labels. I am struggling to shift the 1 label closer to the

[flexcoders] Tabbing through items in a container

2006-06-20 Thread polestar11
Hi there I am trying to build a custom list that allows the same type of cursor tabbing though child items as a list / datagrid. I have created a custom class that extends HBox. I have chosen a container rather than a list to extend from, because I do not want a fixed column width for items. I

[flexcoders] Re: Tabbing through items in a container

2006-06-21 Thread polestar11
Of polestar11 Sent: Tuesday, June 20, 2006 6:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Tabbing through items in a container Hi there I am trying to build a custom list that allows the same type of cursor tabbing though child items as a list / datagrid. I have created

[flexcoders] Re: How to capture/handle runtime errors?

2006-06-30 Thread polestar11
--- In flexcoders@yahoogroups.com, Pat Buchanan [EMAIL PROTECTED] wrote: I'm experiencing runtime error # 2025 (The supplied DisplayObject must be a child of the caller). Hi there I am also experiencing the The supplied DisplayObject must be a child of the caller error and think I know

[flexcoders] Flex2B3 XMLSocket - AS2 onConnect equivallent?

2006-06-30 Thread polestar11
In Flex2B3 the XMLSocket class no longer issues an onConnect event, which tells if the connection was successful or not. There is only support for an Event.CONNECT event which is called once there is a connection. How can one tell if the connection attempt was successful? Thanks

[flexcoders] Re: How to capture/handle runtime errors?

2006-06-30 Thread polestar11
--- In flexcoders@yahoogroups.com, polestar11 [EMAIL PROTECTED] Enter problem II, here is the scenario: - draggable Image onto new position - if another Image exists at this position, remove it This works for the first occurance. But subsequent dragging and dropping images results

[flexcoders] DataChange event in DataGrid

2006-07-03 Thread polestar11
Hi there I am trying to capture the dataChange event in a datagrid, but my associated method is not being called when I change data in the grid. Here is the code: mx:Script ![CDATA[ public function updateData() { trace(*** UPDATE DATA) tempArray = [{col1:Jack, col2:Col2 A}, {col1:Col2 A,

Re: [Junk E-Mail - LOW] [flexcoders] DataChange event in DataGrid

2006-07-03 Thread polestar11
--- In flexcoders@yahoogroups.com, Shannon Hicks [EMAIL PROTECTED] wrote: Exactly how are you changing the data? Hi Shannon The datagrid references a bindable variable, tempArray, as its dataProvider. There is a button that updates the tempArray value when clicked, which updates the data in

Re: [Junk E-Mail - LOW] [flexcoders] DataChange event in DataGrid

2006-07-03 Thread polestar11
--- In flexcoders@yahoogroups.com, Shannon Hicks [EMAIL PROTECTED] wrote: You need to cast your dataprovider as an arrayCollection, not an array. I updated the my array to an ArrayCollection type, but still no luck. The function doDataChange() is still not being called. public function

[Junk E-Mail - LOW] Re: [Junk E-Mail - LOW] [flexcoders] DataChange event in Dat

2006-07-04 Thread polestar11
--- In flexcoders@yahoogroups.com, Shannon Hicks [EMAIL PROTECTED] wrote: Looks like now you want to use the arrayCollection.collectionChange event to trap it. The thing is that I need the dataChange event to fire as soon as data has been updated in that particular view. In my actual code the

[Junk E-Mail - LOW] [Junk E-Mail - LOW] Re: [Junk E-Mail - LOW] [flexcoders] Dat

2006-07-04 Thread polestar11
--- In flexcoders@yahoogroups.com, Shannon Hicks [EMAIL PROTECTED] wrote: According to the docs, dataChange fires when the value of the dataProvider param changes. Now, to my best understanding, that means that if you switched to a *different* dataProvider, the event would fire. I'm still

[Junk E-Mail - LOW] [Junk E-Mail - LOW] Re: [Junk E-Mail - LOW] [flexcoders] Dat

2006-07-05 Thread polestar11
Thanks Shannon You have pointed me in the right direction. Just realised that I have a lot more to learn, reading the manuals. Cheers Tracy Yahoo! Groups Sponsor ~-- See what's inside the new Yahoo! Groups email.

[Junk E-Mail - LOW] [Junk E-Mail - LOW] Re: [Junk E-Mail - LOW] [flexcoders] Dat

2006-07-05 Thread polestar11
... I mean thanks Tracy Yahoo! Groups Sponsor ~-- Yahoo! Groups gets a make over. See the new email design. http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM ~- --

[flexcoders] Overriding inherited skin style

2007-11-13 Thread polestar11
Hi there I have a global Panel style defined, which contains a border-skin swf. I want to be able to turn this off for specific panels. There seems to be no explicit way to turn this off (Eg. boder-skin:none) the only way I have managed so far is to reference a transparent / blank swf as the

[flexcoders] Re: Overriding inherited skin style

2007-11-14 Thread polestar11
I tried that, but I get the following exception: TypeError: Error #1034: Type Coercion failed: cannot convert null to Class. at mx.core::Container/isBorderNeeded()[E:\dev\flex_3_beta2\sdk\frameworks\projects\framework\src\mx\core\Container.as:4054] --- In flexcoders@yahoogroups.com, Alex Harui

[flexcoders] Re: Overriding inherited skin style

2007-11-14 Thread polestar11
Bingo! The solution was to set the style back to the default, Halo theme: borderSkin: ClassReference(mx.skins.halo.HaloBorder); Thanks Tom --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 14 Nov 2007, polestar11 wrote: I tried that, but I get

[flexcoders] Initializing Conainer's children properties

2007-11-21 Thread polestar11
Is there any way to force the initialization of a container's children without adding it to the stage. I have set show hide style effects on children, but these only get initialized if I add them to the stage. I can add then remove the parent container to force these properties to be activated,

[flexcoders] Actionscript: Copy an Object or Dictionary

2007-11-30 Thread polestar11
Hi there Does anyone know how to iterate through an Object / Dictionary copy child items. I've tried ObjectUtil, but it only copies over object values, not exact values. cheers tracy

[flexcoders] Re: Actionscript: Copy an Object or Dictionary

2007-11-30 Thread polestar11
--- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: it only copies over object values, not exact values. Huh? @Tom How would one bind the keys to the new dictionary children? var newDict:Dictionary = new Dictionary(); var item:Class for each(item in

[flexcoders] Flex Preloader, not displaying immediately

2007-12-03 Thread polestar11
Hi There I'm experiencing some issues with the default Flex preloader. It used to display immediately in our application but now recently as the app loads there is a blank white screen for the bulk of of the upload the preloader displays for a short instance just before the app load completes. I

[flexcoders] Re: Flex Preloader, not displaying immediately

2007-12-04 Thread polestar11
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Do you have a custom preloader? If too much code is brought in by the preloader, it will delay it. Hi Alex No, we are using the standard Flex preloader. It seems that the bulk of the flex app / swf is loading

[flexcoders] Tab Width Issues when Extending TabBar for TabNavigator

2007-12-04 Thread polestar11
Hi There I am extending the TabNavigator (actually SuperTabNavigator) class and have the corresponding children classes that extend TabBar and Tab (SuperTabBar and SuperTab). What I want to do is include a 2nd text field in my custom tab that is displayed next to the existing textField. I'm

[flexcoders] Scale 9 Issues

2007-12-08 Thread polestar11
Hi there We are trying to skin our app and have added skins for ComboBoxes and Scrollbars. We have scale-9 set on the skin symbols for the arrow buttons but for some reason it is not being picked up in our Flex app. I have looked at the default AeonGraphical theme seen that the right side

[flexcoders] Re: Actionscript: Copy an Object or Dictionary

2007-12-08 Thread polestar11
a dictionary assign its child values. The other alternative was to create an array of keys, iterate those assign the dictionary values to the new dictionary. Cheers Tracy --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 30 Nov 2007, polestar11 wrote: for each

[flexcoders] Scale 9 not being picked up

2007-12-11 Thread polestar11
Hi There Does anyone have any idea why flash symbols for skinned controls with scale-9 would not be picked up? Specifically arrows for the ComboBoxes and Scrollbars. Scaling the resources in Flash also results in the arrow symbols being scaled incorrectly with no scale-9. Cheers Tracy

[flexcoders] Re: Scale 9 not being picked up

2007-12-13 Thread polestar11
Hi Juan Our ScrollBar arrow turned out to be a Bitmap, so you were right about scale-9 not being picked up for Bitmaps. Changing that to a vector fixed it. The scale-9 issue seems to only be a problem for ComboBoxes. Our ComboBox arrows are vectors and we are developing in FlexBuilder 3 Beta 2.

[flexcoders] Re: Scale 9 not being picked up

2007-12-13 Thread polestar11
symbol for the arrow button (just by breaking the symbol apart, rendering it in the same raw state as for the editable ComboBox arrow) and wallah, it works! --- In flexcoders@yahoogroups.com, polestar11 [EMAIL PROTECTED] wrote: Hi Juan Our ScrollBar arrow turned out to be a Bitmap, so you were

[flexcoders] Any way to cast a string reference of a class name to its Class equivallent

2007-12-19 Thread polestar11
Hi there I have a list of class names stored as strings in an xml file. Is there any way to cast them to actual class items programatically once the file has loaded. Eg. item classname=aClass/ // in code myComponent.setStyle(icon, Class([EMAIL PROTECTED])); Cheers Tracy

[flexcoders] Re: FlexBuilder 3 Beta 2 charting and license

2007-12-20 Thread polestar11
Hi there We purchased FlexBuilder 2 with Charting used the serial number for FlexBuilder 3. This removed the watermark. Now we are running a later build version of FlexBuilder 3 and the watermark has re-appeared. Is there anything we can do to get rid of this? Cheers Tracy B --- In

[flexcoders] Re: Any way to cast a string reference of a class name to its Class equivallent

2007-12-20 Thread polestar11
SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of polestar11 Sent: Wednesday, December 19, 2007 4:05 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Any way to cast a string reference of a class name to its Class

[flexcoders] How does scale-9 placement affect the size of a border-skin?

2008-01-09 Thread polestar11
Hi there I've created some custom skins for various components, eg. Canvas.borderSkin myTabStyleName.upSkin. I find that the placement of the scale-9 grid lines affects the size of the way the component renders the skin and sometimes even the component size. For example ... if I place the

[flexcoders] FlexBuilder 3 Beta 3 - Overstate causes resizing effect

2008-01-11 Thread polestar11
Hi there I upgraded from FlexBuilder 3 Beta 2 to Beta 3 and am suddenly getting some strange rendering / sizing issues, particularly for over states of buttons and scrollbars. Buttons: In some cases my over-state for buttons results in the label to move slightly to the left the button size

[flexcoders] Re: How does scale-9 placement affect the size of a border-skin?

2008-01-11 Thread polestar11
on it From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of polestar11 Sent: Wednesday, January 09, 2008 5:51 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How does scale-9 placement affect the size of a border-skin? Hi there I've created

[flexcoders] Re: FlexBuilder 3 Beta 3 - Overstate causes resizing effect

2008-01-11 Thread polestar11
@yahoogroups.com, polestar11 [EMAIL PROTECTED] wrote: Hi there I upgraded from FlexBuilder 3 Beta 2 to Beta 3 and am suddenly getting some strange rendering / sizing issues, particularly for over states of buttons and scrollbars. Buttons: In some cases my over-state for buttons results

[flexcoders] Local Shared Object alternative?

2008-01-16 Thread polestar11
Hi there What do you do if your users want to avoid detection and update their Flash Player settings and set Local Storage to 0, making any user-based information stored as a LSO not possible? Are there any alternatives to LSO's? Cheers Tracy

[flexcoders] Re: Local Shared Object alternative?

2008-01-16 Thread polestar11
? --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 16 Jan 2008, polestar11 wrote: What do you do if your users want to avoid detection and update their Flash Player settings and set Local Storage to 0, What sort of detection does this avoid, and why don't your

[flexcoders] Re: AIR app wrapper - Strange UI behaviour

2008-01-17 Thread polestar11
file with an AIR app? --- In flexcoders@yahoogroups.com, polestar11 [EMAIL PROTECTED] wrote: Hi I'm using an AIR app to wrap an existing Flex app. I do this via loading the Flex app swf with SWFLoader. I'm finding the following issues: 1) Some styles / custom skins do not appear (only

[flexcoders] AIR app wrapper - Strange UI behaviour

2008-01-17 Thread polestar11
Hi I'm using an AIR app to wrap an existing Flex app. I do this via loading the Flex app swf with SWFLoader. I'm finding the following issues: 1) Some styles / custom skins do not appear (only some, which is strange) 2) I have a large amount of padding around my app content, despite setting all

[flexcoders] AIR - notifyUser ... expected behaviour?

2008-01-18 Thread polestar11
Hi I have an AIR app that minimizes to the system-tray, displaying an icon. When calling stage.nativeWindow.notifyUser(NotificationType.INFORMATIONAL); ... I expect the icon to do something exciting, but it stays exactly the same. Debugging the app confirms that the function is being called. Is

[flexcoders] Preloader - only shows after app has loaded

2008-01-21 Thread polestar11
Hi I have an app that's approx. 2MB big was using the default Flex preloader, which has suddenly stopped working. I have confirmed this by throttling my app with Charles. While my app loads, there is a blank screen. Once the swf has loaded, the preloader displays for a short few seconds then

[flexcoders] Re: Preloader - only shows after app has loaded

2008-01-21 Thread polestar11
the browser cache results in the same behavior --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 21 Jan 2008, polestar11 wrote: preloader, which has suddenly stopped working. What had you just changed ? Roll back in your version control and trya some older

[flexcoders] Flex Binding Issues

2008-01-22 Thread polestar11
Hi there I've run into binding issues with Flex 3B3. I have the following setup: - TitleWindow with a singleton TitleWindowController that gets initilaized in TitleWindow.onInitialize() - DetailsWindow which sits inside TitleWindow and has a getter / setter of 'controller' for

[flexcoders] Re: Flex Binding Issues

2008-01-22 Thread polestar11
, controller); } ... binding works Strange --- In flexcoders@yahoogroups.com, polestar11 [EMAIL PROTECTED] wrote: Hi there I've run into binding issues with Flex 3B3. I have the following setup: - TitleWindow with a singleton TitleWindowController that gets

[flexcoders] Flex 3Beta3 and Button width

2008-01-22 Thread polestar11
After upgrading to Flex3Beta3 I'm finding that Button labels get truncated in the over state. I have changed the padding left right properties, but this seems to have no effect. After reading this post:

[flexcoders] Flex 3 Dynamic Button Width - No longer supported?

2008-01-25 Thread polestar11
Hi I posted this before, but am trying again for a response: After upgrading to Flex3Beta3, Button labels get truncated in the over state. The only way around this seems to be by setting explicit button width. Tweaking padding doesnt have any effect. Does Flex no longer support dynamic button

[flexcoders] Re: Flex 3 Dynamic Button Width - No longer supported?

2008-01-25 Thread polestar11
appropriately, deleting the old one. Result is a new symbol, with the exact same scale-9 values. --- In flexcoders@yahoogroups.com, polestar11 [EMAIL PROTECTED] wrote: Hi I posted this before, but am trying again for a response: After upgrading to Flex3Beta3, Button labels get truncated in the over

[flexcoders] Re: LinkButton textSelectedUpColor ???

2008-01-25 Thread polestar11
Hi Kevin I ran into the same problem managed to get around it with the following hack. Basically having 2 style declarations for the selected unselected states dynamically determining the stylename: mx:LinkButton id=viewLibrary label=LIBRARY styleName={(viewLibrary.selected) ? 'linkSelected'

[flexcoders] VideoDisplay.totalTime is 0

2008-01-28 Thread polestar11
Hi there With Flex3B3 I am trying to init a slider bar to have a max value of a videoDisplay.totalTime value. I have bound it to the value, but it always returns 0. It looks like the value only gets initialized once the video has played through once, even though i only do the init on progress

[flexcoders] VideoDisplay over RTMP - Not possible?

2008-02-01 Thread polestar11
Hi I've run into a seemingly common problem of setting videoDisplay source to an rtmp stream. I get the following exception as soon as the video-display's play is triggered: ArgumentError: Error #2126: NetConnection object must be connected. at flash.net::NetStream/construct() at

[flexcoders] NetStream - any way to play bytes

2008-02-15 Thread polestar11
Hi Is there any way that a Netstream class can play bytes in memory, rather than referencing a filename? Cheers Tracy

[flexcoders] Container scaling and child icons

2008-02-18 Thread polestar11
Hi there I have a set of linkbuttons within a container. These linkbuttons have icon images that I want to maintain their size when the container scales. Is there any way to easily do this? Cheers Tracy

[flexcoders] Re: Container scaling and child icons

2008-02-18 Thread polestar11
--- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: set the width and height property on them I do already set the width height of the linkbuttons, but they would still automatically scale when being included in a parent container that scales. There seems to be no icon

[flexcoders] Creating a constantly pressed button - reptative firing of Mouse_Down event?

2008-02-20 Thread polestar11
Hi there How would one set up events on a button so that a function can be called while it is in the pressed state? For example, I want an item on the stage to scale while I hold down the Scale button. Mouse_Down is only called once. I tried setting up Mouse_Over events in the mouseDownHandler,

[flexcoders] Re: Creating a constantly pressed button - reptative firing of Mouse_Down event?

2008-02-20 Thread polestar11
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: autoRepeat=true, and listen for buttonDown, not mouseDown THANKS!

[flexcoders] UIComponent children, preventing scale on parent scale

2008-03-05 Thread polestar11
Hi there I have a UIComponent that has a collection of Bitmap children. I want parts of these children to not scale when the parent container scales (i.e. scale-9 for these children). I have set scale-9 for each child instance, but they still scale when the parent. I can simulate this scenario

[flexcoders] Custom skinning and strokes

2008-03-28 Thread polestar11
Hi there I have a question about implementing a custom skin for a panel, and components in general. How does using strokes affect the layout of the skins? I'm having trouble getting my custom skins (eg. Panel with ControlBar) to line up exactly. I suspect it might have something to do with using

[flexcoders] Re: Custom skinning and strokes

2008-03-31 Thread polestar11
Anyone??? --- In flexcoders@yahoogroups.com, polestar11 [EMAIL PROTECTED] wrote: Hi there I have a question about implementing a custom skin for a panel, and components in general. How does using strokes affect the layout of the skins? I'm having trouble getting my custom skins (eg. Panel

[flexcoders] Is this a performance gain?

2008-04-03 Thread polestar11
Hi there Is the follwing actually slightly faster or is it pretty much the same when referencing object functions in a loop? var f:Function = obj.getValue; // bring function to this level var val:Number; for(var i:int=0; i1; i++) { val = f(i); } VERSUS var val:Number; for(var i:int=0;

[flexcoders] Skinning in Flex - What a nightmare!!!

2008-04-15 Thread polestar11
Please help There is virtually no documentation on Flex skinning. I am really struggling with border sizes and content sizes with custom skins, in particular Panel skins using the borderSkin property. I'm currently trying to skin an Alert box. I have the following properties set: Alert {

[flexcoders] Re: Skinning in Flex - What a nightmare!!!

2008-04-15 Thread polestar11
to download) They really make life easier. But I have to say: I'm still having trouble with Panel skins too. --- In flexcoders@yahoogroups.com, polestar11 polestar11@ wrote: Please help There is virtually no documentation on Flex skinning. I am really struggling with border sizes

[flexcoders] AIR HTML component - html tag / text selection

2008-04-24 Thread polestar11
Hi there I'm trying to access selected html text from an HTML component in an AIR app. I'm able to get selected text that excludes html tags by calling a JS function: window.getSelection(). This excludes the HTML tags though. I've tried using my HTML component's textSnapshot property this has a

[flexcoders] Interesting XML performance discovery

2008-05-23 Thread polestar11
Hi there I'm busy crunching through xml data, stripping out nodes that don't have children. Perhaps its not the best way to do things, but I use a for loop that checks and deletes any item with no children. I've always found XML delete tricky and to do this I reference the parent which finds the

[flexcoders] Re: Interesting XML performance discovery

2008-05-23 Thread polestar11
in the loop on a large list of children is hugely inefficient. --- In flexcoders@yahoogroups.com, polestar11 [EMAIL PROTECTED] wrote: Hi there I'm busy crunching through xml data, stripping out nodes that don't have children. Perhaps its not the best way to do things, but I use a for loop

  1   2   >