Re: [flexcoders] Re: Flexbuilder 3.0.1 Update

2008-08-19 Thread Paolo Bernardini
My auto update didn't find any updates for flexbuilder (it's not included in the list of program to update, only cs3 programs). Is there a link from where I can download flexBuilder 3.0.1 update? On Tue, Aug 19, 2008 at 2:38 PM, Howard Fore [EMAIL PROTECTED] wrote: Here's Matt's devnet

[flexcoders] flex_sdk_3.1.0.2710 works with flexBuilder?

2008-08-18 Thread Paolo Bernardini
dose flex_sdk_3.1.0.2710 works with flexBuilder? after installing flex_sdk_3.1.0.2710, and setting it as the default sdk I compiled some old projects that I have, and it works fine, then I tried to code and notice that code hint for Event, MouseEvent is not working anymore. Even when you type

Re: [flexcoders] .errorTip borderStyle has no effect when using Tooltip custom borderSkin. BUG?

2008-06-16 Thread Paolo Bernardini
I have the same issue, it happends with textInput as well, any solution? On Fri, Apr 4, 2008 at 1:33 AM, Thibaud Van Vreckem [EMAIL PROTECTED] wrote: Tooltip and .errortip styling are crap. when using: ToolTip { borderSkin: Embed(/assets/skins/tooltip/ToolTip_borderSkin.png); }

Re: [flexcoders] Re: Flex 3 Beta 3 Debugger Doesnt Connect

2008-01-30 Thread Paolo Bernardini
Hi, I have the same problem with nod32, is there a solution to configure nod32 without uninstalling it? On Dec 27, 2007 4:09 AM, Sheriff [EMAIL PROTECTED] wrote: I have no reason, just read alot of good reviews on it and decided to try it. I had to uninstall it though and download another

Re: [flexcoders] class fl.motion.MatrixTransformer not available in flex framework

2007-09-26 Thread Paolo Bernardini
MatrixTransformer in flex? On 9/25/07, Steve Mathews [EMAIL PROTECTED] wrote: I am pretty sure the fl classes are part of the CS3 IDE, not the flex framework. On 9/25/07, Paolo Bernardini [EMAIL PROTECTED] wrote: if I try to use fl.motion.MatrixTransformer in a flex project the compiler

Re: [flexcoders] class fl.motion.MatrixTransformer not available in flex framework

2007-09-26 Thread Paolo Bernardini
* Here is my code: import* fl.motion.MatrixTransformer; *import* *flash*.geom.Matrix; * var* tempMaskMatrix:Matrix = *maskAsset*.transform.matrix; MatrixTransformer.setSkewY(tempMaskMatrix, angle); MatrixTransformer.setSkewX(tempMaskMatrix, 0); where *maskAsset is an image.* On 9/26/07, Tom

Re: [flexcoders] class fl.motion.MatrixTransformer not available in flex framework

2007-09-26 Thread Paolo Bernardini
thanks Tom, I missed that part in the doc. it dosen't sound right to me that an actionscript 3 class is not available in flex. It should be added to the framework. On 9/26/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 26 Sep 2007, [EMAIL PROTECTED] wrote: thanks for the reply, I'm

Re: [flexcoders] class fl.motion.MatrixTransformer not available in flex framework

2007-09-26 Thread Paolo Bernardini
this is not completely true, fl.motion.MatrixTransformer is part of Flash CS3 AS3 Classes, I know that because I have used it many times. I was just trying to use it in a flex project. That's why it feels strange. On 9/26/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 26 Sep 2007,

[flexcoders] class fl.motion.MatrixTransformer not available in flex framework

2007-09-25 Thread Paolo Bernardini
if I try to use fl.motion.MatrixTransformer in a flex project the compiler complains that MatrixTransformer dose not exist. Is fl.motion.MatrixTransformer included in the flex framework?

[flexcoders] applying filters to assets to use as icon in components

2007-06-07 Thread Paolo Bernardini
How do you applying filter to assets to use as icon in components? I want to apply a shadow to an image and than use it as icon for a button. [Embed(source=myIcon.gif)] [Bindable] public var imgCls:Class; I'm trying to convert it to a BitmapAsset then apply my filters and convert back to Class

[flexcoders] hotfix 2 and webservices

