[flexcoders] Re: Create XML List by code

2009-04-09 Thread lehaianh1986
No, I can't use static string. Depend on my data, I will use regexp to sort and classify items to some groups (like example I show). I think it like a dynamic tree and can be add or edit, etc... So how do I do to create each element and add to XMLList, then add another element to become childre

Re: [flexcoders] Re: Adobe's stimulus package!!!! FREE FLEX BUILDER!!!!

2009-04-09 Thread Vivian Richard
Well you can use it to learn Flex. You can use it to create a prototype of an application. Once you are an expert of Flex by using this trial version you can create your whole application using it. But when you are building it for deployment compile it with free SDK

[flexcoders] Tile will automaticly scroll to make component full visible

2009-04-09 Thread rockorgames
hm.. suppose i have a tile like this: if you run this, you will see that Button 3 is only partially visible, and the user would need to scroll a little down to see the full button.. what i would like to know is, is there anyway that w

[flexcoders] SQLite:Simultaneous multiple-insert in async mode with a single DB connection?

2009-04-09 Thread handitan
Alright fellas, Spill out the secret. When I do the multiple-insertion simultaneously, those operations just stopped and any new transaction-transaction op request is ignored. My idea so far is to put any new transaction-request in a queue if a transaction is currently in the process, and then

[flexcoders] Re: Any working example on SQlite transaction in Async mode

2009-04-09 Thread handitan
Yes, you can use transaction in Async mode but it will not be as easy as sync. On Async, this is what you need to do: - Before you call begin(), your sqlStatement needs to listen for SQLEvent.BEGIN. - When SQLEvent.BEGIN is thrown, your sqlStatement needs to listen for SQLEvent.RESULT for your in

RE: [flexcoders] Cant receive socket data

2009-04-09 Thread Maciek Sakrejda
Interesting. We ran into this issue with URLStream: http://bugs.adobe.com/jira/browse/FP-748 -- maybe your problem is related? Actually, searching Adobe JIRA for XMLSocket turns up a number of bugs that sound vaguely like what you're experiencing... -Maciek -Original Message- From: fl

Re: [flexcoders] Re: Illegible axis labels

2009-04-09 Thread thomas parquier
Maciek, just reload the page... a problem with the loaded xml stream which seems to be corrupted sometimes. Sunil, labelUnits is now based on the actual range of dates, which seems to prevent sytematic resizing, but resizing still occurs randomly... thanks anyway, thomas 2009/4/9 sunild99

Re: [flexcoders] Cant receive socket data

2009-04-09 Thread john fisher
More debugging: If I send connect, request data (a short XML text which the server is looking for), then connect again, The data comes through. Note: I am watching in a packet sniffer and I never see the policy file come across any port, though I am able to connect. Note2: if I remove

RE: [flexcoders] repeater error that i dont understand

2009-04-09 Thread Tracy Spratt
How could you ever debug a mess like that? Pull all of that repeated stuff out into an mxml component, repeat that, and pass in the entire currentItem via a setter. In the setter, assign the values to local, bindable variables, and bind your ui elements to those. Now, in the component, you can de

RE: [flexcoders] Re: Debugger won't break on HTTP Service result function

2009-04-09 Thread Tracy Spratt
Note, you might find it easier to works with a single HTTPService instance and a single result handler. You can use AsyncToken to associate some result with its call. There are many options, but one simple way is to assign a string value to a property on the token, like , token.callid = "callOne"

RE: [flexcoders] Re: Need help processing XML into Flex app

2009-04-09 Thread Tracy Spratt
Since some of your expressions were working, I assume you have handled the namespace issues, is that correct? In your post you have "Rolename" but the node is RoleName. Expressions are case sensitive. Another approach would be: return item.Roles.children()[0].text(); Tracy Spratt, La

Re: [flexcoders] Cant receive socket data

2009-04-09 Thread john fisher
Thanks - but I added this code and no change. The events don't fire. socket = new XMLSocket(); configureListeners(socket); private function configureListeners(dispatcher:IEventDispatcher):void { dispatcher.addEventListener(Event.CLOSE, closeHandler); dispatcher.addEve

RE: [flexcoders] Cant receive socket data

2009-04-09 Thread Maciek Sakrejda
You are an optimist: you are not listening for flash.events.IOErrorEvent.IO_ERROR or flash.events.SecurityErrorEvent.SECURITY_ERROR from the XMLSocket. -Original Message- From: flexcoders@yahoogroups.com on behalf of john fisher Sent: Thu 4/9/2009 2:11 PM To: flexcoders@yahoogroups.com

