[flexcoders] Re: ToolTipManager stops processing of styles and updates of the displaylist?

2009-08-18 Thread florian.salihovic
I don't like unanswered questions, so i'll answer it myself. It was actually a style-inheritence problem. My implementention had a lil' bug. But because of style inheritence, it seemed to work fine in the first context i used the component in. But using it in a second environment, the bug

RE: [flexcoders] Re: Crash while using MenuBar from a module.

2009-08-18 Thread Alex Harui
I would use the -keep-generated-actionscript option and -link-report option to see why MenuBar's default styles are not being added to the StyleManager. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

RE: [flexcoders] BUG: mx.controls.LinkBar - can somebody confirm?

2009-08-18 Thread Alex Harui
Probably a bug. File a bug and a patch. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Fotis Chatzinikos Sent: Monday, August 17, 2009 2:21 PM To:

[flexcoders] Re: Scale a Class file (png, gif, etc...)

2009-08-18 Thread grg_blls
Hi, Downscaling of a bitmap image can be done in a number of ways (downsampling is a better term and procedure). The real problem is: what do you expect the outcome to be, if you scale down a line graphic of 1 pixel width, or a detail in the bitmap of 1 pixel in the original 50x50 bitmap

[flexcoders] Instant messaging example

2009-08-18 Thread Andrew
Hi all, I am hoping for some help on this one as it has me beat. I have been looking around this group trying to find an answer but everything I try fails. This site is running on localhost in IIS7 on Windows 7 using a Website from a Visual Studio template. The site is running with the

[flexcoders] Flex 3.3 SDK and DataVisualization

2009-08-18 Thread Annette Spooner
Hi, Is it possible to use the Flex 3.3 SDK on its own, without Flex Builder 3, and use the Data Visualization components such as AdvancedDataGrid? I have followed the installation instructions at http://www.adobe.com/support/documentation/en/flex/3/releasenotes_flex3_sdk. html#Datavisualization

[flexcoders] Re: Advanced Data Grid + ILOG

2009-08-18 Thread sameerbhatt13
I've posted the changes I did to the expandAll() method in the comments section in the bug. Can you try it? Please re-open the bug and attach your sample file if you are still encountering this issue. Thanks, Sameer

[flexcoders] Error: -Bookmark no longer valid- when removing or adding items to node's children on AdvancedDataGrid with hierarchical data

2009-08-18 Thread Mika Kiljunen
Hi, I'm having a serious problem with AdvancedDataGrid and HierarchicalCollectionView. I have following structure on ADG (whose datasource is hierarchical data): ContainerObj1 -ChildContainerObj1 --ChildObj1 --ChildObj2 -ChildContainerObj2 --ChildObj3 --ChildObj4 -ChildContainerObj3 --etc

[flexcoders] Html Form and Flex

2009-08-18 Thread christophe_jacquelin
Hello, I have a html form that I have to launch to generate a paiement with my bank from my Flex application : FORM ACTION='/cgi-bin/modulev2.cgi' METHOD=post INPUT TYPE = hidden NAME=TOTAL VALUE='1500' INPUT TYPE = submit NAME=Paiement VALUE='paiement' /FORM How to launch this form from my

Re: [flexcoders] Re: PDF-ActionScript communication in AIR app

2009-08-18 Thread b_productiv2000
I've found this article today : http://gonzalo.huerta.cl/?p=13 inudor a écrit : No ideas I guess... and maybe something like manipulating the PDF file when the users loads it, like injecting those handler functions that should be added by Adobe Acrobat? Do you know if this would be

[flexcoders] Re: Instant messaging example

2009-08-18 Thread valdhor
I don't use IIS but I may be able to help. Can you post your services-config.xml file and your remoting-config.xml file both on the flex side as well as the WebORB side. --- In flexcoders@yahoogroups.com, Andrew roly...@... wrote: Hi all, I am hoping for some help on this one as it has me

[flexcoders] Re: Scale a Class file (png, gif, etc...)

2009-08-18 Thread ag_rcuren
here is a little sample code of loading an image from the web then scaling it and using it as a buttons icon. You should be able to easily modify this to work with embedded assets. If not let me know and I could spend a little time later doing that also. ?xml version=1.0 encoding=utf-8?

[flexcoders] Re: Html Form and Flex

2009-08-18 Thread valdhor
I would use HTTPService. mx:HTTPService method=POST url=/cgi-bin/modulev2.cgi result=myResultHandler(event) mx:request xmlns= PaiementPaiement/Paiement TOTAL1500/TOTAL /mx:request /mx:HTTPService --- In flexcoders@yahoogroups.com,

