[flexcoders] Re: Pointers

2010-01-30 Thread Flex
I have some code which lets you call a function on focus out or enter for every changed item and then do post processing...but its far too big to post and not sure how to put it on the yahoo group... Web Admin FlexDownloads.com --- In flexcoders@yahoogroups.com, jamesfin

[flexcoders] Re: Change the color of the gray disabled background for PopUpManager

2010-02-01 Thread Flex
Yes there is. You can put this in the CSS in the global style global { modal-transparency: 0.65; modal-transparency-color: #00; modal-transparency-blur: 0; } The modal transparency defines the transparency of the background when popup is active, the color defines the

[flexcoders] Re: Override FileReference Class

2010-02-01 Thread Flex
It can be done, but it does not have much to do with flex. The server side that sends the file can decide what name to give the file. So in php it would be something like header('Content-Disposition: attachment; filename=export.csv') When you do a navigateToUrl from Flex to the url for file

[flexcoders] Re: Loading XML

2010-02-03 Thread Flex
I can think of 2 possible causes (which may or may not be true in your case) 1. Your project is not deployed on a web server and you are using HTTP to load the xml file...that will cause a security error even though you can load images by specifying source 2. The xml is on some other domain

[flexcoders] Re: Problems changing labels in MenuBar menu items in real time

2010-02-03 Thread Flex
Try calling the invalidate methods of MyMenuBar instead of the enable toggle to false and then true. Also see if using an XMLListCollection instead of XMLList as the dataprovider helps. Web Manager FlexDownloads.com --- In flexcoders@yahoogroups.com, hernanojuel hernanoj...@... wrote: Hi

[flexcoders] Re: file saving problem

2010-02-03 Thread Flex
I believe it is possible...there is a component at http://www.flexdownloads.com/#view=detail;vstr1=36 which coverts flex a datagrid to CSV/Excel or any datagrid input to a delimitted format. You have to use a server side echo utility...usually less than 10 lines of server side code

[flexcoders] Re: Look for Windows xp skin for Flex 3?

2010-02-04 Thread Flex
http://www.scalenine.com/gallery/ has VistaRemix and Wibdows classic skin. WebManager FlexDownloads.com --- In flexcoders@yahoogroups.com, markflex2007 markflex2...@... wrote: Hi, I am looking for Windows xp skin for Flex 3, Adobe have one but the download URL doesn't work. Do you

[flexcoders] Re: Credit Card number encryption

2010-02-11 Thread Flex
don't want to get into that complication and we want the shoppers to feel secure about there purchase. Have you considered using those? Flexdownloads.com has those integration components for flex. You can also evaluate using Credit card acceptance thru paypal. We don't have any integration

[flexcoders] Re: Null pointer exceptions in call from Flex

2010-02-12 Thread Flex
Hi Tom, Since it apparently happens randomly, it seems it depends on the data that is being passed from Flex to CF and that can vary depending on user input or selection. So, it seems some combination of this data is not loved by the CFASSerializer in the AMF gateway. I think you will have

[flexcoders] Re: Obtaining rendered text from a DataGrid

2010-02-12 Thread Flex
Sorry to hear your posts get unanswered. I can only suggest a 'try'...did you try using the datagrid's indextoitemrenderer method instead of creating a new item renderer... I have seen something similar in the DataGrid to Excel component on Flexdownloads.com but there the exercise was limited

[flexcoders] Re: Multiple conditions in a case (switch/case)

2010-02-14 Thread Flex
Did you try case kids,siblings: comma separated instead of ||? Web Manager FlexDownloads.com --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: I feel stupid for not knowing this, but I guess its never come up. How do you do multiple conditions on a case statement in a

[flexcoders] Re: dynamically loading cssStyle text into Application?

2010-02-14 Thread Flex
for this, and cant do the CSS/compiled CSS skinning. Thanks for any help you can offer. Best regards, Vipin --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote: parseCSS only works for text fields (See http://livedocs.adobe.com/flex/3/langref/flash/text/StyleSheet.html

[flexcoders] Re: how to stretch an image? REFdn3045277632

2010-02-15 Thread Flex
Just use backgroundSize=100% in the application mxml...see below mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute backgroundImage=leather.jpg backgroundSize=100% Web manager FlexDownloads.com --- In flexcoders@yahoogroups.com, dennis den...@... wrote: Hello guys.

[flexcoders] Re: SDK 3.5 An unknown item is declared as the root of your MXML document

2010-02-16 Thread Flex
/2006/mxml; / (defaults the namespace) you will see that error in design view. Web Manager Flexdownloads.com --- In flexcoders@yahoogroups.com, mitek17 mite...@... wrote: Hi everybody! I am trying to switch to Flex SDK 3.5(a) and Design View goes haywire: https://bugs.adobe.com/jira/browse

[flexcoders] Re: Why most Flex Developer job ads ask now for Knowledge in Java??

2010-02-17 Thread Flex
I think that is because flex is now making inroads into the enterprise and Java is one of the big languages for big enterprises. SAP Business objects product XCelsius is based on Flex and has come with an SDK that lets you integrate Flex components as BOBJ components for dashboarding. SAP

Re: [flexcoders] Component Data Calls

2010-02-23 Thread Flex
etc in the main app so we gavce up. A pity since other than that we even got the back browser button to work with modules. We are hoping that Flex 4 will make it work better. Don't get me worng...I am not criticizing Flex in any way but it is just not easy to use Modules AND it does seem to have

[flexcoders] Re: File Upload Modules

2010-02-23 Thread Flex
Did you try using an absolute URL for server file upload url as opposed to relative paths? I am not sure what url you are loading the module from relative to web root and te same realtive paths as in your original app may not work. Web Manager Flexdownloads.com --- In

[flexcoders] Re: Strategies for switching between testing and deployment addresses

2010-02-23 Thread Flex
Using relative url's if you are not going cross-domain may be simpler if your application permits. Web Manager FlexDownloads.com --- In flexcoders@yahoogroups.com, Mike msl...@... wrote: I cover this issue in detail in my book (http://slinnbooks.com/books/serverSide), with code examples and

[flexcoders] Re: Pb with mx:image and Path on server

2010-02-23 Thread Flex
It looks like you are using ../ which means go up one directory and based on what you describe for you app structure that is not true, since Images folder is a subdirectory of your swf root. Try this.. mx:image source=Images/myImg.jpg/ also ensure that your directory name starts with an

RE: [flexcoders] Proper way to ensure components in a different state are created

2010-09-01 Thread flex
exists in NOTES state and is not created yet I know this is because of the Flex invalidation cycle and I'm aware I could use databinding and I know I could use callLater. But if I needed to create the components immediately for only the state I'm going to how would I do that? Custom Component: Group

RE: [flexcoders] Samsung Galaxy Tab 10.1 ?

2011-11-11 Thread flex
I just did a prototype app for a galaxy 10.1 and it worked nicely. -D From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Csomák Gábor Sent: Friday, November 11, 2011 2:34 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Samsung Galaxy Tab 10.1 ?

[flexcoders] Need to filter UTF-8 characters from string

2010-03-09 Thread flex flex
Hello All, I have a string of which contains lots of special characters from different standerds. I want to filter the string and want only those characters which are supported by UTF-8. Does anyone have any idea for this? I have a sample string as-

Re: [flexcoders] Resize bug?

2006-04-03 Thread Flex Coders
Hi Jonathan,We have discovered, that this is a problem with Firefox and we have logged a bug in Bugzilla.https://bugzilla.mozilla.org/show_bug.cgi?id=332287 ThanksRaghunath Rao ([EMAIL PROTECTED])On 3/2/06, Flex Coders [EMAIL PROTECTED] wrote:Hi Jonathan, I tested this on the following

RE: [flexcoders] Re: Remoteobject help

2006-08-15 Thread flex-guitar
:[EMAIL PROTECTED]On Behalf Of Douglas KnudsenSent: Wednesday, August 09, 2006 5:02 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: Remoteobject help old thread but i just experienced this. Reason I had the issue was I failed to set up my Flex project correctly! You have

RE: [flexcoders] Re: Remoteobject help

2006-08-16 Thread flex-guitar
, point to the war folder and not the web-inf itself {jrun4-home}/servers/{serverInstance}/cfusion-ear/cfusion-war/ . João Fernandes On 8/9/06, flex-guitar [EMAIL PROTECTED]learning.com wrote: I've been trying to figure this out myself. Do you need FDS

[flexcoders] Emails take over a day to post - did someone say they could fix this?

2006-08-16 Thread flex-guitar
Hello, My posts are taking between 1.5 to 7 days to make it to the list. I thought one of the moderators said to let them know and they could fix this, but I couldn't find the message that said who to contact. Is there someone who can correct this? Many thanks, Derek -- Flexcoders Mailing

Re: [flexcoders] Changing mx:Application's width during runtime

2006-11-06 Thread Flex Learner
Hi All, I've a similar requirement, but can we change the size of application using AS ? . Any ideas for changing the size of application when modules (Flex 2 Beta) are loaded . As observed, we can change the Flash size using js in the embedded HTML Thanks Joseph On 10/30/06, Igor Costa

Re: [flexcoders] Minimum size of a Flex 2.0 application

2006-11-06 Thread Flex Learner
Thanks for your responses. I tried optimize=true, but that does not reduce the size (remains at 120K). Robert, I did not understand your reply. I do want to use Flex with mx:application (or it's AS equivalent) as the root tag. On 10/31/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 31

Re: [flexcoders] Re: Minimum size of a Flex 2.0 application

2006-11-07 Thread Flex Learner
By flash file generator, i meant that i use Flex Builder tolayout all the controls (texboxes, images etc) , events , logic etc- since i'm comfortable with mxml (obviously, i'm not a legacy Flash developer) and the generated swf is hosted on a HTML page. There's no Flex server. Seems like core

[flexcoders] Doubt about DataGrid and XML

2005-06-09 Thread flex scripter
My code looks like this :?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml mx:Model id=temp source=xml_src.xml/mx:Modelmx:DataGrid id=dg dataProvider={temp.employee}//mx:Applicationand in my XML file if I have employees employee name =Christina

[flexcoders] Doubt about XML and DataGrid

2005-06-09 Thread flex scripter
?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx= http://www.macromedia.com/2003/mxml mx:Model id=temp source=xml_src.xml/mx:Modelmx:DataGrid id=dg dataProvider={ temp.employee}//mx:Applicationand in my XML file if I have employees employee name =Christina Coenraets phone =555-219-2270

Re: [flexcoders] Doubt about DataGrid and XML

2005-06-10 Thread flex scripter
@yahoogroups.com] On Behalf Of flex scripterSent: Thursday, June 09, 2005 3:26 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Doubt about DataGrid and XML My code looks like this :?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx= http://www.macromedia.com/2003/mxml mx:Model id=temp

[flexcoders] RemoteObject handling 1 method

2006-08-30 Thread Flex Coders
With a RemoteObject, I have two different services that I need to call. There is a 1-to-1 relationship between a RemoteObject and its result handler. What logic can I use in my result handler to determine which method was called on the remote object? Pete

RE: [flexcoders] Finding the root clip + getting the URL

2006-09-02 Thread flex-guitar
@yahoogroups.comSubject: Re: [flexcoders] Finding the root clip + getting the URL Thanks John,That definitely works, although I was curious how to do this using non-Flex API calls. I figured out that part of my problem is that at creationComplete(), the Application is not added

RE: [flexcoders] Flex jobs

2006-09-22 Thread flex-guitar
Hello Sri, You should probably start by working throughthe'Quick Start Tutorials'in Flex Builder. They are in the Tutorials and Help section of the Flex StartPage.What you need to learn will come clear as you see what Flex can do and what you want to do with it. You can do a lot

RE: [flexcoders] html params

2006-09-24 Thread flex-guitar
AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] html params I would like flex application to read the params sent from the HTMLcode e.g.param name="movie" value="abc.swf?myID=100" /How do I access this parameter myID in flex code?__ NOD32 1.1771 (2006

[flexcoders] rowCount = {dataProvider.length}

2006-09-29 Thread flex-guitar
Hello everyone, I'm trying to set several ComboBoxs to show their dropdown without scrolling. There are a few posts in the archive suggesting to set the rowCount to the dataProvider.length : mx:ComboBox id=MyCombo dataProvider={MyDataProvider} rowCount={dataProvider.length}/ but I get an

RE: [flexcoders] rowCount = {dataProvider.length}

2006-10-01 Thread flex-guitar
L PROTECTED]ups.com [mailto:[EMAIL PROTECTED]ups.com] De lapart de flex-guitarEnvoyé : vendredi 29 septembre 2006 15:57À : [EMAIL PROTECTED]ups.comObjet : [flexcoders] rowCount = {dataProvider.length}Hello everyone,I'm trying to set several ComboBoxs to show their dropdown withoutsc