2007-06-01 Thread Paolo Bernardini
Hi, I've a problem with webservices after updating to hotfix 2 for flex builder. this is the soap for the method I'm having problems with: soap:Envelope xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xmlns:xsd=http://www.w3.org/2001/XMLSchema; xmlns:soap=

[flexcoders] Applying filters to an image to use as a icon asset for a button

2007-06-01 Thread Paolo Bernardini
Hi, I want to applying some filters to an image before I use it as an icon asset for a button. I tryied this: **public function getButtonIcon(btn:String):Class { var result : Class; switch ( btn ) { case cart: result = model.assets.cartIconBig; break; case find:

[flexcoders] for in loop dosen't work on custom class

2007-04-16 Thread Paolo Bernardini
I found that if you try to do a for in loop for a custom class it won't work. *for* (*var* i:String *in* ItemVO*){* * trace*(ItemVO[i]); // it won't trace anything. } this is my custom class, (I've tried with other as well) * package* com.leader.store.vo { *import*

Re: [flexcoders] for in loop dosen't work on custom class

2007-04-16 Thread Paolo Bernardini
sorry for the * it was a copy and past problem. Thanks Shaun, for your explanation. I need the for in loop not to add new properties to my object, but to iterate through its properties and add them to a new object. On 16 Apr 2007 04:39:03 -0700, shaun [EMAIL PROTECTED] wrote: Paolo

Re: [flexcoders] Re: Problem calculating repeater Height

2007-04-04 Thread Paolo Bernardini
@yahoogroups.com flexcoders%40yahoogroups.com, Paolo Bernardini [EMAIL PROTECTED] wrote: Any help? On 3/27/07, Paolo Bernardini [EMAIL PROTECTED] wrote: Hi, I have nested repeaters, I need to dispatch an event after all repeater have finished rendering, and pass the height of the UIComponet that holds

[flexcoders] Re: Problem calculating repeater Height

2007-04-03 Thread Paolo Bernardini
Any help? On 3/27/07, Paolo Bernardini [EMAIL PROTECTED] wrote: Hi, I have nested repeaters, I need to dispatch an event after all repeater have finished rendering, and pass the height of the UIComponet that holds the repeaters. The problem is that I haven't found a way to know when the final

[flexcoders] Problem calculating repeater Height

2007-03-27 Thread Paolo Bernardini
Hi, I have nested repeaters, I need to dispatch an event after all repeater have finished rendering, and pass the height of the UIComponet that holds the repeaters. The problem is that I haven't found a way to know when the final height is available. I have tried using repeatEnd event callLater

[flexcoders] dragProxy as image dosen't show image

2007-03-26 Thread Paolo Bernardini
Hi I was following the last example on http://www.adobe.com/devnet/flex/quickstart/adding_drag_and_drop/ I'm having a problem when I replace embedded images with dynamic URLs. this is the part of the code that I'm having problem with: // Create a copy of the coin image to use as a drag proxy.

Re: [flexcoders] dragProxy as image dosen't show image

2007-03-26 Thread Paolo Bernardini
/flex2-dnd-bitmap-copy/ I follow this approach when creating drag proxies in order to get a copy of the item being dragged. Tim On 26 Mar 2007 03:59:26 -0700, Paolo Bernardini [EMAIL PROTECTED] wrote: Hi I was following the last example on http://www.adobe.com/devnet/flex/quickstart

Re: [flexcoders] Drag and Drop within TileList - why does my code copy instead of move?

2007-01-10 Thread Paolo Bernardini
are you using flex 2.0 or 2.0.1? I have an application using drag and drop and need to move the items within the TileList, it was working just fine in version 2.0, now since I updated to 2.0.1 it doesn't move the items anymore but instead makes a copy. Basically I want to order the Items of the

[flexcoders] Unable to drag move objects from a TileList after updating to Flexbuilder 2.0.1

2007-01-10 Thread Paolo Bernardini
I have an application using drag and drop and need to move the items within the TileList, it was working just fine in version 2.0, now since I updated to 2.0.1 it doesn't move the items anymore but instead makes a copy. Basically I want to order the Items of the TileList by dragging them, but I

Re: [flexcoders] flexbuilder 2.0.1 css editor support

2007-01-08 Thread Paolo Bernardini
why this happens… it is a real pain! Lance *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Paolo Bernardini *Sent:* Saturday, January 06, 2007 9:28 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] flexbuilder 2.0.1 css editor support Hi Brian

Re: [flexcoders] flexbuilder 2.0.1 css editor support

2007-01-08 Thread Paolo Bernardini
} And it will works fine to you. Regards. On 1/8/07, Robert W [EMAIL PROTECTED] wrote: I found that fb conflict with WTP css editor (WTP is eclipse subproject). But i can't use wtp css editor, not flex. Maybe eclipse log show you answer. rw Paolo Bernardini wrote: I noticed that under flexbuilder

