[flexcoders] Re: Error- textDecoration

2008-10-14 Thread wjacker2
Hi Scott, Thanks for you helpful information. I found Flex Builder can not indicate to correct class. I worte the code in one class, but it indicate to another class has error. anyway, i find it out and fixed it. --- In flexcoders@yahoogroups.com, Beau Scott [EMAIL PROTECTED] wrote: Do you have

Re: [flexcoders] Where is Alex Ahauri??

2008-10-14 Thread jitendra jain
Thanks Mike, For your reply. Oh Great. Let him spend some time. Only Alex can give you answers.. But he is vey helpful and supportive. I think he is the one of the revolutionary guy in the Adobe team. Even I tried for days to get answers and I struck my head with the walls often. But finally

Re: [flexcoders] Auto resizing a list popup control of a PopUpButton

2008-10-14 Thread Naveen Booma
Hi, The solution I came across for this is, find out the length of each data provider (Array collection) and multiply with 20 (try different values) and so depending on the length, the height of the list will automatically resize. For example : _tier.height = tierData.length * 20; where

[flexcoders] Local Date Format

2008-10-14 Thread Naveen
Hi All, I was working on Dates and I have two issue with Date. 1. I wanted to know if there is way to change the local date format on the client side in Flex For example US date format is : 1) short 4/23/2008(MM/DD/) 2) long Wednesday, April 23, 2008 French (or any

[flexcoders] XML object ?xml version=1.0 ? line

2008-10-14 Thread diehlryan
This seems like a simple question but I haven't been able to find an answer. I want to prepend the standard xml version, encoding line to my XML object before sending it to the server: ?xml version=1.0 encoding=UTF-8? ... How do I do this? I've tried using prependChild on the root node, but

[flexcoders] Integrating Flex and Grails (periods in request names)

2008-10-14 Thread jbaileyadam
I'm integration Flex with a Grails backend using RESTful web services. The integration would be easier if I was able to specify a period in a request parameter. I'd like to do the following: mx:HTTPService id=someService url=http://localhost:8080:foo/add; mx:request xmlns=

Re: [flexcoders] SWFLoader - Getting Symbols

2008-10-14 Thread Sceneshift
Does anyone have any idea how to do this? I am sure there is a way. -- View this message in context: http://www.nabble.com/SWFLoader---Getting-Symbols-tp19798505p19951379.html Sent from the FlexCoders mailing list archive at Nabble.com.

[flexcoders] Re: Problem with the DataGrid column keeps switching location

2008-10-14 Thread Amy
--- In flexcoders@yahoogroups.com, Weyert de Boer [EMAIL PROTECTED] wrote: Hello, I have been working on a solution to make some sort of property grid in Flex and I have been using the DataGrid. Only I am experiencing some problems with it. The datagrid consists of two columns called

[flexcoders] Re: rsl error after new deployment - help needed!

2008-10-14 Thread Brian Kurzius
Did you figure out a solution to this? I just deployed a brand new app to the web and a user has reported this exact same issue.

[flexcoders] Re: Flex Framework RSL

2008-10-14 Thread lagos_tout
Cool. Thanks, Tom. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Sunday 21 Sep 2008, julianabiodun wrote: I'm trying to determine what the likelihood is that a client will already have the Flex Framework RSL .swz cached. There is no central database of how

[flexcoders] Re: ComboBox in Component won't open to Saved Value

2008-10-14 Thread valdhor
Randy I am definitely interested in a search-as-you-type BindableComboBox. Please share. I also have a search-as-you-type BindableComboBox that's a combination of this component with an auto-complete component I found on the web (not Adobe's) if you're interested.

Re: [flexcoders] Auto resizing a list popup control of a PopUpButton

2008-10-14 Thread Mark Carter
Thanks. Yes, I did that, although my value came out to 29. I was hoping for a more general solution which would work no matter which style was applied. Naveen Booma wrote: Hi, The solution I came across for this is, find out the length of each data provider (Array collection) and

