[flexcoders] Re: Dynamic Accordion

2009-03-25 Thread valdhor
> > I tried the example from valdhor and I get errors when I run it. I decided > to create a small example and run it. When I do, the single vbox that I > created is repeated until I close my browser. Can someone tell me what I am > doing wrong??? Thanks for the help all: > &

[flexcoders] Re: Weborb

2009-03-25 Thread valdhor
My 2c... I use WebORB with PHP. My reasons are twofold. One, it just works. I started out with AMFPHP but it seemed very fragile. One day it would work just fine, the next I would get delivery in doubt error messages and reverting to the older code would not get rid of them. WebORB has been ro

[flexcoders] Re: Context Menu Bug in FlashPlayer ?

2009-03-25 Thread valdhor
I tried your code and it crashes my browser here. I could not find a way to stop that behavior in my (Admittedly short) testing. The only thing that jumped out at me was that your blankMenu is a null object as it is never instantiated. Unfortunately, even if it is instantiated, the crashing con

[flexcoders] Re: remoteobject and parameters

2009-03-24 Thread valdhor
> seemed really high and it was a yearly fee. > > I would agree, I only use httpservice when I need to attach to a server that > I have no control over. > > > > From: flexcoders@yahoogroups.com on behalf of valdhor > Sent: Tue 3/24/

[flexcoders] Re: Variable SampleDataEvent is not defined.

2009-03-24 Thread valdhor
Maybe clean the project? --- In flexcoders@yahoogroups.com, Aaron Hardy wrote: > > Hey everyone. A couple months ago I worked on an AIR project where we made > use of the SampleDataEvent class to generate dynamic audio. Today I came > back to the project and ran it and am getting the following

[flexcoders] Re: Custom Classes and Custom Events

