[flexcoders] Re: Need Help - Loader changes the pixel value after loading as bitmap

2012-09-10 Thread RAJ
Hi, Updated the sdk from 4.5.1. to 4.6.0 and the issue is fixed. Thanks all... --- In flexcoders@yahoogroups.com, RAJ raaj_ece@... wrote: Thanks for the reply Alex, I'm not loading it in two different ways. I'm just loading the image using loader as you see in 'loadImageAsBitmap' method and

[flexcoders] Re: Need Help - Loader changes the pixel value after loading as bitmap

2012-09-08 Thread RAJ
Thanks for the reply Alex, I'm not loading it in two different ways. I'm just loading the image using loader as you see in 'loadImageAsBitmap' method and comparing the color information of the pixels with original image. --- In flexcoders@yahoogroups.com, Alex Harui aharui@... wrote: I'm

[flexcoders] Re: Need help dynamically modifying text displayed based on DB return

2012-02-07 Thread hermeszfineart
The solution was actually simple but took a great deal of digging. I created a protected function as follows: protected function onLabelCreationComplete():void { if ( imageStatus == 'Available' ){ artPrice.setStyle(color,

[flexcoders] Re: Need help dynamically modifying text displayed based on DB return

2012-01-31 Thread valdhor
Firstly, the way you are setting your public variables won't work. The {} syntax only works inside an MXML statement. You would need to change [Bindable] public var imageTitle:String = {win.title}; to [Bindable] public var imageTitle:String = win.title; Secondly, you may like to look into

[flexcoders] Re: e4x help

2011-09-22 Thread DP
You're probably getting an e4x error on the first empty node (because Attribute doesn't exist there). Try to avoid this issue by using the hasOwnAttribute function to make sure that Attribute actually exists in that node. This probably isn't it, but it's close:

[flexcoders] Re: Module help in flash builder

2010-05-25 Thread Amy
Since you are using mx components (ModuleLoaders) inside an mx component (ViewStack), just use Canvas or one of the mx containers. If the architecture worked under Flex 3, it should work under Flex 4. --- In flexcoders@yahoogroups.com, Raymond Brown silenttr...@... wrote: Does anyone know

[flexcoders] Re: Oh help me understand sizing perportionatelymx:Image

2010-01-28 Thread myflexdownloads
It will work without the space if you accurately specify both the scaled height and width. So to scale 500 by 300 1. Specify the image size to be 250 by 150 2. If you specify 250 by 200 space on the bottom 3. If you specify 300 by 150 space on the right Flexdownloads.com Web Admin --- In

[flexcoders] Re: Need Help in chart

2009-11-18 Thread heman
Any suggestions?? --- In flexcoders@yahoogroups.com, heman babu kkheman...@... wrote: Hi,     I am developing web based flex application, in which i need to plot a graph like Current VS speed, Voltage Vs Speed, Torque Vs speed in a single graph.The Current Vs Speed may have values like (

Re: [flexcoders] Re: Need Help in chart

2009-11-18 Thread kumar jothi
...@yahoo.com Subject: [flexcoders] Re: Need Help in chart To: flexcoders@yahoogroups.com Date: Thursday, 19 November, 2009, 12:31   Any suggestions? ? --- In flexcod...@yahoogro ups.com, heman babu kkheman_86@ ... wrote: Hi,     I am developing web based flex application, in which i need

[flexcoders] Re: Popup Help Bubble?

2009-09-01 Thread dfalling
Tooltips are useful for showing info when a single component is rolled over, but as far as I know, they don't do what I'm asking. I need a way to annotate multiple components at the same time (several help bubbles visible across the screen simultaneously, regardless of mouse hover.) Thanks

Re: [flexcoders] Re: Popup Help Bubble?

2009-09-01 Thread Fotis Chatzinikos
Have a look at popupmanager, but if you need them to stay at the same place when the user scrolls the screen you might need more work... On Wed, Sep 2, 2009 at 1:12 AM, dfalling dfall...@gmail.com wrote: Tooltips are useful for showing info when a single component is rolled over, but as far

Re: [flexcoders] Re: Need Help understanding ModuleManager or Why isn't the chart drawing?

2009-08-24 Thread kannan Mugundan
@yahoogroups.com *Subject:* [flexcoders] Re: Need Help understanding ModuleManager or Why isn't the chart drawing? Yes, the trace statements show that the data is returned from the webservice, and that the parsing is occurring as expected. The two panels are drawn, however the titles are not set

RE: [flexcoders] Re: Need Help understanding ModuleManager or Why isn't the chart drawing?

2009-08-24 Thread Alex Harui
, August 24, 2009 11:13 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Need Help understanding ModuleManager or Why isn't the chart drawing? Hi, May be you need to set the current domain of your moduleloader as current domain. bye Kannan On Sat, Jul 18, 2009 at 10:48 AM, Alex Harui

[flexcoders] Re: Need help Combobox label property

2009-07-30 Thread gan_sun2006
It finally seems to have loop through the entire arraycollection. Thanks a lot to vinu, jeffry, mark, tracy and everyone for their help and suggestions... :) --- In flexcoders@yahoogroups.com, vin.flex vin.f...@... wrote: Hi there, You can use the following code: ?xml version=1.0

[flexcoders] Re: Need help Combobox label property

2009-07-29 Thread gan_sun2006
Thanks to everyone for suggestions. I am having a combo in which the values are dynamically coming from DB thru java WS. The case is, when i select a country for instance say India, the code for the corresponding selection IN is saved to the DB thru java WS during SAVE action. When i retrieve

Re: [flexcoders] Re: Need help Combobox label property

2009-07-29 Thread Mark Lapasa
You got a questionable data model if the country names are not bundled with the same SOAP msg that has your country codes. 1) Is your Flex binary supposed to have hardcoded all the country names? 2) What happens if you have the server-side return you a country code that the client does not

