Re: [flexcoders] how to add new event for button?

2007-08-27 Thread Carlo Gulliani
button, which was maded in flash, but it's in different swf's. I want to do new rule to all buttons. - Original Message From: Tracy Spratt [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, August 27, 2007 3:32:36 AM Subject: RE: [flexcoders] how to add new event for button?

Re: [flexcoders] how to add new event for button?

2007-08-27 Thread Carlo Gulliani
sorry, i forget say, it'squestion from as 2.0 and flash - Original Message From: Carlo Gulliani [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, August 27, 2007 10:07:15 AM Subject: Re: [flexcoders] how to add new event for button? button,

RE: [flexcoders] Play multiple SWF files in SWF loader (Detect SWF(SWFLoader) finish playing

2007-08-27 Thread Alex Harui
It depends on the SWF. Pure frame-based animation swfs can be checked for currentFrame = totalFrames. Anything that uses script-based animations requires an event from the script. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ary Sent:

RE: [flexcoders] Verify an Object in Memory.

2007-08-27 Thread Alex Harui
Not sure I understand. Do you want to know if a class had an instance made from it? I'd put a static variable like a counter in the constructor. Do you want to use keyboard to switch between a Flash App and Windows? Or between popups in a Flex app? Or use the mouse to switch Windows? Flex

RE: [flexcoders] tree display not refreshing

2007-08-27 Thread Alex Harui
In short, you can't use XMLList or Array manipulation, you must access children via the dataDescriptor so the Tree gets notifications of the changes (and use XMLListCollection or ArrayCollection methods). I hope to find a way to allow XMLList in Moxie, but no guarantees.

RE: [flexcoders] Printing having the mutliple PrintDataGrid

2007-08-27 Thread Alex Harui
You would use the example to print the first datagrid, then start over with the same PDG and different columns and dataprovider. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rajanjainflex Sent: Sunday, August 26, 2007 4:17 PM To:

Re: [flexcoders] tree display not refreshing

2007-08-27 Thread Toby Tremayne
Thanks for that, I'll try switching to manipulating the datadescriptor and see how it goes. Toby On 27/08/2007, at 16:30 , Alex Harui wrote: In short, you can't use XMLList or Array manipulation, you must access children via the dataDescriptor so the Tree gets notifications of the

RE: [flexcoders] filterFunction on ArrayCollection

2007-08-27 Thread Alex Harui
When does startFIlter get called? Can you post the entire call stack with the error? startFilter may be called before the result from the HTTPService. Add trace statements to startFilter and the result handler and see which one gets called first. From:

Re: [flexcoders] How to bind complex boolean values?

2007-08-27 Thread Mikhail Shevchuk
Wow, thanks much for sharing, Troy. 2007/8/24, Troy Gilbert [EMAIL PROTECTED]: It's actually much simpler than that. You were doing exactly the right thing in your very first try, you just needed to encode the ampersands as XML entities because you're in an XML file. Instead of you should

Re: [flexcoders] get class instance by property

2007-08-27 Thread Johan Öbrink
Also consider using a ModelLocator to store this list of persons. Have a look at Cairngorm - it helps. /J Derrick Anderson skrev: i think i am going to take your suggestion and use the person instances themselves as the dataprovider for the combobox, thanks for setting me straight! d.

[flexcoders] Re: Total Number of Items in a Tree

2007-08-27 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Depends on what number you're looking for. The total number of possible nodes or the total number based on what nodes are open I'm looking for the total number of nodes (branches and leaves), no matter whether they are

[flexcoders] TileList problems (thumbnails w/size switching enabled)

2007-08-27 Thread bjorn -
I've got a tilelist which is linked to an ArrayCollection of MyItems which each contain an image:Object. I've got a button that enables the user to switch thumbnail size. However, this messes scrolling up on the TileList. The rowHeight/columnWidth values in the TileList seem to be updated

Re: [flexcoders] Re: Total Number of Items in a Tree

2007-08-27 Thread bjorn -
Make a recursive count function, maybe. // pseudocode for tree based on an arraycollection function countNodes( ac:ArrayCollection ): int { var count:int = 0; for(var i:int=0; i ac.length; i++) { count++; if(ac[i].hasOwnProperty('children')) { count +=

[flexcoders] Background coloring in Scheduling Framework

2007-08-27 Thread gers32
Hi, I need to color the background of a ScheduleViewer component, each line with a different background color. BackgroundItem lets you do that for columns... but I can't find anything that'll let me color individual lines. Thanks, Chris.

[flexcoders] Re: Verify an Object in Memory.

2007-08-27 Thread Rodrigo Pereira Fraga
Excuses, but I expressed myself badly. Problem 1: -- I have a PopUp (myPopUpWindow), and only he can have, one instance. thus, I make: if (myPopUpWindow! = instancied) { showMyPopWindow; } Poblem 2: - What I need to make, is the navigation between windows (PopUp's).

[flexcoders] Invite for Bangalore Flex User Group meeting

2007-08-27 Thread Prayank Swaroop
If you cannot see this email properly, click herehttp://www.eventbrite.com/event/71308285 *Can you attend this event? Respond Herehttp://www.eventbrite.com/event/71308285 * *Bangalore Flex User Group Meeting* *Date* August 31, 2007 *Time* 5:00 pm - 7:00 pm *Hosted By Prayank Swaroop*

[flexcoders] Re: Unknown configuaration variable 'complier.keep-as3-metadata'

2007-08-27 Thread flex.fusion
Hi Neil, I am also facing same problem. Were you able to trace the cause of it? I will be helpful if you can reply to this. Thanks, Savan --- In flexcoders@yahoogroups.com, neil_durbin [EMAIL PROTECTED] wrote: I keep getting the error Unknown configuaration variable

Re : [flexcoders] Re: Problem extending TabNavigator class

2007-08-27 Thread Benoit Thiebault
I followed your advice and managed to position my button. First of all, I extended the tabBar class instead of the tabNavigator class. I added (via a rawChildren.addChild() method) my button to the tabBar and overrid the updateDisplayList() method to place the button. The position of the

Re: [flexcoders] Re: DataGrid with labelfunction + POJO

2007-08-27 Thread Jon Santos
Hi again. I have tried to make like you told me before : import bkn.pojo.Formasi; public function getInstansiNama(item:Object, column:DataGridColumn):String { var myPOJOFormasi:Formasi = Formasi(item); Alert.show(Instansi : + myPOJOFormasi.instansi); return PPP; } The value of the instansi :

[flexcoders] Remote Objects - a reflective way to determine class?

2007-08-27 Thread Libby
Does anyone know of a technique to determine the true class of an object returned via remoting when Flex only knows it as an Object? I have tried if(Object is ClassName) and if(Object instanceOf ClassName) and also tried various casting combinations but so far I cannot determine what my returned

Re: [flexcoders] Re: AIR vs DLL vs. External code?

2007-08-27 Thread Jeffry Houser
hank williams wrote: lol. You cant take my statement 100% literally. Yeah I know this is a programmers forum but how about allow for a little err... creative license. Fair enough. ;) Really only a handful of companies today make money selling software, and they include

Re: [flexcoders] Re: AIR vs DLL vs. External code?

2007-08-27 Thread Jeffry Houser
Fair enough, good point. I'd say 99.9% of my usage with Flex Builder / Eclipse is non-connected, though. Tony Alves wrote: Jeffry, What about the updates in Flex Builder? Updates check the internet. I do agree that not all apps are connected to the internet. Jeffry Houser wrote:

[flexcoders] Re: big question: Is it possible to send request to java class using HTTPService.

2007-08-27 Thread siva.flex
Hi Tracy, Thans for ur reply. Yes we can send request to jsp using url attribute of httpservice. Here my problem is , is it possible to send request directly to java class or is it possible to send request to mainservlet so it navigates the request to appropriate request handler.If possible

[flexcoders] Drag and drop for list items

2007-08-27 Thread flashcrow2000
Hi all, I have a problem (obviously). It's a bit hard to explain, but I'll do my best. So...I have a list item, and whenever I drag and drop one entry outside of the list, I want it to display the same animation as when I'm dropping the entry on the list ( or any other mxml element which support

Re: [flexcoders] Re: AIR vs DLL vs. External code?

2007-08-27 Thread hank williams
Software as a service feels like a move back to the 'dumb client' model of mainframes. Even if it does take off en masse, I don't expect it to replace traditional desktop apps. Naw dude, not at all. Connected or software as service doesn't have to mean bad terminal like software,

[flexcoders] How to set Scrollbars THICKNESS ?

2007-08-27 Thread Tadas Žiemys
Hello, I'm trying to make VScrollbar wider but cant find out a way to do this. I don't understand the principle how it should be done. As far as i could found myself there is a constant but as i can understand its impossible to change it. THICKNESS : Number = 16 [static] The width of a vertical

[flexcoders] Re: Event collision- is this a bug or expected behavior?

2007-08-27 Thread ben.clinkinbeard
bump --- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: I am noticing some odd behavior adding capture phase event listeners to TabNavigator. While trying to answer another question (http://tech.groups.yahoo.com/group/flexcoders/message/84929) I noticed that this

Re : [flexcoders] Re: Problem extending TabNavigator class

2007-08-27 Thread ben.clinkinbeard
You should be setting its position every time updateDisplayList() is called. Are you doing that? Ben --- In flexcoders@yahoogroups.com, Benoit Thiebault [EMAIL PROTECTED] wrote: I followed your advice and managed to position my button. First of all, I extended the tabBar class instead of

[flexcoders] Re: file upload max?

2007-08-27 Thread Abyss Knight
What kind of server side technology are you using? I think Apache and PHP default between 8 and 12mb, but you have to also take into account the script timeout of 30 seconds. If you're using IIS, the same kind of limitation applies. Though, I can't speak on LCDS or the like. - William --- In

[flexcoders] converting mxml data to xml code

2007-08-27 Thread siva.flex
Hi All, Anydody have the code to convert mxml data to .xml file. I have found this code in net. class XMLUtil { static function as2xml(obj: Object, nodeName: String) { var xml:XML=new XML(); xml.appendChild(xml.createElement(nodeName)); for (var i in obj) {

[flexcoders] Rollover event for Tree label

2007-08-27 Thread agoel_khs
Hi, I am having a tree with checkbox added as itemrenderer.Problem is that I need rollover effect only for label.Tree control by default uses the whole control for rollover.Is there any way to get rollover effect for the label alone,not for the whole node.

[flexcoders] html-wrapper Flex Ant Task

2007-08-27 Thread chuyler1
I've got two questions about using Ant to generate the html for our project. 1) Why isn't there a way to specify an external template folder? I searched this site and saw that people were re-compiling FlexAntTasks in order to get their template changes to work. Is this really the recommended

Re : Re : [flexcoders] Re: Problem extending TabNavigator class

2007-08-27 Thread Benoit Thiebault
Yes, the code is the following : override protected function updateDisplayList(w:Number, h:Number):void{ super.updateDisplayList(w,h); updateButtonPosition(); } public function updateButtonPosition():void { myButton.move(parent.width-40, 0); }

Re: [flexcoders] Re: file upload max?

2007-08-27 Thread Daniel Freiman
The official upload limit for the flash player is 100MB (see livedocs: flash.net.FileReference.upload()), but flash is known to send much bigger files successfully. Adobe just doesn't guarantee that it will work. Try searching the list archives for what people have gotten away with because this

RE: [flexcoders] Remote Objects - a reflective way to determine class?

2007-08-27 Thread Peter Farland
See: flash.utils.getQualifiedClassName() http://livedocs.adobe.com/flex/2/langref/flash/utils/package.html#getQua lifiedClassName() -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Libby Sent: Monday, August 27, 2007 8:50 AM To:

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

2007-08-27 Thread mariposasw
Was there ever a resolution to this problem?? I'm having the same problems with every app I generate using the CF app wizard. I'm using FB 2.01 with all the hotfixes. Any help would be appreciated. --- In flexcoders@yahoogroups.com, christophers1228 [EMAIL PROTECTED] wrote: This has been a

RE: [flexcoders] Re: DataGrid with labelfunction + POJO

2007-08-27 Thread Peter Farland
Make sure that you have registered a class alias for your ActionScript representation of the Formasi class. You can do so like this: package bkn.pojo { [RemoteClass[(alias=bkn.pojo.Formasi)] public class Formasi { ... } } You also need to make sure you have a reference to the Formasi

Re : Re : [flexcoders] Re: Problem extending TabNavigator class

2007-08-27 Thread ben.clinkinbeard
I think your scope is incorrect. Try this: myButton.move(this.width-40, 0); --- In flexcoders@yahoogroups.com, Benoit Thiebault [EMAIL PROTECTED] wrote: Yes, the code is the following : override protected function updateDisplayList(w:Number, h:Number):void{

[flexcoders] a little newbie problem

2007-08-27 Thread Gustavo Duenas
Hi Guys, I'm just doing something in flex and I'd like to know what am I doing wrongthe code is as following. I'm trying to set a changing background based on the date (days of the week) ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

Re: [flexcoders] converting mxml data to xml code

2007-08-27 Thread Daniel Freiman
Not working how? - Dan On 8/27/07, siva.flex [EMAIL PROTECTED] wrote: Hi All, Anydody have the code to convert mxml data to .xml file. I have found this code in net. class XMLUtil { static function as2xml(obj: Object, nodeName: String) { var xml:XML=new XML();

[flexcoders] Effect.EFFECT_START listener unable to pause() effect

2007-08-27 Thread ben.clinkinbeard
Is Effect.isPlaying lying to me? It returns true, but I am unable to pause() or otherwise affect said effect. If I call pause() after a short delay everything works as expected. How do I go about pausing/canceling an effect from its EFFECT_START listener? Thanks, Ben

[flexcoders] Re: Verify an Object in Memory.

2007-08-27 Thread Rodrigo Pereira Fraga
the problem to verify instancia in the memory already I solved, Thanks Alex!! \o/ but… somebody has idea of as can make the navigation? --- In flexcoders@yahoogroups.com, Rodrigo Pereira Fraga [EMAIL PROTECTED] wrote: Excuses, but I expressed myself badly. Problem 1: -- I

[flexcoders] Re: Effect.EFFECT_START listener unable to pause() effect

2007-08-27 Thread ben.clinkinbeard
I see that listening for TweenEvent.TWEEN_START allows me to do what I am trying to... is that how I need to do it? Ben --- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: Is Effect.isPlaying lying to me? It returns true, but I am unable to pause() or otherwise

[flexcoders] Re: a little newbie problem

2007-08-27 Thread candysmate
Gustavo, Try: if (now.day.toString() == 1 || now.day.toString() == 3 || now.day.toString() == 5) best, Graham

[flexcoders] What technologies allow you to run AS3 on the server side?

2007-08-27 Thread Bruce Hopkins
Hi all, Does anyone know of any technologies that all you to run Actionscript 3 on the server side? I'm a traditional Java/J2EE programmer, and I've become REALLY lazy when it comes to XML parsing now. The . and .. and .@ operators are really convenient mechanisms for parsing even the most

Re: [flexcoders] Re: a little newbie problem

2007-08-27 Thread Gustavo Duenas
thanks that was good, I did and It looks ok, Thanks. Regards Gustavo On Aug 27, 2007, at 10:57 AM, candysmate wrote: Gustavo, Try: if (now.day.toString() == 1 || now.day.toString() == 3 || now.day.toString() == 5) best, Graham GUSTAVO A. DUENAS Creative Director LEFT AND RIGHT

Re: [flexcoders] Re: AIR vs DLL vs. External code?

2007-08-27 Thread Jeffry Houser
hank williams wrote: Software as a service feels like a move back to the 'dumb client' model of mainframes. Even if it does take off en masse, I don't expect it to replace traditional desktop apps. Naw dude, not at all. Connected or software as service doesn't have to mean bad

Re: [flexcoders] What technologies allow you to run AS3 on the server side?

2007-08-27 Thread Jeffry Houser
There was an implementation of Server Side ActionScript a while back: http://www.adobe.com/support/flash/flashremoting/using_serverside_actions/ I don't know if it ever took off (I assume not), and I don't know if it was ever ypdated for AS3 (I assume not). ColdFusion's treatment of XML

[flexcoders] Flex 3 Runtime Error

2007-08-27 Thread Shaun
I'm trying to get a flex 2 app I wrote working as an AIR app, but I'm getting an error that appears to occur when the styles are changed for buttons in my app: I'm hoping someone else has run into this issue (and resolved it :)) or have an idea of what might be causing it. Many thanks, Shaun

Re: [flexcoders] Re: AIR vs DLL vs. External code?

2007-08-27 Thread Jeffry Houser
No arguments. ;) Tony Alves wrote: Hello Jeffry, I agree with you. I do not see a benefit of running a word processor in an online application unless it is maybe to edit some content in the application. I really do not want to run my word processor in a browser application

Re: [flexcoders] What technologies allow you to run AS3 on the server side?

2007-08-27 Thread Jon Bradley
I hear a new version of Flash Media Server is in the works that should support AS3. I don't know if that's slated to arrive this year though... cheers, jon On Aug 27, 2007, at 11:06 AM, Bruce Hopkins wrote: Hi all, Does anyone know of any technologies that all you to run Actionscript

RE: [flexcoders] Flex 3 Runtime Error

2007-08-27 Thread Alex Harui
Could be timing where the Button doesn't have a valid size yet. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shaun Sent: Monday, August 27, 2007 9:10 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex 3 Runtime Error I'm

[flexcoders] Re: Remote Objects - a reflective way to determine class?

2007-08-27 Thread Libby
Yeah, I tried that - it returns Object. --- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED] wrote: See: flash.utils.getQualifiedClassName() http://livedocs.adobe.com/flex/2/langref/flash/utils/package.html#getQua lifiedClassName() -Original Message- From:

[flexcoders] Re: Flex 3 Runtime Error

2007-08-27 Thread Shaun
That's probably it. If I force my way through the errors and then the app runs perfectly after that, even if I change the styles again. Now I'm trying to figure out which buttons are causing the problem, but I can't get the debugger to step into the code at the call stack location. It always

[flexcoders] accessing ArrayCollection in class

2007-08-27 Thread dylan_r
Hello, I'm new to actionscript programming so this is certainly a newbie question. I'm trying to access an array from the mxml file in a loaded actionscript package. Not sure how to bind the data between the two. mxml: ... Model id=pic_res source=piclist.xml / Model id=links_res

[flexcoders] setting the icon of a Button using ActionSctipt at Run Time

2007-08-27 Thread sk_acura
Hi all, I would like to set the Icon of a Button to an Image and i would like to do this in ActionSctipt rather than in mxml I would be passing a data Object whose image Property is the path of the png file that i woule like to display as icon for the Button.. My Custom Button class has

[flexcoders] Issue with transactions on Data Management Service

2007-08-27 Thread mancer82
Hello, I'm actually creating an application for a library and I'm running it on JBoss 4.2.0.GA with underlying DB2 8.2. The application relies on a POJO + Hibernate3 server backend, communicating with the Flex client thru Data Management Service destinations. The problem I get is the following;

RE: [flexcoders] Re: Verify an Object in Memory.

2007-08-27 Thread Alex Harui
I still don't understand. If you only have one popup, what should back/forward do? Please investigate the third-party UrlKit for back/forward. In Flex 3, it will be BrowserManager. Feel free to ask questions both in english and follow with a copy in your native language. There are some good

[flexcoders] new Date() not producing current date

2007-08-27 Thread Jurgen Beck
I am tracking down the source of an issue with the Date() class. It seems that the following line should be producing today's date: var now:Date = new Date(); However, when running this today (8/27/2007), the resulting date object contains values for 7/1/2007. Has anyone run into this issue?

RE: [flexcoders] Re: Event collision- is this a bug or expected behavior?

2007-08-27 Thread Alex Harui
capture phase listeners cannot assume the type since child objects may be conversing with the same event type . From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Monday, August 27, 2007 6:26 AM To:

RE: [flexcoders] How to set Scrollbars THICKNESS ?

2007-08-27 Thread Alex Harui
If you skin with larger buttons, it should get thicker (but not thinner). From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tadas Žiemys Sent: Monday, August 27, 2007 6:21 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to set

[flexcoders] Re: What technologies allow you to run AS3 on the server side?

2007-08-27 Thread Raúl Riera
I am curious about, isn't the whole point of running the code on the client side is the whole point of making Flex applications? Why would you want to do this? (again, just curious, I'm not trying to rain on your parade) --

RE: [flexcoders] Re: Remote Objects - a reflective way to determine class?

2007-08-27 Thread Peter Farland
Assuming that a typed object was returned via AMF, this means that the Flash Player did not find the class definition for the alias reported in the typed object in the AMF response. Ensure that the alias registered for your remote object is correct and that it is imported and a dependency exists

RE: [flexcoders] Play multiple SWF files in SWF loader (Detect SWF(SWFLoader) finish playing

2007-08-27 Thread Ary
ah Yes i try that, yes mostly its frame based animation (tween) not script based animation thx :) --- Alex Harui [EMAIL PROTECTED] wrote: It depends on the SWF. Pure frame-based animation swfs can be checked for currentFrame = totalFrames. Anything that uses script-based animations

[flexcoders] Re: new Date() not producing current date

2007-08-27 Thread candysmate
--- In flexcoders@yahoogroups.com, Jurgen Beck [EMAIL PROTECTED] wrote: I am tracking down the source of an issue with the Date() class. It seems that the following line should be producing today's date: var now:Date = new Date(); However, when running this today (8/27/2007), the

Re: [flexcoders] Re: What technologies allow you to run AS3 on the server side?

2007-08-27 Thread [EMAIL PROTECTED]
flash media server does AS2 Well it seperates the MVC model further; imagine you create an app and all the scripting is server-side; it allows you to make changes of the logic easily without worrying what versions might be floating around... Course since everything is web delivered the

Re: [flexcoders] Re: new Date() not producing current date

2007-08-27 Thread Jurgen Beck
Yup, the system date is correct, as a trace on the 'now' Date object shows the correct information, but the individual properties for month and day of the now Date object (now.month and now.day) are showing '7' and '1' respectively. I'm sure I'm not seeing something obvious... Jurgen

[flexcoders] Re: Can I have Flex force the browser to resize?

2007-08-27 Thread bbeban7
Hi Tracy, I have Googled quite a bit (I never ask a question here until after I have done so), and I couldn't find anything that actually worked. Could you possibly paste in a link or two? Simply telling me you found something isn't all that helpful. Thanks, Bob --- In

[flexcoders] Re: new Date() not producing current date

2007-08-27 Thread candysmate
--- In flexcoders@yahoogroups.com, Jurgen Beck [EMAIL PROTECTED] wrote: Yup, the system date is correct, as a trace on the 'now' Date object shows the correct information, but the individual properties for month and day of the now Date object (now.month and now.day) are showing '7' and '1'

Re: [flexcoders] new Date() not producing current date - Clarification

2007-08-27 Thread Jurgen Beck
Actually, it does produce today's date, but the individual properties of the Date object are not showing the correct values. Example: now.month shows a value of 7 now.day shows a value of 1 Doing a trace on 'now' though shows Mon Aug 27 12:59:18 GMT-0500 2007 Can anyone confirm this

[flexcoders] WebService Basic Authentication over HTTPS?

2007-08-27 Thread chuyler1
I need to connect to a .NET WebService over SSL which uses Basic Authentication. I have tried the setCredentials function but it doesn't work. Are there plans to support this feature? Is there a work-around? I would prefer to get the credentials from the user through a login view in Flex and

Re: [flexcoders] Re: new Date() not producing current date

2007-08-27 Thread Jurgen Beck
Thanks, Graham. As always, it helps reading the documentation carefully. :-) I didn't see the zero-based mention of the properties... Cheers, Jurgen candysmate wrote: --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, Jurgen Beck [EMAIL PROTECTED] wrote: Yup, the

[flexcoders] Re: Event collision- is this a bug or expected behavior?

2007-08-27 Thread ben.clinkinbeard
Thanks Alex, so I guess anytime we want to fully support capture phase listeners we should try to ensure a unique value for our event const values? Is there any reason the framework did not try to use unique values for event types? Thanks, Ben --- In flexcoders@yahoogroups.com, Alex Harui

[flexcoders] Re: Help

2007-08-27 Thread Marcio Napoli
Hey Alex, As any change in DataGrid will modify my XML everything could be changed in XML. However my XML has the following structure: date, event and user and this nodes are DataGridColumn. So when i change one cell in DataGrid the event changeData is fired. Could u help me ? Thanks,

[flexcoders] mx:ComboBox and Changing States?

2007-08-27 Thread digitaljedis
I'm absolutely stumped on something so simple and I want to see if you guys could help me out... In short, I've got a ApplicationControlBar with several ComboBoxes being placed into it. Each has it's own 4-5 entries being pulled via a dataprovider, but how do I go about changing the state upon

[flexcoders] Re: Verify an Object in Memory.

2007-08-27 Thread Rodrigo Pereira Fraga
Hi!! heehhe.. Excuses for my English. =/ What I needed I am to have buttons Back the same and Forward made in flex, but with BrowserManager, solves my problem. Thanks a lot Friend! --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I still don't understand. If you

RE: [flexcoders] WebService Basic Authentication over HTTPS?

2007-08-27 Thread Peter Farland
Despite what the ASDoc say, WebService.setCredentials() is only for authenticating with LCDS (nee FDS) itself when making use of a destination registered with the Proxy Service. WebService.setRemoteCredentials() is only for LCDS too, it's what is used by the Proxy Service to handle any HTTP Basic

RE: [flexcoders] Re: Help

2007-08-27 Thread Alex Harui
Try tracing using toXMLString(). From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Marcio Napoli Sent: Monday, August 27, 2007 11:36 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Help Hey Alex, As any change in DataGrid

RE: [flexcoders] Re: Event collision- is this a bug or expected behavior?

2007-08-27 Thread Alex Harui
Too hard to manage. Can you imagine having to apply to us for an event name in order to prevent possible collisions? You could decorate names, but these names show up in MXML, so that's not fun mytag benclinkinbeardChange=.. Capture phase is rarely used. My handlers look like:

RE: [flexcoders] setting the icon of a Button using ActionSctipt at Run Time

2007-08-27 Thread Alex Harui
Button does not handle external icons. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sk_acura Sent: Monday, August 27, 2007 10:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] setting the icon of a Button using ActionSctipt at

[flexcoders] calling a function in another component ?

2007-08-27 Thread steve
In BooksMain.mxml I have defined a public function 'filterbooks' In components/BookCovers.mxml I have: mx:ComboBox id=bookcategory change=filterbooks() I get error: 1180: Call to a possibly undefined method filterbooks. if I change it to: mx:ComboBox id=bookcategory

[flexcoders] Selected Style for LinkBar

2007-08-27 Thread boy_trike
OK, I must be too stupid to find it, but... I want to change the color of the ACTIVE item in a LinkBar. I see styles for SELECTED (clicked) but I can NOT find the way to change the style for the active item. Thanks Bruce

[flexcoders] Re: WebService Basic Authentication over HTTPS?

2007-08-27 Thread chuyler1
Will the method of using SOAP headers still allow for basic session management by the .NET WebService? The server-side guys are really pushing the use of Basic Authentication but it sounds like this approach will mean coding specific authentication functions within the WebService, correct?

RE: [flexcoders] Re: WebService Basic Authentication over HTTPS?

2007-08-27 Thread Peter Farland
I'd guess that if you lock down a WebService's soap address location URL to cause an HTTP Basic Authentication challenge then it won't matter what SOAP headers a particular operation is capable of processing as the POST won't get far enough to be able to see the SOAP data. While it is technically

[flexcoders] Re: How to set Scrollbars THICKNESS ?

2007-08-27 Thread Abyss Knight
Not sure what the inheritance is on VScrollBar but could you extend it and override the constant? - William --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: If you skin with larger buttons, it should get thicker (but not thinner).

Re: [flexcoders] calling a function in another component ?

2007-08-27 Thread Sebastian Zarzycki
This does not work this way. First time you are trying to access method that is not know in this file (object). You cannot execute methods that are defined elsewhere, as there isn't such thing as global declaration. Second time you are trying to access method from proper file (object), but in

[flexcoders] propage events thru a window object

2007-08-27 Thread Matthew Ganz
how can i place my display object in the event chain so it receives events thru a window component? basically, i have a map component that i need to move around and when i mouse up on top of another object, like my pop up window, i want the map to receive the event. thanks for any tips. --

RE: [flexcoders] Issue with transactions on Data Management Service

2007-08-27 Thread Jeff Vroom
I think that somehow you have got two versions of the UserTransaction class in your classpath. Maybe you followed the tomcat instructions for installing JOTM? If so, that is not necessary (and will break) jboss. Here's a simple JSP you can use to debug this problem without DS in the way:

Re: [flexcoders] Re: What technologies allow you to run AS3 on the server side?

2007-08-27 Thread Bruce Hopkins
No problem, Yes, Flex enables me to create very rich internet applications that work on the client side, but some things need to processed on the server side... ...like charging a credit card :-) Bruce On 8/27/07, Raúl Riera [EMAIL PROTECTED] wrote: I am curious about, isn't the whole

[flexcoders] Re: Using [Event...] in Custom Classes

2007-08-27 Thread ben.clinkinbeard
Thanks Gordon, I went ahead and filed a bug. For anyone that would like to vote for it here is the url: http://bugs.adobe.com/jira/browse/FB-9088 All the more reason to let us do [Event(name=MyEventClass.DO_STUFF, type=MyEventClass)]! :) Ben --- In flexcoders@yahoogroups.com, Gordon Smith

[flexcoders] Re: Event collision- is this a bug or expected behavior?

2007-08-27 Thread ben.clinkinbeard
Fair enough, I didn't really think about MXML ugliness. Thanks for sharing your approach, I was leaning that way but its good to get some validation. Ben --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Too hard to manage. Can you imagine having to apply to us for an

[flexcoders] Re: Displaying an image stored in a database

2007-08-27 Thread triggersoftware
If you're getting it through an object-serialization framework (AMF, etc.), Yup, that's what I'm doing. then you may be receiving it already as a ByteArray, in which case you need to load it with a Loader instance. Where could I find information about this? I've found the flex documentation

RE: [flexcoders] accessing ArrayCollection in class

2007-08-27 Thread Alex Harui
Not sure I understand. ArrayCollection id=theLinks .. defines a new variable in your MXML file. If you want to get to the one in DisplayShelf, you might want to just bind it directly? local:DisplayShelf theLinks={theLinks.source} From:

RE: [flexcoders] Rollover event for Tree label

2007-08-27 Thread Alex Harui
I think you'll have to capture rollOver in the renderer and call stopImmediatePropagation if you are over the icons. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of agoel_khs Sent: Monday, August 27, 2007 6:54 AM To:

RE: [flexcoders] Drag and drop for list items

2007-08-27 Thread Alex Harui
Maybe by making everything else a valid droptarget? Or do you want the no-drop feedback during mousemove? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flashcrow2000 Sent: Monday, August 27, 2007 6:21 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] TileList problems (thumbnails w/size switching enabled)

2007-08-27 Thread Alex Harui
If you explicitly set the rowCount, columnCount we try to honor that. If you instead just fix width/height (480x400), then we'll recalc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bjorn - Sent: Monday, August 27, 2007 1:14 AM To:

[flexcoders] lcds 2.5.1, Map Java-to-AS serialisation make Integer values null

2007-08-27 Thread den.orlov
My Java server side, service and resulting Event object: public class StatsEventRepresentationServiceImpl { public ListEvent getStats(Date start, Date end) {...} } public class Event { public Date ts; public MapType, Integer typeFacts; ... } remoting-config.xml: service

[flexcoders] lcds 2.5.1, Map Java-to-AS serialisation make Integer values null

2007-08-27 Thread den.orlov
My Java server side, service and resulting Event object: public class StatsEventRepresentationServiceImpl { public ListEvent getStats(Date start, Date end) {...} } public class Event { public Date ts; public MapType, Integer typeFacts; ... } remoting-config.xml: service

[flexcoders] Re: wmode - determining value?

2007-08-27 Thread Jason The Saj
Much obliged...that let me get the value. Might I inquire if you are familiar with embedding a .swf file into a Flex app and pass it flashvar parameters or set internal values. The swf is also generated via Flex.

[flexcoders] Re: Making custom class data global

2007-08-27 Thread donvoltz
Hi Tony, Thank you for your response. I did follow your suggestion about looking for other examples on the web of singleton classes, however, I was unable to find anything that went into details about this. I have been able to gain a general understanding of this design pattern, but am having

  1   2   >