2009-03-24 Thread valdhor
For a start you are going to need a constructor. You will also need member properties for the items you want to add to the event.. package events { import flash.events.Event; public class recordEvent extends Event { public static const RECORD_EVENT:String = "recordEvent"; public var

[flexcoders] Re: Dynamic Accordion

2009-03-24 Thread valdhor
Quick and dirty using the example code at http://livedocs.adobe.com/flex/3/langref/mx/containers/Accordion.html#in\ cludeExamplesSummary... http://www.adobe.com/2006/mxml"; layout="vertical" creationComplete="onCreationComplete()"> --- In flexcoders@yahoogroups.com

[flexcoders] Re: remoteobject and parameters

2009-03-24 Thread valdhor
You need to decide whether you want to use AMF with objects or HTTPService with POST/GET parameters. I recommend using the former. These two threads should get you going using RemoteObjects and WebORB: http://tech.groups.yahoo.com/group/flexcoders/message/134254 http://tech.groups.yahoo.com/grou

[flexcoders] Re: strange problem with remote object

2009-03-24 Thread valdhor
hey, thanks guys for helping i have it working now. i googled passing flex > parameters in remoteobject as tracy suggested and the solution was just as > valdhor had suggested except valdhor missed the arguments tag otherwise this > is how it is in my remote object > &g

[flexcoders] Re: which one is better to use?

2009-03-24 Thread valdhor
I have found that using an arrayCollection of typed objects is much faster for me. I don't have the overhead of the XML parser. It tends to depend on the amount of data being returned. In some of my cases I am returning 5,000+ rows of data. With typed objects this is around 175KB over the pipe.

[flexcoders] Re: How to make "show" event work?

2009-03-24 Thread valdhor
creationComplete and show are two separate events. If you need both to work the same, include both event handlers... http://www.adobe.com/2006/mxml"; width="912" height="444" show="Alert.show('test')" creationComplete="Alert.show('test')"> --- In flexcoders@yahoogroups.com, "markflex2007" wro

[flexcoders] Re: How to add more context menu???

2009-03-23 Thread valdhor
Is there any reason you can't use the workaround they suggest in Jira? Main Application: http://www.adobe.com/2006/mxml"; creationComplete="init()" xmlns:custom="*"> myTextArea.as: package { import flash.events.ContextMenuEvent; import flash.text.TextField; import flash.ui

[flexcoders] Re: strange problem with remote object

2009-03-23 Thread valdhor
The problem is that you are not sending any data from Flex. You have remoteObj.userData.send() on creationComplete but you do not have any parameters for that function so no data is sent. The CF code requires the username and password parameters but does not get them. You obviously want to sen

[flexcoders] Re: AMFPHP Question

2009-03-20 Thread valdhor
The remoteObject is asyncronous. This means that Flex sends the request off to the server and keeps going. The result of myRemoteObject.existRecord.send(myRecord) will always be true if Flex managed to send the request to the server. When the result comes back, Flex jumps to the function you ha

[flexcoders] ADG Code Completion Missing

2009-03-18 Thread valdhor
This is the first time that I have actually used the AdvancedDataGrid so I went through the instructions at... http://blogs.adobe.com/flexdoc/2008/04/extracting_data_visualization.html and the thread at... http://tech.groups.yahoo.com/group/flexcoders/message/138099 This worked well and I coul

[flexcoders] Re: IE6 RemoteObject calls fail under HTTPS

2009-03-18 Thread valdhor
Wow! I posted this yesterday at around 9am. It hadn't come through after about an hour so posted it again and it came through in a few minutes. This first message finally came through after 5 1/2 hours. --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > Can you

[flexcoders] Re: IE6 RemoteObject calls fail under HTTPS

2009-03-17 Thread valdhor
Can you post a small example? I don't see this and most (95%+) of our users are on IE6 (This is the current enterprise "standard" set by our IT department). --- In flexcoders@yahoogroups.com, "Rafael Faria" wrote: > > We have tried many many things, and seem to have narrowed it down to the

[flexcoders] Re: IE6 RemoteObject calls fail under HTTPS

2009-03-17 Thread valdhor
Can you post a small example? I don't see this and most (95%+) of our users are on IE6 (This is the current enterprise "standard" set by our IT department). --- In flexcoders@yahoogroups.com, "Rafael Faria" wrote: > > We have tried many many things, and seem to have narrowed it down to the

[flexcoders] Re: Possible to add a textinput to a TabNavigator (next to the tabs)

2009-03-17 Thread valdhor
http://livedocs.adobe.com/flex/3/langref/mx/controls/Spacer.html --- In flexcoders@yahoogroups.com, "gmoniey22" wrote: > > Hi, > > I am rather new to flex, so I apologize in advance if the answer is obvious. > > I have a TabNavigator and I want to place a textinput box all the way to the > ri

[flexcoders] FilterFunction

2009-03-17 Thread valdhor
You need to check into a number of things... ArrayCollection: http://livedocs.adobe.com/flex/3/langref/mx/collections/ArrayCollection.\ html You need to know how to filter your data. Here you will find info regarding FilterFunction. CheckBox: http://livedocs.adobe.com/flex/3/langref/mx/controls/C

[flexcoders] Re: Weired Focus Change behaviour on tab pressing

2009-03-17 Thread valdhor
radioButton object. In effect, both radioButton groups got the same empty string and thought they were all in the same group. --- In flexcoders@yahoogroups.com, geeky developer wrote: > > Awesome, That works perfectly > Thanks a lot Alex and valdhor for your help, > Now everythin

[flexcoders] Re: Cool Flex Component Site (opensource)

2009-03-16 Thread valdhor
Yep - came to me email address --- In flexcoders@yahoogroups.com, Tom Chiverton wrote: > > On Monday 16 Mar 2009, Tom Chiverton wrote: > > ChartZoomer could be handy too. > > Has anyone got the code out of them yet ? > I've not got anything to the account I registered with... > > -- > Tom Ch

[flexcoders] Re: Issue with Tree in Flex

2009-03-16 Thread valdhor
DB I tried your code and saw the exact issue you describe. Commenting the line: //expandTree(); fixes it. I don't use Tree but I would surmise you are double handling the expand functionality. From what I can see the tree component already implements expand and by adding your own you are cau

[flexcoders] Re: Weired Focus Change behaviour on tab pressing

2009-03-16 Thread valdhor
You are almost done. Just remove the bindings from your groupNames... --- In flexcoders@yahoogroups.com, geeky developer wrote: > > Hey Alex > Thanks for replying but if I changed it to GroupName instead of group, it > would let me make only one selection of the radio button. No doubt it fix

[flexcoders] Re: datagrid.selectedItem to vo?

2009-03-13 Thread valdhor
If everything is working right, event.target.selectedItem should be typed as a headlineVO. Check with Charles as to what type of object is actually being returned. --- In flexcoders@yahoogroups.com, Greg Morphis wrote: > > event.target.selectedItem says it's Object (@b3063a9) but lists all of >

[flexcoders] Re: datagrid.selectedItem to vo?

2009-03-13 Thread valdhor
You should be using events... private function selectedHeadline(event:ListEvent):void { currentVO = event.target.selectedItem as headlineVO; } --- In flexcoders@yahoogroups.com, Greg Morphis wrote: > > I have a vo headlineVO that has the following variables > headline_id:Number > headline:St

[flexcoders] Re: storing login data from a cfquery for use throught flex app

2009-03-13 Thread valdhor
knowledge of ColdFusion I could probably have something that works in about four hours. If someone wants to pay me for my time I would be happy to put together an example ;-} --- In flexcoders@yahoogroups.com, "johndoematrix" wrote: > > Valdhor, i think what stinasius i

[flexcoders] Re: Framework Caching Affecting Security Settings?

2009-03-13 Thread valdhor
Works for me. Have you signed up for an account? Oh, one other thing. Check the URL in the address bar. Does it have a period (".") at the end? If so, remove it. --- In flexcoders@yahoogroups.com, "Yves Riel" wrote: > > Don't know if I'm the only one but I cannot access that page!? > > __

[flexcoders] Re: storing login data from a cfquery for use throught flex app

2009-03-13 Thread valdhor
If I were you I would go through the tutorials at... http://flexcf.com/tutorials http://blogs.adobe.com/flexdoc/2007/02/hello_world_application_for_fl_1.html http://www.adobe.com/devnet/coldfusion/articles/adobetv_cfpwrdflex.html http://www.brucephillips.name/blog/index.cfm/2007/3/16/Developing-A-

[flexcoders] Re: storing login data from a cfquery for use throught flex app

2009-03-12 Thread valdhor
Don't you already know the username and password? You had to send them to CF for authentication. If the response is yes, populate your userinfo object; Otherwise, don't ;-} --- In flexcoders@yahoogroups.com, "stinasius" wrote: > > in my cfc the return type is boolean and is set to return true

