[flexcoders] Repeater giving bogus Binding warnings?

2008-10-20 Thread Josh McDonald
Hey Guys, I'm getting binding warnings that don't make any sense. Here's my repeater code: mx:Repeater id=remittanceRepeater dataProvider={ selectedPayment.remittanceFiles } mx:HBox verticalAlign=middle mx:TextInput width=140 text={ remittanceRepeater.currentItem.remittanceFile }/

Re: [flexcoders] Re: Problem with scaleX for system fonts!

2008-10-20 Thread Haykel BEN JEMIA
You have to embed the font with all typeface styles you need. If for example you need the plain, bold and bold-italic typefaces, then you have to embed the font three times with the different typeface properties: @font-face { src: local(Arial); fontFamily: myFontFamily; advancedAntiAliasing:

Re: [flexcoders] Listem to an event sent by a DataGrid ItemRenderer

2008-10-20 Thread claudiu ursica
Can you provide a larger code snippet? Try listen to the event on the stage maybe taht will help. Cheers, Claudiu. - Original Message From: Sébastien Tromp [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, October 18, 2008 1:18:39 PM Subject: [flexcoders] Listem to

[flexcoders] Re: Repeater control and custom Component

2008-10-20 Thread lysfael
Hello, Sorry for the absence, These datas are an example of the datas that i get from my HttpService. lg ID=F0010_T0056-0 c ID=F0010_48-0OUV/c c ID=F0010_49-0/c c ID=F0010_50-05/c /lg lg ID=F0010_T0056-1 c ID=F0010_48-1ETA/c c ID=F0010_49-1/c

[flexcoders] file upload with rpc

2008-10-20 Thread Deniz Davutoglu
Hi guys, does any one tried to upload file using rpc? I wonder how can I post files using rpc... thanks. Deniz

[flexcoders] Still no one knows ? Please help.

2008-10-20 Thread itdanny2002
Does anyone knows how to change the color of bullet (radio) or checkmark in menu box ? Always black.

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-20 Thread akila_ksri
--- In flexcoders@yahoogroups.com, Haykel BEN JEMIA [EMAIL PROTECTED] wrote: You have to embed the font with all typeface styles you need. If for example you need the plain, bold and bold-italic typefaces, then you have to embed the font three times with the different typeface properties:

Re: [flexcoders] Re: Problem with scaleX for system fonts!

2008-10-20 Thread Haykel BEN JEMIA
It works for me. Here an example: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:Style @font-face { src: local(Arial); fontFamily: myFontFamily; advancedAntiAliasing: true; }

Re: [flexcoders] Re: Repeater control and custom Component

2008-10-20 Thread Ralf Bokelberg
I'm not sure if you can subclass mx:Repeater. What are you trying to do with your repeater subclass? Ralf. On Mon, Oct 20, 2008 at 12:16 PM, lysfael [EMAIL PROTECTED] wrote: Re, I made a component based on the repeater, to have the control on the datas. and i use it like i should use a

[flexcoders] Re: Repeater control and custom Component

2008-10-20 Thread lysfael
Re, I made a component based on the repeater, to have the control on the datas. and i use it like i should use a repeater. i have an error on the compil. Symbol '_com_probtp_IG_ContactsModule_components_F0010WatcherSetupUtil' is multiply defined in

Re: [flexcoders] Still no one knows ? Please help.

2008-10-20 Thread Michael Schmalle
I answered; Which style name control the color No need to post twice, it was the weekend. :) PS The title of this thread could have be a bit more descriptive since there are hundreds of posts a day. Mike On Mon, Oct 20, 2008 at 4:14 AM, itdanny2002 [EMAIL PROTECTED] wrote: Does anyone

Re: [flexcoders] Which style name control the color

2008-10-20 Thread Michael Schmalle
Hi, It's the 'iconColor' style. These are available for the checkbox; borderColor, iconColor, fillAlphas, fillColors, highlightAlphas and themeColor. Mike On Sun, Oct 19, 2008 at 7:20 AM, itdanny2002 [EMAIL PROTECTED] wrote: Which style name control the color of bullet / checkmark in

Re: [flexcoders] Compile error with flex sdk 3.1

2008-10-20 Thread jitendra jain
Your flex build path is not pointing to Flex SDK3.1.0. Replace it if not... Thanks, with Regards, Jitendra Jain From: Pankaj Arora [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, 18 October, 2008 10:28:05 AM Subject: [flexcoders] Compile

[flexcoders] Dispatching The itemEditEnd event from within an item editor

2008-10-20 Thread Randy Martin
I have a custom item editor for a cell in a DataGrid that consists of two ComboBoxes. Everything works perfectly, except I'd like a way to exit the item editor as soon as the user selects from the second combo box. That is, I'd like the item editor to dispatch the itemEditEnd event as if the

Re: [flexcoders] Listem to an event sent by a DataGrid ItemRenderer

2008-10-20 Thread jitendra jain
Where is the Timer control ? Which TimerEvent you are listening to .. Thanks, with Regards, Jitendra Jain From: Sébastien Tromp [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, 18 October, 2008 3:48:39 PM Subject: [flexcoders] Listem to an

[flexcoders] Re: FZip loads cached zip before downloading online

2008-10-20 Thread diigiibot
I just found an easy solution to prevent the URLRequest checking the cache before getting the zip online. It looks like the URLRequest has a parameter specially for AIR applications. var request:URLRequest = new URLRequest(moduleLink); request.useCache = false; zip.load(request); Now the cache

[flexcoders] Data Label showing null value

2008-10-20 Thread nehavyas13
When I do following it sometimes shows null in the datalabel on a barchart eg. 0.null (the value is actually 0.06) private function setCustomLabel(element:ChartItem, series:Series):String { // Get a refereence to the current data element. var data:BarSeriesItem =

Re: [flexcoders] Listem to an event sent by a DataGrid ItemRenderer

2008-10-20 Thread Scott Melby
In your item renderer, if you have control over the TimerEvent creation, set the bubbles parameter to true. If you do not, you may want to catch the event in the renderer and re-dispatch a new one with bubbles set to true. This will allow your event to bubble out, up the parental chain

[flexcoders] Re: VISTA plus SSL plus AIR - error 2032 stream error

2008-10-20 Thread fotis.chatzinikos
As well as the previous post, you can do the following, it seems nearer to your case (from asdoc - online): check the protocol line in the following spec: mx:HTTPService concurrency=multiple|single|last contentType=application/x-www-form-urlencoded|application/xml fault=No default.

[flexcoders] Integration Of flex into Asp.net

2008-10-20 Thread prem_toc
Intro: am a asp.net programmer and am a beginner in flex .now my firm converting into flex .we are developing banking domain application in asp.net . our menubar is in flex .how i integrated flex menu into asp.net master pages . so that each page in asp.net uses that flex menu?

[flexcoders] Re: AIR+VISTA+SSL - #2032StreamError

2008-10-20 Thread fotis.chatzinikos
Do not know if it helps, but your crossdomain.xml is not correctly formed... check this line: cross-domain-policy xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:noNamespaceSchemaLoca allow-access-from domain=* secure=false/ false should be inside the quotes, now

re: [flexcoders] Integration Of flex into Asp.net

2008-10-20 Thread wkolcz
Flex apps are just swfs when compiled. Just add it as any element. If you need to navigate, use the navigateToURL function to move around the site. From: prem_toc [EMAIL PROTECTED] Sent: Monday, October 20, 2008 5:44 AM To: flexcoders@yahoogroups.com

Re: [flexcoders] Creating custom components in flex using actionscript 3.0

2008-10-20 Thread Michael Schmalle
Hi, I see two things that need to be changed in your code; 1. When setting setStyle() you need to use the correct style type. You are using strings for numbers IE 2, this is not correct and could cause weird behavior, change this and see if you still have your issue. 2. In your

[flexcoders] Papervision 3D an Flex components

2008-10-20 Thread Amy
Is it possible to wrap an entire Flex component (for instance, a TileList) in PaperVision 3D in such a way that you give it a more 3D appearance, yet still keep it interactive? I've seen this demo http://dev.getoutsmart.com/os3d/demos/videoroom/, but I have no idea if it is PaperVision or

[flexcoders] DataGrid: Make text bold when row is highlighted or selected

2008-10-20 Thread cwicky99
I have a DataGrid and I am trying to figure out how to make the font Bold when the user mouses over a row or selects the row. Any ideas?

[flexcoders] Resizing a class file

2008-10-20 Thread flexaustin
Is it possible to resize a Class file? Say you embed a swf or png. Can you then resize it by casting is as something else? [Bindable] [Embed(source=ui/nicePngImage.png)] static public var myIcon:Class; myIcon.width = 30; // won't work TIA

[flexcoders] Re: Repeater control and custom Component

2008-10-20 Thread lysfael
I wanna format the datas receive before passing them to dataProvider of the repeater. --- In flexcoders@yahoogroups.com, Ralf Bokelberg [EMAIL PROTECTED] wrote: I'm not sure if you can subclass mx:Repeater. What are you trying to do with your repeater subclass? Ralf. On Mon, Oct 20, 2008

[flexcoders] Re: Overriding width of DateField

2008-10-20 Thread aceoohay
Since it's a bright and sunny Monday morning, and everyone is refreshed from a relaxing weekend, I thought I would see if anyone has an answer for this one. I need to know how to get Flexbuilder to recognize the expanded default width of a component. In the case the DateField. Paul --- In

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-20 Thread Amy
--- In flexcoders@yahoogroups.com, akila_ksri [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Amy amyblankenship@ wrote: --- In flexcoders@yahoogroups.com, akila_ksri akila_ksri@ wrote: Hi, I need to apply horizontal scaling for a text with 'Arial' font.

[flexcoders] Re: Resizing a class file

2008-10-20 Thread florian.salihovic
Why don't u want to create an instance? --- In flexcoders@yahoogroups.com, flexaustin [EMAIL PROTECTED] wrote: Is it possible to resize a Class file? Say you embed a swf or png. Can you then resize it by casting is as something else? [Bindable] [Embed(source=ui/nicePngImage.png)] static

[flexcoders] Re: Help with FlexBook: was Help with Flex Component

2008-10-20 Thread valdhor
I'm sorry but my plate is full. Someone else may have the time to help you out but if it was me, I would use this as an opportunity to learn Flex. It is much easier/better if you have an actual project to complete rather than just canned lessons (This is my experience anyway). I had not looked

Re: [flexcoders] Re: Problem with scaleX for system fonts!

2008-10-20 Thread Haykel BEN JEMIA
You can't apply any effects or transformations (alpha, rotation, scaling etc.) on fonts if they are not embedded! On Mon, Oct 20, 2008 at 4:21 PM, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, akila_ksri [EMAIL PROTECTED] wrote: --- In

Re: [flexcoders] Re: Resizing a class file

2008-10-20 Thread Michael Schmalle
Hi, It's more like you have to create an instance. The Class is an actionscript type like Boolean or String. This is like asking can you write Boolean.value = true; Try; override protected function createChildren():void { super.createChildren(); instance = new myIcon();

[flexcoders] Embedding 2 fonts in 1 font class

2008-10-20 Thread renzeullo
Hi, This will seem like a longshot, but, oh well, here goes... Is there a way to embed 2 or more fontfaces in a single class? For example, I want to embed characters A-Z ub Courier New and Korean characters in Arial Unicode in a single class FontMix, both in normal weight and non italic. Is

RE: [flexcoders] Repeater giving bogus Binding warnings?

2008-10-20 Thread Tracy Spratt
It is because currentItem is an Object, which is not bindable. Cast it to your bindable class: text={ RemittanceFileListEntry(remittanceRepeater.currentItem).remittanceFile } Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh

RE: [flexcoders] Re: Repeater control and custom Component

2008-10-20 Thread Tracy Spratt
If that is really what you want to do, it will work. But still, why not let the repeated component handle the formatting? Do not subclass repeater, use it normally. Create a component containing your label and text inputs. Pass the currentItem into your custom component via a setter

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-20 Thread akila_ksri
--- In flexcoders@yahoogroups.com, Haykel BEN JEMIA [EMAIL PROTECTED] wrote: You can't apply any effects or transformations (alpha, rotation, scaling etc.) on fonts if they are not embedded! On Mon, Oct 20, 2008 at 4:21 PM, Amy [EMAIL PROTECTED] wrote: --- In

[flexcoders] Re: WebService operation faults propigating up to WebService fault handler.

2008-10-20 Thread Todd
This is a good idea and exactly what I'm going to try now. This will cover about 98% of my commands, and will have the advantage of both faults coming from the operations and the service level to have the same handler. I guess at this point, I really want to understand the AsyncToken stuff in

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-20 Thread akila_ksri
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, akila_ksri akila_ksri@ wrote: --- In flexcoders@yahoogroups.com, Amy amyblankenship@ wrote: --- In flexcoders@yahoogroups.com, akila_ksri akila_ksri@ wrote: Hi, I

Re: [flexcoders] Re: Repeater control and custom Component

2008-10-20 Thread Ralf Bokelberg
I see. Have you tried a binding function to do this? mx:Repeater dataProvider={ formatData( datas as XML )} .. You need to write a method formatData( x : XML ) : XML which creates a new formatted XML from the input xml. Ralf. On Mon, Oct 20, 2008 at 1:52 PM, lysfael [EMAIL PROTECTED] wrote: I

[flexcoders] Total for whole stack

2008-10-20 Thread nehavyas13
Is it possible to show the total for the stacked bar in column chart and bar chart? eg. If I have two series with values 3 and 5 and they are stacked, I just want to show the total 8 for the whole stack on the top as in data label. But what I able to find is only showlilng datalabel using

RE: [flexcoders] Dispatching The itemEditEnd event from within an item editor

2008-10-20 Thread Tracy Spratt
It sounds like you are using renderIsEditor=true, which causes the DG to use its own interactive event handling and item updating. For moderately complex interactive renderers, you might be better served by having the renderer handle that work itself. Tracy

RE: [flexcoders] file upload with rpc

2008-10-20 Thread Tracy Spratt
Please clarify your question. rpc means many things. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Deniz Davutoglu Sent: Monday, October 20, 2008 3:13 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] file upload with

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-20 Thread Amy
--- In flexcoders@yahoogroups.com, Haykel BEN JEMIA [EMAIL PROTECTED] wrote: You can't apply any effects or transformations (alpha, rotation, scaling etc.) on fonts if they are not embedded! So they tell me. Yet somehow I do, by setting the blendMode. Go figure ;-).

Re: [flexcoders] Re: Problem with scaleX for system fonts!

2008-10-20 Thread Haykel BEN JEMIA
Could you post a working example? This would really interest me! On Mon, Oct 20, 2008 at 5:08 PM, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Haykel BEN JEMIA [EMAIL PROTECTED] wrote: You can't apply any effects or transformations

RE: [flexcoders] Re: My Flex Form - it works!

2008-10-20 Thread Tracy Spratt
Can't help with the PHP code but your theory is good. I wrap all of my returned data in a status node, and my result handlers look for this, use the error information in an error situation, or just strip off that node if status is success. By the way, don't overstress on the OOP theory too

[flexcoders] Bitmap Data - setting the quality

2008-10-20 Thread jenonflex
Hi All, This is more of an AS3 question. I am not sure if this is the correct forum to ask. I have a SWF which is loaded into the display list and I need to take a snapshot of it using BitmapData.draw() method. I am doing it, but as the SWF is of high quality and have got lot of objects in it, its

[flexcoders] Re: Still no one knows ? Please help.

2008-10-20 Thread Randy Martin
The CheckBox has two styles that control the color of the actual checkmark: iconColor - the color of the checkmark iconDisabledColor - the color of the checkmark when the control is disabled Just set these to the colors you want. ~randy --- In flexcoders@yahoogroups.com, itdanny2002 [EMAIL

RE: [flexcoders] Re: Crazy DataGrid display of XMLListCollection

2008-10-20 Thread Tracy Spratt
You are sure you are using the Collection API exclusively? And not doing any direct assignments of values to item porperties? For example: var oCurrentItem:MyItem = myAC.getItemAt(0); oCurrentItem.myProperty = myValue;//direct assignment does not cause UI to update If you are doing any

[flexcoders] Re: Dispatching The itemEditEnd event from within an item editor

2008-10-20 Thread Randy Martin
Thanks, Tracy. And you're right. I'm only using an ItemEditor. There's no custom renderer. I really don't need a custom renderer because I'm able to pass back a combination of the two selected items in the itemEditEnd event handler. Are you saying that if I used a custom renderer, I could

RE: [flexcoders] Re: Dispatching The itemEditEnd event from within an item editor

2008-10-20 Thread Tracy Spratt
No, I am saying that you would not use an itemEndEdit handler at all, but would do the item update in the renderer. I do not know how to directly displatch that event. You might be able to change the focus off that cell and cause the event to dispatch. Or perhaps set editedItemPosition=null;

Re: [flexcoders] [ANN Class] 3D Interactive UI, Papervision w/ Flex for Games and more

2008-10-20 Thread Igor Costa
In his own website. not here. I guess here it's just to learn new things, not to buy one. It's my opinion. Regards Igor On Sun, Oct 19, 2008 at 3:14 PM, Paul Andrews [EMAIL PROTECTED] wrote:  Where would be the right place for something like this? - Original Message - *From:*

[flexcoders] modules and services-config.xml

2008-10-20 Thread Maciek Sakrejda
I asked this on Saturday, but it was as a clarification to another question and got no response, so I thought I'd ask again. What's the best way to deal with modules that define their own set of AMF endpoints (or even channels)? I need a single services-config.xml file for the entire war file

[flexcoders] programmatic vbox serious bug?

2008-10-20 Thread fotis.chatzinikos
Hi, i am making a vbox via actionscript and set its width and height to 200x300... After adding a single button (or anything else) if i throw an alert with its width and height they seem correct but...scroll bars appear which can scroll the vbox as if it was 2000 by 2000 pixels wide/high... The

[flexcoders] Re: sailorsea21 - RemoveChild question.

2008-10-20 Thread sailorsea21
I'm trying to re-introduce the VBox container to wrap the module and the button, this way each tile will display a module and a button together instead of seperating the module and button in seperate tiles but it always gives me the child error... Also, is it possible to have the unload

[flexcoders] Vector graphics sloppy in flex

2008-10-20 Thread hectorharvey2
I use Inkscape for icons in my flex development. I build the icon, and then export it as a .PNG file for use by flex. I would much rather lose the .PNG and just use the .SVG file directly in flex, but the flex rendering is not quite right. Small rendering (16x16) results in too much black,

[flexcoders] Re: Resource Bundle Missing in AIR

2008-10-20 Thread Geoffrey
Still have not found a fix for this. Any one else run into an issue like this? Thanks, Geoff --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: I'm using localization on a flex project for a slightly different use. We have 2 projects that share the same code base, but we

[flexcoders] Re: Can AIR call local DLLs?

2008-10-20 Thread thegators_2002
Okay, thanks! I guess I can understand that, since it would make AIR platform-dependent in a way (even though that could be optional). So, is it possible to create a PDF from an AIR app? Just create one from scratch and spit it out so that it opens in Acrobat Reader? Or if not, can I have a

[flexcoders] Re: How Do I Programatically Make Flash Movie's Stage Expand Over its Container

2008-10-20 Thread jwebbsuccess
Thanks for your help. I got the effect working to my expectations with your suggestion. I made the Flash movie's height the size that I wanted it to expand to, then I used JavaScript to toggle the height of the movie's container div back and forth between the 'hidden' state and the

[flexcoders] Re: flex and oracle

2008-10-20 Thread Anthony DeBonis
You would not want to make a direct Oracle connection from Flex – old Client/Server technology does not work over the Intranet. You need to make service call either RemoteObject / WebService/HTTP Service calls. For RemoteObject calls you can look into BlazeDS

Re: [flexcoders] programmatic vbox serious bug?

2008-10-20 Thread Michael Schmalle
Hi, extraTagsSelectionVBox.setStyle(cornerRadius,10) ; extraTagsSelectionVBox.setStyle(backgroundColor,#00FF00) ; Set your styles with correct as3 Types; extraTagsSelectionVBox.setStyle(cornerRadius,10) ; extraTagsSelectionVBox.setStyle(backgroundColor, 0x00FF00) ; Mike On Mon, Oct 20, 2008 at

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-20 Thread Amy
--- In flexcoders@yahoogroups.com, Haykel BEN JEMIA [EMAIL PROTECTED] wrote: Could you post a working example? This would really interest me! I'll try to make time tonight :-). -Amy

Re: [flexcoders] Re: flex and oracle

2008-10-20 Thread Paul Andrews
- Original Message - From: Anthony DeBonis [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, October 20, 2008 5:29 PM Subject: [flexcoders] Re: flex and oracle snip old Client/Server technology does not work over the Intranet. That'll be news to a lot of Oracle

[flexcoders] Re: sailorsea21 - RemoveChild question.

2008-10-20 Thread sailorsea21
This is what I am now trying to accomplish... I would like to have a VBOX container to wrap the module and the button. This way both items can be displayed in one tile instead of having them split into different tiles... Then I would like to have a HBOX container to wrap the unload button

[flexcoders] How to set up FLEX3/LCDS/JBoss Development Enironment ?

2008-10-20 Thread markflex2007
I need start a project with FLEX3/LCDS on JBoss, I need set up it and make simple things (like 'hello world') work. Please help me. Thanks Mark

Re: [flexcoders] How to set up FLEX3/LCDS/JBoss Development Enironment ?

2008-10-20 Thread James Ward
http://www.infoq.com/articles/blazeds-intro Does that help? -James From: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Sent: Mon Oct 20 09:52:34 2008 Subject: [flexcoders] How to set up FLEX3/LCDS/JBoss Development Enironment ? I need start a

[flexcoders] Re: programmatic vbox serious bug?

2008-10-20 Thread fotis.chatzinikos
Amazing ;-) It works now... Did not know the bit about passing correct types to setstyles... Thought that i had to pass strings like when using mxml... Thanks! PS: The amazing bit is because all properties that i was setting seemed to be ok (debug via Alert)... --- In

[flexcoders] Re: Resizing a class file

2008-10-20 Thread flexaustin
Sorry I should have been more specific. [Bindable] public var myImage:Class; myImage = functiontoGetImage(someparam); //obtained via CSS [Embed(source=ui/nicePngImage.png)] myImage.width = 10; // no code hinting for height for type Class. myImage.height = 10; // no code hinting for width for

Re: [flexcoders] Re: Resizing a class file

2008-10-20 Thread Michael Schmalle
Hi, Your looking at the problem wrong. You never assign an instance to a Class variable type. You need to create another variable at the class level to hold the new instances that are type Image. functiontoGetImage() are you returning an instance or a Class to instantiate? Mike On Mon, Oct 20,

[flexcoders] Any luck with FlexBuilder Web Service Import Wizard and JAX-WS?

2008-10-20 Thread Anthony DeBonis
Has anyone had the with the FlexBuilder Web Service Import Wizard work with JAX –WS? Just checking - I am hearing reports it does not work. Looks to be a problem working with JAX-WS based web service – works with less complex JAX-RPC based service but can also fail on more complex RPC

Re: [flexcoders] Re: Can AIR call local DLLs?

2008-10-20 Thread Weyert de Boer
You can use AlivePDF to generate PDF files.

[flexcoders] HTML real caret position

2008-10-20 Thread xmrcivicboix
I have this issue about the rich text editor that I hope someone can help with. Basically, I want to be able to insert the string '!--pagebreak--' at a certain caret index. This works fine when I use the textarea.text property but when I use textarea.htmlText, it inserts the '!--pagebreak-- 7

[flexcoders] Re: Papervision 3D and Flex components

2008-10-20 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: Is it possible to wrap an entire Flex component (for instance, a TileList) in PaperVision 3D in such a way that you give it a more 3D appearance, yet still keep it interactive? I've seen this demo

[flexcoders] Re: Resource Bundle Missing in AIR - Solved

2008-10-20 Thread Geoffrey
RTFM mx:Metadata [ResourceBundle(Resource_file_name)] /mx:Metadata Forgot this part --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: Still have not found a fix for this. Any one else run into an issue like this? Thanks, Geoff --- In

RE: [flexcoders] Re: sailorsea21 - RemoveChild question.

2008-10-20 Thread Tracy Spratt
Your theory looks ok, and though it probably does not matter, I would instantiate and populate the Vbox component first and the last step would be to add it to the displayList with addChild. Are you still having a problem? Tracy From:

Re: [flexcoders] HTML real caret position

2008-10-20 Thread Daniel Freiman
try: http://livedocs.adobe.com/flex/3/langref/flash/text/TextField.html#replaceSelectedText() - Daniel Freiman On Mon, Oct 20, 2008 at 2:28 PM, xmrcivicboix [EMAIL PROTECTED]wrote: I have this issue about the rich text editor that I hope someone can help with. Basically, I want to be able

[flexcoders] Re: HTML real caret position

2008-10-20 Thread xmrcivicboix
OMG. This is nuts. I guess I should have read the docs a little better. =) hey thanks again! --- In flexcoders@yahoogroups.com, Daniel Freiman [EMAIL PROTECTED] wrote: try: http://livedocs.adobe.com/flex/3/langref/flash/text/TextField.html#replaceSelectedText() - Daniel Freiman On Mon,

[flexcoders] Alert.show - Detect when closed from another mxml component

2008-10-20 Thread sleblang
I have an Alert.show() being called from a command class. I need to detect when this Alert is closed in another mxml component (as opposed to the command class). What's the best way to determine when it's been closed? Does the event bubble? So far I have not been able to 'catch' it. Thanks for

[flexcoders] Re: Resizing a class file

2008-10-20 Thread flexaustin
I am embedding a swf, which I believe requires a type of Class. --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, Your looking at the problem wrong. You never assign an instance to a Class variable type. You need to create another variable at the class level

[flexcoders] Keeping a UIComponent out of the UpdateDisplayList

2008-10-20 Thread flexaustin
Is it possible using MXML, not AS3 classes, to keep an item out of the updateDisplayList and/or the measure() method? I have an icon that is 30px by 30px and needs to remain centered within a component. But the catch is that if someone clicks the icon it will show another state where I add a

Re: [flexcoders] Keeping a UIComponent out of the UpdateDisplayList

2008-10-20 Thread Ralf Bokelberg
includeInLayout=false maybe? On Mon, Oct 20, 2008 at 9:57 PM, flexaustin [EMAIL PROTECTED] wrote: Is it possible using MXML, not AS3 classes, to keep an item out of the updateDisplayList and/or the measure() method? I have an icon that is 30px by 30px and needs to remain centered within a

Re: [flexcoders] Re: Resizing a class file

2008-10-20 Thread Paul Andrews
- Original Message - From: flexaustin [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, October 20, 2008 8:53 PM Subject: [flexcoders] Re: Resizing a class file I am embedding a swf, which I believe requires a type of Class. Yes, but classes aren't objects. Assign your

[flexcoders] How can I make an ItemRenderer on a Datagrid react to a row selection?

2008-10-20 Thread João
Hi, I have a Datagrid with several rows and columns. I am using ItemRenderers on the cells. I need that a specific ItemRenderer changes the way it looks when the row where he's in is selected. How can I achieve that? Is it possible to make the itemrenderer know that and react in real time? Or is

Re: [flexcoders] Repeater giving bogus Binding warnings?

2008-10-20 Thread Josh McDonald
Well I'll be buggered, it works. Data / DataProvider / DataSource are all Object too, and you can bind to them. Lousy Repeater :) Thanks for that Tracy :) -Josh On Tue, Oct 21, 2008 at 12:55 AM, Tracy Spratt [EMAIL PROTECTED]wrote: It is because currentItem is an Object, which is not

[flexcoders] Case sensitive XML?

2008-10-20 Thread Steve Mathews
So I just figured out that e4x is case-sensitive, which really doesn't make any sense to me, but I'll assume there is a good reason. I did some searching but haven't found any good way to get around this and it is driving me batty. Let's say you have this node param name=movie

Re: [flexcoders] Case sensitive XML?

2008-10-20 Thread Josh McDonald
XML is supposed to be case sensitive, so I imagine there's no way to turn it off. You can clone the tree and change all node names to lowercase if you like, but that's probably your only option. -Josh On Tue, Oct 21, 2008 at 8:00 AM, Steve Mathews [EMAIL PROTECTED] wrote: So I just figured

[flexcoders] Re: Alert.show - Detect when closed from another mxml component

2008-10-20 Thread fotis.chatzinikos
Hi, if i understand correctly, the following doesit: Alert.show(This is the alert text.,,4,null,alertClosed) ; where alertClosed is an event listener... Check the asdoc for the alert.show method ;-) --- In flexcoders@yahoogroups.com, sleblang [EMAIL PROTECTED] wrote: I have an Alert.show()

[flexcoders] Re: Keeping a UIComponent out of the UpdateDisplayList

2008-10-20 Thread fotis.chatzinikos
Have you tried includeInLayout=false? Fotis --- In flexcoders@yahoogroups.com, Ralf Bokelberg [EMAIL PROTECTED] wrote: includeInLayout=false maybe? On Mon, Oct 20, 2008 at 9:57 PM, flexaustin [EMAIL PROTECTED] wrote: Is it possible using MXML, not AS3 classes, to keep an item out of the

[flexcoders] Re: Keeping a UIComponent out of the UpdateDisplayList

2008-10-20 Thread fotis.chatzinikos
Sorry had not seen that Ralf had replied the same think... --- In flexcoders@yahoogroups.com, fotis.chatzinikos [EMAIL PROTECTED] wrote: Have you tried includeInLayout=false? Fotis --- In flexcoders@yahoogroups.com, Ralf Bokelberg ralf.bokelberg@ wrote: includeInLayout=false maybe?

RE: [flexcoders] Re: Keeping a UIComponent out of the UpdateDisplayList

2008-10-20 Thread Tracy Spratt
Hello, Fotis. We appreciate your contributions, so do not worry about duplicate answers. I don't think anyone can read and keep up with all the posts in this list, so just jump in when you feel like it. Tracy From: flexcoders@yahoogroups.com

[flexcoders] mouse wheel behaviour mxml and actionscript based components

2008-10-20 Thread fotis.chatzinikos
Hello all, any ideas what is the expected behaviour of the mouse wheel in flex apps? I have noticed that some mxml based trees scroll with the mouse wheel while actionscript based ones do not. A few minutes ago i also did a test with the main (root / mainApplication) making bigger than 100% of

[flexcoders] Increase in swf size when upgraded to FlexSDK3

2008-10-20 Thread Shailesh Mangal
We recently moved from Flex 2.0.1/LCDS 2.5.1 to Flex3.1.0/LCDS2.6 and noticed that by doing that our swf went from 1.3MB to 1.9MB. This is 50% increase in size. Is this typical with Flex 3? -Shailesh

[flexcoders] Re: How can I make an ItemRenderer on a Datagrid react to a row selection?

2008-10-20 Thread João
I solved it by implementing the IDropInListItemRenderer and listening to DataGrid(listData.owner).addEventListener(ListEvent.CHANGE, listChangeHandler) It's not a best practice, but for now it's enough. JS --- In flexcoders@yahoogroups.com, Jo�o [EMAIL PROTECTED] wrote: Hi, I have a

Re: [flexcoders] Increase in swf size when upgraded to FlexSDK3

2008-10-20 Thread Ryan Gravener
are you compiling with debug enabled? Ryan Gravener http://twitter.com/ryangravener On Mon, Oct 20, 2008 at 7:40 PM, Shailesh Mangal [EMAIL PROTECTED]wrote: We recently moved from Flex 2.0.1/LCDS 2.5.1 to Flex3.1.0/LCDS2.6 and noticed that by doing that our swf went from 1.3MB to 1.9MB.

[flexcoders] Re: How can I make an ItemRenderer on a Datagrid react to a row selection?

2008-10-20 Thread Tim Hoff
Yeah, you would be hosed if a different type of list was used. If you're using CHANGE, which is generic for list base, have the parent class dispatch a custom event, on change, with the row index. The parent class will always know what kind of list is being used. Then in the itemRenderer

[flexcoders] Re: How can I make an ItemRenderer on a Datagrid react to a row selection?

2008-10-20 Thread Tim Hoff
Shoot, don't even worry about the rowIndex, just attach the data object to the event. -TH --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Yeah, you would be hosed if a different type of list was used. If you're using CHANGE, which is generic for list base, have the

[flexcoders] Re: Alert.show - Detect when closed from another mxml component

2008-10-20 Thread sleblang
Thanks. That is not exactly what I am asking. I understand how to set a callback/listener for Alert.show() as you explained. However, is there another way to detect from another component when the alert has been closed (i.e. bubbling, etc.)? --- In flexcoders@yahoogroups.com, fotis.chatzinikos

[flexcoders] Re: Embedding 2 fonts in 1 font class

2008-10-20 Thread renzeullo
*bump* Anyone know if this is even possible? --- In flexcoders@yahoogroups.com, renzeullo [EMAIL PROTECTED] wrote: Hi, This will seem like a longshot, but, oh well, here goes... Is there a way to embed 2 or more fontfaces in a single class? For example, I want to embed characters A-Z

[flexcoders] Re: Increase in swf size when upgraded to FlexSDK3

2008-10-20 Thread Shailesh Mangal
No, and we have tried both command line as well FlexBuilder compiles. Same result :( -Shailesh --- In flexcoders@yahoogroups.com, Ryan Gravener [EMAIL PROTECTED] wrote: are you compiling with debug enabled? Ryan Gravener http://twitter.com/ryangravener On Mon, Oct 20, 2008 at 7:40

[flexcoders] Are my eyes painted on, or is FormItem not available in design mode?

2008-10-20 Thread Josh McDonald
Hey guys, If I create mx:FormItem components via MXML code, I can interact with them and manage their properties just fine in design mode, but I can't seem to add them without dropping back to code view, ie it's not in the Components list. Is there a reason for this that I can't figure out?

  1   2   >