RE: [flexcoders] sprites in MXML

2006-10-10 Thread flex-guitar
I've had trouble with this as well. I ended up putting a UIComponent in the Canvas and adding children to it instead of to the Canvas. I don't know why Canvas throws an error, since it is a subclass of UIComponent, but it does. HTH, Derek -Original Message-From:

[flexcoders] Including one swf file from another (crossdomain)

2006-10-11 Thread Flex Learner
Hi, Can anyone please post an example of including an swf from another swf – where the 2 files are in different domains. The simplest way I could think is to have an mx:Image source="www.xyz.com/a.swf" / - but this gives a security issue stating : SecurityError: Error #2047: Security

RE: [flexcoders] Re: sprites in MXML

2006-10-14 Thread flex-guitar
n 10/10/06, flexlearner flexlearner@yahoo.co.in wrote: No not in canvas only..My general question is if at all we have to use sprites in our mxmlfile..how should we do it.. what will the approachRegards,fl--- In [EMAIL PROTECTED]ups.com, "flex-guitar" [EMAIL PROTECTED] wro

[flexcoders] Re: Including one swf file from another (crossdomain)

2006-10-16 Thread Flex Learner
Answering my own question..the solution was to add : Security.allowDomain(www.xyz.com); in the loader file . But i'm now having other issues when the include happens. On 10/11/06, Flex Learner [EMAIL PROTECTED] wrote: Hi, Can anyone please post an example of including an swf from another