[flexcoders] flexbuilder 2.0.1 css editor support

2007-01-06 Thread Paolo Bernardini
What happened to the css editor support in flexbuilder 2.0.1? before with version 2 you had code hinting for css file, now after updating to version 2.0.1 doesn't work anymore.

Re: [flexcoders] flexbuilder 2.0.1 css editor support

2007-01-06 Thread Paolo Bernardini
Hi Brian, I'm using windows and trying to edit an external css file. On 1/6/07, Brian Dunphy [EMAIL PROTECTED] wrote: Still works for me on the Mac version of Flex Builder 2.0.1. Are you editing an external CSS file or inline? Brian On 1/6/07, Paolo Bernardini [EMAIL PROTECTED

Re: [flexcoders] Cairngorm 2.1 - calling a webservive more than once

2006-12-22 Thread Paolo Bernardini
I have a similar issue, when I call webservices more than once whit cairngorm 2.1, that I still haven't solved. Now you have to manually call webService.loadWSDL(), plus there is another weird thing happening that didn't happen with version 2.0. basically it changes the way I'm accessing the

Re: [flexcoders] Re: Weird Binding Problem when using ModelLocator

2006-12-18 Thread Paolo Bernardini
I found the cause of my problem. if I try to bind model.assets.cartIcon to the icon property of a button, like this: mx:Button id=purchase icon={model.assets.cartIcon}/ I get a binding warning for that property and all other properties that are use in data binding. For example: mx:State

[flexcoders] Weird Binding Problem when using ModelLocator

2006-12-11 Thread Paolo Bernardini
Hi I have a problem: When I add a ModelLocator to an mxml page like this: [Bindable] private var model:ModelLocator = ModelLocator.getInstance(); I get a warning that Data binding will not be able to detect assignments to someProperty. this is true for all the properties that use data

Re: [flexcoders] Web Services in Cairngorm 2.1

2006-11-05 Thread Paolo Bernardini
ok, now my app is able to call the webservices, but I get another weird behavior with cairngorm 2.1 that didn't happen with version 2.0. basically it changes the way I'm accessing the results, but not in a consistent way, for example: I'm calling the same webservices twice and in order to get

Re: [flexcoders] Re: Web Services in Cairngorm 2.1

2006-11-03 Thread Paolo Bernardini
thanks Peter, I was going crazy with this. On 11/3/06, ben.clinkinbeard [EMAIL PROTECTED] wrote: Will there be a way to keep it defaulted to off? I prefer to controlwhen loadWSDL() is called.Thanks,Ben--- In flexcoders@yahoogroups.com, Peter Martin [EMAIL PROTECTED] wrote: There have been

Re: [flexcoders] Cairngorm 2.1 problem