Re: [flexcoders] Re: Need help Combobox label property

2009-07-29 Thread Jeffry Houser
Ganesh, I'm still pretty sure my original post answers your question. In essence, no. You're dong it the way it has to be done. The Flextras AutoCompleteComboBox basically just encapsulates that loop so it is easier for you to handle. Mark, He already loaded the country names and

[flexcoders] Re: Need help Combobox label property

2009-07-29 Thread vin.flex
Hi there, You can use the following code: ?xml version=1.0 encoding=utf-8? mx:ComboBox xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA[ private var _selectedValue:String; private var bSelectedValueSet:Boolean = false; private var

[flexcoders] Re: Need help fast: Mouse and ketboard event

2009-07-28 Thread valdhor
Use an event Listener and a timer to change the selection of the button. Here is a quick and dirty example: ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; applicationComplete=onApplicationComplete() mx:Script ![CDATA[ import

[flexcoders] Re: Need Help understanding ModuleManager or Why isn't the chart drawing?

2009-07-17 Thread todd.bruner
Yes, the trace statements show that the data is returned from the webservice, and that the parsing is occurring as expected. The two panels are drawn, however the titles are not set. The chart draws an X and Y axis but not actual data plotted. Thanks, Todd --- In flexcoders@yahoogroups.com,

RE: [flexcoders] Re: Need Help understanding ModuleManager or Why isn't the chart drawing?

2009-07-17 Thread Alex Harui
...@yahoogroups.com] On Behalf Of todd.bruner Sent: Friday, July 17, 2009 6:59 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Need Help understanding ModuleManager or Why isn't the chart drawing? Yes, the trace statements show that the data is returned from the webservice

[flexcoders] Re: Need help tranforming some XML

2009-06-23 Thread Jason
Well, so far no responses to this last part of my problem - but thanks very much to those of you who got me this far. I'm 90% there to the solution I need. So I'm moving this last part of my question to Flashcoders... unless someone has any idea how to solve this last part of the problem and

[flexcoders] Re: Need help tranforming some XML

2009-06-22 Thread Jason
Oh *sigh* - mind the line breaks. Ian Ian, I didn't insert those line breaks. I wrote this e-mail from Outlook and sent it directly to this list and it looked beautiful on the way out. I was just as disappointed with the way the formatting came out as you apparently were. Jason

[flexcoders] Re: Need help tranforming some XML

2009-06-22 Thread Jason
--- In flexcoders@yahoogroups.com, Ian Thomas i...@... wrote: Oh *sigh* - mind the line breaks. Ian Oh, heh heh, regards to formatting, you're rerferring to YOUR post, not my original. Yeah, sucks how bad Yahoo manages to mess up formatting eh? Thanks for the post, trying it out now.

[flexcoders] Re: Need help tranforming some XML

2009-06-22 Thread Jason
I'd include a bit of error checking for those XMLLists... for each (var contentRowItem:XML in _contentXML..row) { var moduleName:String = contentRowItem.Module; var topicXML:XML = new XML(topic /); topicx...@title = contentRowItem.LinkTitle; var

[flexcoders] Re: Need help tranforming some XML

2009-06-22 Thread Jason
Wait - I figured out I was not adding in the topics / node. So I am almost there now, this is working, EXCEPT the code only inserts one topic per subtopic, even though there are more row nodes that are tagged to the same subtopic in the same module. If more than one topic belongs to a topics

[flexcoders] Re: Need help writing alorithm

2009-05-29 Thread fumeng5
That is exactly what I was looking for. Thank you very much, Ken. Matt --- In flexcoders@yahoogroups.com, Kenneth Sutherland kenneth.sutherl...@... wrote: Not sure I'm getting 100% what you're doing but hopefully this will help you. For page X you would do: Min index = ( X - 1 ) *

[flexcoders] Re: ItemRenderer Help

2009-05-18 Thread Amy
--- In flexcoders@yahoogroups.com, sminrana sminr...@... wrote: How can i get TileList itemRenderer properties i use image Now i want to increase/decrease image width/height for zooming capability on selectedItem .. The first thing you need to do is to set up an event handler for the

[flexcoders] Re: argent help needed please

2009-04-24 Thread Amy
--- In flexcoders@yahoogroups.com, stinasius stinas...@... wrote: hi guys i have a problem with video display play button in flex 2. when i click the play button i get this error TypeError: Error #1006: play is not a function.at custom_comps::home/__playButton_click(). here is my code please

[flexcoders] Re: Need help- cannot insert multiple statements in one SQL transaction.

2009-04-17 Thread Ben Reynolds
Okay... 1) use a synchronous connection as async won't work for transactions. 2) yep, use transactions 3) put your statements in an array, not a semi-colon separated string 4) here's the key part of the code I use connection.begin(); for each

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

2009-04-13 Thread Jim
--- In flexcoders@yahoogroups.com, Tracy Spratt tspr...@... wrote: Have you solved the namespace issue? Do you understand what I am asking? I guess I don't. I did add this to my mx:application tag: xmlns:ws=com.draper.* and had import com.draper.*; in my script section, but without those

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

2009-04-13 Thread Tracy Spratt
available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Jim Sent: Monday, April 13, 2009 7:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Need help processing XML into Flex app --- In flexcod...@yahoogro mailto:flexcoders

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

2009-04-10 Thread Jim
Tracy, With the children approach, I get: Error #1009: Cannot access a property or method of a null object reference. Could this be due to the fact that there are multiple Roles nodes and not just one, so that Roles isn't really a parent node except to one specific child? That is:

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

2009-04-10 Thread Jim
Tracy, I got it! It turns out that Roles are returned as an array, since the Roles node repeats. So this did it: protected function displayRoles (item:Object, column:DataGridColumn):String { roleList = ; for (i = 0; i item.Roles.length; i++) { roleList = roleList +

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

2009-04-10 Thread Tracy Spratt
@yahoogroups.com Subject: [flexcoders] Re: Need help processing XML into Flex app Tracy, With the children approach, I get: Error #1009: Cannot access a property or method of a null object reference. Could this be due to the fact that there are multiple Roles nodes and not just one, so that Roles

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

2009-04-10 Thread Tracy Spratt
...@yahoogroups.com] On Behalf Of Jim Sent: Friday, April 10, 2009 11:37 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Need help processing XML into Flex app Tracy, I got it! It turns out that Roles are returned as an array, since the Roles node repeats. So this did it: protected function

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

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

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

2009-04-09 Thread Tracy Spratt
, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Jim Sent: Thursday, April 09, 2009 9:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Need help processing XML into Flex app Tracy, Thanks

[flexcoders] Re: Desperate Help! crossdomain.xml

2009-02-18 Thread cjcuccaro
We ran into a similar situation with having the crossdomain.xml policy file in a subdirectory of a site. The phase 3 change that went into affect with FP10.02 requires the root directory of the site to have a meta policy file (policy file for policy files) that allows for the use of policy files

[flexcoders] Re: Newbie Help

2009-02-12 Thread jim.abbott45
(See responses below...) --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: 1.) Flex is just an SWF file. You can set the application to any size and embed it as a SWF. 3.) Flex has a really good printing solution allowing you to add elements to a print job and control the order