[flexcoders] Stack Overflow in swf to swf include

2006-10-17 Thread Flex Learner
HI, I'm trying to include an swf file (generated from FlexBuilder) within another swf file using mx:image. The included file is located on a different server, and the include works fine. Now, if a HTTPService is added to the included file, the call fails with the following exception. Error:

Re: [flexcoders] Stack Overflow in swf to swf include

2006-10-18 Thread Flex Learner
]ups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of Flex LearnerSent: Tuesday, October 17, 2006 2:45 PMTo: [EMAIL PROTECTED] ups.comSubject: [flexcoders] Stack Overflow in swf to swf include HI, I'm trying to include an swf file (generated from FlexBuilder) within another swf file using

[flexcoders] Minimum size of a Flex 2.0 application

2006-10-30 Thread Flex Learner
Hi, What's the lightest Flex 2.0 app we can get ? . An empty app with just an mx:Application tag weighs in at 120 KB. It'll be great if there are any compiler options we can use to minimize this further. I'm using Flex as a Flash file generator that'll be embedded into a HTML page

Re: [flexcoders] Resize bug?

2006-03-02 Thread Flex Coders
Hi Jonathan,I tested this on the following browsers with tabs and got the following resultsFirefox 1.5.0.1 - Bug reproducedIE 7.0 beta - Cannot reproduceMaxthon - Cannot reproduce Netscape 8.0.3.3 - Bug reproducedMorover this happens for both FLEX swfs as well as any ordinary Flash Movie. So