Re: [flexcoders] Integrating Flex and Grails (periods in request names)

2008-10-14 Thread Tom Chiverton
On Tuesday 14 Oct 2008, jbaileyadam wrote: I'm integration Flex with a Grails backend using RESTful web services. The integration would be easier if I was able to specify a period in a request parameter. I'd like to do the following: Is that legal XML ? I've not seen it before. -- Tom

[flexcoders] swc source attachement

2008-10-14 Thread deyoung.nick
i cannot attach a source to a flex projects attached swcs. Does anyone else get errors and have the ide not find the source?

Re: [flexcoders] get an object with a name

2008-10-14 Thread Tom Chiverton
On Saturday 11 Oct 2008, achegedus wrote: being validated. in this case it's a textbox. There is a field property for the ValidationResultEvent event, but now I need to get the actual object. is there a way to get the object from the name? Is currentTarget or something not up for it ? --

[flexcoders] Re: Flex-based e-larning tool

2008-10-14 Thread Amy
--- In flexcoders@yahoogroups.com, ArnĂ³bio Silva [EMAIL PROTECTED] wrote: hi, i need to develop a tiny flex-based e-learning tool, for a small company that don't want to buy the entire adobe e-learning tool... I need all the basics of this kind of tool, including screen sharing. how

RE: [flexcoders] How long does it usually take for new topics to post?

2008-10-14 Thread Dimitrios Gianninas
We are only a hand full of moderators and we try to approve messages as fast as possible, so sometimes it might take up to a day to get your message approved, we just ask for little bit of patience. Take me for example, I'm from Canada, it was Thanksgiving for us here, so I wasn't next to PC

Re: [flexcoders] Creating a shake effect

2008-10-14 Thread Max Pimm
As easy as that! Thankyou. Dimitrios Gianninas wrote: I've already done it mx:Sequence id=shake mx:Move target={loginPanel} duration=150 xBy=10/ mx:Move target={loginPanel} duration=150 xBy=-20/ mx:Move target={loginPanel} duration=150 xBy=15/ mx:Move target={loginPanel}

[flexcoders] Even driven form

2008-10-14 Thread markgoldin_2000
I am designing different data entry forms. They all have same pushbutton Run. In a very simple scenario I would have a text field and a button.I want to have same result whether the user clicks on a button, or hits enter when he is done entering data into a text box. I could probably simply

[flexcoders] How can I create a dynamic button that adds a new panel in my mx:Tile?

2008-10-14 Thread sailorsea21
Hello everyone, How can I create a dynamic button that adds a new panel or canvas in my mx:Tile/mx:Tile everytime I click it? Thanks!

[flexcoders] App within App

2008-10-14 Thread Don Kerr
I know how to include an MXML Component inside an mx:Application, but... can I include one entire app within another app? I have one small Flex app that provides a global function needed by many other Flex apps. However, It needs to stay a separate, standalone app. I don't want to have to link

[flexcoders] Creating a shake effect

2008-10-14 Thread Max Pimm
Hi I have a panel that displays username and password fields. If the user supplies a username and password that are not correct i would like to shake the panel. By this i mean move it to the left, right, left, right quickly. I would have thought that this must already have been done but have

RE: [flexcoders] App within App

2008-10-14 Thread Tracy Spratt
Yes, this is a job for SWFLoader. It will work fine. There are some timing and data type issues to handle if you want to establish communication with the loaded application. Here is an example: http://www.cflex.net/showFileDetails.cfm?ObjectID=690 Tracy

RE: [flexcoders] Problems with assets in release build

2008-10-14 Thread Tracy Spratt
I used to get tangled up in relative urls a lot so I finally started passing root urls into my application via the wrapper. I do this for assets and for my RPC service urls. One advantage to this is a single deployment of code can operate as many different applications. It also supports

RE: [flexcoders] XML object ?xml version=1.0 ? line