[flexcoders] Re: XSLT Processor for AS3?

2009-03-12 Thread valdhor
I don't know of any AS3 library for XSLT. Scott Peterson of Adobe converted libxslt (http://xmlsoft.org/XSLT/) to ActionScript with Alchemy (http://labs.adobe.com/technologies/alchemy/) and demoed it at Adobe Max 2007 Chicago... http://arcanearcade.blogspot.com/2007/10/c-to-actionscript.html ht

[flexcoders] Re: How to get RemoteClass alias?

2009-03-11 Thread valdhor
Use ObjectUtil.getClassInfo (In the mx.utils package) and look at the alias property of the returned object. --- In flexcoders@yahoogroups.com, "limscoder" wrote: > > I have the following metadata attached to a class: > [RemoteClass(alias="models.User")] > public class User... > > Is there a w

[flexcoders] Re: binding not updating for ArrayCollection when item changes?

2009-03-10 Thread valdhor
'm not calling the web service > anymore, just flipping the enabled property but binding still is not > updating. Any other ideas? > > Thanks, > John > > On Mar 10, 2009, at 10:53 AM, valdhor wrote: > > > I don't know if this is your problem but one thing I n

[flexcoders] Re: How to stop null on delayed execution.

2009-03-10 Thread valdhor
Why? Standard OOP practice is to initialize variables in the constructor (That's what it's there for). --- In flexcoders@yahoogroups.com, Wesley Acheson wrote: > > Thanks I thought that always initialising either in the constructor > or in the variable declaration was a bit hacky.

[flexcoders] Re: How to stop null on delayed execution.