Re: [flexcoders] DateField and DateFormatter issue.

2006-03-03 Thread Flex Coders
Web site design development Computer software development Software design and development Macromedia flex

Re: [flexcoders] Character input in a form : strange issue?

2006-03-03 Thread Flex Coders
Hi,I will try to investigate this issue on Flex1.5, but this does not reproduce on Flex2.0:)ThanksRaghuOn 3/2/06, Barrau Antoine [EMAIL PROTECTED] wrote:Hi,i'm currently experiencing a strange issue with flex 1.5i've made the following simple test :mx:Accordionmx:Formmx:FormItemmx:TextInput

Re: [flexcoders] Re: Why does my Tree Control Vertically scrolls on its own ?

2007-12-19 Thread Flex Consultant
Hi Sean, I am a flex consultant Do you need a resource for flex project? Thanks Sam helihobby [EMAIL PROTECTED] wrote: I was doing ... DragManager.acceptDragDrop(target); But why would this screw it up ? Regards, Sean. --- In flexcoders@yahoogroups.com, helihobby

[flexcoders] orkut - Invitation to join from devang Flex

2008-02-25 Thread devang Flex
at which you received this note is entered into your orkut profile. That way, you'll automatically be connected to all of your friends. This invitation was sent on behalf of devang Flex ([EMAIL PROTECTED]). You can block all orkut users from sending you email by visiting: http://www.orkut.com

Re: [flexcoders] Re: How to access properties of symbols in loaded SWF?