[flexcoders] Re: Need Help for LCDS installation for web sphere 6.1!!

2009-02-09 Thread markflex2007
Hi, I found other link at http://help.adobe.com/en_US/livecycle/8.2/lcds_installation.html I confuse the step 7,I want to know how to add a separate WorkManager for my application here 7 From the WebSphere Administrator, define a WorkManager for use by your application. From the admin, choose

[flexcoders] Re: Need Help for LCDS installation for web sphere 6.1!!

2009-02-08 Thread markflex2007
I get the following error when I try to deploy lcds.war. can not find Target Resource JNDI Name. Mark

[flexcoders] Re: need help in BlazeDS

2008-11-21 Thread Anthony DeBonis
Try adding mx:TraceTarget / to you main application file and run the application in debug mode. You should get more information in the console window showing traffic. Also test that the endpoint is working: example: https://local/doh2/applinks/ServiceTester/messagebroker/amfsecure Also

[flexcoders] Re: Please help me! I want to Display Thumbnails in 3D wall

2008-11-11 Thread Amy
--- In flexcoders@yahoogroups.com, Tanzeem Bhatti [EMAIL PROTECTED] wrote: Dear All,  I have a project that take videos from Youtube using Youtube feeds,I have completed that but I want to make thumbnail display in 3D wall using Flex.. Any one who have experience in making 3D wall using