2008-10-14 Thread Tracy Spratt
What happens if you build the xml with a string containing that line? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of diehlryan Sent: Monday, October 13, 2008 11:32 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] XML

[flexcoders] Performance...

2008-10-14 Thread aceoohay
I have a flex application that I have written, and is deployed in an intranet environment. Between 15 20 users use windows terminals attached to a w2k3 server. It has 2GB of memory. Today I got a complaint of everything running slowly. I logged in and saw the CPU pretty much maxed out and

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

2008-10-14 Thread Tracy Spratt
..As far as Robohelp, they were acquired by Macromedia and so now Adobe has that too. Actually I knew that and was slyly hinting that Adobe has to tools to produce a full solution to the help-system-in-Flash-Player problem. I have googled for some indication that such an integration was being

RE: [flexcoders] Problem with the DataGrid column keeps switching location

2008-10-14 Thread Tracy Spratt
I have done this successfully. I suspect you have an itemRenderer recycle problem. Are you overriding all the proper functions? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Weyert de Boer Sent: Monday, October 13, 2008

RE: [flexcoders] get an object with a name

2008-10-14 Thread Tracy Spratt
Does event.target, or event.currentTarget resolve to a reference on that event type? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of achegedus Sent: Saturday, October 11, 2008 4:57 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Even driven form

2008-10-14 Thread Tracy Spratt
Have the button.click handler and the keyboard event handler both call the same function. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Tuesday, October 14, 2008 11:56 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Performance...

2008-10-14 Thread Tracy Spratt
Can you more clearly define what is server-side and what is client-side? And exactly what do you mean by windows terminal? Are we talking thin clients, or something? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of aceoohay

[flexcoders] Will flashplayer ever handle multiple mouseEvents at same time?

2008-10-14 Thread djhatrick
I am curious, when flashplayer will handle multiple mouseEvents at the same time? With the new macbook track pad, and surface technology coming to be really popular, I'm wondering what that means in the future of the flash world, even for kiosks... etc? Is this working in a lab somewhere?

RE: [flexcoders] How can I create a dynamic button that adds a new panel in my mx:Tile?

2008-10-14 Thread Tracy Spratt
Here is a very simple example. http://www.cflex.net/showFileDetails.cfm?ObjectID=562 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sailorsea21 Sent: Tuesday, October 14, 2008 12:17 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Custom Tooltip

2008-10-14 Thread Tracy Spratt
As Amy says, DataTipFunction gets passed the entire item object. It can also access data elsewhere in scope. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manu Dhanda Sent: Monday, October 13, 2008 10:09 PM To:

[flexcoders] Re: Even driven form

2008-10-14 Thread nathanpdaniel
You could do the following (as Tracy has stated - just written out): mx:TextInput text= enter=onButtonClick() / mx:Button label=Submit click=onButtonClick() / --- In flexcoders@yahoogroups.com, markgoldin_2000 [EMAIL PROTECTED] wrote: I am designing different data entry forms. They all have

RE: [flexcoders] Custom Tooltip

2008-10-14 Thread Tracy Spratt
Never mind, I see that won't help what you are trying to do. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Tuesday, October 14, 2008 2:53 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Custom

Re: [flexcoders] Performance...

2008-10-14 Thread Paul Andrews
I beleive the server is running a virtual machine for each user. Each user has a thin client that behaves like a PC - the server just updates the display. With 2GB of memory, CPU performance aside, each user is effectively running on a Windows box with 100MB of memory. It seems that the server

[flexcoders] Re: Even driven form

2008-10-14 Thread markgoldin_2000
Yeah, but a button and a InputText are in two different forms. I am assembling my forms using building blocks. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Have the button.click handler and the keyboard event handler both call the same function. Tracy

[flexcoders] Re: XML object ?xml version=1.0 ? line

2008-10-14 Thread diehlryan
Same result, nothing shows up. var xml:XML = new XML(?xml version='1.0'?result/result); Output is result/

[flexcoders] Open/Save Dialog for FileReference.download()