2008-06-30 Thread Flex Frenzy
Correct me if I'm wrong, but wouldn't Degrafa be the best tool for that? from ScaleNine.com/blog: Degrafa is not Adobe, but every project I work on gets Degrafa added to it. Why? Because bitmaps and static vector artwork can only go so far. I make 80-90% of my skins in Degrafa. This allows

Re: [flexcoders] File uploading and passing string information

2008-06-30 Thread Flex Frenzy
information to varify user information. Can this be done? I am using the example from http://www.dgrigg.com/post.cfm/08/02/2007/Flex-and-Flash-file-uploading-with-return-data Here is my code (that I took) ?xml version=1.0 encoding=utf-8? !-- Derrick Grigg [EMAIL PROTECTED] http://www.dgrigg.com created

Re: [flexcoders] File uploading and passing string information

2008-07-01 Thread Flex Frenzy
to varify user information. Can this be done? I am using the example from http://www.dgrigg.com/post.cfm/08/02/2007/Flex-and-Flash-file-uploading-with-return-data Here is my code (that I took) ?xml version=1.0 encoding=utf-8? !-- Derrick Grigg [EMAIL PROTECTED] http://www.dgrigg.com created

Re: [flexcoders] How to load an image using mx:Loader

2008-07-01 Thread Flex Frenzy
I'm not sure how much you know about Flex or Actionscript, so i decided to just give some example code: !--THIS IS THE IMAGE PORTION-- mx:Image id=myImage source=pic.jpg/ !--AND THIS IS THE ACTIONSCRIPT EMBEDED IN THE MXML-- mx:Script ![CDATA[ private var

Re: [flexcoders] THIS IS ABSOLUTELY NUTS

2008-07-01 Thread Flex Frenzy
Jake may be right dan, I always have problems with my browser cache. On Jul 1, 2008, at 12:07 PM, Enjoy Jake wrote: Tracy, you rock. Dan, perhaps these suggestions are obvious, but ... when you send it up the the net check the timestamp on the file to make sure you're really sending it up

Re: Re Re: [flexcoders] THIS IS ABSOLUTELY NUTS

2008-07-02 Thread Flex Frenzy
Dan, you now have an idea of the sleepless nights i have encountered all because I did not clear my Safari's cache. I'm glad you got it all worked out! jeremy On Jul 1, 2008, at 11:32 PM, Dan Pride wrote: Ah but for the Hero's of the software world like Enjoy Jake ! I was explorer command

Re: [flexcoders] Flex app only works on Windows?

2008-07-02 Thread Flex Frenzy
a Flex app which works fine on Windows machines, but on Macs and Linux it won't load. It shows the little loading box with the progress bar, then just goes to a blank screen. I originally thought there was some issue with the html wrapper or maybe the javascript but even when going directly

[flexcoders] Passing value's from C to Actionscript?

2008-07-04 Thread Flex Frenzy
Any resources on passing values from C to Flex/Air?

[flexcoders] How to extend AdvancedDatagrid to expose new events and properties?

2008-07-15 Thread pascal flex
Hi, I need to extend AdvancedDatagrid to add new events and properties to it using actionscript. How can i achieve this? Thanks in advance.

Re: [flexcoders] How do I make a flex app transparent?

2008-07-22 Thread Flex Frenzy
You should be able to, as flash can by setting an attribute in the html I don't remember what it is at the moment On Jul 22, 2008, at 9:40 AM, whatabrain wrote: Is there a way to make a flex app transparent, and have its events pass through to underlying javascript? For example

[flexcoders] Tweener and HTTPService conflict

2008-07-25 Thread Flex Frenzy
Hey everybody, I am using the Tweener class for an animation that is going on toward the top of my flex application. The problem is when I add an http service to grab data to populate the menubar at the bottom, it looks as if the application waits for the animation to be done before

Re: [flexcoders] Adjacent mx:Label controls and spacing between them?

2008-07-30 Thread Flex Frenzy
={secondNumber} paddingLeft=0 paddingRight=0 / mx:Label text=. paddingLeft=0 / /mx:HBox /mx:Application On Jul 30, 2008, at 7:08 AM, Chris W. Rea wrote: Hi flexcoders. This is my first post, so hello! I'm relatively new to Flex, and I am using Flex Builder 3. I'm trying to lay out some text with Label

Re: [flexcoders] Adjacent mx:Label controls and spacing between them?