[flexcoders] Re: Need help for mx:MenuBar?

2008-10-17 Thread valdhor
I don't understand what you want. Do you want the menu to drop down when you mouseover it or when you click it? Have you checked out the example at: http://livedocs.adobe.com/flex/3/html/help.html?content=menucontrols_6.html --- In flexcoders@yahoogroups.com, markflex2007 [EMAIL PROTECTED]

[flexcoders] Re: Need help for mx:MenuBar?

2008-10-16 Thread markflex2007
I see a demo at http://www.customware.net/repository/display/FLEX/Flex+Menu+Example The mouse over works after first click a menu. How this works?

RE: [flexcoders] Re: Create Help System in Flex - how to display html in a canvas or component?

2008-10-14 Thread Tracy Spratt
considered, but did not find any discussion. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Kurzius Sent: Saturday, October 11, 2008 4:41 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Create Help System in Flex

[flexcoders] Re: Create Help System in Flex - how to display html in a canvas or component?

2008-10-14 Thread Brian Kurzius
HTTP and display it in your content area. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Friday, October 10, 2008 2:25 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders

Re: [flexcoders] Re: Create Help System in Flex - how to display html in a canvas or component?

2008-10-14 Thread Michael Schmalle
11, 2008 4:41 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Re: Create Help System in Flex - how to display html in a canvas or component? I agree with Jeff. I have been building an app that includes an rss reader and found that html formatted RSS entries work pretty well

RE: [flexcoders] Re: Create Help System in Flex - how to display html in a canvas or component?

2008-10-11 Thread Randy Martin
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Amy Sent: Friday, October 10, 2008 2:36 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Create Help System in Flex - how to display html in a canvas or component? --- In flexcoders@yahoogroups.com mailto:flexcoders

[flexcoders] Re: Create Help System in Flex - how to display html in a canvas or component?

2008-10-10 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Displaying full html in Flex (Flash Player) is not yet possible. What are your requirements? The simplest solution is to use a separate browser to display the html help pages. The Flex side needs to know where

[flexcoders] Re: Need help with Logout and then Logging back into Flex App