2008-10-14 Thread Battershall, Jeff
My experience using FileReference.download() is that the dialog does not provide open capability, only save. My clients want save also. Is there any hope for the future that this will be supported? This, along with the ability to invoke the default file editor for file types in AIR, would be two

[flexcoders] Accessing *other* browser plugins from Flash

2008-10-14 Thread Eric Cooper
Hi, I have access to some powerful C++ functionality. Porting this to ActionScript is not an option. However, it looks like I could create a browser plugin that would wrap the C++ code. I am looking for pointers, caveats or advice on how to proceed. The obvious question is: can a .swf call

Re: [flexcoders] AIR with twitter

2008-10-14 Thread meaglith
Check the crossdomain.xml of twitter, http://www.twitter.com/crossdomain.xml On Mon, Oct 13, 2008 at 6:02 PM, abhishekchess1 [EMAIL PROTECTED]wrote: hello all frnds, i want to connect my AIR application with twitter API, i never used any API before, i used mx:HTTPService

Re: [flexcoders] Re: How to make an RPC call secure

2008-10-14 Thread Tom Chiverton
On Saturday 11 Oct 2008, Abdul Razak PM wrote: a) In J2EE project we will use session Id to ensure call comes from the same user.is it necessary in flex client also? if so how we can achieve session Id in client, some example also. I thought J2EE serlet's had something that Just Worked.

Re: [flexcoders] Re: XML object ?xml version=1.0 ? line

2008-10-14 Thread Maciek Sakrejda
Have you tried setting XML.ignoreProcessingInstructions = false ? I haven't tried this, but it seems like this could have an effect... -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com On Tue, 2008-10-14 at 18:47 +, diehlryan wrote: Same result, nothing shows up. var xml:XML =

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

2008-10-14 Thread Brian Kurzius
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 -- it even properly displays links and images. The one problem (ironically) was that it can't display inline flash--like YouTube videos. So I tried the iframe

[flexcoders] Flex-based e-larning tool

2008-10-14 Thread ArnĂ³bio Silva
hi, i need to develop a tiny flex-based e-learning tool, for a small company that don't want to buy the entire adobe e-learning tool... I need all the basics of this kind of tool, including screen sharing. how can i do it? please, point me to books and websites that teaches how to develop this

[flexcoders] get an object with a name

2008-10-14 Thread achegedus
I have some custom validation and now I have a problem.. I'm creating validations dynamically as part of the actionscript that I use to create the numberValidator I have this line: thisValid.addEventListener(ValidationResultEvent.INVALID, handleInvalidEvent); In the handleInvalidEvent method i

RE: [flexcoders] Re: Even driven form

2008-10-14 Thread Tracy Spratt
Ah, ok, than have the click handlers in your components first stopPropagation, then dispatch a special event, say doRun. Then listen for tat event. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Tuesday,

RE: [flexcoders] Accessing *other* browser plugins from Flash

2008-10-14 Thread Tracy Spratt
You can explicitly allow swf scripting in the html wrapper. It might take bit to get the security side handled, but it is doable. You would actually control/communicate with the other objects by scripting them using javascript and ExternalInterface. Tracy

RE: [flexcoders] Re: XML object ?xml version=1.0 ? line

2008-10-14 Thread Tracy Spratt
Hmm, don't know then, will post if I see anything. And by the way do not use new with XML(). XML() is not really a constructor, it is a top-level function. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of diehlryan Sent:

Re: [flexcoders] How long does it usually take for new topics to post?

2008-10-14 Thread Richard Rodseth
I think it may be the way gmail works. I've noticed that my posts don't show up under my flexcoders tag until I get a reply. On Mon, Oct 13, 2008 at 12:16 PM, lagos_tout [EMAIL PROTECTED] wrote: Hi, How long does it take for a new topic to post to this group? I submitted one last Friday

Re: [flexcoders] App within App

