[flexcoders] Remove ComboBox button

2008-10-08 Thread sanjit kumar
Hi, I would like to know if it possible to remove the "Arrow Button" from "ComboBox" in Flex1.5.If anybody has a clue please reply. Thanks.

[flexcoders] Re: coloring a box

2008-10-08 Thread Claudiu Ursica
Try this: package com.whatever.anotherwhatever.gradientbox { import mx.containers.Box; [Style(name="fillColors", type="Array", arrayType="Number", format="Color", inherit="no")] public class GradientBox extends Box { import flash.display.*;

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

2008-10-08 Thread Abdul Razak PM
Hi Tom Chiverton, Thanks for the reply Please provide some links to study more about it. Also What's the possibility of Hacking our code if we didn't make it secure? It's very helpful to get it's theoretical explanations too. Razak --- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED

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

2008-10-08 Thread shaun
Dan Pride wrote: > My problem is there seems to be no way to kick the event to change > the value. Here is the code, all of it. It can be seen in action at [snip] Change: public var currentPerson:Object = new Object(); To: private var _currentPerson:Object = new Object(); [Bindable] public func

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

2008-10-08 Thread Paul Kukiel
Take a look at Ben Forta's extended comboBox: http://www.forta.com/blog/index.cfm/2006/11/22/Flex-ComboBox-With-selectedVa lue-Support Paul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Thursday, 9 October 2008 2:51 PM To: flexcoders@yahoogr

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

2008-10-08 Thread Josh McDonald
Dan, what you're trying to do is a simple thing, but I think you're complicating it. Assuming you're using numbers or strings in your combobox and data, simply bind selectedItem="{ currentRecord.myValue }" If you're using something more complicated, say the dataprovider for the CB is an array of

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

2008-10-08 Thread Dmitri Girski
Nope, this won't work. Next call creates new instances which don't correspond to the instances from the first call. You have to loop through the dataProvider, find the corresponding item (by label, id, whatever) and say Combo.selectedItem = ArrayCollection(Combo.dataProvider).getItemAt(i) this

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

2008-10-08 Thread Dan Pride
View source at http://www.archaeolibrary.com/Gezer/srcview/ very nice feature by the way. Dan --- On Wed, 10/8/08, Dan Pride <[EMAIL PROTECTED]> wrote: > From: Dan Pride <[EMAIL PROTECTED]> > Subject: RE: [flexcoders] Re: ComboBox in Component won't open to Saved Value > To: flexcoders@yahoogrou

[flexcoders] Collapse branch in Tree changes selection but does not trigger CHANGE event

2008-10-08 Thread Mark Carter
I think this is a bug, but am not sure. If I have a tree with a child item selected and then I collapse/close the branch containing that selection, the selection is automatically changed to the item I collapsed but no CHANGE event is triggered. Is this a bug? -- View this message in context: h

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

2008-10-08 Thread Dan Pride
My problem is there seems to be no way to kick the event to change the value. Here is the code, all of it. It can be seen in action at http://www.archaeolibrary.com/Gezer/Staff.html Note: I have view source enabled and all files should be represented. Creation complete works on the first time

[flexcoders] could not establish connection to java data service from flex client using blazeDS

2008-10-08 Thread venkateswarlu naidu
Hi All, We have a flex+blazeDS+Java based application, after deploying the application in QA env, java data service calls are not happening. When i see the URL log in HTTP sniffer tool, the request is getting stopped at URL /messagebroker/amf and finally seeing 502 (CANNOT_CONNECT)status. The

[flexcoders] Re: How to make a Docking Window Framework/component like Eclipse/InfoDock/JDocking

2008-10-08 Thread Tim Hoff
If it's anything like your components and/or framework Mike, it's going to rock! I've found them to be very useful. -TH --- In flexcoders@yahoogroups.com, "Josh McDonald" <[EMAIL PROTECTED]> wrote: > > Mike, I'm very interested in this. Will it be for-pay, or OSS? If it's OSS, > need any help?

Re: [flexcoders] How to make a Docking Window Framework/component like Eclipse/InfoDock/JDocking

2008-10-08 Thread Josh McDonald
Mike, I'm very interested in this. Will it be for-pay, or OSS? If it's OSS, need any help? -Josh On Wed, Oct 8, 2008 at 11:37 PM, Michael Schmalle <[EMAIL PROTECTED]>wrote: > > > Ironically, I am releasing a framework like this in 2 months. Truth be > told, I have spent 1 1/2 years creating a ba

Re: [flexcoders] Best Flex Graphics Library for me?

2008-10-08 Thread Josh McDonald
Degrafa + Mocassin ( http://is.gd/3Kmy ) but you're probably still going to roll your own arrow heads. -Josh On Thu, Oct 9, 2008 at 7:09 AM, edlueze <[EMAIL PROTECTED]> wrote: > An open ended question regarding the best choice in graphics libraries > for Flex... > > I'm approaching the stage whe

Re: [flexcoders] Scaling text

2008-10-08 Thread Josh McDonald
Idea: for target width tw: 1. Guess a font-size: 2. Create a label, set text and font, call validateNow(); 3. Label.measuredWidth < tw ? goto 1 4. label.scaleX = tw / label.width -Josh On Thu, Oct 9, 2008 at 4:55 AM, Richard Rodseth <[EMAIL PROTECTED]> wrote: > I have a requirement to dis

[flexcoders] Using PureMVC on a larger scale application

2008-10-08 Thread Kyle
I have been playing aroung with PureMVC a bit lately and the part that I still get a bit confused on is how to use the framework in a larger scale application. In general I find that various pieces of my application could each use the MVC pattern by themself (for example if I had a list component,

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

2008-10-08 Thread Tracy Spratt
No, that should not work unless SDActionItem.platform is a reference to an item in the ComboBox dataProvider. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of valdhor Sent: Wednesday, October 08, 2008 12:31 PM To: flexcode

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

2008-10-08 Thread Tracy Spratt
Depends on what you mean by "simple". It will just take a few lines of code. The difficulty lies in knowing which lines. Going "ballistic" in frustration is never helpful. Take this one step at a time. Make sure you can call your function when the pop-up opens. Make sure you have the

[flexcoders] Re: AMFPHP and HierarchicalData

2008-10-08 Thread Amy
--- In flexcoders@yahoogroups.com, "valdhor" <[EMAIL PROTECTED]> wrote: > > Not with AMFPHP, but I do with WebORB. They should be fairly close. > > I use it to create my menubar. I have Menu objects and MenuItem > objects. Each Menu object can contain MenuItem objects as well as Menu > objects. Wi

Re: [flexcoders] Re: Access of undefined property of type URLLoader

2008-10-08 Thread anuj sharma
Thanks I have fixed it On Wed, Oct 8, 2008 at 4:34 PM, Tim Hoff <[EMAIL PROTECTED]> wrote: > > No import statement? > > -TH > > > --- In flexcoders@yahoogroups.com , > "anuj181" <[EMAIL PROTECTED]> wrote: > > > > Hi > > I am simply trying to load external XML file but the builder is not > > reco

Re: [flexcoders] flex and amfphp

2008-10-08 Thread Alan
http://www.amazon.com/Essential-Guide-Source-Flash-Development/dp/1430209933 On Oct 7, 2008, at 7:46 PM, karthikeyan.sivanantham wrote: Can someone suggest a good tutorial on flex and amfphp. I

[flexcoders] Re: Access of undefined property of type URLLoader

2008-10-08 Thread Tim Hoff
No import statement? -TH --- In flexcoders@yahoogroups.com, "anuj181" <[EMAIL PROTECTED]> wrote: > > Hi > I am simply trying to load external XML file but the builder is not > recognizing one of my variable named urlLoader of type URLLoader. it > is saying "Access of undefined property urlLoader

[flexcoders] Access of undefined property of type URLLoader

2008-10-08 Thread anuj181
Hi I am simply trying to load external XML file but the builder is not recognizing one of my variable named urlLoader of type URLLoader. it is saying "Access of undefined property urlLoader, urlRequest and completeListener. Does anyone has any idea what's going on. Thanks http://www.adobe.com/

RE: [flexcoders] Re: Bad quality for JPEG encoded images ,,<***(sample images INSIDE)***>

2008-10-08 Thread Gordon Smith
>> There is a compiler that can take C / C++ code and output Actionscript >> that you might want to take a look at. > it might not be public yet. As far as I know, this was a technology demo and Adobe hasn't committed to productizing it. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoog

RE: [flexcoders] Re: Bad quality for JPEG encoded images ,,<***(sample images INSIDE)***>

2008-10-08 Thread Gordon Smith
Did you try playing with the 'quality' argument in the constructor? Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of semelak1 Sent: Friday, September 26, 2008 1:03 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Bad quality for J

[flexcoders] AdvancedDataGridHeaderRenderer loses focus on set dataProvider

2008-10-08 Thread Ryan Gravener
Take a look at this video (sorry the mouse cursor does not appear in it): http://screencast.com/t/VECik0vjuk Every time the dataProvider is set the textfield loses focus, and I can't find a way to restore it. So essentially on each key stroke the textfield loses focus, which renders it useless i

Re: [flexcoders] flex and amfphp

2008-10-08 Thread dnk
On 07/10/08 4:46 PM, "karthikeyan.sivanantham" <[EMAIL PROTECTED]> wrote: > > > > Hi guys, > I'm a flex newbie and I'm trying to use amfphp with flex. Can > someone suggest a good tutorial on flex and amfphp. I've gone through a > few links but they just demonstrate a simple app, like a h

Re: [flexcoders] Re: flex and amfphp

2008-10-08 Thread dnk
Just curious what kind of issues you ran into, and how weborb solved them. Could you reply to me off list, since this is going OT? Thanks! DNK On 08/10/08 8:39 AM, "valdhor" <[EMAIL PROTECTED]> wrote: > > > > Instead of AMFPHP I would suggest looking into WebORB > (http://www.themidnigh

[flexcoders] Best Flex Graphics Library for me?

2008-10-08 Thread edlueze
An open ended question regarding the best choice in graphics libraries for Flex... I'm approaching the stage where I'm going to have to start including some more sophisticated graphics in my application. Ultimately I need to develop a flexible tree of linked icons (like an organizational chart). E

[flexcoders] Reading sound thru remote cgi-bin generating wav

2008-10-08 Thread Mat Mikul
Hi, I am trying to play a sound which would be sent through a remote cgi-bin executable which reads a wav file and writes it to stdout. When I access that cgi-bin executable through IE, I can save the wav file (even if it saves it as the same name as cgi-bin executable). However, when I connect to

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

2008-10-08 Thread Dan Pride
> The Combobox by itself does not really support what > you're trying to do. Are you telling me that there is no simply way to have a user pick a value from a popup then redisplay that value in the popup if he goes back to the record again later? Is this a joke or a programing language? Somebo

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

2008-10-08 Thread Howard Fore
On Wed, Oct 8, 2008 at 2:04 PM, Dan Pride <[EMAIL PROTECTED]> wrote: > Geez I can set a popup and get the value back with Php or any of a number > of other languages. > Seems REALLY absurd that this is this difficult. > Different things are difficult in different languages. That's why they evolve

[flexcoders] Scaling text

2008-10-08 Thread Richard Rodseth
I have a requirement to display some text overlaid on some graphics. The catch is that the whole thing must render at different sizes and the length of the text is variable (data driven). And of course, the aspect ratio of the graphic should be preserved. I've dabbled with Degrafa. I've fiddled wi

Re: [flexcoders] Trying to Embrace MVC

2008-10-08 Thread Simon Bailey
Hi, I tend to use the PureMVC framework and would typically architecture like this: View = the UI interface i.e. form, grid, lsit etc. (in PureMVC a Mediator handles responses from the UI and pushes to the rest of the framework) Controller = handles these responses and passes to the Model

[flexcoders] Re: Excel download from flex array with AMFPHP

2008-10-08 Thread valdhor
I do this all the time from PHP. Here are the functions that I use: function sendHeader($FileName) { header("Pragma: public"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Content-Type: application/force-download"); hea

[flexcoders] mxmlc precedence between -library-path and -external-library-path

2008-10-08 Thread Engkee Kwang
When using the command line compiler... if the same SWC file exist in the -library-path and -external-library-path, which takes precedence? For example, if I compile an application using the command line and the degrafa.swc file exist in both the directories specified by the - librayr-path and -

Re: [flexcoders] Re: Feeding complex XMLdata to charts: Flex3

2008-10-08 Thread john fisher
Hey I see what you are doing, including a call I didn't know about... thanks will try this afternoon, and probably have Qs. Have to write some release notes first. I knew I was having a forest and trees problem, but sometimes you just get stuck. John Amy wrote: > > You might find this useful > h

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

2008-10-08 Thread Dan Pride
Am I going down the wrong road with ComboBox? Geez I can set a popup and get the value back with Php or any of a number of other languages. Seems REALLY absurd that this is this difficult. Dan P.S. Where do I get the custom combobox code? or will the binding approach work with a regular out of t

[flexcoders] Excel download from flex array with AMFPHP

2008-10-08 Thread aphexyuri
Hi Help will be greatly appreciated... I need to make a .xls file available for download with data from a datagrid. I'm using AMFPHP, as the datagrid info can be a lot, but i'm having trouble prompting the user for the download. The data gets to AMFPHP ok, then I build tab delimited string from

[flexcoders] Transient data for Java -> Flex

2008-10-08 Thread Collin Peters
So the [Transient] flex will prevent data in a Flex object from being serialized across the wire. What about the other way? Declaring a Java variable as 'transient' (Java keyword) doesn't seem to have the same affect Regards, Collin

[flexcoders] Re: How to default an Accordian to a "closed" state (Flex 3)

2008-10-08 Thread burttram
> Have you thought of using includeInLayout to make the children of the > containers populating the Accordion have no dimension? This will > visually look like the accordion is closed. I was asking about this not long ago (http://tech.groups.yahoo.com/group/flexcoders/message/127045) and would

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

2008-10-08 Thread Battershall, Jeff
The Combobox by itself does not really support what you're trying to do. As Tracy said there is sample code you can draw on to extend the ComboBox to accept a 'selectedValue' parameter or something of the sort, which in turn will fire internal logic to determine which item in the dataProvider match

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

2008-10-08 Thread Dan Pride
This seems absurdly difficult for so simple a function. I am trying to save a value from a popup and get it back when the list is double clicked and the form is represented with a different record selected. Not exactly rocket science. I have tried every single event and nada. Is there an "on Lo

RE: [flexcoders] Log4J like library

2008-10-08 Thread Dimitrios Gianninas
I guess because you have no server-side component then will have to build what you are suggesting. Because yes, only by configuring debug will it spit out the logging statements. But be very careful, doing a rolling log is nice, but this is on a client PC and you dont want to fill up the hard dr

[flexcoders] Trying to Embrace MVC

2008-10-08 Thread shortgrass23
This question is one part philosphical, one part technical. I am trying to embrace the idea of an MVC framework and abstraction. I started a new project with the following setup and am wondering if this is logical and, if so, how will this benefit me in the future? Thanks for any feedback. I have

[flexcoders] Re: AMFPHP and HierarchicalData

2008-10-08 Thread valdhor
Not with AMFPHP, but I do with WebORB. They should be fairly close. I use it to create my menubar. I have Menu objects and MenuItem objects. Each Menu object can contain MenuItem objects as well as Menu objects. With this structure, the Flex menubar can take the entire arraycollection as a datapro

Re: [flexcoders] Re: skinClass in external library

2008-10-08 Thread Maciek Sakrejda
Ah, I see. I didn't realize that's what Albert was asking ("I don't want my main flex app to depend on the swc file."). If that's the case, then yes--he can compile the resources into a SWF and depend on any SWF that delivers all the relevant resources, not specifically just that one. Thanks for t

[flexcoders] Re: Action script 3 JSON

2008-10-08 Thread valdhor
It appears from the original post that the error is Unexpected g encountered In your code you have echo "gyanprakash" if $_GET['getOrder'] is set. So, is $_GET['getOrder'] set? if so, you will get the error as the response will be gyanprakash (NOT JSON encoded). --- In flexcoders@yahoogroups

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

2008-10-08 Thread Dan Pride
Creation complete works the first time but the component is displayed when you click on a list, and subsequent selections are not displayed. I am having trouble figuring out which on is the correct event.? Sorry but I am relatively new at this kind of programming. Thanks Dan --- On Wed, 10/8/08

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

2008-10-08 Thread Dan Pride
Creation complete works the first time but the component is displayed when you click on a list, and subsequent selections are not displayed. I am having trouble figuring out which on is the correct event.? Sorry but I am relatively new at this kind of programming. Thanks Dan --- On Wed, 10/8/08

[flexcoders] ANSWER - Re: LiveCycleDS - Problem Accessing RemoteObject over Secure AMF

2008-10-08 Thread cwicky99
So I guess LCDS 2.6 did change some things, such as not having the flex-bootstrap JAR (not sure if this code moved somewhere else or not). But basically I updated my web.xml so all of the LCDS 2.5 stuff (as mentioned in the earlier post) is gone and I only have the servlet mapping and definitio

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

2008-10-08 Thread valdhor
Tracy I must be missing something here. I have a combobox with a dataprovider of an arraycollection that is returned from a MySQL database. This is populated on creationcomplete. Once this arrayCollection is populated I make another call to get specific data. Part of this data is a field that cor

[flexcoders] Re: skinClass in external library

2008-10-08 Thread Adnan Doric
It is possible using ANT scripts and to compile your CSS sheet containing skinClass reference. Maciek, dependency can be satisfied with style sheets loaded at runtime. This way you can change skin without recompiling your application. Cheers. --- In flexcoders@yahoogroups.com, Maciek Sakrejda

[flexcoders] AMFPHP and HierarchicalData

2008-10-08 Thread Amy
Does anyone have an example of using AMFPHP to serialize and deserialize hierarchical collections of typed objects? Thanks; Amy

[flexcoders] Re: Action script 3 JSON

2008-10-08 Thread Kyle
Is the php script that is returning the json data live somewhere on the web? Can you give me a url that I could ping that will return the json data? Thanks, Kyle --- In flexcoders@yahoogroups.com, GYANPRAKASH PANDEY <[EMAIL PROTECTED]> wrote: > > Dear Kyle, > > I did not get the error. He

[flexcoders] Re: coloring a box

2008-10-08 Thread Amy
--- In flexcoders@yahoogroups.com, "gr33neye501" <[EMAIL PROTECTED]> wrote: > > Does anyone know how to apply a gradient color to a Box control; > gradient going left to right, ie horizontally. > > I use style "fillColors: #ff, #ff" to get a vertical gradient, > top to bottom. but don't k

[flexcoders] Re: How to default an Accordian to a "closed" state (Flex 3)

2008-10-08 Thread valdhor
Have you checked into WindowShade in FlexLib? http://code.google.com/p/flexlib/wiki/ComponentList --- In flexcoders@yahoogroups.com, "Erich Cervantez" <[EMAIL PROTECTED]> wrote: > > Anyone know of a simple (or not so simple) trick to default an > accordian to a "closed" state. Basically, I'd lik

[flexcoders] Re: amf php

2008-10-08 Thread valdhor
PHP inheritance is available now. A good tutorial is at http://www.webreference.com/programming/php/class_inherit/ AMFPHP (And WebORB) allow you to "map" objects between PHP and Flex. You would connect to your database in PHP and create an array of objects to return to Flex. AMFPHP serializes thes

[flexcoders] Flex, remote shared objects and functions...

2008-10-08 Thread grimmwerks
Can anyone tell me if stuff like this is possible: so_Chat = SharedObject.getRemote("so_Chat", url, false); so_Chat.onJump = function(str:String){trace(str)} -- I thought I could set functions on a remote object? But I get errors in Flex.

[flexcoders] Re: flex and amfphp

2008-10-08 Thread valdhor
Instead of AMFPHP I would suggest looking into WebORB (http://www.themidnightcoders.com/weborb/php/). I started out with AMFPHP but ran into some problems. These all went away once I switched to WebORB. There are some great tutorials at the site (Just click on the Flex Integration tab). Also thi

Re: [flexcoders] skinClass in external library

2008-10-08 Thread Maciek Sakrejda
Short answer: no. Longer answer: What exactly are you trying to do? You're defining assets in an external swc, configuring your swf to use those assets, but you don't want a dependency on the swc? That doesn't really make any sense: the embedded skin "lives in" the swc. What do you expect to happe

Re: [flexcoders] Passing variables from ASP to flex Application

2008-10-08 Thread Adrian Williams
Hi Mark, The way I solved this challenge in our app (which is using C#/.NET for the data layer) was to create a web service call from our flex app, calling a C# WSDL. The WSDL calls a process that extracts the session variables and returns them as normal data points into the flex app, whi

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

2008-10-08 Thread Dan Pride
As Homer would say doh ! Thanks Dan --- On Wed, 10/8/08, Tracy Spratt <[EMAIL PROTECTED]> wrote: > From: Tracy Spratt <[EMAIL PROTECTED]> > Subject: RE: [flexcoders] ComboBox in Component won't open to Saved Value > To: flexcoders@yahoogroups.com > Date: Wednesday, October 8, 2008, 11:34 AM > Wh

[flexcoders] Re: How to default an Accordian to a "closed" state (Flex 3)

2008-10-08 Thread Amy
--- In flexcoders@yahoogroups.com, "Erich Cervantez" <[EMAIL PROTECTED]> wrote: > > Yes, the height of the Accordion would change whenever a user clicks a > header to open up that headers menu item contents. > > Right now, the first header "group" in the Accordion defaults to open > when the appli

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

2008-10-08 Thread Tracy Spratt
Why are you doing that in the "open" event? Try "creationComplete" instead. Or set it directly without the function. Or bind selectedIndex to a bindable variable. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan Pride Sent:

[flexcoders] Re: LiveCycleDS - Problem Accessing RemoteObject over Secure AMF

2008-10-08 Thread cwicky99
I do have an SSL cert installed. So apparently I guess LCDS 2.6 is a bit different than LCDS 2.5. I was able to use FireBug and see that when I tried to browse to my app I was getting 404's because it couldn't find FlexSwfServlet which was defined in my web.xml (based on LCDS 2.5):

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

2008-10-08 Thread Dan Pride
Thanks for the response. I understand what needs to be done as you described but I still have one problem. I tried this before. private function openGenderPop(event:Event):void { genderPop.selectedIndex = 1; } The ComboBox opened to the zero value not the 1. When I clicked on t

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

2008-10-08 Thread Tracy Spratt
ComboBox.selectedItem will only work if you assign a *reference to an item in the ComboBox dataProvider*. This is rarely possible and is not in your case. What you must do is loop over the items in the CobmoBox.dataProvider and compare the appropriate property's value to the value you want to

Re: [flexcoders] Log4J like library

2008-10-08 Thread George
Hi Shahid, For AIR application it would be much easy to log into a SQLite database. I wrote some fast code a few weeks before. http://www.neatfilm.com/2008/09/01/air-syslog-with-sqlite-source-code/ George Shahid Faiz wrote: > @Howard: Actually I am developing AIR application and I don't have a

Re: [flexcoders] Log4J like library

2008-10-08 Thread Shahid Faiz
@Howard: Actually I am developing AIR application and I don't have any my own server side where I can deploy any web service for logging. That's why I require some logging mechanism which will store information on user machine like all desktop applications do. @Dimitrios: I think, current logging

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

2008-10-08 Thread Dan Pride
Hi I have a ComboBox used as a Popup on a form component. It saves fine using the following function private function closeGenderPop(event:Event):void { ComboBox(event.target).selectedItem.label}; I want to have it display the stored value the next time it is opened. I trie

Re: [flexcoders] How to make a Docking Window Framework/component like Eclipse/InfoDock/JDocking

2008-10-08 Thread Michael Schmalle
Hi, No need to cross post from flexcomponents to flexcoders most of us read both. This is a bit of engineering on your part. This is like asking where do I start to make a space ship. There are so many details, you will need to design this from your knowledge of flex components. You might look at

[flexcoders] coloring a box

2008-10-08 Thread gr33neye501
Does anyone know how to apply a gradient color to a Box control; gradient going left to right, ie horizontally. I use style "fillColors: #ff, #ff" to get a vertical gradient, top to bottom. but don't know how to do it horizontally. your help guys is really needed. ;-)

[flexcoders] How to make a Docking Window Framework/component like Eclipse/InfoDock/JDocking

2008-10-08 Thread nathanleewei
How to make a Docking Window Framework/Component like Eclipse/InfoDock/JDocking? +RootWindow | +--SplitWindow | +--SplitWindow | | | +--TabWindow | +--TabWindow | +--TabWindow | +--Tabbar +--ViewStack +--Max Buttton +--Min Button

[flexcoders] ToggleButtonBar with bindable labels of Buttons - resourceManager

2008-10-08 Thread Christoph Leva
Dear all, I am using the resourceManager to switch between languages in my flex app. All labels (i.e. of buttons, textfields...) are bound to locale property files, that they change immediately, when the user changes the language. I have a toggleButtonBar in my app and want the labels of the but

[flexcoders] New to flex, why are the charts so tempermental?

2008-10-08 Thread Vince Gatto
Recently we decided to switch from an open source AS2 based flash chart to using Flex 3 for our charting to get more control over the styling of the chart. I'm pretty new to Flex, but so far I'm pretty disappointed by the out of the box behavior of the charts. Basically, I'm trying to do someth

[flexcoders] Create Application from Database (CAD)

2008-10-08 Thread Michael Oliver
I have installed Java and WTP on Flexbuilder 3 and have setup a MySql database, and created a database user and created tables using the DataSource Explorer and Sql Editors. Way cool. Then I used Data->Create Application from Database to create a CRUD Application for a Table and that too worked g

[flexcoders] Passing variables from ASP to flex Application

2008-10-08 Thread Mark
I would like to pass session variables in to a flex application so it remembers the user one i get into my application(flex which im using as a platform).

[flexcoders] Re: How to default an Accordian to a "closed" state (Flex 3)

2008-10-08 Thread Erich Cervantez
Yes, the height of the Accordion would change whenever a user clicks a header to open up that headers menu item contents. Right now, the first header "group" in the Accordion defaults to open when the application loads. I'd like to have that first group closed or collapsed initially and force the

[flexcoders] skinClass in external library

2008-10-08 Thread Alfz
My scenario: I have a flex builder workspace with the main flex application, and many flex libraries which are linked to the main flex app. One of that libraries contains the assets, styleSheets... it's the theme library. In the stylesheet file of this library, there are some styles defined which

[flexcoders] skinClass in external library

2008-10-08 Thread albert.imaxel
My scenario: I have a flex builder workspace with the main flex application, and many flex libraries which are linked to the main flex app. One of that libraries contains the assets, styleSheets... it's the theme library. In the stylesheet file of this library, there are some styles defined which

[flexcoders] Is It possible to use ressources in a CustomPreloader

2008-10-08 Thread Farid SALAH
Hi folks, We are using the FB3-AS3-BazeDS-Tomcat combination. We are currently deploying a multi-language application (French, English and Russian). But we are stuck with our CustomPreloader. It refuses to display a localized text. Does someone know how to get a hold on the ResourceManager i

[flexcoders] amf php

2008-10-08 Thread Deniz Davutoglu
Hello Guys, We are goint to write some application with flex/amfphp. Our php Guy ask me how can we create inheritance in php classes or how we can settle continuality in application. For exsample we have one class to connect to database another that check login status(which need to get some data

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

2008-10-08 Thread Tom Chiverton
On Wednesday 08 Oct 2008, Abdul Razak PM wrote: > Yes Both flex and Java are my codes. Flex using Cairngorm framework > for Java uses spring and tomcat TLS with client certificates then. Probably using digest authentication, if you can. -- Tom Chiverton Helping to carefully deliver user-c

Re: [flexcoders] Re: Flex and BlazeDS in internet environment

2008-10-08 Thread Tom Chiverton
On Wednesday 08 Oct 2008, Joshua Partogi wrote: > internet. So user will access the flex application that is on a remote > machine from their browser on their local machine. What do I need to > write on the endpoint? Should I write the remote server domain name If you like. You might be able to u

[flexcoders] Re: Flex and BlazeDS in internet environment

2008-10-08 Thread Joshua Partogi
--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Wednesday 08 Oct 2008, Joshua Partogi wrote: > > > Do you expect 'localhost' to resolve to the correct thing for your > > > users, on > > > their machines ? > > > > Yes. I expect user to be able to access the apps an

Re: [flexcoders] Re: Action script 3 JSON

2008-10-08 Thread GYANPRAKASH PANDEY
Dear Kyle, I did not get the error. Here is my php code; id= '1';     $p->d_date= '02-03-2008';     $p->name = 'Gyanprakash Pandey';         echo "gyanprakash";     echo ($p);     echo "gyan"; } else {     $p = new Order();     $p->id= '1';     $p->d_date= '02-03-2008';     $p->name = 'Gyanprakas

[flexcoders] Re: Problem handling RemoteObject Errors

2008-10-08 Thread reflexactions
Yeah, the code I showed in an earlier message shows that Adobe have a try catch already which is supposed to then raise the Fault Event so us putting a try catch round their try catch would achieve nothing. This whole issue is about Adobe raising an event in a catch block and that the Adobe cod

Re: [flexcoders] Re: Flex and BlazeDS in internet environment

2008-10-08 Thread Tom Chiverton
On Wednesday 08 Oct 2008, Joshua Partogi wrote: > > Do you expect 'localhost' to resolve to the correct thing for your > > users, on > > their machines ? > > Yes. I expect user to be able to access the apps and resolve the > correct thing on their machine. You expect them to be running your server

Re: [flexcoders] Log4J like library

2008-10-08 Thread Howard Fore
How do envision such a component working? Given that Air and Flex are front-end technologies, wouldn't the log storage be on the back-end, thus implying both some communication between the two and the back-end component that does the log writing and storage? You could create a web service (written

Re: [flexcoders] Log4J like library

2008-10-08 Thread Josh McDonald
So cook it up and OSS it :) It's really only a day or two's work. -Josh On Wed, Oct 8, 2008 at 3:41 PM, Shahid Faiz <[EMAIL PROTECTED]> wrote: > Anatole, > > Thanks for the link. I have looked at myflex.org, > cimlogbook, > renaun.com

[flexcoders] Re: External Item Renderer Question

2008-10-08 Thread Tim Hoff
Cool. Probably parentDocument or Application.application.blah.blah.blah would have fixed that. But, you're better off going with the event approach (loose coupling). -TH --- In flexcoders@yahoogroups.com, "jmfillman" <[EMAIL PROTECTED]> wrote: > > I just went with dispatchEvent, and it's worki