2008-09-05 Thread scottyale2008
Thanks! Since app can run on different servers (URL's), the following three lines did the trick! var myUrl:String = mx.core.Application.application.url; var webPageURL:URLRequest = new URLRequest( myUrl ); navigateToURL(webPageURL);

Re: [flexcoders] Re: Need Help and Guidance desperately

2008-09-04 Thread anuj sharma
Hi Josh If you don't mind can you please help me out with the code for this thing. You mentioned you had made something like this (snapin). Can you please show me which way i have to start and which component i need to extend. If its okay with you can i take guidance form your code and try to

Re: [flexcoders] Re: Need Help and Guidance desperately

2008-09-04 Thread Josh McDonald
I don't know if the approach I used would work in your case, as what you're after is a lot more flexible than what I built. To simplify what it actually is, mine is simply laying out components either 1 or 2 in a row depending on the components size (and container size) and it re-arranges the

[flexcoders] Re: Need Help and Guidance desperately

2008-09-03 Thread Amy
--- In flexcoders@yahoogroups.com, Doug McCune [EMAIL PROTECTED] wrote: His layout is really difficult. Basically he wants images to be smart enough to size any which way to fit around each other. If you take a look at the word doc he attached the second mockup shows the problem. Basically

Re: [flexcoders] Re: Need Help and Guidance desperately

2008-09-03 Thread Josh McDonald
Basically it's a *really* hard thing to do, in part due to its nature, in part due to the way Flex does some things. I built something similar, but more specialised (lays out snapin components), finds the best order to use the space most efficiently, and increases the size on them so they line up

[flexcoders] Re: Need Help !!! Security box error loading SWF Animation due to new Flash Security

2008-09-02 Thread helihobby
Link for articale: www.adobe.com/devnet/flashplayer/articles/fplayer9_security.htm --- In flexcoders@yahoogroups.com, helihobby [EMAIL PROTECTED] wrote: Please anyone... I am pulling my hair our for 3 days and REALLY could use some help ... We have a flex application which loads Flash

[flexcoders] Re: Need Help !!! Security box error loading SWF Animation due to new Flash Security

2008-09-02 Thread helihobby
Link for article: www.adobe.com/devnet/flashplayer/articles/fplayer9_security.html --- In flexcoders@yahoogroups.com, helihobby [EMAIL PROTECTED] wrote: Please anyone... I am pulling my hair our for 3 days and REALLY could use some help ... We have a flex application which loads Flash

RE: [flexcoders] Re: Need Help !!! Security box error loading SWF Animation due to new Flash Security

2008-09-02 Thread Alex Harui
in posts requesting help. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of helihobby Sent: Tuesday, September 02, 2008 1:55 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Need Help !!! Security box error loading SWF Animation due to new Flash Security

RE: [flexcoders] Re: Need help about generating swf from template flash file

2008-08-29 Thread Alex Harui
yes From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yk96290 Sent: Thursday, August 28, 2008 9:21 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Need help about generating swf from template flash file Alex, Thanks a lot. I'm kind of new in this area. Can we

[flexcoders] Re: PLEASE Help. Why some Flash CS3 swf can be unloaded in Flex and why some can't ?

2008-08-29 Thread helihobby
Just wanted to add the Unload button x= is very high so change to x=0 so you can see it ... Also, when you click unload it WILL seem that the swf unloaded but if you turn on your speakers you will still hear the sound playing AND if you check memory you will see that the swf never released.

Re: [flexcoders] Re: PLEASE Help. Why some Flash CS3 swf can be unloaded in Flex and why some can't ?

2008-08-29 Thread Sherif Abdou
@yahoogroups.com Sent: Friday, August 29, 2008 7:25 PM Subject: [flexcoders] Re: PLEASE Help. Why some Flash CS3 swf can be unloaded in Flex and why some can't ? Just wanted to add the Unload button x= is very high so change to x=0 so you can see it ... Also, when you click unload

Re: [flexcoders] Re: PLEASE Help. Why some Flash CS3 swf can be unloaded in Flex and why some can't ?

2008-08-29 Thread Sherif Abdou
Here it is, I think its talking about same thing. http://theflashblog.com/?p=411 - Original Message - From: Sherif Abdou To: flexcoders@yahoogroups.com Sent: Friday, August 29, 2008 7:48 PM Subject: Re: [flexcoders] Re: PLEASE Help. Why some Flash CS3 swf can be unloaded

RE: [flexcoders] Re: PLEASE Help. Why some Flash CS3 swf can be unloaded in Flex and why some can't ?

2008-08-29 Thread Alex Harui
, 2008 8:06 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: PLEASE Help. Why some Flash CS3 swf can be unloaded in Flex and why some can't ? Here it is, I think its talking about same thing. http://theflashblog.com/?p=411 - Original Message - From: Sherif Abdoumailto:[EMAIL

[flexcoders] Re: Need help about generating swf from template flash file

2008-08-28 Thread yk96290
Alex, This is a custom header for a page. The header is a swf from a flash template. Suppose the template swf file is there. I'll dynamically use the swf. For instance, I have a movie clip tempImage in the swf, in my flex, I'll replace tempImage with a1.jpg, a2.jpg, ... etc on different

RE: [flexcoders] Re: Need help about generating swf from template flash file

2008-08-28 Thread Alex Harui
Sent: Thursday, August 28, 2008 6:38 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Need help about generating swf from template flash file Alex, This is a custom header for a page. The header is a swf from a flash template. Suppose the template swf file is there. I'll dynamically

[flexcoders] Re: Need help about generating swf from template flash file

2008-08-28 Thread yk96290
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Need help about generating swf from template flash file Alex, This is a custom header for a page. The header is a swf from a flash template. Suppose the template swf file is there. I'll dynamically use the swf. For instance, I have a movie

[flexcoders] Re: Need Help and Guidance desperately

2008-08-26 Thread Amy
--- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: I agree, I'd use a couple of TileLists and a simple inline itemrenderer. Shouldn't be too difficult really. I think the TileList has a number of flaws that make it problematic for this type of application For

RE: [flexcoders] Re: Need Help and Guidance desperately

2008-08-26 Thread Alex Harui
, August 26, 2008 7:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Need Help and Guidance desperately --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Josh McDonald [EMAIL PROTECTED] wrote: I agree, I'd use a couple of TileLists and a simple inline

Re: [flexcoders] Re: Need Help and Guidance desperately

2008-08-26 Thread anuj sharma
] *On Behalf Of *Amy *Sent:* Tuesday, August 26, 2008 7:40 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Re: Need Help and Guidance desperately --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: I agree, I'd use a couple