2008-10-14 Thread O. Frabjous-Dey
There's also a very detailed section in the Flex documentation about Module and ModuleLoader (which is a subclass of SWFLoader with some candy added). On Tue, Oct 14, 2008 at 10:16 AM, Don Kerr [EMAIL PROTECTED] wrote: I know how to include an MXML Component inside an mx:Application, but...

Re: [flexcoders] Deep Linking Problem with First Link

2008-10-14 Thread Clint Combs
Since posting this issue to the list I've opened a bug report and attached my example. http://bugs.adobe.com/jira/browse/SDK-17197 I decided to try a new implementation using URLKit, but was a little surprised to find that it behaved the same way. I've attached another example to the bug

RE: [flexcoders] Reusing HTTPService

2008-10-14 Thread Tracy Spratt
This is a normal pattern. What about it makes you uncomfortable? You are using a single result handler function, correct? The switch() statement makes chaining calls easy and facilitates debugging since a single breakpoint or trace() will track all RPC calls. I have found that two string

Re: [flexcoders] Checkbox label vertical Alignment

2008-10-14 Thread Naveen Booma
Tracy, No ! I dont want the label to rotate, instead I wanted to align the label vertically bottom... To make things more clear, try labeling a checkbox and you will find the label to be placed in center of the checkbox, but I wanted to move the label few pixels down. I did also try a checkbox

[flexcoders] [Servlet Error]-[MessageBrokerServlet]: Secure must be contacted via secure prot

2008-10-14 Thread sachin_52263
We are using flex 3, blazeDS and Java Application (spring, hibernate, DB2). We are using WebSphere server. We tested our project on local and dev and its worked fine (on http channel). Now we are moving to QA where the development environment is slightly changed. We have 2 servers on QA. We

RE: [flexcoders] Custom Tooltip

2008-10-14 Thread Gordon Smith
Why not? Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Tuesday, October 14, 2008 11:56 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Custom Tooltip Never mind, I see that won't help what you are trying

[flexcoders] Reusing HTTPService

2008-10-14 Thread lagos_tout
Hi, I'm re-using an instance of HTTPService, changing the request arguments to get different responses from the server. But I found that if, for instance, I made 3 calls this way with the HTTPService, each of the 3 result handlers registered for each call is executed every time a result

Re: [flexcoders] Efficiency and objects in the display list

2008-10-14 Thread Guy Morton
Anyone? On 14/10/2008, at 11:34 AM, Guy Morton wrote: We have an app which adds 50 or 60 dynamically created and animated canvas-based objects to the display list as it runs. I've noticed when running this under the profiler that even though these canvas-based components are really simple

Re: [flexcoders] Efficiency and objects in the display list

2008-10-14 Thread Josh McDonald
If they don't need mouse events, base them on Shape instead. On Wed, Oct 15, 2008 at 7:09 AM, Guy Morton [EMAIL PROTECTED] wrote: Anyone? On 14/10/2008, at 11:34 AM, Guy Morton wrote: We have an app which adds 50 or 60 dynamically created and animated canvas-based objects to the display

[flexcoders] How long does it usually take for new topics to post?

2008-10-14 Thread lagos_tout
Hi, How long does it take for a new topic to post to this group? I submitted one last Friday using the site (not email) and it still hasn't shown up. This isn't the first time that's happened either. Just trying to figure out if maybe it's a problem on my end. Thanks. LT

RE: [flexcoders] Creating a shake effect

2008-10-14 Thread Dimitrios Gianninas
I've already done it mx:Sequence id=shake mx:Move target={loginPanel} duration=150 xBy=10/ mx:Move target={loginPanel} duration=150 xBy=-20/ mx:Move target={loginPanel} duration=150 xBy=15/ mx:Move target={loginPanel} duration=150 xBy=-10/ mx:Move target={loginPanel} duration=150 xBy=5/

RE: [flexcoders] Checkbox label vertical Alignment

2008-10-14 Thread Tracy Spratt
Do you mean actually rotate the text so it reads vertically? Having never done this before I would probably make a composite component consisting of a checkbox with no label and a separate label that was rotated. Note, to rotate text, the font must be embedded. Tracy