2009-03-10 Thread valdhor
The problem is that you are instantiating your SimpleExample object and then trying to modify a component of the object before it is created. You would need to move the instantiation of TextInput to the constructor or instantiate it when you create the variable... package { import mx.contain

[flexcoders] Re: flex application 2048 error

2009-03-10 Thread valdhor
You may find that it works correctly when you deploy to a server but not when run as a local file. This may or may not work... Try going to the Global Security Settings Panel at http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html and adding your bin-debu

[flexcoders] Re: Convert ArrayCollection to XML

2009-03-10 Thread valdhor
I don't quite understand. Why return an XML string in a RemoteObject? Why not just return objects? --- In flexcoders@yahoogroups.com, "tiend...@..." wrote: > > I use RemoteObject > Yes, in PHP I return XML string. And in Flex I read XML string. > So I don't need convert ArrayCollection to XML.

[flexcoders] Re: binding not updating for ArrayCollection when item changes?

2009-03-10 Thread valdhor
I don't know if this is your problem but one thing I noticed is youu have an ambiguous set of your enabled property. You have enabled = enabled; which (I assume) is to set the enabled property of your class to the enabled parameter that is passed in. This won't work. You should have this.enab

[flexcoders] Re: Word Wrap on the FormItem label

2009-03-06 Thread valdhor
Check out http://www.nbilyk.com/multiline-formitem-label --- In flexcoders@yahoogroups.com, "menapole" wrote: > > I was wondering if it is possible to word wrap the label that is part of the > FormItem. > > So if I have . > > Is there a way to make that wrap? >

[flexcoders] Re: Compressing messages/data: What binary/compression formats are workable in Flex?

2009-03-06 Thread valdhor
You still avoid telling us your back-end setup. I give up. --- In flexcoders@yahoogroups.com, David Adams wrote: > > On Fri, Mar 6, 2009 at 5:31 PM, Guy Morton wrote: > > You've still managed to avoid telling us about your back-end setup. > > > > Tell us more about that and we could probably b

[flexcoders] Re: help with httpService Error

2009-03-06 Thread valdhor
I had (have) the same problem. Old projects work fine (Even after modification); New projects give a security error. Works OK on server but not locally. Even tried Uninstall/reinstall of Flex Builder and Flash debug player - no dice. What I did (I don't remember how I found this out) was to go

[flexcoders] Re: mx:MenuBar - How to choose or trigger on click

2009-03-05 Thread valdhor
Use the itemClick event instead of the click event. vis... http://www.adobe.com/2006/mxml"; layout="absolute"> --- In flexcoders@yahoogroups.com, "Wally Kolcz" wrote: > > I

[flexcoders] Re: amfphp problem - Client.Error.DeliveryInDoubt - when trying to export image

2009-03-05 Thread valdhor
I had the same problem with "Client.Error.DeliveryInDoubt" with AMFPHP. I tried everything I could find but could not find a solution. Finally, I tried WebORB and all my problems disappeared. I now use WebORB exclusively and have not had a problem. --- In flexcoders@yahoogroups.com, Rico Leuth

[flexcoders] Re: Menubar sub menu pop up orientation

2009-03-05 Thread valdhor
Take a look at... http://dougmccune.com/blog/2007/01/25/vertical-menubar-component/ It looks like someone has already modified that component to do what you want (See comment from Brian M). --- In flexcoders@yahoogroups.com, Sefi Ninio wrote: > > Bump... > > Anyone? > > On Mon, Mar 2, 2009 a

[flexcoders] Re: Compressing messages/data: What binary/compression formats are workable in Flex?

2009-03-05 Thread valdhor
What kind of server do you have? I was fairly sure there was an implementation of AMF for every server out there. --- In flexcoders@yahoogroups.com, David Adams wrote: > * Use AMF. > Can't. It's not supported on the server and a project constraint is > "thou shalt not implement binary protocols

[flexcoders] Re: Converting strings to numbers before sorting?

2009-02-27 Thread valdhor
This works for me: http://www.adobe.com/2006/mxml";> --- In flexcoders@yahoogroups.com, "Keith Hughitt" wrote: > > Hi all, > > I have a problem related to sorting type-casted numeric data, and was > wondering if someone could h

[flexcoders] Re: Passing data providers to drop-in item editors/renderers

2009-02-25 Thread valdhor
Have you checked out the combobox documentation and example? http://livedocs.adobe.com/flex/3/langref/mx/controls/ComboBox.html --- In flexcoders@yahoogroups.com, Tyler Kocheran wrote: > > I need to pass in data to one of my item editors for a data grid column. I > have an array of data object

[flexcoders] Re: http service and data service questions

2009-02-25 Thread valdhor
1. No. There are workarounds - http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&productId=2&postId=7184 2. Yes - Flickr already has crossdomain.xml files... static.flickr.com/crossdomain.xml http://weblogs.java.net/blog/joshy/archive/2008/05/java_doodle_cro.html 3. See htt

[flexcoders] Re: Hint text input?

2009-02-25 Thread valdhor
FlexLib (http://code.google.com/p/flexlib/) has a PromptingTextInput. --- In flexcoders@yahoogroups.com, "Osman Ullah" wrote: > > Does anyone know if there is a freely available input component which > offers hint text? By hint text, I mean some text that shows up in the > input field only when

[flexcoders] Re: Flash player 10 ? - can I not call flash player 10 classes if user still on V9?

2009-02-25 Thread valdhor
You can detect the player version with flash.system.Capabilities.version. See http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/system/Capabilities.html --- In flexcoders@yahoogroups.com, "luvfotography" wrote: > > Hi, I want to use the PerspectiveProject class, which is new for fl

[flexcoders] Re: Best database for Flex

2009-02-24 Thread valdhor
I'd just like to make a small correction here (For anybody that comes across this post at a later date) Wally implies that RemoteObjects can only be used with ColdFusion. This is not correct - RemoteObjects can be used with most any back end server technology (I use PHP with WebORB). Best Regar

[flexcoders] Re: FlexBuilder 3 problem -- dynamic help stops working

2009-02-24 Thread valdhor
I haven't tried this but you could try deleting the help index at: C:\Program Files\Adobe\Flex Builder 3\plugins\com.adobe.flexbuilder.help_3.0.214193\index --- In flexcoders@yahoogroups.com, Anggie Bratadinata wrote: > > Hi, list, > I'm having a problem with FlexBuilder 3 Dynamic Help . It was

[flexcoders] Re: Send a confirmation Email

2009-02-20 Thread valdhor
You could try http://www.bytearray.org/?p=27 --- In flexcoders@yahoogroups.com, "christophe_jacquelin" wrote: > > Hello, > > How to send a confirmation Email in the flex program when the user get > register ? > > Thank you, > Christophe, >

[flexcoders] Re: Need advise on how to display multiple SWF apps

2009-02-20 Thread valdhor
Have you checked out the example dashboard application? http://examples.adobe.com/flex3/devnet/dashboard/main.html --- In flexcoders@yahoogroups.com, "todd.bruner" wrote: > > I have developed a small flex charting app that displays a graph based > on xml returned from a web service. Works grea

[flexcoders] Re: Socket communications in Flex

2009-02-15 Thread valdhor
Copy and paste (Including the spaces) --- In flexcoders@yahoogroups.com, "markgoldin_2000" wrote: > > Link is not working for me. > --- In flexcoders@yahoogroups.com, Weyert de Boer wrote: > > > > Have a look at: http://www.innerfuse.biz/dropbox/WebDU 2007 > Leveraging > > Apollo Runtime.zip >

[flexcoders] Re: help with datagrid cell custom itemrenderer

2009-02-15 Thread valdhor
dataGridColumn.itemRenderer = new ClassFactory(customItemRanderer); In your case: custColumn1.itemRenderer = new ClassFactory(ComputedStylesRenderer); --- In flexcoders@yahoogroups.com, "sbeausol" wrote: > > Hi- > > I've been able to implement a custom Text Color Item Renderer for a > datagr

[flexcoders] Re: Air application and local hardware

2009-02-15 Thread valdhor
AFAIK Merapi just uses AMF to pass objects. If you don't want to develop in Java, you would need to develop a bridge API in your language of choice. Start with http://opensource.adobe.com/wiki/download/attachments/1114283/amf3_spec_05_05_08.pdf --- In flexcoders@yahoogroups.com, "markgoldin_200

[flexcoders] Re: Help Me for SharedObject and registerClassAlias method

2009-02-15 Thread valdhor
I don't think you can do that. A SharedObject is just an object. What you would need to do is put the WindowInfo objects you want to store into an array and store the array in the SharedObject. When you want to retrieve the WindowInfo objects, read them into an array and coerce each array item into

[flexcoders] Re: Manually Dispatching Creationcomplete event

2009-02-12 Thread valdhor
The other two canvas's have not been instantiated yet so they will be null. The way I would do it is create a public boolean (Say isMaximized); Each canvas can check this flag on instantiation and, if true, add the column. --- In flexcoders@yahoogroups.com, kotha poornima wrote: > > Hi all, > Ca

[flexcoders] Re: HttpService headers - age old problem

2009-02-12 Thread valdhor
gt; > Thanks, > > -S > > --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > > > I found this: > > > > http://stackoverflow.com/questions/490806/http-basic-authentication- > with-httpservice-objects-in-adobe-flex-air > > > >

[flexcoders] Re: ctrl + mousewheel

2009-02-12 Thread valdhor
So, could it be a preference or a "Feature" on the Mac rather than Flex/Flash specific? --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > Yes, its on a MAC. > > > > --- In flexcoders@yahoogroups.com, "valdhor" wrote: > >

[flexcoders] Re: HttpService headers - age old problem

2009-02-12 Thread valdhor
I found this: http://stackoverflow.com/questions/490806/http-basic-authentication-with-httpservice-objects-in-adobe-flex-air Does it not work? --- In flexcoders@yahoogroups.com, "stevepruitt97" wrote: > > This seems to be an age-old issue. I need to set the Authorization > header for GET re

[flexcoders] Re: How to set the endpoint address in Coldfusion side?

2009-02-12 Thread valdhor
I would recommend looking through the tutorials at http://flexcf.com/ especially the one "Simple RemoteObject Tutorial". --- In flexcoders@yahoogroups.com, "markflex2007" wrote: > > Hi > > I am doing an AIR application and the coldfusion server in a network > pc(192.168.0.181).the application n

[flexcoders] Re: flex app making "undefined" http requests

2009-02-10 Thread valdhor
Try using Charles (http://www.charlesproxy.com) to figure out where they are coming from and what they are trying to do. It may be a request for a crossdomain.xml file. HTH Steve --- In flexcoders@yahoogroups.com, Michael Pelz-Sherman wrote: > > My flex app is making http requests to a url

[flexcoders] Re: FB3 Pro can't find ColumnChart

2009-02-10 Thread valdhor
You need to set your project up to use the SWC's. I found these instructions on a web site somewhere but can't find it at the moment. >From memory: Right Click on your project and select properties. Click Flex Build Path Select the Library Path tab Click Add SWC button Click the browse button and

[flexcoders] Re: [SebCoverFlow] Enablinghand cursor when user mouse overs an item/picture?

2009-02-10 Thread valdhor
o knows... > > I am still trying to get to a solution, i will post here if i get anywhere > > Thanks again, > Fotis > > On Mon, Feb 9, 2009 at 6:02 PM, valdhor wrote: > > > You are probably going to have to monkeypatch Seb's component. > > > > Add

[flexcoders] Re: navigateToURL and "_self" - Works locally, not when swf is on remote server

2009-02-09 Thread valdhor
d Safari on a mac, I have to > install windows on a virtual machine to test that. > > > --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > > > Works for me: > > > > > > http://www.adobe.com/2006/mxml";

[flexcoders] Re: Webservice with Dynamic request?

2009-02-09 Thread valdhor
This is how I would do it. You should be able to extrapolate it to your requirements: http://www.adobe.com/2006/mxml"; creationComplete="onCreationComplete()">

[flexcoders] Re: ctrl + mousewheel

2009-02-09 Thread valdhor
Cool Trick. Is this on the Mac because it doesn't do it for me on a PC. Could this be a Mac Preference setting? --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > So something I never noticed in Flex if you do a ctrl + mousewheel the > entire canvas shrinks in size or grows if scrolli

[flexcoders] Re: navigateToURL and "_self" - Works locally, not when swf is on remote server

2009-02-09 Thread valdhor
Works for me: http://www.adobe.com/2006/mxml"; layout="absolute"> SWF, HTML file etc on the remote server. What do you mean when you say "does not work"? Do you get an error message? You click the image and nothing happens? So

[flexcoders] Re: Problem with Accordion Component resizing.

2009-02-09 Thread valdhor
Bruce I changed the following and it looks good: Panel height from 800 to 700 Panel width from 550 to 600 Accordion height from 770 to 650 Form 1 height from 640 to 600 Form 2 height from 640 to 600 Form 3 height from 660 to 600 Form 4 height from 640 to 600 Also changed checkbox id "QuoteForm"

[flexcoders] Re: [SebCoverFlow] Enablinghand cursor when user mouse overs an item/picture?

2009-02-09 Thread valdhor
You are probably going to have to monkeypatch Seb's component. Adding: _shape.useHandCursor = true; to line 166 of CoverPlane.as seems to go somewhat towards the functionality you need. Note that you will need to download the source from http://www.sebastiaanholtrop.com/sebcoverflowprojectpage

[flexcoders] Re: Tweening effect in Flex?

2009-02-09 Thread valdhor
Have you seen http://coolestflex.blogspot.com/2008/11/tweener-create-tweenings-and-other.html ? There are others as well. Google is your friend. --- In flexcoders@yahoogroups.com, "oneworld95" wrote: > > Hi. Is it possible to do tweening in Flex? For example, to have a > component change size g

[flexcoders] Re: Making the impossible possible, something odd is happening

2009-02-09 Thread valdhor
I thought I'd create a test case to test this: http://www.adobe.com/2006/mxml"; layout="absolute" applicationComplete="onApplicationComplete()"> It works fine. No Alert box. How are you invoking this code. It has to be something else. --- In flexcoders@yahoogroups

[flexcoders] Re: Look for a tool to test remoteobject(AMF) format functions?

2009-02-06 Thread valdhor
I have not seen a tool that you could use to test this. If I were doing this, I would write a tool in Flex and use Charles to make sure the response is correct. There would be no need to have any result code as Charles would show the object(s) being returned including the data. The following Appl

[flexcoders] Re: Look for a tool to test remoteobject(AMF) format functions?

2009-02-06 Thread valdhor
I have not seen a tool that you could use to test this. If I were doing this, I would write a tool in Flex and use Charles to make sure the response is correct. There would be no need to have any result code as Charles would show the object(s) being returned including the data. The following Appl

[flexcoders] Re: ColorPicker - without the picker!

2009-02-06 Thread valdhor
I wonder whether the Yahoo Astra Flex Components may be useful: http://developer.yahoo.com/flash/astra-flex/ Especially the ColorPlaneAndSliderPicker. --- In flexcoders@yahoogroups.com, "tchredeemed" wrote: > > http://andrewthorp.com/flex/colorpicker.png > > That is a picture of what I am loo

[flexcoders] Re: XML - What var type can I use for my XML nodes?

2009-02-05 Thread valdhor
OK, ignore my post. See if I care (pout). Sometimes, I wonder why I bother. --- In flexcoders@yahoogroups.com, - - wrote: > > Hi Tracy, it still doesn't work... > > > > > > From: Tracy Spratt > To: flexcoders@yahoogroups.com > Sent: Thursday, February 5, 20

[flexcoders] Re: Detect exeptions - help!!

2009-02-05 Thread valdhor
John Yes it does. It acts as a proxy between whatever application you are using and whatever you are trying to contact. It automagically sets up Firefox and Internet Exploiter. For other apps you may need to manually set the proxy to the local machine and port. BTW. My name is Steve - Valdhor

[flexcoders] Re: ZendAmf Setup issue 1.7 where gateway filw working ?

2009-02-05 Thread valdhor
Saj I think you have multiple problems in your setup. Here is a quick HelloWorld example: My PHP server is set up with two directories - Zend (Holds the Zend Framework) and ZendServices (Where all my AMF Services files are located in sub directories). In this ZendServices directory I have a Samp

[flexcoders] Re: XML - What var type can I use for my XML nodes?

2009-02-05 Thread valdhor
Did you notice that Tracy had an error in his syntax? Did you fix it? _xmlVa = testID.result. (@now=='today' )[0]; should have been: _xmlVar = testID.result. (@now=='today' )[0]; ie. He forgot the "r" on the end. --- In flexcoders@yahoogroups.com, - - wrote: > > Hi Tracy, I get "An Internal

[flexcoders] Re: Multiple tool tip styles

2009-02-05 Thread valdhor
I have no idea on your tooltip question but in regards to YahooGroups search, I have given up on it. Either it is busy or doesn't give me any results (Like I know something was posted in the past few weeks but when I search, the latest results are from October of 2008. I now use Nabble for my sear

[flexcoders] Re: Login / Password Form

2009-02-05 Thread valdhor
These threads should get you started: http://www.nabble.com/Login-Registration-Page---tp21747714p21748295.html http://www.nabble.com/flex-login-popup-help-needed-please-tp20772482p20833766.html HTH Steve --- In flexcoders@yahoogroups.com, "christophe_jacquelin" wrote: > > Hello, >

[flexcoders] Re: Passing values using mx:WebService

2009-02-05 Thread valdhor
Well, that's something I could do (I pored over lots of WSDL files whilst learning Web Service clients and servers). I have become somewhat of an expert on building clients based just on a WSDL file. Post the link to the WSDL. --- In flexcoders@yahoogroups.com, "Tracy Spratt" wrote: > > Well, w

[flexcoders] Re: Custom Event and bubbling phase

2009-02-05 Thread valdhor
ent itself? --- In flexcoders@yahoogroups.com, "thelordsince1984" wrote: > > --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > > > I assume he means that the event never makes it to the loadThisModule > > function. > > > > Also, I assume h

[flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-05 Thread valdhor
l know the data > types. > > > > I have not done this with java, but have done it using a JSP page. > > http://www.cflex.net/showFileDetails.cfm?ObjectID=556 > > > > Tracy Spratt > Lariat Services > > Flex development bandwidth available > > __

[flexcoders] Re: Detect exeptions - help!!

2009-02-04 Thread valdhor
My favorite (The one I own) is Charles (http://www.charlesproxy.com). The two things that made it my pick is that it is cross platform and that it understands AMF (ie. it will show you the returned objects and what they contain - invaluable for debugging remote objects) --- In flexcoders@yahoogr

[flexcoders] Re: Default sorting for Datagrid

2009-02-04 Thread valdhor
I don't know if this is overly helpful but I normally do my initial sort on the server (It is much easier for the database to do the sorting). If you really want to do the sort at Flex end you should sort the underlying dataprovider using the sort and sortfield classes. See: http://blog.flexexam

[flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-04 Thread valdhor
st way to start with especially for a > beginner. Any other ideas? > Thankx and Regards > > Vik > Founder > www.sakshum.com > www.sakshum.blogspot.com > > > On Wed, Feb 4, 2009 at 12:51 AM, valdhor wrote: > > > http://java.sun.com/webservices/do

[flexcoders] Re: Passing values using mx:WebService

2009-02-04 Thread valdhor
I have to agree with Tracy - data service calls can be very tricky with mxml; I'd rather use AS. This thread may give you some pointers: http://tech.groups.yahoo.com/group/flexcoders/message/134966 --- In flexcoders@yahoogroups.com, "Tracy Spratt" wrote: > > I like mxml for a lot of things, bu

[flexcoders] Re: Custom Event and bubbling phase

2009-02-04 Thread valdhor
I assume he means that the event never makes it to the loadThisModule function. Also, I assume he means that he uses the popupmanager to "create a popup panel". With that said, IIRC, the application is not in the bubbling chain and will never receive an event from a popup. Again, IIRC, you would

[flexcoders] Re: Need Details Creating Custom UIComponents with AS3

2009-02-03 Thread valdhor
Works for me - Firefox 3.0.5/FP 9.0.124 --- In flexcoders@yahoogroups.com, "Jason" wrote: > > Hmmm - thanks - however, the video does not play. Does it require > Flash player 10? > > > Try Deepa's talk from MAX, it was really good on creating components > in > > Flex 3. > > > > http://tv.ad

[flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-03 Thread valdhor
http://java.sun.com/webservices/docs/1.6/tutorial/doc/ ? --- In flexcoders@yahoogroups.com, Vik wrote: > > Hie > I am very new to web services. My very simple requirement is to > return the records from a db table as an xml when i invoke a ws from my flex > application. > > I have already code

[flexcoders] Re: Adding custom request headers to soap

2009-02-03 Thread valdhor
I have been trying to do this for a while myself (Specifically I have a requirement to send WS-Security headers for the Web Service I am trying to use. The only thing I have found so far is this blog post: http://www.svendens.com/?p=20 I have not had a chance to try it yet but if you do, please

[flexcoders] Re: XML walkdown Help

2009-02-02 Thread valdhor
I can categorically say this is not best practice (I'm not really very good with XML) but it does work: var loginResult:XMLList = XML(String(event.result)).elements(); var columnsAndData:XMLList = loginResult.elements(); var columns:XML = columnsA

[flexcoders] Re: [Fwd: UPDATE: how to forcibly minimize a window via flexmdi window]

2009-02-02 Thread valdhor
This small example works for me (Using FlexLib 2.4): http://www.adobe.com/2006/mxml"; layout="vertical" creationComplete="onCreationComplete()"> --- In flexcoders@yahoogroups.com, Adrian Williams wrote: > > Ok, > > So once my morning caffeine jolt hi

[flexcoders] Re: Calling web service from flex

2009-02-02 Thread valdhor
Can you post the actual XML response from the web service? --- In flexcoders@yahoogroups.com, Vik wrote: > > Hie Tracy > Thankx for replying.. but even after changing the format to object/ text/ > e4x and xml I get the same error just in different wording like xml parsing > error for meta etc e

[flexcoders] Re: flex 2 tilelist datachange effects

2009-01-30 Thread valdhor
Sorry, no. I moved to Flex 3 over a year ago (Since the first Beta) and have not looked back. If there are any more Flex 2 stalwarts, they may be able to help. --- In flexcoders@yahoogroups.com, "johndoematrix" wrote: > > i would have upgraded to flex 3 but its very expensive for me. > current

[flexcoders] Re: Accessing XML child nodes in a LineChart

2009-01-30 Thread valdhor
or this: http://blog.flexexamples.com/2007/11/15/displaying-grid-lines-in-a-flex-linechart-control/ --- In flexcoders@yahoogroups.com, "Amy" wrote: > > --- In flexcoders@yahoogroups.com, "Greg Groves" > wrote: > > > > Hi all, > > > > I'm trying to use an XML document as the dataprovider for

[flexcoders] Re: Login/Registration Page ?

2009-01-30 Thread valdhor
These threads should get you started... http://www.nabble.com/geting-info-of-a-user-who-has-loged-in-td21292230.html#a21352413 http://www.nabble.com/flex-login-popup-help-needed-please-td20772482.html#a20833766 --- In flexcoders@yahoogroups.com, "Verdell" wrote: > > I have been searchin

<    5   6   7   8   9   10   11   12   13   14   >