2008-07-30 Thread Flex Frenzy
, Chris W. Rea [EMAIL PROTECTED] On Wed, Jul 30, 2008 at 10:18 AM, Flex Frenzy [EMAIL PROTECTED] wrote: Hey Chris, welcome! The easiest solution would be to change the HBox spacing to -6, and add the spaces in the text, like so: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx

Re: [flexcoders] sending a text message from air/flex application

2008-08-01 Thread Flex Frenzy
Try the Ribbit API. developer.ribbit.com On Aug 1, 2008, at 6:22 PM, hworke wrote: Sorry-- forgot to mention: I want to send the text message to a cell phone from AIR/Flex Application Thanks...

Re: [flexcoders] AMFPHP tutorial

2008-10-10 Thread Flex Gangsta
Also try www.polygeek.com These are very easy to follow and makes amfphp really east to folow Sent from my iPhone On Oct 10, 2008, at 5:21 AM, yuku [EMAIL PROTECTED] wrote: Maybe you can try this: http://jonniespratley.com/2008/09/19/flex-and-amfphp-mini-cookbook/ On Fri, Oct 10, 2008

Re: [flexcoders] Flex, Coldfusion, Air

2008-10-10 Thread Flex Gangsta
Yes it's super easy, you don't even really have to do anything with your app. But take advantage of the fact that you are using AIR and pick up the api. There many cool classes and features available in AIR that you won't find in Flex Sent from my iPhone On Oct 10, 2008, at 5:14 AM

Re: [flexcoders] Flex 3 Layout of long form

2008-10-10 Thread Flex Gangsta
As far as the php goes... A good solution would be to use amfphp or some kind of remoting using RemoteObject. Simply great a method in your php and call it in your Flex app. To go even further you can create two identical classes, one in php and one in actionscript and have them become

Re: [flexcoders] Mouse Move Issue in Tree Control

2008-10-10 Thread Flex Gangsta
You can change it by creating a CSS file for the tree control. Sent from my iPhone On Oct 10, 2008, at 4:47 AM, selvant_2005 [EMAIL PROTECTED] wrote: Hi, When i Move the Mouse Over the Tree Nodes by Default that Blue Colour is Coming ,I dont Want that Colour, If anybody Know How to change

Re: [flexcoders] Interfaces WHY?

2008-10-10 Thread Flex Gangsta
Afaik interfaces give certain method signatures that must appear identical in the class that implements it. This is good for having hood organized code and multiple classes with sinmilar functionality. You can also do other things like like type an object to an interface. Sent from my

Re: [flexcoders] Flex / Data / Create Application from Database - Can this also work as a module?

2008-10-10 Thread Flex Gangsta
, When I create an application from a Database (Flex / Data / Create Application from Database). Can I modify the code to convert it into a module? I have a main application that I would like to load the Database as a module. I tried replacing the mx:Application Tags to mx:Module but didn't work

Re: [flexcoders] Custom Tooltip

2008-10-13 Thread Flex Gangsta
Well, it all depends how you want it rendered... If you pass an array collection... For what reason and how do you want it to render? Sent from my iPhone On Oct 13, 2008, at 5:09 AM, Manu Dhanda [EMAIL PROTECTED] wrote: Hii I was looking for a custom tooltip. Is there a way that I can

Re: [flexcoders] Custom Tooltip

2008-10-13 Thread Flex Gangsta
is, How can I pass data to it(as an Object/Collection), other then just text ??? Any idea/thoughts?? -Manu. Flex Gangsta wrote: Well, it all depends how you want it rendered... If you pass an array collection... For what reason and how do you want it to render? Sent from my iPhone

[flexcoders] how do you blur smoothly between two states?

2008-12-11 Thread Flex Noob
hrmm, I don't get it Say I have this on rollover: mx:Blur id=blur duration=1000 blurXTo=10 blurYTo=10 blurXFrom=0 blurYFrom=0 target={this}/ and this on roll out: mx:Blur id=unblur duration=1000 blurXTo=0 blurYTo=0 blurXFrom=10 blurYFrom=10 target={this}/ works, cool, rock on. however

Re: [flexcoders] how do you blur smoothly between two states?

2008-12-12 Thread Flex Noob
update. Instead what I'll do is call a function to iterate the filters list, grab blurX/blurY. Just wished they would have exposed a blurX and blurY prop on the Blur the wiring is there, just failed to provide a stub. From: Flex Noob fl3xn...@yahoo.com