[flexcoders] Re: Even driven form

2008-10-14 Thread markgoldin_2000
I am trying to follow docs to do that but it's a bit above of my head. Any sample code for the begginers? --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Ah, ok, than have the click handlers in your components first stopPropagation, then dispatch a special event, say

[flexcoders] Re: Custom Tooltip

2008-10-14 Thread ross_w_henderson
Manu, There may be an easier way to do this, but I think you'll need to create a new ToolTipBorder object, and either have it accept an ArrayCollection (or whatever) in its constructor, or else make a public var on the object (i.e. myToolTipData:ArrayCollection = new ArrayCollection;).

[flexcoders] Re: Flex Project to be converted to run on WebOrb

2008-10-14 Thread valdhor
All you need to do is update your compiler settings to use the remoting-config.xml and services-config.xml files. Something like: -locale en_US -services services-config.xml Make sure your xml files are set up to point to your server. Then create your remote objects in ActionScript and use

[flexcoders] Checkbox label vertical Alignment

2008-10-14 Thread Naveen
Hello everyone, I have been trying to align the label of a checkbox vertically, but I cannot find a way to do that. Can anyone suggest me a way to do that ?? Thank you, Naveen

[flexcoders] Re: Efficiency and objects in the display list

2008-10-14 Thread amitt.mahajan
I have this same problem. While looking for a solution I came across using a double-buffering and blitting method for drawing objects instead of using flex objects to reduce overhead. You can read about it here,

[flexcoders] Re: Performance...

2008-10-14 Thread aceoohay
More clarity; There is a IIS/DB Server that serves the pages/swf files, runs the backend asp.net and houses the datbase. It runs fine. There are a number of PCs (20 or so) they run fine. There is a windows 2003 server running terminal services, with about 20 RDP sessions from windows

Re: [flexcoders] Where is Alex Ahauri??

2008-10-14 Thread Michael Schmalle
Hi, He was on vacation for over a month. If I was him, after that long of vacation not doing anything job related, I would be enjoying programming in flex again. I bet that is what he is doing... enjoying his work again. :) I'm sure you will see him around. Personally, I can't see how he can

[flexcoders] Re: ComboBox edit field selection when populated

2008-10-14 Thread valdhor
Thanks Tracy and Mark. I had not seen the AutoComplete component(s) and my Google searches weren't working because I had no idea what it was called. --- In flexcoders@yahoogroups.com, Mark Carter [EMAIL PROTECTED] wrote: Have you tried google for an autocomplete component? This should be

[flexcoders] LCDS manualsync createItem data routing

2008-10-14 Thread enviiro
im using LCDS 2.6, I have auto-sync-enabled=false and im using manualsync. I've read, deleteItem() should be handled automaticaly and seems deleteItem is working fine. But when i use createItem(), seems that data are routed to clients but item isn't added to fill. I have no clue where is

[flexcoders] Where is Alex Ahauri??

2008-10-14 Thread jitendra jain
Hi Alex, So many days we have not witnessed any messages from you... Where are you?? Thanks, with Regards, Jitendra Jain Add more friends to your messenger and enjoy! Go to http://messenger.yahoo.com/invite/

Re: [flexcoders] Accessing *other* browser plugins from Flash

2008-10-14 Thread Josh McDonald
Why not embed Player inside your a C++ app and bypass the browser entirely? On Wed, Oct 15, 2008 at 5:39 AM, Tracy Spratt [EMAIL PROTECTED] wrote: You can explicitly allow swf scripting in the html wrapper. It might take bit to get the security side handled, but it is doable. You would

[flexcoders] Re: Date chooser component with only months and years

2008-10-14 Thread lagos_tout
Cool. Thanks, James. --- In flexcoders@yahoogroups.com, james.tundra [EMAIL PROTECTED] wrote: Hi, You can hide the date grid in the component, by using the mx_internal namespace: e.g: myDateChooser.mx_internal::dateGrid.visible = false you can then just grab the month / year values