[flexcoders] Re: Need help urgently regarding the uploading component in flex

2008-08-24 Thread andrew_young.rm
Peace! ok from the looks of your coding your a better programmer than me (I am a bit of a newbie in FLEX) BUT you still have to initiate a URLRequest method to send up your files based on your _refAddFiles.fileList[array number].data information (this is done one by one) umm, I personally use an

[flexcoders] Re: Newbie help, dealing with a design in illustrator

2008-08-21 Thread nathanpdaniel
Thought I'd give it a whirl since this is how I've had sites designed in the past. I used Fireworks CS3 - import the Illustrator design into Fireworks CS3, then you can Export MXML Images. It took a minimal amount of tweaking of the Images in Fireworks and removing the text portions (some

Re: [flexcoders] Re: Newbie help, dealing with a design in illustrator

2008-08-21 Thread Tom McNeer
You're raising a very complex question, since skinning can be complicated in Flex 3. I won't try to make any suggestions, because I'm not qualified. But I will point out that if your original design is in Illustrator, then it's likely that most of the elements *are* vector-based, since

Re: [flexcoders] Re: Newbie help, dealing with a design in illustrator

2008-08-21 Thread Richard Rodseth
Also take a look at Degrafa. They have some examples based on exporting Illustrator paths as SVG. On Thu, Aug 21, 2008 at 11:06 AM, Tom McNeer [EMAIL PROTECTED] wrote: You're raising a very complex question, since skinning can be complicated in Flex 3. I won't try to make any suggestions,

[flexcoders] Re: BlendMode help

2008-08-15 Thread Amy
--- In flexcoders@yahoogroups.com, Nick Collins [EMAIL PROTECTED] wrote: Is there a way to change your blendMode on a per-pixel basis. Essentially, I want the blendMode layer to be applied as a Multiply blend mode if the brightness value is greater than 20, and as a Screen blend mode if the

[flexcoders] Re: AdvancedDataGrid - help displaying custom data objects

2008-08-14 Thread cwicky99
so to get things to show up as I wanted I had to add a children property to my EmployeeGroup (didn't see that anywhere in the documentation, but I noticed the Adobe examples have children properties). So I added this in the EmployeeGroup: pre public function get children():ArrayCollection {

[flexcoders] Re: Need help with AdvancedDataGrid ItemRenders

2008-08-14 Thread Amy
--- In flexcoders@yahoogroups.com, xxmessiah2xx [EMAIL PROTECTED] wrote: I need to set the color of a cell (not the entire row or column) depending on the the data value of the current cell, and the column that i'm in. so If I have a ADG like this: ...| x | y | z | ---|---|---|---|

[flexcoders] Re: Need help with AdvancedDataGrid ItemRenders

2008-08-14 Thread xxmessiah2xx
(this is literally my 1st flex app, so please bear with me as I learn...) I don't follow your example. I add a style function to both the column and grid which sets the font color just fine. but adding backgroundColor:0xF never does anything, unless I swap to a custom item renderer,

[flexcoders] Re: Need help with AdvancedDataGrid ItemRenders

2008-08-14 Thread Amy
--- In flexcoders@yahoogroups.com, xxmessiah2xx [EMAIL PROTECTED] wrote: (this is literally my 1st flex app, so please bear with me as I learn...) I don't follow your example. I add a style function to both the column and grid which sets the font color just fine. but adding

[flexcoders] Re: Need help with AdvancedDataGrid ItemRenders

2008-08-14 Thread xxmessiah2xx
Go back and look again :-). The only reason the entire row is the same color in the particular way I implemented it is because my style function returned the same color for all columns in the row. -Amy dangnabbit that was one of the 1st things I tried, and couldn't get it to

[flexcoders] Re: Need help with AdvancedDataGrid ItemRenders

2008-08-14 Thread Amy
--- In flexcoders@yahoogroups.com, xxmessiah2xx [EMAIL PROTECTED] wrote: Go back and look again :-). The only reason the entire row is the same color in the particular way I implemented it is because my style function returned the same color for all columns in the row. -Amy