Re: [flexcoders] how do you blur smoothly between two states?

2008-12-12 Thread Flex Noob
. ? From: Flex Noob fl3xn...@yahoo.com To: flexcoders@yahoogroups.com Sent: Friday, December 12, 2008 12:51:22 AM Subject: Re: [flexcoders] how do you blur smoothly between two states? just dug into the AS3 classes and it by default fromX/fromY has a default value of 4

[flexcoders] When the heck are states ready?

2008-12-15 Thread Flex Noob
event to check BUUUTTT. . . . REALLY I mean come on flex.

Re: [flexcoders] When the heck are states ready?

2008-12-16 Thread Flex Noob
enabled, mouseEnabled, etc to true but still doesn't propogate mouse events. Anyone? From: Flex Noob fl3xn...@yahoo.com To: flexcoders@yahoogroups.com Sent: Monday, December 15, 2008 11:46:19 PM Subject: [flexcoders] When the heck are states ready? I'm

[flexcoders] Simple but impossible Hbox alignment issue

2009-02-01 Thread Flex Noob
Doesn't Flex tell the label what is maxWidth should be so that doesn't happen

Re: [flexcoders] Simple but impossible Hbox alignment issue

2009-02-01 Thread Flex Noob
/ /mx:HBox I also tried a TextArea without setting truncateToFit and it worked too. crap like this makes me glad I'm mostly an AS dev. From: Flex Noob fl3xn...@yahoo.com To: flexcoders@yahoogroups.com Sent: Sunday, February 1, 2009 9:56:28 PM Subject: [flexcoders

[flexcoders] Re: ToolTipManager problem

2009-09-25 Thread Flex Boy
Hi! Use an itemRenderer, extend a lable and add a tooltip data field in your arraycollection and point the label.toolTip = data.tooltip; --- In flexcoders@yahoogroups.com, luketvanderfluit lukevanderfl...@... wrote: Hi. Here I have a component. Problem is that itemRollOver, itemRollout

[flexcoders] NFC (Near Field Communication) API in FlashPlayer 10.1

2009-10-08 Thread Flex Boy
Vote for this !! http://bugs.adobe.com/jira/browse/FP-2909

[flexcoders] Re: Space in TextInput

2009-10-10 Thread Flex Boy
Hi mister.. put all the characters taht are allowed in the restrict parameter if you use it as in Flex Doc. The following code allows the user to enter only uppercase letters (and not numbers or special characters) in the text field: A-Z , so if you are only restriting the Space you have

[flexcoders] Re: Space in TextInput

2009-10-10 Thread Flex Boy
It works, definitely a better way to do it:) --- In flexcoders@yahoogroups.com, Roman Protsiuk roman.prots...@... wrote: Hi, Take a look at the docs: http://livedocs.adobe.com/flex/3/langref/mx/controls/TextInput.html#restrict For your case the solution might look like: mx:TextInput

[flexcoders] LCDS + MD5 + PostGreSQL and JRun4

2009-10-13 Thread Flex Boy
in md5 format, did copy and paste the md5 string from PostgreSQL and pasted it into the password field in Flex app and it connected. I have looked at some MD5 encoders for AS3 but maybe I have to tweak it to be compatible with PostgreSQL anyone have a Idea? Here is the hash form password

[flexcoders] Pie Chart Single Slice - Label Function

2009-11-06 Thread Flex Killer
I just started learning flex and working on Pie Chart This question may look silly , but I come across in my project . Following is flex code copied from http://blog.flexexamples.com/2008/09/26/setting-a-custom-label-functi... Problem :- XML collection ( id is dp) has only one value

[flexcoders] Re: How to remove the horizon line which between the datagrid header and content

2009-11-17 Thread Flex Boy
--- In flexcoders@yahoogroups.com, chinaloveshisiling chinaloveshisil...@... wrote: -- |number(Header)| -- //I want to remove this line | 1 | --- | 2 | --- How to delete the top border of the the first row content. The SkinClass

[flexcoders] Re: TabNavigator changes page (html) title

2009-11-19 Thread Flex Boy
to a flex application. The application is launched from html that is generated by a java server page (main.jsp). The generated html includes a html page title. Up until I added the TabNavigator to the application, the generated html page title would display as expected when the flex

[flexcoders] Blazeds on Godaddy

