Re: [flexcoders] Re: Flex grid to serve 100K-1mil rows

2007-11-14 Thread Tom Chiverton
On Monday 12 Nov 2007, letterpigeon wrote: will have to go in and change the broker code 1 by 1 that could take them hours. Therefore, the ability for our users to perform mass actions on the dataset (either client side or server side) would be a huge win for us. So there's no need to wait

[flexcoders] Image upload error

2007-11-14 Thread Joe
Hello all, I am using java servlet url as my image uploading url. I can upload successfully under Flex 2. As private function selectHandler(event:Event):void { var file:FileReference = FileReference(event.target); uploadURL.url = /myUpload?filename= + file.name +

RE: [flexcoders] How to scale containers?

2007-11-14 Thread Mark Ingram
I've managed to sort it out in a slightly different manner - by not specifying the width / height of the container, it sizes itself to the minimum size it can be without scroll bars. Once the resize has occurred I then set the scaleX/scaleY properties based on actual width / required width ratio.

Re: [flexcoders] CSS cheat sheets

2007-11-14 Thread Tom Chiverton
On Tuesday 13 Nov 2007, brileach wrote: Are there any good flex css cheat sheets out there? Ideally it would list all selectors, properties and values. LiveDocs. -- Tom Chiverton Helping to ambassadorially target integrated ROI on: http://thefalken.livejournal.com

Re: [flexcoders] Using proxy with remote objects

2007-11-14 Thread Tom Chiverton
On Tuesday 13 Nov 2007, Mark Ingram wrote: Hi, one of my colleagues at a remote office is behind a proxy server. What do I need to do to enable RemoteObjects to work correctly? Nothing, normally. Currently they are failing because it can't find the function on the server. What's the exact

[flexcoders] Re: Overriding inherited skin style

2007-11-14 Thread polestar11
I tried that, but I get the following exception: TypeError: Error #1034: Type Coercion failed: cannot convert null to Class. at mx.core::Container/isBorderNeeded()[E:\dev\flex_3_beta2\sdk\frameworks\projects\framework\src\mx\core\Container.as:4054] --- In flexcoders@yahoogroups.com, Alex Harui

Re: [flexcoders] Popups and Focus

2007-11-14 Thread Muzak
Use Javascript to set focus to the swf when it's loaded. IIRC, only works in IE, not Firefox. regards, Muzak - Original Message - From: triggersoftware [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, November 14, 2007 11:53 AM Subject: [flexcoders] Popups and Focus

Re: [flexcoders] Re: Overriding inherited skin style

2007-11-14 Thread Tom Chiverton
On Wednesday 14 Nov 2007, polestar11 wrote: I tried that, but I get the following exception: borderSkin: ? Or look at the source and see what the default is, and set it back to that. -- Tom Chiverton Helping to collaboratively unleash professional e-tailers on: http://thefalken.livejournal.com

[flexcoders] Popups and Focus

2007-11-14 Thread triggersoftware
I'm trying to get my application to launch a popup as soon as it starts up and the popup should put the focus its text box. The problem is, that while I can see the blue border around the text box, the cursor is not active in the text box, meaning the user has to click on the popup in order to

[flexcoders] Scaling a TextArea without reflowing the text

2007-11-14 Thread Lachlan Cotter
Hi Flexcoders, Does anybody know the secret to scaling a multi-line text container (e.g. a TextArea) while preserving the flow (line wrapping) of the text? I want to be able to 'zoom in' on a TextArea while keeping the text flow the the same as it was. I would have expected that when I

Re: [flexcoders] Popups and Focus

2007-11-14 Thread Hara Jn
AS Muzak said use the id in the function AC_FL_RunContent( in the javascript used in the html generated.Use the id.If the id is in the body tag of the html use .focus() in the onload event. Cheers Hara On Nov 14, 2007 4:50 PM, Muzak [EMAIL PROTECTED] wrote: Use Javascript to set focus

Re: [flexcoders] Popups and Focus

2007-11-14 Thread Hara Jn
BTW all the code is in index.template.html under html-template folder. As said earlier it wont work in firefox Cheers Hara On Nov 14, 2007 5:18 PM, Hara Jn [EMAIL PROTECTED] wrote: AS Muzak said use the id in the function AC_FL_RunContent( in the javascript used in the html generated.Use the

[flexcoders] How can II make the DragProxy start at 0,0

2007-11-14 Thread oneproofdk
When dragging an item from a TileList onto a Canvas, I want the DragProxy to always snap to the top left corner of the DragProxy image. Instead it Holds the image where I placed the mouse on the UIcomponent. I tried looking into offset-x and offset-y but cant make it sum up. See the thing is that

Re: [flexcoders] Re: Popups and Focus

2007-11-14 Thread Muzak
- Original Message - From: triggersoftware [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, November 14, 2007 1:20 PM Subject: [flexcoders] Re: Popups and Focus Thanks for the responses. However, I really need this to work in Firefox. Good luck with that:

Re: [flexcoders] Re: Popups and Focus

2007-11-14 Thread Muzak
By the way: http://www.google.com/search?hl=enq=firefox+swf+focus+bugmeta= - Original Message - From: triggersoftware [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, November 14, 2007 1:20 PM Subject: [flexcoders] Re: Popups and Focus Thanks for the responses.

[flexcoders] Re: Popups and Focus

2007-11-14 Thread triggersoftware
Thanks for the responses. However, I really need this to work in Firefox. It seems rather insane that this is even a problem - I've called .setFocus() - why doesn't it do what it's told?! Any cross-platform solutions? --- In flexcoders@yahoogroups.com, Hara Jn [EMAIL PROTECTED] wrote: BTW

[flexcoders] Flex Printing - Inconsistent print results from different printers

2007-11-14 Thread kenkc007
Hi All, I'm seeing some inconsistent results when printing from Flex. I have 2 different printers: Printer 1: HP Laser Jet 1320 Printer 2: HP Laser Jet 4250 The object I'm sending to each printer consists of a PrintDataGrid object with approximately 2000 rows, which I am paging appropriately.

Re: [flexcoders] Flex for database apps; compare to .net

2007-11-14 Thread Michael Pengi
Thanks, I'll focus on 3.0, though being new to flex and with the docs for 3.0 somewhat thin now, not sure what I'll be able to figure out. I hope adobe provides some straightforward db oriented tutorials, web services play only a minor role in most of my fellow developer's workload, db

RE: [flexcoders] Using proxy with remote objects

2007-11-14 Thread Mark Ingram
Hi Tom, turns out it's not the remote objects that are failing - it's local web services failing to reach the database on a remote server. Seems like my colleagues firewall is blocking the ports. Thanks anyway. Mark -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Column chart help

2007-11-14 Thread dbronk
I apologize if this is a repost, but on my first post of this I never saw it show up on the forum. I have a column chart that will have at least 20 different entries. I have a few of questions... 1. How do I remove the horizontal lines in the chart? I want only the bars, not y horizontal axis

[flexcoders] Re: Flex for database apps; compare to .net

2007-11-14 Thread candysmate
--- In flexcoders@yahoogroups.com, Michael Pengi [EMAIL PROTECTED] wrote: Thanks, I'll focus on 3.0, though being new to flex and with the docs for 3.0 somewhat thin now, not sure what I'll be able to figure out. I hope adobe provides some straightforward db oriented tutorials, web

[flexcoders] Help with Regular Expressions XML!!

2007-11-14 Thread djdyland
Say you have some xml like so.. api classType name=containers class name=flowing property name=width version=1.0 paramenterTypeString/paramenterType returnTypevoid/returnType /property property name=height version=2.0

[flexcoders] Help with Regular Expressions XML!!

2007-11-14 Thread djdyland
Say you have some xml like so.. api classType name=containers class name=flowing property name=width version=1.0 paramenterTypeString/paramenterType returnTypevoid/returnType /property property name=height version=2.0

[flexcoders] Allow users to set a skin style preference?

2007-11-14 Thread sknyppy
Is it possible to choose a specific skin style from a listbox and save the skin style preference in a cookie so the website will be customized when the user returns? Thanks, Sknyppy

[flexcoders] Re: Progress Bar Item Renderer

2007-11-14 Thread triggersoftware
Came up with a nearly-pure MXML version: ?xml version=1.0 encoding=utf-8? mx:HBox xmlns:mx=http://www.adobe.com/2006/mxml; mx:ProgressBar id=pb mode=manual label=%3%% labelPlacement=center creationComplete=setData() width=100%/ mx:Script ![CDATA[

RE: [flexcoders] Flex for database apps; compare to .net

2007-11-14 Thread Samuel R. Neff
Flex does not talk to a database directly (except with AIR but I gather you're talking about a web app). Flex talks to a back end which then can talk to a database. Flex works really well with pretty much any back end, so if you're familiar with .NET stick to that, no reason to go to FDS/LCDS

[flexcoders] Accessing dataField from within a Custom Item Renderer

2007-11-14 Thread triggersoftware
Is there any way I can access the dataField field from within a custom item renderer? mx:DataGridColumn itemRenderer=MyCustomComponent dataField=startDate/ mx:DataGridColumn itemRenderer=MyCustomComponent dataField=endDate/ In this case the component MyCustomComponent would know to look at the

[flexcoders] [Form] Layout not aligned

2007-11-14 Thread Lieven Cardoen
Please check code. If I work with a Repeater in a Form I get problems with alignment. If the dataprovider for the repeater changes (for instance a object is added), then I get an alignment problem with formitems out of the repeater. If I then execute following code (line 65) :

[flexcoders] Re: Overriding inherited skin style

2007-11-14 Thread polestar11
Bingo! The solution was to set the style back to the default, Halo theme: borderSkin: ClassReference(mx.skins.halo.HaloBorder); Thanks Tom --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 14 Nov 2007, polestar11 wrote: I tried that, but I get the

Re: [flexcoders] Allow users to set a skin style preference?

2007-11-14 Thread Tom Chiverton
On Wednesday 14 Nov 2007, sknyppy wrote: Is it possible to choose a specific skin style from a listbox Yes, it's just a ComboBox with a dataProvider. the skin style preference in a cookie A SharedObject, yes. so the website will be Do you mean Flex application ? customized when the

[flexcoders] About Combobox filling up the first item by default when we databinding

2007-11-14 Thread srikanth_reddy_007
Hi, When i attach data to the combo box with the dataprovider property in run time it automatically populates the first item into the text field. I don't want the first item to be populated by default? Does anybody help me in achieve this ? and second thing it expands the combo box to the size of

[flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Geoffrey
The ResourceModel class is [Bindable]. Is that what you're talking about? --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Unless the data object is [bindable], modifications to data objects must be accompanied by a call to itemUpdated on the collection.

Re: [flexcoders] Scaling a TextArea without reflowing the text

2007-11-14 Thread Daniel Freiman
textField.antiAliasType = AntiAliasType.NORMAL; - Dan Freiman On Nov 14, 2007 5:59 AM, Lachlan Cotter [EMAIL PROTECTED] wrote: Hi Flexcoders, Does anybody know the secret to scaling a multi-line text container (e.g. a TextArea) while preserving the flow (line wrapping) of the text? I

[flexcoders] Re: Flex grid to serve 100K-1mil rows

2007-11-14 Thread letterpigeon
Hi William, I've thought of this idea, and actually tested the capacity of the client. I loaded up dummy data on the client side and it can easily take up to 1mil records (though filtering could take a few seconds). The problem is how do I send that much of data from the server side. I'm using

Re: [flexcoders] Re: About Combobox filling up the first item by default when we databinding

2007-11-14 Thread Tom Chiverton
On Wednesday 14 Nov 2007, srikanth_reddy_007 wrote: mx:ComboBox id=txtFamilyName y=24 left=10 right=10 editable=true focusIn=fetchAutoCompleteData(event,

[flexcoders] Re: Scaling a TextArea without reflowing the text

2007-11-14 Thread actionscript_czar
If you don't need interaction with the textfield as you magnify it, you should be able to turn the textfield into a bitmap and just scale the bitmap. Then you take text formatting out of the equation. --- In flexcoders@yahoogroups.com, Lachlan Cotter [EMAIL PROTECTED] wrote: Hi Flexcoders,

Re: [flexcoders] About Combobox filling up the first item by default when we databinding

2007-11-14 Thread Tom Chiverton
On Wednesday 14 Nov 2007, srikanth_reddy_007 wrote: field. I don't want the first item to be populated by default? Does anybody help me in achieve this ? If only some sort of 'prompt' paramater was listed on the LiveDocs, eh ? body suggest me a way to bring truncated string with ... rather

Re: [flexcoders] Canvas layout / style

2007-11-14 Thread Ben Marchbanks
I've noticed this problem with rounded corners too and it just occurred to me that maybe applying a blendMode setting would offer a remedy ? Giles Roadnight wrote: Hi All I want to create a Canvas with rounded corners and a drop shadow (easy) and with a bar at the top and bottom

Re: [flexcoders] Re: Flex for database apps; compare to .net

2007-11-14 Thread Mr Greg Murnock
I'm lucky enough, I think lucky :), to have ColdFusion as my middle tier. Connected to Oracle, MS SQL, and MySQL, Oracle 100% now but started with MySQL and MS SQL. Also have a friend who uses PHP fronting MySQL. RemoteObjects calling ColdFusion .CFCs totaly ROCK for database communication

[flexcoders] how to Avoid - Compbo box fills up the first item when databinding is used

2007-11-14 Thread srikanth_reddy_007
About Combobox filling up the first item by default when we databinding I don't get what you mean to say ... I have the code like this mx:ComboBox id=txtFamilyName y=24 left=10 right=10 editable=true focusIn=fetchAutoCompleteData(event, 'Family') dataProvider={modelLocator.searchModel.family}

[flexcoders] Combobox ItemRenderer is now working as expected

2007-11-14 Thread srikanth_reddy_007
Can some one rectify my problem -- I have a ItemRenderer for combobox FilterListRenderer.mxml ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; width=100% height=20 paddingLeft=0 paddingRight=0 paddingTop=0 paddingBottom=0

[flexcoders] Flickr: Sandbox issue with unavaiable.gif

2007-11-14 Thread cisnky
SecurityError: Error #2122: Security sandbox violation How do I get round the security violation for the unavaiable.gif, it seems that server doesn't have a cross domain. http://l.yimg.com/www.flickr.com/images/photo_unavailable.gif I thought it would be a case of not making the call when the

[flexcoders] Re: Accessing dataField from within a Custom Item Renderer

2007-11-14 Thread ben.clinkinbeard
Yes, you'll want to look into the listData property. Flex automatically populates it for drop-in editors and renderers, so if your renderer implements IDropInListItemRenderer or inherits from a class that does (Button, Label, ComboBox, plus 11 more) then you will be able to access listData. When

[flexcoders] editing flv files

2007-11-14 Thread Ramsey, Robert L
Hi, I have some flv files that our users watch in a flex app I wrote. What I'd like to do is to somehow watermark the flv files on the fly to record the user's name. They aren't supposed to redistribute them, but if one does get into the wild I'd like to be able to trace it back. I'd like to

[flexcoders] Re: About Combobox filling up the first item by default when we databinding

2007-11-14 Thread srikanth_reddy_007
I don't get what you mean to say ... I have the code like this mx:ComboBox id=txtFamilyName y=24 left=10 right=10 editable=true

[flexcoders] Flex 2, Webservice, Tomcat, Basic Authentication, IE Problem

2007-11-14 Thread guse
Hi List, I implemented some Webservices on a tomcat J2EE webserver which are protected by basic authentication. To use the Webservices I implemented a Client in Flex which is embedded in a HTML page which only can be accessed by using the basic authentication. This means to reach the swf

[flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Geoffrey
The ResourceModel and ResourceItemModel classes are [Bindable]. Is that what you're talking about? Also, I was thinking that the 'selected' property of ResourceItemModel is not used for the 'selected' property of the CheckBox in the itemRenderer. The 'label' property of the model seems to work,

[flexcoders] Re: Accessing dataField from within a Custom Item Renderer

2007-11-14 Thread triggersoftware
Thanks for the response (I can't believe how hard it's been trying to find this out!). I'm trying to use the following component in a DataGrid, but listData is evaluating to NULL when I debug the application: ?xml version=1.0 encoding=utf-8? mx:Label xmlns:mx=http://www.adobe.com/2006/mxml;

Re: [flexcoders] HELP! How to invoke a servlet from a Flex Application: Throws error 2032

2007-11-14 Thread Tom Chiverton
On Wednesday 14 Nov 2007, javed akhtar wrote: I am very badly stuck with this crap and can't think of way out, Is there nothing in your application server log ? Are the servlet and Flex application on the same domain ? -- Tom Chiverton Helping to preemptively leverage second-generation

RE: [flexcoders] Re: Accessing dataField from within a Custom Item Renderer

2007-11-14 Thread Alex Harui
Better, but will fail if you scroll. Renderers get recycled and creatuinComplete only gets fired once. Use the dataChange event instead From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of triggersoftware Sent: Wednesday, November 14,

RE: [flexcoders] how to Avoid - Compbo box fills up the first item when databinding is used

2007-11-14 Thread Alex Harui
What do you want to happen? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of srikanth_reddy_007 Sent: Wednesday, November 14, 2007 8:01 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] how to Avoid - Compbo box fills up the first

RE: [flexcoders] Combobox ItemRenderer is now working as expected

2007-11-14 Thread Alex Harui
Are you getting binding warnings? Try XML(data)[EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of srikanth_reddy_007 Sent: Wednesday, November 14, 2007 8:08 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

[flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Geoffrey
I went and created a component as the itemRenderer, like this: mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; width=100% height=20 mx:CheckBox id=myCheckBox selectedField=selected label={data.label} x=0 y=0 height=20 width=100%/ /mx:Canvas

RE: [flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Alex Harui
Set some selected props to true before assigning the dp to see if it is picking it up. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Wednesday, November 14, 2007 9:27 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Using Scale-9 scaling in a horizontal plane only

2007-11-14 Thread Mark Ingram
Hi, how can I stretch an image horizontally only using scale-9? I'm using the following MXML: mx:Image source=@Embed(source='/assets/TopPageSeparator.swf', scaleGridTop='0', scaleGridBottom='39', scaleGridLeft='732', scaleGridRight='733') y=53 width=100% height=70/

[flexcoders] Converting app to use modules

2007-11-14 Thread Scott Melby
I am converting my application to use Modules... so far most things are working, but I have run into two errors that I have yet to work around. I have pasted the parts of the code pertaining to modules below the message. 1) Sometimes a refresh of the browser window (I am setup for

RE: [flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Alex Harui
Oh, maybe you need to set selectedField=selected From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Wednesday, November 14, 2007 8:37 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Item Renderer Not Updating

Re: [flexcoders] Canvas layout / style

2007-11-14 Thread Jon Bradley
On Nov 14, 2007, at 10:51 AM, Giles Roadnight wrote: The obvious way to do it is to have an image as a background with rounded corners and shadows as part of the image, I'd rather do it with styles if I could though. Might not be exactly what you are looking for, but could you just use a

[flexcoders] Re: Accessing dataField from within a Custom Item Renderer

2007-11-14 Thread triggersoftware
Yup...I was being dense: ?xml version=1.0 encoding=utf-8? mx:Label xmlns:mx=http://www.adobe.com/2006/mxml; textAlign=center creationComplete=setText() mx:Script ![CDATA[ import mx.controls.dataGridClasses.DataGridListData;

Re: [flexcoders] Column chart help

2007-11-14 Thread Brendan Meutzner
Hi Dale, 1) Have a look at GridLines for the backgroundElements of the ColumnChart. 2,3) Have a look at the following range selection example I've put together to horizontally zoom/scroll a larger series... http://www.meutzner.com/blog/index.cfm/2007/8/14/Google-Finance-with-Flex-Code HTH,

[flexcoders] Resources included in SWC library

2007-11-14 Thread nhflexer
We are trying to create a SWC library that includes a resource bundle and related resources. This library is then used by other parts of our UI as base components. We created a FlexBuilder library project and when we build there everything is fine. When we try to build using compc in Ant it seems

Re: [flexcoders] Flex for database apps; compare to .net

2007-11-14 Thread Anatole Tartakovsky
Michael, You want to compare Eclipse vs VS, or Flex vs Silverlight In particular, if you are considering data centric application you will most likely need anothe Eclipse plugin that automates data access for Flex I am using (and adding functionality ) to Clear Data Builder (myflex.org).

[flexcoders] AIR problems on Leopard

2007-11-14 Thread grimmwerks
I'm stuck in an endless loop; I've been told to install AIR beta 2; but when I try it says I already have it on my system. I run the AIR beta 1 uninstaller, then try to install beta 2 - same as above. I install AIR beta 1, try to install beta 2 over it - it says I already have it on my

[flexcoders] I need to insert an icon (jpg) in a DataGridColumn depending on the value

2007-11-14 Thread tomeuchre
I have a DataGrid that has a Status field. The value can be from 0 to 9. I have 9 icons (jpg files), each of which corresponds to the Status number. I am able to use an itemRenderer to draw the background color associated with the Status value, but what I really need to do is insert an icon

Re: [flexcoders] Converting app to use modules

2007-11-14 Thread Tony Alves
Scott, I may get corrected on this one, but take it for what it is worth. I thought you had to create an instance of manager classes in the main application even if you did not use them there. So you would put something like the following into your MainView.mxml : private var

[flexcoders] Re: Combobox ItemRenderer is now working as expected

2007-11-14 Thread srikanth_reddy_007
No I am not getting any warnings... --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Are you getting binding warnings? Try XML(data)[EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] Flex 2, Webservice, Tomcat, Basic Authentication, IE Problem

2007-11-14 Thread Douglas Knudsen
kind of looks familiar...https issue. Total stab in the dark: try using http and let IE handle the redirect to https? Also note, in IE if a user is at a http site and navigates to a https site, a popup comes up warning the user of the change. If the user never checked the box to ignore this

[flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Geoffrey
It's not picking it up. I did the following in my command class: for (var i:uint = 0; i data.result.length; i++) { // Get the current result and create a ResourceItemModel from it userSummaryVO = UserSummaryVO(data.result[i]); item = new ResourceItemModel(); item.firstName =

[flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Geoffrey
I need to correct my previous post with some changes I've made. I changed the model property to 'isSelected', and am binding that to the 'selected' property of the CheckBox like so: mx:CheckBox id=myCheckBox selected={data.isSelected} label={data.label} x=0 y=0 height=20 width=100%/ Now if I set

Re: [flexcoders] Flex 2, Webservice, Tomcat, Basic Authentication, IE Problem

2007-11-14 Thread Christoph Guse
Hi Douglas, thanks for your reply. I can switch off https for testing purposes, but it is impossible to switch off https in the production environment. So your approach can't be the final solution. I'll try to switch off https tomorrow and will see what happens. Any more ideas? Regards,

[flexcoders] need lots of help with actionScript and home made filter...

2007-11-14 Thread Mark
I created a component in Flash CS3 that populates a grid with points. I have some filter options that need to hide and show the points depending on the what is chosen in the filter box. Most of this has been pretty simple and works great but I've run into a piece of the code that I just

RE: [flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Alex Harui
Ok, next thing to see is if collectionChange events fire when the values are reset to false. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Wednesday, November 14, 2007 12:17 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Re: Combobox ItemRenderer is now working as expected

2007-11-14 Thread Alex Harui
Check your console output at runtime. Then try coercing as XML as I showed. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of srikanth_reddy_007 Sent: Wednesday, November 14, 2007 10:34 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] how to add one swf to another swf

2007-11-14 Thread bhaskar_mannava
how can i add one swf to another swf ? (or) how can i embed one swf to another swf ? if any one knows answer ... please let me know Thanks you Regards, MannavaBhaskar.

[flexcoders] Austin Flex User Group?

2007-11-14 Thread Brendan Meutzner
Hi All, Just want to gauge the interest in an Austin Flex User Group (TX of course). I've got the ok from Adobe to go ahead with it, but have been dragging my butt thus far... Thanks, Brendan -- Brendan Meutzner http://www.meutzner.com/blog/

Re: [flexcoders] renaming tree node via right mouse click (contextual menu)like windows explorer?

2007-11-14 Thread Pan Troglodytes
This might help you get started. For me, I have a rename button. It kicks off the following code: var e:ListEvent = new ListEvent(ListEvent.ITEM_EDIT_BEGINNING, false, false, 0, tree.selectedIndex); tree.dispatchEvent(e); This starts an edit on the currently selected item. You could do

Re: [flexcoders] Flex 2, Webservice, Tomcat, Basic Authentication, IE Problem

2007-11-14 Thread Douglas Knudsen
I meant the url property in your WebService call, not the server. DK On Nov 14, 2007 3:40 PM, Christoph Guse [EMAIL PROTECTED] wrote: Hi Douglas, thanks for your reply. I can switch off https for testing purposes, but it is impossible to switch off https in the production environment. So

[flexcoders] How to access the List from it's ItemRenderer

2007-11-14 Thread icepaco33
Greetings, I am trying to have access to the List which renderers the item from an item renderer. What I want basically is to be able to determine if an item is 'selected' from an item renderer. So I have overriden the set data prop in order to do this: override public function set

[flexcoders] measure() bug in mx:Tile

2007-11-14 Thread Troy Gilbert
A quick google search didn't reveal anything, so just curious if the group already knows this (and considers it a bug): In mx:Tile's measure method, when it calculates how many tile can fit vertically or horizontally, it factors in a gap for each tile, instead of for each pair of tiles. So, it

[flexcoders] internationalization

2007-11-14 Thread Bjorn Schultheiss
Hey, As soon as i change my compiler settings from -locale=en_US to -locale=es_ES i get the error 'cannot open flexsdk/locale/es_ES'. This makes sense, but i there a way my i can just specify the locale for my own application and not all the imported Libraries? regards, Bjorn

[flexcoders] Re: internationalization

2007-11-14 Thread Bjorn Schultheiss
I just found localeChain : ) --- In flexcoders@yahoogroups.com, Bjorn Schultheiss [EMAIL PROTECTED] wrote: Hey, As soon as i change my compiler settings from -locale=en_US to -locale=es_ES i get the error 'cannot open flexsdk/locale/es_ES'. This makes sense, but i there a way my i can

[flexcoders] Re: internationalization

2007-11-14 Thread Bjorn Schultheiss
Sorry, this still hasn't helped me. Can i specify a locale for my code and not the sdk? --- In flexcoders@yahoogroups.com, Bjorn Schultheiss [EMAIL PROTECTED] wrote: I just found localeChain : ) --- In flexcoders@yahoogroups.com, Bjorn Schultheiss bjorn.mailinglists@ wrote: Hey,

[flexcoders] Closed Captioning: Captionate and Other Methods

2007-11-14 Thread caffeinewabbit
Good afternoon all. My company is looking for a way to add closed captioning to our FLV files, and one piece of software that I ran across is Captionate - http://www.buraks.com/captionate/index.html . I'm curious if anyone on this list has ever used this software before, and more importantly, if

[flexcoders] How can i get tooltip while rolling on listbox for perticular move over item.

2007-11-14 Thread bhaskar_mannava
How can i get tooltip while rolling on listbox for perticular move over item.

Re: [flexcoders] Words Disappearing when Printing

2007-11-14 Thread Charles Dale
Chris Infanti wrote: The problem is...the last word of any Text components I have in the container disappear whenever I print. Otherwise it prints as expected. I've encountered this many times. It's really irritating and hard to debug... The root cause is most likely the scaling rather

[flexcoders] compc and filesets

2007-11-14 Thread Frank Z
Are there any plans to improve compc so I can use real filesets? It's a real pain in the butt to have to type in the name of every single class name instead of just passing a wildcard list of .as files. It is a library builder after all! Is there any solution to this?

[flexcoders] Newb needs state help

2007-11-14 Thread Phill B
I have a component that has a MenuBar in it. When the user clicks a menu item, I want to change the state in the main app. I cant seam to figure out how to do this. I'm guessing that the event isn't being sent up to the top level app. So, how do I make the top level app aware of the event? Thanks

[flexcoders] Actionscript question - for each

2007-11-14 Thread Josh McDonald
Where can I and can't I use for each (foo in bar)? Is it supposed to work with a bunch of iterable objects like ArrayCollection, or is it solely for dynamic objects and arrays? If it does work with higher level objects, how do you build support for it into your classes? Cheers, -Josh -- This

[flexcoders] Re: Item Renderer Not Updating - Fixed

2007-11-14 Thread Geoffrey
It's working! I think the key was to NOT use 'selected' as a property in the model, and I also added userList.invalidateList() before the section of code that sets all the CheckBoxes back to being deselected. Thanks for all teh help! --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL

Re: [flexcoders] Vertical scrolling without horizontal scrolling? How do I make 100% == 100% of available width?

2007-11-14 Thread Josh McDonald
Does it have to be 0, or can I go with something like 200 or so? It irks me that when you shrink the browser window you get a million scrollbars in every nested container :) I know I'm probably a pain, but I'm determined to master Flex. -Josh On Nov 14, 2007 5:45 PM, Alex Harui [EMAIL

Re: [flexcoders] How to access the List from it's ItemRenderer

2007-11-14 Thread Adnan Doric
icepaco33 wrote: Greetings, I am trying to have access to the List which renderers the item from an item renderer. What I want basically is to be able to determine if an item is 'selected' from an item renderer. So I have overriden the set data prop in order to do this: override public

[flexcoders] PopUpManager.removePopUp Not Removing Modal Overlay

2007-11-14 Thread bryanpoopbartow
I'm using Flex 3 Beta 2. compiling against 2.0.1 Hotfix 3. Created a custom component extending TitleWindow. Using PopUpManager to show it. It works as expected. However, when calling PopUpManager.removePopUp the component itself is removed, while the modal overlay stays intact. I can

Re: [flexcoders] Actionscript question - for each

2007-11-14 Thread Douglas Knudsen
check this out http://livedocs.adobe.com/flex/201/html/03_Language_and_Syntax_160_16.html DK On Nov 14, 2007 7:54 PM, Josh McDonald [EMAIL PROTECTED] wrote: Where can I and can't I use for each (foo in bar)? Is it supposed to work with a bunch of iterable objects like ArrayCollection, or

Re: [flexcoders] Actionscript question - for each

2007-11-14 Thread Josh McDonald
Yeah I've read that before, but now I think about it some more I think perhaps it does answer my questions - Am I correct then in assuming that ArrayCollection supports for...each by being a dynamic object and exposing items you add via some sort of dynamic property as well as via getItem()?

[flexcoders] External StyleSheet In Application

2007-11-14 Thread flexawesome
hey there, I added stylesheet into my application as below, but it does change the color or size in my application. I have to recompile the application to take effect. Is there anything wrong? Thanks mx:Style source=main.css/ === in CCS file == Application {

Re: [flexcoders] AMFPHP 1.9 security problem

2007-11-14 Thread Adnan Doric
danielvlopes wrote: Hello, i'm using amfphp 1.9 beta2 to make comunication between php and flex, but i had some question about security when use amfphp... If someone discover the name of my methods in my classes inside services amfphp folder and point your flex app to my gateway using

[flexcoders] Re: External StyleSheet In Application

2007-11-14 Thread flexawesome
oppps..should be == but it does not change the color or size in my application. --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: hey there, I added stylesheet into my application as below, but it does change the color or size in my application. I have to

RE: [flexcoders] External StyleSheet In Application

2007-11-14 Thread Samuel R. Neff
CSS is loaded at compile time, not runtime. --- We're Hiring! Seeking a passionate developer to join our team building Flex based products. Position is in the Washington D.C. metro area. If interested contact [EMAIL PROTECTED] -Original

[flexcoders] Re: External StyleSheet In Application

2007-11-14 Thread flexawesome
really? that is crap! hummm --- In flexcoders@yahoogroups.com, Samuel R. Neff [EMAIL PROTECTED] wrote: CSS is loaded at compile time, not runtime. --- We're Hiring! Seeking a passionate developer to join our team building Flex based

[flexcoders] 1046: Type was not found or was not a compile-time constant: Session.

2007-11-14 Thread Manu Dhanda
Hii Guyz, Am having this problem while am trying to migrate my app from Flex 2 to Flex 3. I searched my whole application for this particular text, but I can't find it anywhere. Any clue?? Thanks, Manu. -- View this message in context:

  1   2   >