2006-10-30 Thread Paolo Bernardini
be more specific it would be great. On 10/30/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote: Have you implemented the new DestinationLocator? From: [EMAIL PROTECTED] ups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paolo Bernardini Sent: Sunday, 29 October 2006 8:31 PMTo: [EMAIL PROTECTED

Re: [flexcoders] Cairngorm 2.1 problem

2006-10-30 Thread Paolo Bernardini
I try to call some httpServices and works fine, it only seams to stop working with webServices, I guess I'm doing something wrong. One question: Is there any necessary work to do in order to port a Cairngorm 2.0 to a Cairngorm 2.1 app? or you can just drop the new swc to replace the old one,

Re: [flexcoders] Re: Cairngorm 2.1 problem

2006-10-30 Thread Paolo Bernardini
I use serviceCapture to monitor the services traffic, and there is no traffic with Cairngorm.swc 2.1. I set some breakpoint and see that I can get up to the delegate to the function that maps to my webservice method, but the methot it's not called. On 10/30/06, bjorn.schultheiss [EMAIL

[flexcoders] Cairngorm 2.1 problem

2006-10-29 Thread Paolo Bernardini
after copying the 2.1 version of cairngorm.swc on my project the application stoped working, basically it dosen't call any services, I then try to change all the deprecated classes and methods to the new raccomanded standards, I don't get any errors but still no service has been called. I

Re: [flexcoders] DownloadProgressBar changing the bar color

2006-09-27 Thread Paolo Bernardini
no luck yet, regarding the css files, the get compiled in the swf and non loaded at runtime, so they should be ready to change the style of the bar before the application loads. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

[flexcoders] DownloadProgressBar changing the bar color

2006-09-26 Thread Paolo Bernardini
is there a easy way for changing the DownloadProgressBar bar color, using css? I can't find it. -- 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 *

Re: [flexcoders] DownloadProgressBar changing the bar color

2006-09-26 Thread Paolo Bernardini
thanks for the reply, I already did that and try to set the bar-color property, but doesn't work. I'm trying to change the color of the bar of the DownloadProgressBar (which is the one the load the application)not Progressbar. __._,_.___ -- Flexcoders Mailing List FAQ:

Re: [flexcoders] DownloadProgressBar changing the bar color

2006-09-26 Thread Paolo Bernardini
thanks again, I guess the only way to do it is to create a custom preloaders, I thought we could just set a property on a css file, since the only thing that I want to change is the color of the bar. On 9/26/06, EECOLOR [EMAIL PROTECTED] wrote: In that case, check these links, you might

Re: [flexcoders] Cairngormstore for flex 2

2006-09-05 Thread Paolo Bernardini
Hi great that's what was I was waiting for. I found a little bug though, it is something that I already experienced, basically if you quickly rollover back and forward the image of the product on the product details panel, the image moves up. Like I said I had this problem too and is due to

[flexcoders] problem with dynamic itemrenderer

2006-08-11 Thread Paolo Bernardini
I'm trying to add an itemrenderer to a datagrid dynamically, dempending on the number of column of the dataprovider, which can be different everytime. I was able to handler everything, but I got a wierd bug. Everytime I recive the data I get 4 error from the player saying: TypeError: Error

Re: [flexcoders] Tree AllowMultipleSelection Bug

2006-07-19 Thread Paolo Bernardini
Hi Belindaby a later release you mean flex 3? or will be release some sort of patchOn 7/14/06, Belinda Nambooze [EMAIL PROTECTED] wrote: AllowMultipleSelection was disabled to work around some Tree issues. It will be re-enabled in a later release. Thanks,

[flexcoders] Cairngorm 2 flexstore binding problem

2006-07-10 Thread Paolo Bernardini
I was trying to port the cairgormflexstore to flex 2 and had some problems with data binding, for example: In flex 1.5 you could bind to model.shoppingCart.totalProductPrice, now in Flex 2 you get this warning: Data binding will not be able to detect assignments to totalProductPrice. And the

Re: [flexcoders] sharing images between projects

2006-06-07 Thread Paolo Bernardini
the applications to the same project? I thought it would be better to keep each apps in to is own project and share the assets and classes that they have in common using a shared folder from the source path. Could some one give me some advice for this topics? thanks. On 6/6/06, Paolo Bernardini [EMAIL

Re: [flexcoders] sharing images between projects

2006-06-07 Thread Paolo Bernardini
Actually I was wrong, adding the extra ../ as Tom suggested solved the problem, but doing this means that adding the shared folder to the source path it's useless at least for my purpose (sharing assets), and if I delete it, it still works. My questions still remain: What is the best wait to

[flexcoders] sharing images between projects

2006-06-06 Thread Paolo Bernardini
I'm having problems sharing images between projects. I have my workspace folder that contain several projects and I have a shared folder where I keep images and css that I want to share with all the projects in the workspace. The structure looks like this: workspace |_project1

Re: [flexcoders] sharing images between projects

2006-06-06 Thread Paolo Bernardini
I've tryed, but no luck On 6/6/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 06 June 2006 10:08, Paolo Bernardini wrote: But then when I try to use any file in that folder, it seems that flexBuilder isn't able to find it: [Embed(shared/assets/images/windows.png)] public var

Re: [flexcoders] Trying out new Cold Fusion/Flex Application Wizard

2006-05-19 Thread Paolo Bernardini
It has append to me too, I was able to see all master details data with no problem but after change a field I did see the changes on the master but then when I clicked on the edit button the details was empty. Same for all other record. I'm using an sql db. On 5/18/06, Bill Sahlas [EMAIL

Re: [flexcoders] fds 2 samples not working from mydomain.com

2006-05-15 Thread Paolo Bernardini
anyone else had this problem? or has an idea of how to solve it? I try to explain myself better in case I wasn't clear before. when testing from my internal network either by server name or local ip the data services samples work fine, but when I try testing from a public domain the data

Re: [flexcoders] Flex Beta 3 with TOMCAT JTOM ACTIVEMQ Work

2006-05-15 Thread Paolo Bernardini
Hi Devis I've a problem, after installing fds beta3 on a tomcat 5.5.17 server. when I test the contact manager samples from my internal network either by server name or local ip address:myServerNameOrLocalhost:8080/samles/dataservice/contact/contactmgr.mxmlit works fine and I'm able to see the

[flexcoders] fds 2 samples not working from mydomain.com

2006-05-11 Thread Paolo Bernardini
I've a problem, after installing fds beta3 on a tomcat 5.5.17 server I tested the samples and I noticed that if I test from: myServerNameOrLocalhost:8080/samles/dataservice/contact/contactmgr.mxml it works fine and I'm able to see the data without any problem. Instead if I test from:

[flexcoders] fds reservation sample not working

2006-04-10 Thread Paolo Bernardini
I was looking at the reservation sample that come with the flex data services, and I noted than unlike beta1, with beta2 when you drag to make a reservation the two combos displaying the time don't update to reflect the selection of the drag action. I checked the code and I didn't see any

Re: [flexcoders] fds reservation sample not working

2006-04-10 Thread Paolo Bernardini
()) ( t.getMinutes() ==_selectedDate.getMinutes())) { selectedIndex = dataProvider.length ; } } Let me know if that works.-JamesOn Mon, 2006-04-10 at 09:20 +, Paolo Bernardini wrote: I was looking at the reservation sample that come with the flex data services, and I noted than unlike beta1