2009-12-09 Thread Flex Killer
and It is working fine ( Tomcast as a server) . Context root is set to null. The same configuration I copied to godaddy server and could not able to get it running. My directory structure in Godaddy account /WEB-INF/flex And if I try to hit the URL http://mywebsite/messagebroker/amf' , I am getting

[flexcoders] Best way to load XML file

2009-12-09 Thread Flex Killer
Dear All, I have a 2 MB XML file locally and if I try to import that file using mx:XML id=testId source=StudentData.xml/ It is loading all the data at compile time ( In fact flex builder is throwing memory exception) I loaded the same file using HTTPService and It is taking significant

Re: [flexcoders] Blazeds on Godaddy

2009-12-09 Thread Flex Killer
not found error. I did copy the flex folder directly under WEB-INF directory . Regards Kiran From: kannan Mugundan kannanmugun...@gmail.com To: flexcoders@yahoogroups.com Sent: Wed, December 9, 2009 10:54:12 AM Subject: Re: [flexcoders] Blazeds on Godaddy Hi, I

Re: [flexcoders] Best way to load XML file

2009-12-11 Thread Flex Killer
/ -Original Message- From: flexcod...@yahoogro ups.com [mailto:flexcod...@yahoogro ups.com] On Behalf Of Flex Killer Sent: 09 December 2009 11:45 To: flexcod...@yahoogro ups.com Subject: [flexcoders] Best way to load XML file Dear All, I have a 2 MB XML file locally and if I try to import

Re: [flexcoders] Re: Blazeds on Godaddy

2009-12-12 Thread Flex Killer
Thanks a lot Mike for your suggestion . I was using Tomcat 6 in my local machine and changed to Tomact 5.0.27(What ever version godaddy is using) and was able to successfully setup in my local machine . But still the same issue exists on Godaddy . Surprisingly not sure when I got these errors ,

[flexcoders] Pie Chart - Need help in creating

2010-01-04 Thread Flex Killer
Hi All, I am using Pie charts for my application and wondering if some body guide me in creating pie charts like below ? Or please suggest me for some pretty pie chart? http://www.aboutnico.be/?p=42 http://modernl.com/article/howto-make-pretty-pie-charts ( last but three chart)

Re: [flexcoders] Creating XML Document from Data

2010-01-04 Thread Flex Killer
You can check this link. http://nsdevaraj.wordpress.com/2009/03/05/convert-data-types-arraycollection-xml-object-string/ Regards On Sun, Jan 3, 2010 at 7:26 PM, Wally Kolcz wko...@isavepets.com wrote: Can someone give me a hint (Class to look into) or paste a URL to an example of how to

Re: [flexcoders] Re: Blazeds on Godaddy

2010-01-11 Thread Flex Killer
I searched and spoke to godaddy and finally I got the perfect answer from here http://usefullittlethings.com/gojava-lessons-on-writing-java-applications-for-godaddy-shared-hosting.html I started developing my project with AMFPHP now . regards On Wed, Jan 6, 2010 at 10:11 PM, jrock

[flexcoders] Re: right click

2010-03-09 Thread Flex Boy
click in my flex can any body give me info? thanks regards

[flexcoders] Re: LCDS Configuration Settings - Best Practices?

2010-03-10 Thread Flex Boy
that is built with Flex and LCDS 2.6 using Hibernate and mySQL. I am running into some issues with network performance and it appears to be either slow response from the server or network congestion. I'm getting a message that say: Message throttled: Too many messages sent to destination

[flexcoders] Style/skin the Menu class?

2010-03-24 Thread flex...@rocketmail.com
We have created a hoverMenu:Menu and I've been asked to style it. It seems that one would need to extend Menu to make that possible. I'm a bit confused on where to start. Any help? It's a simple box with a bg color, a solid border, a header and inside the box is the menu feed by XML data. It

[flexcoders] Flex and CF

2007-02-22 Thread Cutter (Flex Related)
Hello all. I am sure someone has covered this already, but I am new to the list so I figured I'd ask out right (in case someone has already blogged this or something, though I haven't found anything yet). I have a remote multi-instance ColdFusion MX7 server in my dev environment. I can not

Re: [flexcoders] Announcing FlexLib - open source flex component library

2007-03-01 Thread Cutter (Flex Related)
FlexLib: a new open-source project for Flex 2 components. This project is a Google Code hosted project, released under the MIT license. I've been working with Darron Schall, Mike Chambers and Ted Patrick to get the project up and running. We're hoping to build a concentrated community effort

  1   2   >