[flexcoders] Flex themes

2008-10-14 Thread Amy
Is there a place where you can view the other themes that come with Flex? The style explorers seem to be hard coded to Halo. Thanks; Amy

[flexcoders] Re: Flex themes

2008-10-14 Thread nathanpdaniel
The themes that come with flex are only css based. They're located under the install directory, {install dir}\sdks\{sdk #} \frameworks\themes You can import these the same way you do other artwork (File-Import- Skin Artwork) You can't really change the theme of the Flex project without

[flexcoders] Re: Flex themes

2008-10-14 Thread nathanpdaniel
And if I missunderstood what you were asking - and you just want other Flex skins - there's always ScaleNine.com :D --- In flexcoders@yahoogroups.com, nathanpdaniel [EMAIL PROTECTED] wrote: The themes that come with flex are only css based. They're located under the install directory,

RE: [flexcoders] [Servlet Error]-[MessageBrokerServlet]: Secure must be contacted via secure prot

2008-10-14 Thread Seth Hodgson
I'd suggest checking the console for startup errors (you could alternately use the ServletLogTarget to route log output to your servlet container's log files). The client is receiving a 404 attempting to interact with your BlazeDS endpoint, that should be available at:

[flexcoders] Re: Flex themes

2008-10-14 Thread Amy
--- In flexcoders@yahoogroups.com, nathanpdaniel [EMAIL PROTECTED] wrote: The themes that come with flex are only css based. They're located under the install directory, {install dir}\sdks\{sdk #} \frameworks\themes You can import these the same way you do other artwork (File-Import- Skin

[flexcoders] component resize on registration point revisit?

2008-10-14 Thread gwangdesign
I did this little exercise to shrink a UIComponent from center. The component is scaled down when a button is clicked and scaled back to its original size when the mouse is released. It seems working fine except that the component shifts a little bit to top-left with each click. I cannot figure

Re: [flexcoders] component resize on registration point revisit?

2008-10-14 Thread Josh McDonald
Without looking at your code, it's probably just a rounding error, IEEE floats aren't very nice. I'd keep the original top/left value put aside for when you return it to full size. -Josh On Wed, Oct 15, 2008 at 8:46 AM, gwangdesign [EMAIL PROTECTED] wrote: I did this little exercise to shrink

Re: [flexcoders] component resize on registration point revisit?

2008-10-14 Thread Michael Schmalle
IEEE floats aren't very nice. I second that! They make you become creative... add scale and rotation together, the IEEE floats start to float away. Mike On Tue, Oct 14, 2008 at 6:50 PM, Josh McDonald [EMAIL PROTECTED] wrote: Without looking at your code, it's probably just a rounding

Re: [flexcoders] Re: Flex themes

2008-10-14 Thread Michael Schmalle
Amy, A flex theme is just a SWC file. Use the -theme compiler flag and add it to the options. Why would this be silly? Probably would take me the time it took you to write that paragraph. ;-) But I don't have the theme.swc sitting in my test project, so add 1 more minute. :) Mike On Tue, Oct

[flexcoders] Re: component resize on registration point revisit?

2008-10-14 Thread gwangdesign
gotcha! thx! --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: IEEE floats aren't very nice. I second that! They make you become creative... add scale and rotation together, the IEEE floats start to float away. Mike On Tue, Oct 14, 2008 at 6:50 PM, Josh

[flexcoders] Re: Flex themes

2008-10-14 Thread Amy
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Amy, A flex theme is just a SWC file. Use the -theme compiler flag and add it to the options. Why would this be silly? Probably would take me the time it took you to write that paragraph. ;-) But I don't have

Re: [flexcoders] Re: Flex themes

2008-10-14 Thread Michael Schmalle
I was just seeing if you were actually reading my posts. :) Mike On Tue, Oct 14, 2008 at 7:07 PM, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Amy, A flex theme is just a SWC file. Use the