Re: [flexcoders] fds reservation sample not working

2006-04-10 Thread Paolo Bernardini
= + _selectedDate.getMinutes());if ((t.getHours() == _selectedDate.getHours()) (t.getMinutes() == _selectedDate.getMinutes())){selectedIndex = dataProvider.length ;}} 2006/4/10, Paolo Bernardini [EMAIL PROTECTED]: Hi James thanks for the reply, but unfortunately it didn't work I got this error

Re: [flexcoders] Flexbuilder 2.0 missing mx:link ?

2006-03-26 Thread Paolo Bernardini
Hi Alex, I can tell you that FlexBuilderis showingthe code hint for the click event, but it doesn't show selectedChild for the ViewStack. Sorry to post it here but I didn't know where to report this bug. 2006/3/26, Alex Uhlmann [EMAIL PROTECTED]: Hi jim,The name Link changed to LinkButton in

Re: [flexcoders] Cairgnorm beta release?

2006-03-24 Thread Paolo Bernardini
Hi Alex, Like you said, there still is a selectedChild property on ViewStack component, but, then there is a bug in flexbuilder 2 beta 2, because when you start typing the only suggestion you get is selectedIndex. 2006/3/23, Alex Uhlmann [EMAIL PROTECTED]: Hi Oriol, There is still a

Re: [flexcoders] Flex2 :: Rounded Corner Fragments :: What is it!