Re: [flexcoders] Cant receive socket data

2009-04-09 Thread john fisher
yikes, please ignore extraneous asterisks in snippet. this is corrected: - the server code ( perl) snippet: my $NULLBYTE = pack( 'c', 0 ); if ( $1 eq "new" ) { print STDOUT "request is: $1 sending xml data\n";

Re: [flexcoders] Re: 3D Cube interface

2009-04-09 Thread Pedro Sena
Found it. http://weblogs.macromedia.com/auhlmann/archives/DistortionEffects.zip Thanks On Thu, Apr 9, 2009 at 5:46 PM, foobone9 wrote: > > > Check the blog for details: > http://weblogs.macromedia.com/auhlmann/ > > > --- In flexcoders@yahoogroups.com , Pedro > Sena wrote: > > > > Are the sour

[flexcoders] tiling FormItems

2009-04-09 Thread Maciek Sakrejda
I want to have a form with a tiled layout (instead of the default stacked). It looks like I can just put FormItem objects in another container (e.g., Tile) and do what I want, but this seems like cats and dogs sleeping together and lions lying down with lambs and just generally the end of days.

[flexcoders] Cant receive socket data

2009-04-09 Thread john fisher
I have a Flex 3.0 app which can connect to a remote socket server, and send it XML, but nothing happens ( no event fires, no error in debugger) in Flex when the server returns data. The remote server is appending a nullbyte to the xml message, and thinks its sending the data. Ideas? -

[flexcoders] Re: 3D Cube interface

2009-04-09 Thread foobone9
Check the blog for details: http://weblogs.macromedia.com/auhlmann/ --- In flexcoders@yahoogroups.com, Pedro Sena wrote: > > Are the source files available? > > Tnx > > On Thu, Apr 9, 2009 at 5:18 PM, foobone9 wrote: > > > > > > > http://www.alex-uhlmann.de/flash/adobe/blog/distortionEffects/

Re: [flexcoders] Re: 3D Cube interface

2009-04-09 Thread Pedro Sena
Are the source files available? Tnx On Thu, Apr 9, 2009 at 5:18 PM, foobone9 wrote: > > > http://www.alex-uhlmann.de/flash/adobe/blog/distortionEffects/effectCube/ > > > --- In flexcoders@yahoogroups.com , > "christophe_jacquelin" wrote: > > > > Hello, > > > > I am seaching a example of 3D Cub

[flexcoders] Re: 3D Cube interface

2009-04-09 Thread foobone9
http://www.alex-uhlmann.de/flash/adobe/blog/distortionEffects/effectCube/ --- In flexcoders@yahoogroups.com, "christophe_jacquelin" wrote: > > Hello, > > I am seaching a example of 3D Cube for an interface in Flex. > > Thank you, > Christophe, >

[flexcoders] Re: Illegible axis labels

2009-04-09 Thread sunild999999
--- In flexcoders@yahoogroups.com, "thomas.parquier" wrote: > > Furthermore labels dont get staggered/rotated when canstagger="true" and > labelRotation="-45". The label rotation won't work unless the fonts are embedded. Another option would be to target Flash Player 10 and use a device font

[flexcoders] Re: Alert popup without any button?

2009-04-09 Thread Tim Hoff
You might find this of interest as well: http://blog.flexexamples.com/2009/04/08/creating-a-self-closing-alert-co\ ntrol-in-flex/ -TH --- In flexcoders@yahoogroups.com, "Tim Hoff" wrote: > > > > http://

Re: [flexcoders] Cairngorm Question

2009-04-09 Thread claudiu ursica
You do have acess to the model. The combo 2 will be populated with some data. Put that into the model and bind combo 2 to the model I'm not sure what you actually want to do but it doesn't look like you need cairgorm to do that ... C From: skusunam To: f

[flexcoders] Cairngorm Question

2009-04-09 Thread skusunam
Hello Group, This is my first question on this group and I have been referring to this group for all my technical challenges with Flex (started using 1 month back). Thanks for such a nice group and support. I have a complex screen where I have 2 Combo boxes and by default Combo-2 is dis

Re: [flexcoders] Re: Animated Flash Component Resizing when used as Button Skin

2009-04-09 Thread Aurek Brillowski
2 New Developments: 1. I figured out how to override width and height getters in a Button to a constant size. 2. I'm not sure if that's what I wanted to do! The button itself doesn't resize, never did. It's everything (the Flash animation) inside of it that resizes. Any clues would be S

Re: [flexcoders] Search for a component.

2009-04-09 Thread Jeffry Houser
Viewstack is the first thing I thought of too. Depending on your requirements, a TabNavigator may also work. Pedro Sena wrote: mx:ViewStack On Thu, Apr 9, 2009 at 3:31 PM, christophe_jacquelin mailto:christophe_jacque...@yahoo.fr>> wrote: Hello, I am seaching which Flex co

Re: [flexcoders] Search for a component.

2009-04-09 Thread Pedro Sena
mx:ViewStack On Thu, Apr 9, 2009 at 3:31 PM, christophe_jacquelin < christophe_jacque...@yahoo.fr> wrote: > > > Hello, > > I am seaching which Flex component to use to switch several screen. > The user should watch the first screen, then he can go to the second, and > so on. > > Thank you, > Chri

[flexcoders] 3D Cube interface

2009-04-09 Thread christophe_jacquelin
Hello, I am seaching a example of 3D Cube for an interface in Flex. Thank you, Christophe,

[flexcoders] Search for a component.

2009-04-09 Thread christophe_jacquelin
Hello, I am seaching which Flex component to use to switch several screen. The user should watch the first screen, then he can go to the second, and so on. Thank you, Christophe,

[flexcoders] Re: Invalid root. The WEB-INF/flex folder must contain either flex-config.xml or services-config.xml.

2009-04-09 Thread valdhor
ID Ten T error? --- In flexcoders@yahoogroups.com, Greg Morphis wrote: > > never mind > > On Thu, Apr 9, 2009 at 11:46 AM, Greg Morphis wrote: > > If I choose Use built-in ColdFusion web server I still get the same error. > > Why is this so jacked up? > > > > On Thu, Apr 9, 2009 at 9:59 AM, Gr

[flexcoders] Re: Bubble Effect

2009-04-09 Thread Tim Hoff
Hi Shabir, This sounds more like a question for flashcoders. I suppose that what you want to do is possible in Flex, but it would require a lot more effort than it would using the built-in features of Flash (guide paths and motion tweens). Good luck. -TH --- In flexcoders@yahoogroups.com, Sha

RE: [flexcoders] Re: Illegible axis labels

2009-04-09 Thread Maciek Sakrejda
I get the following error when trying to use your example: [RPC Fault faultString="Error #1088: The markup in the document following the root element must be well-formed." faultCode="Client.CouldNotDecode" faultDetail="null"] at mx.rpc.http::HTTPService/http://www.adobe.com/2006/flex/mx

[flexcoders] Re: Illegible axis labels

2009-04-09 Thread thomas parquier
Has anyone encountered this problem ? Is there any workaround ? thanks, thomas 2009/4/9 thomas.parquier > > >> >> Setting gutterBottom (in chart mxml tag) and height (in axisrenderer tag) >> keeps height of axisRenderer fixed (good) but labels still get resized... ( >> http://web-attitude.fr/g

RE: [flexcoders] Form field clearing

2009-04-09 Thread Maciek Sakrejda
Alex's suggestion is probably the right thing to do, but you can also take a look at AdvancedForm from flexlib: http://flexlib.googlecode.com/svn/trunk/examples/AdvancedForm/AdvancedForm_Sample.swf -Maciek -Original Message- From: flexcoders@yahoogroups.com on behalf of smccran Sent: T

[flexcoders] Re: Invalid root. The WEB-INF/flex folder must contain either flex-config.xml or services-config.xml.

2009-04-09 Thread Greg Morphis
never mind On Thu, Apr 9, 2009 at 11:46 AM, Greg Morphis wrote: > If I choose Use built-in ColdFusion web server I still get the same error. > Why is this so jacked up? > > On Thu, Apr 9, 2009 at 9:59 AM, Greg Morphis wrote: >> I'm trying to create a Flex project (Flex 3). On the New Flex Projec

[flexcoders] Re: Alert popup without any button?

2009-04-09 Thread Tim Hoff
http://www.adobe.com/2006/mxml";> -TH --- In flexcoders@yahoogroups.com, "markflex2007" wrote: > > > Hi > > Do you think if it is possible for me to build a Alert popup with Alert.show and the popup doesn't have any button(like ok button) and only have text

RE: [flexcoders] Create XML List by code

2009-04-09 Thread Alex Harui
Create the equivalent string, then pass that into the constructor of XMLList Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of lehaianh1986 Sent: Thursday,

RE: [flexcoders] Marshall Plan: Loading images from byteArray

2009-04-09 Thread Alex Harui
Your code didn't match the description. I'd take the bitmapdata, write it to a bytearray, pass the bytearray across shared events, loadbytes the bytearray on the other side. Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcod

Re: [flexcoders] Re: New Adobe forums coming!

2009-04-09 Thread Matt Chotin
I got spell check in the rich text editor to work in Firefox on the Mac, it's the checkbox in the upper right corner and you have to turn it on. It seems to run about every 20 seconds or so, not quite as instant as Firefox. We're working on updating the subject to be shorter and I'm still trying

RE: [flexcoders] Form field clearing

2009-04-09 Thread Alex Harui
In a model/view architecture, you would reset the model or generate a new instance of the model Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of smccran S

[flexcoders] Re: Invalid root. The WEB-INF/flex folder must contain either flex-config.xml or services-config.xml.

2009-04-09 Thread Greg Morphis
If I choose Use built-in ColdFusion web server I still get the same error. Why is this so jacked up? On Thu, Apr 9, 2009 at 9:59 AM, Greg Morphis wrote: > I'm trying to create a Flex project (Flex 3). On the New Flex Project > page I keep getting this error. > Invalid root. The WEB-INF/flex folde

[flexcoders] Re: TileList | ItemRenderer | Allignment is not proper

2009-04-09 Thread Tim Hoff
Hi, You can adjust the alignment like this: Or, you can override updateDisplayList in the itemRenderer and position the checkBox's manually. -TH --- In flexcoders@yahoogroups.com, "ilikeflex" wrote: > > Hi > > I have tilelist which have checkboxs as itemrenderer. The tilelist has four > col

[flexcoders] Re: Modules and RSLs Which is Better for Large Database application

2009-04-09 Thread raja_s_patil
Thanks Gregor Kiddie, > > Sounds like one of your DLLs is roughly equivalent to a module in terms > of what you want to deliver. > > Just remember that each Flex module is based off a single mx::Module, so > if you want to package up several forms in a single module, you'll need > to load the mod

[flexcoders] Re: New Adobe forums coming!

2009-04-09 Thread Amy
--- In flexcoders@yahoogroups.com, Matt Chotin wrote: > > We're working with Jive on finding a way to get NNTP working that respects > the single sign-on of adobe.com. It's taking some time but we haven't given > up. That sounds fantastic :-D

[flexcoders] repeater error that i dont understand

2009-04-09 Thread stinasius
hi i have a repeater component that bound to the selection of a datagrid. it works perfectly the first time i select an item from the dtatgrid but when i select another item i get this error that i don't understand. please advise. here is my repeater and the error i get

[flexcoders] TileList | ItemRenderer | Allignment is not proper

2009-04-09 Thread ilikeflex
Hi I have tilelist which have checkboxs as itemrenderer. The tilelist has four columns and three rows. All the months are displayed in tilelist.Each month is represented by the check box.The problem i am facing is that checkboxs are not aligned properly.If you run the code below then months ( Mar,

Re: [flexcoders] Re: How can I have my class return an ArrayCollection?

2009-04-09 Thread - -
Here's a great tutorial that I found! http://cksachdev.blogspot.com/2008/10/bindingutils-example.html Thanks again. -David From: Maciek Sakrejda To: flexcoders@yahoogroups.com Sent: Wednesday, April 8, 2009 3:12:10 PM Subject: Re: [flexcoders] Re: How can I

[flexcoders] Invalid root. The WEB-INF/flex folder must contain either flex-config.xml or services-config.xml.

2009-04-09 Thread Greg Morphis
I'm trying to create a Flex project (Flex 3). On the New Flex Project page I keep getting this error. Invalid root. The WEB-INF/flex folder must contain either flex-config.xml or services-config.xml. I have CF installed to C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war My settings on the New Fle

[flexcoders] Re: Debugger won't break on HTTP Service result function

2009-04-09 Thread Matthew A. Wilson
Well, I figured it out. I'm fairly new to Flex so please hold your laughter. What happened is that I was calling 3 HTTPService requests to the database and then calling an internal function to work with the data I had received. What I didn't realize was that Flex makes those calls asynchronously

RE: [flexcoders] Creating a SWc without the Flex classes?

2009-04-09 Thread Gregor Kiddie
Yeah, right at the top of the page (and easily missed) is the link saying that it honours *most* of the mxmlc options. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered

RE: [flexcoders] Re: Modules and RSLs Which is Better for Large Database application

2009-04-09 Thread Gregor Kiddie
Sounds like one of your DLLs is roughly equivalent to a module in terms of what you want to deliver. Just remember that each Flex module is based off a single mx::Module, so if you want to package up several forms in a single module, you'll need to load the module and then swap the forms on that v

[flexcoders] Alert popup without any button?

2009-04-09 Thread markflex2007
Hi Do you think if it is possible for me to build a Alert popup with Alert.show and the popup doesn't have any button(like ok button) and only have text message. Thanks Mark

[flexcoders] Re: Accessing the border of a container

2009-04-09 Thread florian.salihovic
Thanx, that was a tough one ;) Best regards! --- In flexcoders@yahoogroups.com, "Michael Schmalle" wrote: > > Hi, > > using mx_internal you could; > > import mx.core.mx_internal; > > myInstance.tk_internal::background > > > or; > > rawChildren.getChildByName("border"); > > Mike > > ---

Re: [flexcoders] Re: Adobe's stimulus package!!!! FREE FLEX BUILDER!!!!

2009-04-09 Thread Jeffry Houser
Or download the free SDK and compile the code you wrote w/ Flex Builder using the command line compiler. I have not read the terms and conditions, though.. Kenneth Sutherland wrote: Try learning how to create and write mxml and as3 code. If you’re a beginner to mxml and as3 then you’ll

[flexcoders] Re: Form field clearing

2009-04-09 Thread valdhor
I normally use a function like... private function resetFormItems():void { var formChildren:Array = jobRequest.getChildren(); for each(var theFormItem:FormItem in formChildren) { (theFormItem.getChild

Re: [flexcoders] Re: New Adobe forums coming!

2009-04-09 Thread Matt Chotin
We're working with Jive on finding a way to get NNTP working that respects the single sign-on of adobe.com. It's taking some time but we haven't given up. Matt Sent from a phone, pardon the brevity or typos. From: flexcoders@yahoogroups.com To: flexcoders@yahoog

[flexcoders] SWC's with CS4

2009-04-09 Thread Kenneth Sutherland
Has anyone created a swc in flexbuilder and then loaded that into CS4 to be used as part of a flash project? I've created a basic actionscript project (essentially just a sprite with a background to prove that I can load and use a swc with CS4), then used that to build a swc. Tested the swc in

[flexcoders] Form field clearing

2009-04-09 Thread smccran
Hi all, I have a standard flex form, and I want to do a simple 'reset' function. At the moment I would simply set each field value as blank like this: private function clear():void { nameField.text = ""; tel.text = "

RE: [flexcoders] Creating a SWc without the Flex classes?

2009-04-09 Thread Sascha
Thanks a lot! That's what I was looking for. I've checked the compc options but this argument is listed under mxmlc options. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Gregor Kiddie Sent: Thursday, April 09, 2009 21:54 To: flexcoders@yahoogroups.com Sub

[flexcoders] Re: Need help processing XML into Flex app

2009-04-09 Thread Jim
Tracy, Thanks for the lead. I'm having trouble getting it to recognize RoleName, though (there is only one role name per role, by the way). I did this for UserDescription just to prove the method: protected function displayName (item:Object, column:DataGridColumn):String { return item.User

[flexcoders] Re: Boolean problem

2009-04-09 Thread valdhor
PHP is a loosely typed language and doesn't really implement a strictly boolean type. Generally, PHP will convert this to an int with 0 being false and anything else being true (Normally set to 1). What I have noticed is that sending a (so called) false value from PHP to Flex sends the string "

Re: [flexcoders] error whenr .swf file tries to access variable like this "Application.application.variableName"

2009-04-09 Thread Adrian Williams
Hi Jigar, Have you made sure that the variable you are trying to access is set to public? Also, which app level does the variable exist in...the main app or the first-loaded swf? And if you are getting an error, can you post the stack here please? Adrian Jigar Kapadia wrote: I am loa

Re: [flexcoders] Alternative to using ToolTips for popup

2009-04-09 Thread Charles Galpin
I don't recall why, but I ruled that out for some reason. I'm revisiting this today, so I guess I'll see. For other unrelated reasons I am re-implementing this component and will probably just draw/manage the popup myself (unless this causes other problems :) thanks, charles On Mar 25, 2009

Re: [flexcoders] Embed image from flex library (SWC)

2009-04-09 Thread Charles Galpin
Hi Pedro yes I tried every conceivable path to the assets (other than hard coding the full system path which won't work for us as we develop on multiple platforms and have different paths to our workspaces. charles On Apr 3, 2009, at 2:25 PM, Pedro Sena wrote: Have you tried /assets/some

[flexcoders] Re: Best design practice qs for all you experts out there..

2009-04-09 Thread Amy
--- In flexcoders@yahoogroups.com, "javaguy44" wrote: > > Hi, > > Quick "best design / practice" question for all you experts out there. > > When I login to the channelSet, I want to pass a generic, resultHandler(and > fault) function such as LoginSucessFunction that I can pass to the > AsyncR

[flexcoders] Re: Creating a SWc without the Flex classes?

2009-04-09 Thread Michael Schmalle
Hi, I use this in my build file; This uses those swcs to compile against but bot include the byte code in your swc. Mike --- In flexcoders@yahoogroups.com, "Sascha" wrote: > > Hi List, > > I'm trying to compile a SWC with compc (Flex 3.3) from my source code > library but the compiler al

[flexcoders] error whenr .swf file tries to access variable like this "Application.application.variableName"

2009-04-09 Thread Jigar Kapadia
I am loading a .swf file which is buit in FLEX 3 into an AIR project. and that .swf file again loads another .swf file I get error whenever .swf file tries to access variable like this "Application.application.variableName" How can it be fixed.? ~ Jigar

[flexcoders] Re: Accessing the border of a container

2009-04-09 Thread Michael Schmalle
Hi, using mx_internal you could; import mx.core.mx_internal; myInstance.tk_internal::background or; rawChildren.getChildByName("border"); Mike --- In flexcoders@yahoogroups.com, "florian.salihovic" wrote: > > I don't know if i'm just blind atm or if it's indded hard to access the > borde

Re: [flexcoders] CodeProject for Flex?

2009-04-09 Thread Sam Lai
The Flex cookbook is kind of similar, although the content there tends to be shorter, for smaller tasks and more about code than the explanation on how it does what it does. http://www.adobe.com/cfusion/communityengine/index.cfm?event=homepage&productId=2 2009/4/9 g_odds : > I've used the CodePro

[flexcoders] Re: Modules and RSLs Which is Better for Large Database application

2009-04-09 Thread raja_s_patil
Thanks Gregor Kiddie, > > RSLs are only really useful if you are making two or 3 different > products and want to share the code between them. For a single product, > they offer no discernable value. > > We actually removed RSLs from our product because they were impacting > run-time performance.

RE: [flexcoders] Creating a SWc without the Flex classes?

2009-04-09 Thread Gregor Kiddie
One of the parameters of compc is classes to exclude. Look at "external-library-path" in : http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_22.htm l Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street,

[flexcoders] Re: New Adobe forums coming!

2009-04-09 Thread Amy
--- In flexcoders@yahoogroups.com, "Bjorn Schultheiss" wrote: > > Who pays you to spend 10-20 hours a week? > > How do you afford this luxury? It was built into my day, about an hour each morning and evening, like milking the goat. When I was contracting and didn't have a full plate, it was o

[flexcoders] About Flex ContextMenu

2009-04-09 Thread zhang.yanwei
Dear Sir or Madam: We may need help from you when we develop an applicaton by using Flex. 1A when the ContextMenu class is used when we develop an appliction. It should access the remote services or method by an asynchronous operations. However, the context menu cannot be displayed as we

[flexcoders] Re: Illegible axis labels

2009-04-09 Thread thomas.parquier
Setting gutterBottom (in chart mxml tag) and height (in axisrenderer tag) keeps height of axisRenderer fixed (good) but labels still get resized... (http://web-attitude.fr/grapheur/grapheur.html, click on 'max' button on the left) Furthermore labels dont get staggered/rotated when canstagger="t

[flexcoders] Re: Debugger won't break on HTTP Service result function

2009-04-09 Thread valdhor
Have you set up another event listener (using Actionscript) that is grabbing that event? --- In flexcoders@yahoogroups.com, "Matthew A. Wilson" wrote: > > I have a component that I'm adding to my Flex project and it makes 3 HTTP > Service calls. On the result="" I have listed a function and in

[flexcoders] Creating a SWc without the Flex classes?

2009-04-09 Thread Sascha
Hi List, I'm trying to compile a SWC with compc (Flex 3.3) from my source code library but the compiler always includes all the default Flex classes which makes the SWC quite large. Is there a way to exlude all the Flex classes from being in the resulting SWC or is this a necessity? Sascha

[flexcoders] Accessing the border of a container

2009-04-09 Thread florian.salihovic
I don't know if i'm just blind atm or if it's indded hard to access the border of a Container. I can access the rawChildren. That's good since i could introspect the children's class name and search for the classname of the asset. But my problem ist, that the border get's compiled and the class

[flexcoders] Re: Using RemoteObject with Flash

2009-04-09 Thread valdhor
This thread... http://tech.groups.yahoo.com/group/flexcoders/message/126803 should give you a good start. --- In flexcoders@yahoogroups.com, "zootpeet" wrote: > > > I have a Flash/ActionScript project that needs start connection to a backend > database, as I need to start tracking and record

Re: [flexcoders] Re: Flex, SharePoint and SQLServer

2009-04-09 Thread Tom Chiverton
On Wednesday 08 Apr 2009, Gerry McLarnon wrote: > If you are interested I'm sure I could provide some examples... I would. Maybe a blog post or something ? -- Helping to continuously brand slick ubiquitous materials as part of the IT team of the year, '09 and '08 Tom Chiverton Developer Tel: +

Re: [flexcoders] Flash causing Mac to crash

2009-04-09 Thread Tom Chiverton
On Wednesday 08 Apr 2009, tom s wrote: > 1. Is there a site that lists the known issues for Flash on Macs? Bugs.adobe.com -- Helping to quickly negotiate niches as part of the IT team of the year, '09 and '08 Tom Chiverton Developer Tel: +44 0161 618 5032 Fax: +44 0161 618 5099 tom.chiver...@

[flexcoders] Re: Hiding/Showing swf in a web app

2009-04-09 Thread Jason B
unless your app uses AJAX preventing the html from reloading the page, your options are using a div to hide show flex app or an iframe to reload the html pages only --- In flexcoders@yahoogroups.com, "rondo_smith" wrote: > > Hey, > > I am working on a web app which is a mixture of a typical we

[flexcoders] Re: How to catch Error 302 from RemoteObject?

2009-04-09 Thread Jason B
Why not make a url that checks access without being logged in and it returns access control back to flex, example localhost/access/checkusercontrol?user_id=3434267 would return the xml DENIEDYES thats how we do it on our app and it works quite well --- In flexcoders@yahoogroups.com, "Dan" w

RE: [flexcoders] Modules and RSLs Which is Better for Large Database application

2009-04-09 Thread Gregor Kiddie
RSLs are only really useful if you are making two or 3 different products and want to share the code between them. For a single product, they offer no discernable value. We actually removed RSLs from our product because they were impacting run-time performance. Modules are excellent though. They

[flexcoders] TileList | ItemRenderer | Allignment is not proper

2009-04-09 Thread ilikeflex
Hi I have tilelist which have checkboxs as itemrenderer. The tilelist has four columns and three rows. All the months are displayed in tilelist.Each month is represented by the check box.The problem i am facing is that checkboxs are not aligned properly.If you run the code below then months ( M

[flexcoders] Boolean problem

2009-04-09 Thread secrit.service
Hello, I have following situation: a mySQL-database with a table containing 3 fields : - ID : INTEGER : AUTO INC - description : VARCHAR(100) - flaggedForDeletion : TINYINT(1) Some of the records are : 1 This is a test 0 2 This is also a test

Re: [flexcoders] Re: Bubble Effect

2009-04-09 Thread Shabir Gilkar
Dear Tim Hoff, Thanks for your mail and hope you are fine there, As i am fresher in Flash and i am currently designing a Flash website for my company. I have separated my website in three parts that is Header, Content and footer. In this content area i want some small bubbles should randomly s

[flexcoders] CodeProject for Flex?

2009-04-09 Thread g_odds
I've used the CodeProject site (http://www.codeproject.com/) a fair bit, particularly for .Net development. I was wondering if there is anything remotely similar for Flex development? If there isn't, would others find a resource of this kind useful?

[flexcoders] Modules and RSLs Which is Better for Large Database application

2009-04-09 Thread raja_s_patil
Hello, We are in phase of evaluating Flex for converting a large delphi-Firebird Client Server database desktop application to a Web application. Till date we have written a small pilot application and is accepted by almost everybody. In Second Phase of evaluation a doubt about download time is b

[flexcoders] Create XML List by code

2009-04-09 Thread lehaianh1986
Hi all, I have XMLList like: But I want to create XML List by code, so how do I do?

[flexcoders] InheritingStyles and RSL

2009-04-09 Thread reflexactions
Not sure if this is a component issue or RSL issue but anyway... I have a actionscript custom component class, this component defines some new inheriting styles using metadata tags and creates a class default style function which sets the value of those styles and others during class initialisa

[flexcoders] Best design practice qs for all you experts out there..

2009-04-09 Thread javaguy44
Hi, Quick "best design / practice" question for all you experts out there. When I login to the channelSet, I want to pass a generic, resultHandler(and fault) function such as LoginSucessFunction that I can pass to the AsyncResponder, as opposed to writing this function many times in various pla

[flexcoders] compiling error because a namespace (maven + flex mojos)

2009-04-09 Thread Fernando Wermus
I am compiling a mxml which has a namespace (Caingorm one). I got an compiling exception because it couldnt resolve the namespace. How do I solve this using mxmlc? Actually I am using flex mojos plugin (for maven) -- Fernando Wermus. www.linkedin.com/in/fernandowermus http://mientretiempo.blogsp

Re: [flexcoders] Fwd: Problem to extend HTTPService

2009-04-09 Thread Fernando Wermus
How could you resolve the namespace issue? I need to compile a mxml with mxmlc, but It cant resolve the namespace. On Mon, Apr 28, 2008 at 7:51 AM, doodoonn2000 wrote: > Hello all ! > I got the same compilation resolution error. > in the same context (HTTPService extension.) > > How could i fig

Re: [flexcoders] Re: New Adobe forums coming!

2009-04-09 Thread Tom Chiverton
On Wednesday 08 Apr 2009, Matt Chotin wrote: > I've got reply by email working from my Entourage client, which part isn't > working for you there? The part where it bounces back. I've posted to the forums, and it appears the problem is intermittent (which is worse in a way !) but across many user

[flexcoders] Grouping in Advanced Data Grid

2009-04-09 Thread v.ponvino
Hi, I am using one java method returning ArrayList which contains Map objects. java method: public List fun3() { List ar = new ArrayList(); Map m=new HashMap(); m.put("Operation","New Account");

Re: [flexcoders] Re: Adobe's stimulus package!!!! FREE FLEX BUILDER!!!!

2009-04-09 Thread Conrad Winchester
Learning a new skill. Expanding your horizons. The world is your oyster :-) On 9 Apr 2009, at 05:52, stinasius wrote: let me get this straight, does that mean that i cannot deploy an app developed with this version of flex and if the answer is yes, then what am i supposed to do with t

[flexcoders] Turn Tabbar so tabs are pointing down

2009-04-09 Thread Mic
Cannot find a way to turn the tabbar 180 so the tabs point down - need to place it at the bottom of a pane. Thinking I am overlooking an obvious attribute. TIA, Mic.

RE: [flexcoders] Re: How can I have my class return an ArrayCollection?

2009-04-09 Thread Errol (ACM)
I see someone already suggested data binding. The array collection also issues a Collection_Change event that you can list for. I have used both methods successfully in some of our code. Errol Thompson KiwiET Computing Consultancy and Computing Education Research 2 Haven Grove Naenae Lower Hutt.

[flexcoders] Marshall Plan: Loading images from byteArray

2009-04-09 Thread rob_mcmichael
Hi all, I am trying to work around a sub application in AIR not being able to load in images at runtime. I am trying to get the parent application to load the image, convert it to a byte array and then pass it through the shared events to the sub application. At this point I then want the sub

RE: [flexcoders] Re: Adobe's stimulus package!!!! FREE FLEX BUILDER!!!!

2009-04-09 Thread Kenneth Sutherland
Try learning how to create and write mxml and as3 code. If you're a beginner to mxml and as3 then you'll find flexbuilder great for learning. Then once you've created a fantastic app/site that will make you money, pay for the software and deploy it. I don't have the free version, but I'm pretty s

  1   2   >