[flexcoders] Re: need help urgent - multiple images printing

2008-08-06 Thread cyber_runners
Yeah, I don't know what to do ... I think the image you added in your template is late to show than print job execution. May be flex need delay or doEvent command ... hehehe ... it's i think bro

RE: [flexcoders] Re: need help urgent - multiple images printing

2008-08-06 Thread Alex Harui
@yahoogroups.com Subject: [flexcoders] Re: need help urgent - multiple images printing Yeah, I don't know what to do ... I think the image you added in your template is late to show than print job execution. May be flex need delay or doEvent command ... hehehe ... it's i think bro

[flexcoders] Re: Please help a newbie :) - ArrayCollection

2008-07-29 Thread Amy
--- In flexcoders@yahoogroups.com, cox.blair [EMAIL PROTECTED] wrote: Hi, I'm sure this is incredibly simple, however I'm having trouble figuring it out. I have a php script which connects to a db and returns standard xml. What I want to do is choose which children from the repeating

[flexcoders] Re: Please help a newbie :) - ArrayCollection

2008-07-29 Thread cox.blair
I'm starting to think all I need to do is post a message here and the answer instantly makes itself known. Sorry that I wasn't very descriptive. This is what I was looking for; private function getListLabel(item:Object):String { return item.Sample_Point_Name + ( +

[flexcoders] Re: Calendar Help

2008-07-25 Thread Sal H.
Help with the actionscript please. I only got as far as this: mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical creationComplete=init() mx:Script ![CDATA[ import mx.events.CalendarLayoutChangeEvent; import mx.controls.Alert;

RE: [flexcoders] Re: Calendar Help

2008-07-25 Thread Tracy Spratt
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sal H. Sent: Friday, July 25, 2008 2:31 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Calendar Help Help with the actionscript please. I only got as far as this: mx:Application xmlns:mx=http

[flexcoders] Re: need help with a custom item renderer

2008-07-24 Thread ndele_sutton
thanks, alex. that worked like a charm. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I'd start with mx.controls.listClasses.ListItemRenderer. It can already display an icon and text. Copy the source and modify as needed. Putting stuff at negative coordinates is

[flexcoders] Re: Please, help: the release player displays a blank page in all browsers.

2008-07-20 Thread wiley_jacobs1
a custom loader or some custom component that does that. It works fine in debugger too but not release. - Original Message From: Tracy Spratt [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, July 16, 2008 11:59:06 AM Subject: RE: [flexcoders] Re: Please, help

[flexcoders] Re: Please, help: the release player displays a blank page...(solved for me!)

2008-07-20 Thread wiley_jacobs1
Subject: RE: [flexcoders] Re: Please, help: the release player displays a blank page in all browsers. Also have you tried any of the suggestions folks have made? Starting by putting an Alert.show in the Application initialize event? Tracy -Original Message- From

[flexcoders] Re: Please, help: the release player displays a blank page in all browsers.

2008-07-17 Thread wiley_jacobs1
I do get compiler warnings...just no type declaration for several things: Severity and DescriptionPathResourceLocation Creation Time Id 1008: parameter 'txt_str' has no type declaration. metasoft.console_7- 15/src/productsView ProductFilterPanel.mxml line 967

[flexcoders] Re: Please, help: the release player displays a blank page in all browsers.

2008-07-16 Thread wiley_jacobs1
I'm having he same issue, it's been going on for 6 months. For me, the loader doesn't even come up with the regular player, it's just the blue background background. Does anybody have a solution for this? The debug player works fine although that would be mean that I have to make sure that

Re: [flexcoders] Re: Please, help: the release player displays a blank page in all browsers.

2008-07-16 Thread Tom Chiverton
On Wednesday 16 Jul 2008, wiley_jacobs1 wrote: I'm having he same issue, it's been going on for 6 months. For me, the loader doesn't even come up with the regular player, it's just the blue background background. Does anybody have a solution for this? The debug player works fine And there

RE: [flexcoders] Re: Please, help: the release player displays a blank page in all browsers.

2008-07-16 Thread Tracy Spratt
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Please, help: the release player displays a blank page in all browsers. On Wednesday 16 Jul 2008, wiley_jacobs1 wrote: I'm having he same issue, it's been going on for 6 months. For me, the loader doesn't even come up with the regular player

Re: [flexcoders] Re: Please, help: the release player displays a blank page in all browsers.

2008-07-16 Thread Sherif Abdou
[EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, July 16, 2008 11:59:06 AM Subject: RE: [flexcoders] Re: Please, help: the release player displays a blank page in all browsers. Also have you tried any of the suggestions folks have made? Starting by putting an Alert.show

[flexcoders] Re: Newbie Help: Resolve a multiname reference unambiguously...

2008-07-15 Thread cox.blair
Okay, I figured out that you can assign a different ID to the instance of mx:HTTPSErvice. So what is going on with private var gateway:HTTPService = new HTTPService(); that seems to be causing the multiname reference issue? Or should I be looking somewhere else? Thanks, --- In

[flexcoders] Re: Newbie Help: Resolve a multiname reference unambiguously...

2008-07-15 Thread cox.blair
Okay, is HTTPService a single instance / use item? How would I get the following to work? ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical creationComplete=SamplePointCollect.send() mx:Script

Re: [flexcoders] Re: Please, help: the release player displays a blank page in all browsers.

2008-06-25 Thread Tom Chiverton
On Friday 20 Jun 2008, Alex Harui wrote: Another approach is to comment out code until you get the app to appear and see what the code made the difference. Or scatter Alert.show() through out the code and find out when they stop appearing. This is one case where having the most recent Alert on

[flexcoders] Re: Please, help: the release player displays a blank page in all browsers.

2008-06-20 Thread julian.leach
We are experiencing the same issue. We don't get errors when viewing in the standalone debug player, the screen is blank in the standard player. Andrea: did you get to the bottom of your problem? Any other suggestions gratefully received. Thanks in advance Julian --- In

RE: [flexcoders] Re: Please, help: the release player displays a blank page in all browsers.

2008-06-20 Thread Alex Harui
@yahoogroups.com Subject: [flexcoders] Re: Please, help: the release player displays a blank page in all browsers. We are experiencing the same issue. We don't get errors when viewing in the standalone debug player, the screen is blank in the standard player. Andrea: did you get to the bottom of your

  1   2   3   4   >