2006-03-19 Thread Paolo Bernardini
Actually, it can get even worst then that, i you try the Style explorer app (http://weblogs.macromedia.com/mc/archives/Flex2StyleExplorer.html ) , and play with the panel Corner radius setting you see ugly it is. I hope the will fix this in the next beta release. 2006/3/19, Michael Schmalle

[flexcoders] word wrap in flexbuilder beta 2 editor?

2006-02-27 Thread Paolo Bernardini
is there a word wrap option in flexbuilder beta 2 code view editor? Like the one you can have in code view with flexbuilder 1.5, so that long line of code wrap down without having to scroll horizontally. -- Flexcoders Mailing List FAQ:

[flexcoders] problem with player detection and player 8.5

2006-02-07 Thread Paolo Bernardini
I have a problem with the detection of flash player, I had some pages that use the espress installation detection that check for player 8, after installing the player 8.5 when I open those pages it ask me to install the player even if the version that I'm check for is lower then 8.5. This is

Re: [flexcoders] problem with repeater displaying only one record

2005-11-14 Thread Paolo Bernardini
Has anyone had a chance to take a look at it? 2005/11/10, Paolo Bernardini [EMAIL PROTECTED]: I was testing a simple application to see if it was possible to havea custom cellRenderer that displays multple rows of data depending on the dataProvider's value. Then setting variableRowHeight=trueon

[flexcoders] problem with repeater displaying only one record

2005-11-10 Thread Paolo Bernardini
I was testing a simple application to see if it was possible to have a custom cellRenderer that displays multple rows of data depending on the dataProvider's value. Then setting variableRowHeight=true on the dataGrid that uses the cellRenderer I wanted to see if the rowHeight was adjusting to

Re: [flexcoders] FlexBuilder 2 alpha outline view dosen't show

2005-10-25 Thread Paolo Bernardini
ok, thanks Matt, I hope it will make it to the final release because is a very usefull tool 2005/10/24, Matt Chotin [EMAIL PROTECTED]: Outline view isn't supported in the alpha. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paolo

[flexcoders] FlexBuilder 2 alpha outline view dosen't show

2005-10-24 Thread Paolo Bernardini
I'm not able to see the outline view in flex builder 2, it says An outline is not available. It dosen't matter if is an mxml file or as. Any idea why? Yahoo! Groups Sponsor ~-- Most low income households are not online. Help bridge the digital

Re: [flexcoders] how can I change the default browser in Flexbuilder 2?

2005-10-18 Thread Paolo Bernardini
I've the opposite problem, my default browser is IE but I want to use FireFox (where I've installed the player 8.5), so I go To preference/WebBrowser and add a new browser pointing to the .exe for firefox. Restart flexbuilder, but when I try to launch the broser nothing appens. (it was working

[flexcoders] was anybody able to run this macromedia example properly?

2005-08-17 Thread Paolo Bernardini
I've tried the example at macromedia, http://www.macromedia.com/support/documentation/en/flex/1/cellrendere rs/cellrenderers13.html but it doesn't work properly. It behave in a strange way, basically as soon as you roll over a row of the tree the checkbox covers the disclosure arrow icon making

[flexcoders] tree with checkbox

2005-08-11 Thread Paolo Bernardini
I'm trying to implement a tree with a checkbox renderer, but so far with no luck. I've tried the example at macromedia, http://www.macromedia.com/support/documentation/en/flex/1/cellrendere rs/cellrenderers13.html but it doesn't work properly. It behave in a strange way, basically as soon as

Re: [flexcoders] Re: how to add cellRender CheckBox to Tree?

2005-08-10 Thread Paolo Bernardini
I'm trying to implement a tree with a checkbox renderer, but so far with no luck. I've tried the example at macromedia, http://www.macromedia.com/support/documentation/en/flex/1/cellrenderers/cellrenderers13.htmlbut it doesn't work properly. It behave in a strange way, basically as soon as

R: [flexcoders] horizontal numeric stepper

2005-06-05 Thread Paolo Bernardini
= layoutHeight - (h2 + h); StepTrack_mc._y = h; } simply override, and modify the positoin of next and prev button. - Original Message - From: Paolo Bernardini [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, June 04, 2005 9:39 AM Subject: [flexcoders] horizontal numeric stepper

R: [flexcoders] horizontal numeric stepper

2005-06-05 Thread Paolo Bernardini
= layoutHeight - (h2 + h); StepTrack_mc._y = h; } simply override, and modify the positoin of next and prev button. - Original Message - From: Paolo Bernardini [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, June 04, 2005 9:39 AM Subject: [flexcoders] horizontal numeric

[flexcoders] horizontal numeric stepper

2005-06-04 Thread Paolo Bernardini
Any idea how to implement an horizontal numeric stepper with left and right arrows instead of up and down ones. like this: 10 Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this group, send an email to:

R: [flexcoders] Cairngorm 0.99, JRun and Log4J

2005-05-19 Thread Paolo Bernardini
Thanks Alistair Finally Im able to see the cairngormstore example. However Im noting something strange, if I use the netConnectionDebugger that ship with flex, which I usually use to see the exachange of data between the server and the client, I dont see the data. This is what I

[flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread Paolo Bernardini
Hi Steven Could you explain the reason this new way of passing the command string in the addCommand in the ShopController: addCommand( ShopController.EVENT_GET_PRODUCTS, new GetProductsCommand () ); public static var EVENT_GET_PRODUCTS = getProducts; compare to the old cairngorm 0.95