[flexcoders] DataGrid headerrenderer prevent redraw

2008-10-14 Thread aphexyuri
Hi I have a datagrid with valious headerRenderers. These headerRenderers have controls in them, for adjusting results in the datagrid. When I change the dataProvider for the datagrid, the entire datagrid gets redrawn, including the headerRenderers. Is there a way to bypass that? I see that the

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

2008-10-14 Thread Michael Schmalle
I'm writing a component that will integrate help in applications using the DocBook xml format and an as3 parser - ui converter. This is coupled with an asdoc generator application. Patterns are based of of Eclipse's help system framework. I think I might release this open source some day. Screw

RE: [flexcoders] Open/Save Dialog for FileReference.download()

2008-10-14 Thread Dimitrios Gianninas
You cannot open local files in Flex, since the app is running inside the browser sandbox. With AIR however you can. As for the later, not sure if and when they will add that capability to AIR, there is no concrete information yet. Dimitrios Gianninas Optimal Payments Inc. -Original

RE: [flexcoders] Accessing *other* browser plugins from Flash

2008-10-14 Thread Tracy Spratt
Now *that's* thinking outside the box! Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Tuesday, October 14, 2008 6:02 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Accessing *other* browser

[flexcoders] Image Data Caching

2008-10-14 Thread Jesse Warden
Anyone already built an image caching solution? What about data? I have the need to cache an immense amount of images and data locally. No, I cannot use AIR. Since I cannot depend on the browser cache, I'm currently using a modified version of Ely's SuperImage, and plan on saving the images as

[flexcoders] Re: Couple questions

2008-10-14 Thread brucewhealton
Paul, Thanks for the tip. I wonder if the AS 3.0/Flex library includes any components that would work as slides players. My flex builder application is having problems when I try to pull up the help files/documents. So, would you know of where I could go to find info. on what is

[flexcoders] Re: App within App

2008-10-14 Thread Don Kerr
Thanks Tracy (F-D:)! I'll give swfLoader a try! Don --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Yes, this is a job for SWFLoader. It will work fine. There are some timing and data type issues to handle if you want to establish communication with the loaded

[flexcoders] My Flex Form

2008-10-14 Thread brucewhealton
Hello all, Flex is not liking the way I setup the Object in a CDATA block in a Form Component. I have a Form component in a forms subfolder/subdirectory of the src directory/folder. I have an application in the src folder called FormRequest.mxml and in the forms folder I setup

[flexcoders] Every second time I debug my app, Flex closes Safari :(

2008-10-14 Thread Josh McDonald
Hey guys, In one or two workspaces, everything works fine. In most of them, however, every second time I debug an app, everything goes as normal but then Builder kills the Safari application (not just the old tab, but the entire app). This is of course *incredibly* annoying given how slow all

[flexcoders] Re: Every second time I debug my app, Flex closes Safari :(

2008-10-14 Thread Rob Kunkle
I think this happens because the debugger is still running when you start it the second time. Try pressing the red stop debugging square in flex builder to stop the debugger, and see if that fixes the problem. r --- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: Hey

Re: [flexcoders] Re: Every second time I debug my app, Flex closes Safari :(

2008-10-14 Thread Josh McDonald
Doing that kills the entire browser process. I really can't for the life of me figure out the problem. I've had it happen from Builder and from Flex Plugin, and only in some workspaces even on the same machine :( -Josh On Wed, Oct 15, 2008 at 3:24 PM, Rob Kunkle [EMAIL PROTECTED] wrote: I

Re: [flexcoders] Re: Every second time I debug my app, Flex closes Safari :(

2008-10-14 Thread Josh McDonald
If I reload the app (and kill the debugging session) in the browser beforehand, then Builder will reuse the tab correctly without killing the browser. -Josh On Wed, Oct 15, 2008 at 3:41 PM, Josh McDonald [EMAIL PROTECTED] wrote: Doing that kills the entire browser process. I really can't for