[flexcoders] httpservice what does this error mean?

2009-08-18 Thread hworke
Hi I am reading a RSS feed and handling the result with the following function: public function toolResultHandler(event:ResultEvent):void { var f_Array:ArrayCollection = new ArrayCollection; f_Array = event.result.RDF.item as ArrayCollection; if (f_Array!=null)

[flexcoders] Swf in a html

2009-08-18 Thread christophe_jacquelin
Hello, How to put a swf carrousel made with Flex, in the middle of a html page ? Thank you, Christophe,

[flexcoders] Re: httpservice what does this error mean?

2009-08-18 Thread valdhor
Something has not been created when you try to access it. This is probably due to a timing problem. When you get the error in the debugger, check that all the variables you are trying to access are not null. From the stack trace it looks like it is failing at line 10 of toolHelper.as. Check

[flexcoders] Re: Advanced Data Grid + ILOG

2009-08-18 Thread cuttenv
--- In flexcoders@yahoogroups.com, sameerbhatt13 sameerbhat...@... wrote: I've posted the changes I did to the expandAll() method in the comments section in the bug. Can you try it? Please re-open the bug and attach your sample file if you are still encountering this issue. Thanks,

[flexcoders] Re: Advanced Data Grid + ILOG

2009-08-18 Thread cuttenv
Hi again sameer this won't compile... dispatchAdvancedDataGridEvent(AdvancedDataGridEvent.ITEM_OPEN, item, itemRenderer, null); did you mean something along the lines of this? var evt:AdvancedDataGridEvent = new AdvancedDataGridEvent( AdvancedDataGridEvent.ITEM_OPEN, false, false, -1, null, -1,

[flexcoders] Datagrids, radiobutton and scrolling

2009-08-18 Thread Trefalgar Bain
I remember reading an article that talked about this problem, but I can't seem to find it again. I have some radio buttons in a item renderer for a datagrid. Flex, for a reason beyond me, doesn't keep track of radio button values on a per-row basis in a datagrid - it keeps track of them based

[flexcoders] Re: Generated code not working when app is loaded as module

2009-08-18 Thread poweribo
anyone with idea? --- In flexcoders@yahoogroups.com, poweribo power...@... wrote: I used Flexbuilder to generated the proxy code for my webservices and my app works perfectly as standalone swf file but when I load it as a module (loaded from another main swf file), it throws these kind of

[flexcoders] Re: Datagrids, radiobutton and scrolling

2009-08-18 Thread valdhor
Note that Flex re-uses item renderers. Check out http://blogs.adobe.com/aharui/item_renderers/ --- In flexcoders@yahoogroups.com, Trefalgar Bain trefal...@... wrote: I remember reading an article that talked about this problem, but I can't seem to find it again. I have some radio buttons

[flexcoders] WebService Payload Truncated (#2006 Out of Bounds Error) on Send in Gumbo

2009-08-18 Thread michaelisraelcaplan
Hi, I have a problem sending a large base64Binary parameter as part of a SOAP body using Gumbo build 9127. The payload generated by Flex to be sent looks like this (truncated for brevity): SOAP-ENV:Envelope xmlns:SOAP-ENV=http://schemas.xmlsoap.org/soap/envelope/;

Re: [flexcoders] Module and Application Communication.

2009-08-18 Thread Rick Winscot
Have you tested to see if this is a security / app domain issue? Cheers, Rick Winscot On 8/17/09 1:24 PM, cuttenv cutt...@yahoo.com wrote: I have a rather straight forward question. I am creating a module like this: private var modInfo:IModuleInfo private var

[flexcoders] RIA Unleashed : Boston - new Flex/AIR focused event with top-notch speakers!

2009-08-18 Thread brian_rinaldi
Hi all, My name is Brian Rinaldi and I have run the Flex Camps in Boston the past two years (as well as the Miami one). I wanted to let everyone know that this year I am expanding Flex Camp Boston into a 1 day, 3 track event called RIA Unleashed : Boston (http://www.riaunleashed.com

[flexcoders] Fields grouping?

2009-08-18 Thread Nick Middleweek
hi guys, Is there a component that allows us to group fields/ objects together? I can't find a built in object, I'm after something visual that i can use to group fields, such as all the address fields together and another group to collate the numerous emails and phone numbers... Can I draw it?

[flexcoders] ReferenceError #1069 property not found on native class

2009-08-18 Thread dhchang77
Hi folks, Any chance anyone here has run into the following? ReferenceError: Error #1069: Property reencrypt not found on flash.data.SQLConnection and there is no default value. It's something with my environment as it's fine for other devs I'm working with. Just the following code compiles

Re: [flexcoders] Singletons and Modules - Application domain problem

2009-08-18 Thread Rick Winscot
Take a look at a good write-up by Steve Brownlee... http://www.fusioncube.net/index.php/cairngorm-sharing-a-common-modellocator- with-modules With the added security restrictions... Your singleton implementation may need to be hardened to prevent multiple instance... Etc. This example may help

Re: [flexcoders] Singletons and Modules - Application domain problem

2009-08-18 Thread Everson Alves
I'll have a look at it say the outcome here. Thanks. On Tue, Aug 18, 2009 at 6:03 PM, Rick Winscot rick.wins...@zyche.comwrote: Take a look at a good write-up by Steve Brownlee... http://www.fusioncube.net/index.php/cairngorm-sharing-a-common-modellocator-with-modules With the added

Re: [flexcoders] Swf in a html

2009-08-18 Thread Wesley Acheson
http://www.w3schools.com/flash/flash_inhtml.asp On Tue, Aug 18, 2009 at 6:25 PM, christophe_jacquelin christophe_jacque...@yahoo.fr wrote: Hello, How to put a swf carrousel made with Flex, in the middle of a html page ? Thank you, Christophe, --

RE: [flexcoders] Fields grouping?

2009-08-18 Thread Tim Rowe
How about mx.containers.Form ? --Tim From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Nick Middleweek Sent: Wednesday, 19 August 2009 3:08 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Fields grouping? hi guys, Is

Re: [flexcoders] Fields grouping?

2009-08-18 Thread Wesley Acheson
On Tue, Aug 18, 2009 at 7:07 PM, Nick Middleweek n...@middleweek.co.ukwrote: hi guys, Is there a component that allows us to group fields/ objects together? I can't find a built in object, I'm after something visual that i can use to group fields, such as all the address fields together

Re: [flexcoders] ReferenceError #1069 property not found on native class

2009-08-18 Thread Wesley Acheson
All I can think of is check the verson of flash player but I don't know if it could cause that problem. On Tue, Aug 18, 2009 at 7:17 PM, dhchang77 dhchan...@yahoo.com wrote: Hi folks, Any chance anyone here has run into the following? ReferenceError: Error #1069: Property reencrypt not

[flexcoders] Re: Module and Application Communication.

2009-08-18 Thread cuttenv
not sure. How could I test that? They are both on the same domain (locahost) and even in the same directory. Wouldn't it throw a sandbox violation error if it was that? --- In flexcoders@yahoogroups.com, Rick Winscot rick.wins...@... wrote: Have you tested to see if this is a security / app

[flexcoders] Re: Instant messaging example

2009-08-18 Thread Andrew
Hi valdhor, thanks for any help you can give me. From the custom site: 'services-config.xml' ?xml version=1.0 encoding=UTF-8? services-config services service-include file-path=remoting-config.xml / service-include file-path=data-management-config.xml / /services

RE: [flexcoders] Re: Module and Application Communication.

2009-08-18 Thread Alex Harui
I think you would have had some other problem if it was security/domain related. You didn't say when the event gets dispatched, so maybe it gets dispatched before you add your listener. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui

[flexcoders] mx:request equivalent in actionscript??

2009-08-18 Thread luvfotography
Hi, how do I code the 'mx:request' in actionscript? example: mx:HTTPService id=form1 url={phpFile} method=GET resultFormat=text result={textarea1.text = String(event.result)} mx:request username{username.text}/username /mx:request /mx:HTTPService I don't see any methods

RE: [flexcoders] Re: Generated code not working when app is loaded as module

2009-08-18 Thread Alex Harui
Usually all webservice data classes need to be in the main applicationdomain. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of poweribo Sent: Tuesday,

Re: [flexcoders] Singletons and Modules - Application domain problem

2009-08-18 Thread Everson Alves
It's a good post but doesn't solve my problem without a lot of changes in the whole application. What i was really wanting from here is to know why I can't load the modules into different application domains. I'll use a ModelLocator factory per conversation instead of Singleton, but that requires

RE: [flexcoders] Singletons and Modules - Application domain problem

2009-08-18 Thread Alex Harui
A module is a factory of potentially many instances, so multiple requests to load the same url are ignored and the same factory is returned to create the instance. You might try adding dummy url variables to see if you can fool ModuleManager into loading the module SWF again. Alex Harui Flex

[flexcoders] Re: mx:request equivalent in actionscript??

2009-08-18 Thread valdhor
Create an object and put it in the send methods parameter... var request:Object = new Object(); request.username = username.text; form1.send(request); --- In flexcoders@yahoogroups.com, luvfotography ygro...@... wrote: Hi, how do I code the 'mx:request' in actionscript? example:

[flexcoders] ComboBox not updating

2009-08-18 Thread Richard Rodseth
The full story is too long to relate and involves the component which has given me more grief than any other - ComboBox. I'm pretty sure I established a while ago that there's a bug in using a ComboBox with a bound value for selectedIndex. I have one whose dataprovider (and current selected

[flexcoders] Re: Instant messaging example

2009-08-18 Thread valdhor
Well, from that file, there is no channel defined as weborb-rtmp. --- In flexcoders@yahoogroups.com, Andrew roly...@... wrote: Hi valdhor, thanks for any help you can give me. From the custom site: 'services-config.xml' ?xml version=1.0 encoding=UTF-8? services-config services

Re: [flexcoders] Singletons and Modules - Application domain problem

2009-08-18 Thread Everson Alves
The problem is that when I try to load it into a different applicationDomain other than ApplicationDomain.currentDomain , even the first instance won't load. ModuleEvent.READY is dispatched but moduleEvent.module.factory.create() gives me null. On Tue, Aug 18, 2009 at 8:45 PM, Alex Harui

Re: [flexcoders] ComboBox not updating

2009-08-18 Thread Everson Alves
The dataprovider is an arraycollection or any IList? try dataprovider.refresh(); On Tue, Aug 18, 2009 at 8:59 PM, Richard Rodseth rrods...@gmail.com wrote: The full story is too long to relate and involves the component which has given me more grief than any other - ComboBox. I'm pretty sure

Re: [flexcoders] ComboBox not updating

2009-08-18 Thread Jeffry Houser
You can change the label directly. Look into the protected textInput field of ComboBase. You can easily extend the ComboBox class to expose this textInput as public; and then update it directly. Richard Rodseth wrote: The full story is too long to relate and involves the component

[flexcoders] Re: Module and Application Communication.

2009-08-18 Thread cuttenv
Hey Alex, I set it up so the event is dispatching when I clickity click a button. So I know for sure the event is being dispatched. --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: I think you would have had some other problem if it was security/domain related. You didn't

[flexcoders] Re: degrafa capacity indicator resizing

2009-08-18 Thread kaushal.shah05
Below is the link to the application: http://degrafa.org/source/CapacityIndicator/CapacityIndicator.html --- In flexcoders@yahoogroups.com, kaushal.shah05 kshah0...@... wrote: does anyone know how to dynamically change the size of the indicator bar? binding variables to the width and

[flexcoders] flexlib enhancedButtonSkin causes blank Design mode

2009-08-18 Thread Mic
Using this skin stops design mode from showing layout, which I need as this layout is extremely complicated. Interested to know why this happens and if there is a solution. TIA, Mic.

[flexcoders] Re: ComboBox not updating

2009-08-18 Thread Dmitri Girski
This is an old story with ComboBox selectedIndex. It does not count the fact that binding on SelectedIndex could come well before dataProvider property assignment, so it simply resets itself every time it has dataProvider property being updated. I have rewritten the ComboBox class to make it

RE: [flexcoders] Singletons and Modules - Application domain problem

2009-08-18 Thread Alex Harui
If you use new ApplicationDomain() then module.factory.create() will return an object of an unknown type because you've created a whole new applicationDomain with different classes so the type of what you create is not going to match. Your code probably does this: var

RE: [flexcoders] Re: Module and Application Communication.

2009-08-18 Thread Alex Harui
How is moduleContent set up. Is it on the display list? Who is dispatching the event? Code in the module class or some other object? Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

[flexcoders] Re: Crash while using MenuBar from a module.

2009-08-18 Thread Rajkumar
Finally after a lot of trials I found the solution. In my MainApp project config file the following setting was required keep-all-type-selectorstrue/keep-all-type-selectors --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: I would use the -keep-generated-actionscript option and

Re: [flexcoders] Singletons and Modules - Application domain problem

2009-08-18 Thread Everson Alves
I did that too, in fact I explained it in the first mail, when I tried: moduleInfo.load(new ApplicationDomain(ApplicationDomain.currentDomain)) it dispatches a ModuleEvent.ERROR saying that file isn't a loadable module or something like that. Also i tried var somObj:SomeInterface =