[flexcoders] DataGrid LinkButton - How to get columnIndex and rowIndex when linkButton is cli

2007-12-17 Thread valdhor
Hi I am a newbie with a problem - I have a datagrid with an itemRenderer. The itemRenderer is an AS class that extends LinkButton and just checks if the data is 0 or not. If it is 0 then disable the button. Then it adds an event listener: addEventListener(MouseEvent.CLICK,

[flexcoders] Re: DataGrid LinkButton - How to get columnIndex and rowIndex when linkButton is

2007-12-18 Thread valdhor
? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of valdhor Sent: Monday, December 17, 2007 12:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid LinkButton - How to get columnIndex and rowIndex when linkButton is cli Hi I am a newbie

[flexcoders] Re: DataGrid LinkButton - How to get columnIndex and rowIndex when linkButton is

2007-12-18 Thread valdhor
@yahoogroups.com, valdhor [EMAIL PROTECTED] wrote: Here is my itemRenderer... package customcomponents { import flash.events.*; import mx.controls.*; import mx.controls.dataGridClasses.DataGridListData; import mx.core.*; public class CellField extends LinkButton

[flexcoders] Re: DataGrid LinkButton - How to get columnIndex and rowIndex when linkButton is

2007-12-19 Thread valdhor
not get an itemclick. Am I correct? --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I would use ITEM_CLICK instead of CLICK. Did that not work for you? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of valdhor Sent

[flexcoders] Re: Looking for component to generate PDF files

2007-12-19 Thread valdhor
Take a peek at http://brainstorm.esria.com/2007/08/24/client-side-pdf-generation-for-flashflex-and-air/ --- In flexcoders@yahoogroups.com, sprezzatura1 [EMAIL PROTECTED] wrote: Thank you for your reply. I think what we need is an SWC component. As far as I understand, PDFlib is not

[flexcoders] FlexMDI How to get DRAG_END event to fire

2007-12-19 Thread valdhor
I am using FlexMDI and would like to know when a window has been dragged to a new position so I can save the position. I am adding windows on the fly with... var newWindow:MDIWindow = new MDIWindow(); MDIManager.global.add(newWindow); I have tried...

[flexcoders] Re: FlexMDI How to get DRAG_END event to fire

2007-12-20 Thread valdhor
, valdhor stevedepp@ wrote: I am using FlexMDI and would like to know when a window has been dragged to a new position so I can save the position. I am adding windows on the fly with... var newWindow:MDIWindow = new MDIWindow(); MDIManager.global.add(newWindow); I have tried

[flexcoders] Flex 3 Beta 3 no syntax coloring or indenting

2007-12-20 Thread valdhor
Well, I just uninstalled beta 2 and installed beta 3. Now, there is no syntax coloring or indenting. Has anybody else experienced this? Is there a simple way to turn it back on just as it was?

[flexcoders] Re: FlexMDI How to get DRAG_END event to fire

2007-12-20 Thread valdhor
Well, I have just installed Flex 3 beta 3 and tried it again. This is the code: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=init() mx:Script ![CDATA[ import

[flexcoders] Re: FlexMDI How to get DRAG_END event to fire

2007-12-20 Thread valdhor
Further testing...This time I tried it in IE6 (Have been using Firefox 2.0.0.11). This gives the following (Abbreviated): MDIManagerEvent: windowDragStart MDIManagerEvent: windowDrag MDIManagerEvent: windowDragEnd MDIManagerEvent: windowDragStart MDIManagerEvent: windowDrag MDIManagerEvent:

[flexcoders] Re: Flex 3 Beta 3 no syntax coloring or indenting

2007-12-20 Thread valdhor
Well, I figured it out. I had to read the release notes which told me I had to: 1. Go to the install directory; drive:\Program Files\Adobe\Flex Builder 3, or the root of the Eclipse install directory if using the Flex Builder Plug in 2. Edit FlexBuilder.ini or Eclipse.ini in a text editor

[flexcoders] Re: FlexMDI How to get DRAG_END event to fire

2007-12-20 Thread valdhor
OK, my bad on the window drag listeners. I just added them all in and tried on IE6. This gives me both MDIWindow Drag Events and MDIManager Drag Events. I then tried again on Firefox and everything worked. Huh?? Let me do some more testing. --- In flexcoders@yahoogroups.com, ben.clinkinbeard

[flexcoders] Re: FlexMDI How to get DRAG_END event to fire

2007-12-20 Thread valdhor
If I use that code then I get the drag events but that uses mdiCanvas.windowManager. I don't want to use a canvas; I would much rather use the global functions. My application has a docked ApplicationControlBar and I want my flexMDI windows to be able to float on top of this bar. The only way I

[flexcoders] Re: FlexMDI How to get DRAG_END event to fire

2007-12-20 Thread valdhor
Well, color me totally confused. I have no idea what I did but now it works (Although I still do not see any focus events; But I don't need those right now). Here is the pared down code which works... ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

[flexcoders] Re: FlexMDI How to get DRAG_END event to fire

2007-12-20 Thread valdhor
Maybe I will give that a try. I have been thinking about why it suddenly worked. When you asked what version of Flash Player I was running, I went to http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15507 to find out. The page came up quite quick but the movie took about 15 seconds. I

[flexcoders] Re: Webservice, SOAP, SSL and BasicAuthentication

2008-01-23 Thread valdhor
I have not used SOAP with Flex as yet but have built a number of SOAP servers and clients as well as WSDL's. Your error message is: Unable to load WSDL. If currently online, please verify the URI and/or format of the WSDL (null) Are you sure you have the location of the WSDL correct? If I try

[flexcoders] Re: HTTPService BUG can't read RSS xml with single item

2008-02-06 Thread valdhor
IIRC this is actually spelled out in the developer documentation somewhere (Not that I remember where). http://casario.blogs.com/mmworld/2007/03/the_one_item_is.html

[flexcoders] Re: Generated Digitally Signable PDF's

2008-02-08 Thread valdhor
For generation of PDF's, I have had good luck with http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf. For digital signing I would take a look at http://www.setasign.de/products/pdf-php-solutions/setapdf-signer/sign-pdf.php

[flexcoders] Re: autoscroll base on control with focus

2008-02-11 Thread valdhor
Have a look at Eric Cancil's Scroll to anchors component at http://blog.3r1c.net/?p=84 --- In flexcoders@yahoogroups.com, dbronk [EMAIL PROTECTED] wrote: I have an input page where the inputs go off the bottom of the canvas causing a vertical scroll bar. How can I auto scroll so that which

[flexcoders] Re: Adobe SDK, why flex comps accept bind in properties and custom comps dont?

2008-02-14 Thread valdhor
AFAIK (I am a newb to flex) to be able to set a property in a custom component, that property must be public. When Flex compiles the application, mxml components are compiled into actionscript classes so to modify the property it must be available to outside classes. Making it private denies other

[flexcoders] Re: problem in applying CSS programitcally

2008-02-14 Thread valdhor
I ran into this problem awhile back and found you could not use CSS to set the background color of a cell. This is the full itemrenderer I came up with: package renderers { import mx.controls.*; import mx.controls.dataGridClasses.DataGridListData; import

[flexcoders] Re: how to start with a dynamic actionscript class instead of mx:Application?

2008-02-14 Thread valdhor
Why not just extend application. --- In flexcoders@yahoogroups.com, Brian [EMAIL PROTECTED] wrote: I've created a game with Flex, and now I'm trying to integrate MochiAds with it. They give you a preloader to use, but most of their documentation is actionscript-centric and oriented toward

[flexcoders] Re: Adobe SDK, why flex comps accept bind in properties and custom comps dont?

2008-02-14 Thread valdhor
OK, my bad - I did not know about setter and getter methods. At any rate, to fix the OP's current problem (NaN), just change the oninitialize to oncomplete.

[flexcoders] Re: problem in applying CSS programitcally

2008-02-14 Thread valdhor
on my blog (blogs.adobe.com/aharui) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of valdhor Sent: Thursday, February 14, 2008 11:06 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: problem in applying CSS

[flexcoders] Flexlib SuperTabNavigator Errors

2008-02-29 Thread valdhor
Hi I'm a bit of a flex noob and am trying to run the SuperTabNavigator example from the Flexlib library in FB3 (I just downloaded the latest version of Flexlib - V2.3.2). Unfortunately, I keep getting the error Implicit coercion of a value of type flexlib.containers:SuperTabNavigator to an

[flexcoders] Re: Flexlib SuperTabNavigator Errors

2008-03-03 Thread valdhor
. These are the lines with the addTab function calls inside the initTabs function. Thanks for any help you can provide. --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: how are you working this out? some code would help? - Original Message From: valdhor [EMAIL

[flexcoders] Re: user friendly No/Lost Connection alert

2008-03-03 Thread valdhor
It might be simplistic (I'm a noob) but this is what I do: private function faultHandler(fault:FaultEvent):void { switch(fault.fault.faultCode.toString()) { case Client.Error.RequestTimeout:

[flexcoders] Re: Flex Soap Object Arrays

2008-03-03 Thread valdhor
You should probably get your web service working first before trying to integrate it into flex. I created a SOAP client in PHP and your service returns a null response. This is the response I got: ?xml version=1.0 encoding=UTF-8? SOAP-ENV:Envelope

[flexcoders] How to capture submenu click event

2008-03-06 Thread valdhor
I have a menubar in my Flex 3 application and am trying to create another application to administer this menu system. Part of this is to be able to modify submenus so i need a way to capture when a submenu is clicked (I can get all the other menus with an itemclick event handler). According to the

[flexcoders] Re: Move from page end to page top?

2008-03-13 Thread valdhor
Check out Eric Cancil's Content scroll ANCHORS for Flex at http://blog.3r1c.net/?p=84 --- In flexcoders@yahoogroups.com, markflex2007 [EMAIL PROTECTED] wrote: Hi, I have a Flex page that layout is very long. I want to add a button in the end of page. I hope the page will move to page

[flexcoders] Re: Need help passing data to a title window

2008-03-25 Thread valdhor
I'm still a newbie but it looks as though you are trying to add a datagrid to a TitleWindow container. You need to create the datagrid, set its dataProvider, then add it as a child to the TitleWindow container. Something like (Untested code follows): var myExcelDG:DataGrid = new DataGrid();

[flexcoders] Re: Fwd: Security setup for a Flex application

2008-03-27 Thread valdhor
This article may help - http://www.jeffryhouser.com/index.cfm/2007/12/6/Encrypt-in-Flex-and-Decrypt-in-ColdFusion --- In flexcoders@yahoogroups.com, Fidel Viegas [EMAIL PROTECTED] wrote: Hi Andrew, Thanks for taking the time to reply. But, that is not really what I am looking for. I

[flexcoders] Re: Help in RemoteObject Destination not found and Sending failed Error

2008-03-27 Thread valdhor
Your Remot-config.xml file has no channels defined. You have a channel reference (my-amf) but do not define my-amf. Relevent section from my config file follows: channels channel-definition id=my-amfphp class=mx.messaging.channels.AMFChannel endpoint

[flexcoders] Re: Newbie, RemoteObject with ActionScript

2008-03-31 Thread valdhor
I am a relative newbie myself but don't you need a views.source = location of service on server? --- In flexcoders@yahoogroups.com, bennybobw [EMAIL PROTECTED] wrote: Hi All, I'm trying to get the following remoteObject working with Actionscript. When I use the mxml it works great. But when

[flexcoders] Re: Newbie Question - TextArea, RichTextboxEditor.

2008-03-31 Thread valdhor
You need to check out the TextRange object. There is an example in the manual at http://livedocs.adobe.com/flex/3/html/help.html?content=textcontrols_05.html. --- In flexcoders@yahoogroups.com, khan.ibraheem [EMAIL PROTECTED] wrote: I am a newbie and am learning this technology. Here is what

[flexcoders] Re: error while extending button component

2008-03-31 Thread valdhor
This may be out of left field but is there already a class named headerRenderer and you are clobbering it? What happens if you change the name of the class to myHeaderRenderer? --- In flexcoders@yahoogroups.com, learner [EMAIL PROTECTED] wrote: Hi all, I am trying to create a headerRenderer

[flexcoders] Re: How to scroll to/navigate to an object in an app??

2008-03-31 Thread valdhor
You should check out Eric Cancil's excellent Scroll to Anchor component at http://blog.3r1c.net/?p=84 --- In flexcoders@yahoogroups.com, anthony_morsey [EMAIL PROTECTED] wrote: I want to be able to scroll to the vertical position of an object in a flex app. I want to be able to click on an

[flexcoders] Re: new to flex, tutorial code doesnt work!

2008-03-31 Thread valdhor
After a quick look, there is a problem with this line: mx:TileList width=100% height=100% / dataProvider={photoFeed}; It is not valid MXML. You close off the TileList tag and then go on with the dataProvider outside any tag. Also, there is a spurious semi-colon. Should that line have been:

[flexcoders] Re: How to scroll to/navigate to an object in an app??

2008-03-31 Thread valdhor
is triggered of buttons. --- In flexcoders@yahoogroups.com, valdhor stevedepp@ wrote: You should check out Eric Cancil's excellent Scroll to Anchor component at http://blog.3r1c.net/?p=84 --- In flexcoders@yahoogroups.com, anthony_morsey tmorsey@ wrote: I want to be able

[flexcoders] Re: Flex LOCKUPS UP BROWSER no code though is created?

2008-04-01 Thread valdhor
Could you post the code? --- In flexcoders@yahoogroups.com, Jason B [EMAIL PROTECTED] wrote: FYI: I've got no code handlers setup just creating the GUI so i can demo a basic gui to my boss and yet the basic gui with no actionscript locks up the browser ? what is causing this to happen?

[flexcoders] Re: Flex LOCKUPS UP BROWSER no code though is created?

2008-04-01 Thread valdhor
Well, I just tried your code without the dataProvider and it worked fine (ie. As posted). I then modified the list tag to: mx:List width=100% height=100% id=list dataProvider={listData} and it still worked fine. The array elements appeared in the Main accordion item as expected. There were no

[flexcoders] Re: Flex LOCKUPS UP BROWSER no code though is created?

2008-04-01 Thread valdhor
I tried what you said and found out that all you need to do is click on the Stations X tab and then the Info tab. At this point the entire browser crashed. After a bit of paring I found that the offending tag is: mx:Text x=113 y=71 text=Amanda width=277 id=owner fontWeight=bold/ and the problem

[flexcoders] Re: Menu System

2008-04-04 Thread valdhor
In my menubar I don't have the menuitems/menuitems so my XML would be: menuitem label=Retail data=top menuitem label=Current Year Reservation data=/ menuitem label=Next Year Reservations data=/ /menuitem menuitem label=Charter data=top menuitem label=Charter Contact Information data=/

[flexcoders] Re: Menu System

2008-04-04 Thread valdhor
, David C. Moody [EMAIL PROTECTED] wrote: valdhor, Thank you for your help. Using your code, I was able to make my menubar function properly as well. You should take a look at Tracy's method, its much cleaner and works great! All you have to do is: var resultXML:XML = new XML

[flexcoders] Re: Dynamic components

2008-04-11 Thread valdhor
I do that already. I use PHP to populate various FlashVars which Flex uses to display different components when the swf loads. --- In flexcoders@yahoogroups.com, Sid 'Neko Tamashii' [EMAIL PROTECTED] wrote: Hi everyone! I'm a Flex newbie, but I'm experienced in PHP and other programming

[flexcoders] Re: Flex bug database - choosing a milestone

2008-04-11 Thread valdhor
I had the same dilema. I decided that Moxie Release seemed closest so picked that. --- In flexcoders@yahoogroups.com, Dmitri Girski [EMAIL PROTECTED] wrote: Hi all, When you create an bug in the Flex bug database you have to select the milestone or release in which bug is found. Does

[flexcoders] Re: Embed Resources in Image Control

2008-04-16 Thread valdhor
This is what I do (Who knows if it's right - all I know is that it works): [Bindable] [Embed(source=assets/images/mylogo.gif)] private var myLogo:Class; mx:Image source={myLogo}/ or img.source = myLogo; HTH Steve --- In flexcoders@yahoogroups.com, maliksmile [EMAIL PROTECTED] wrote: Hi,

[flexcoders] Re: Well, that does me absolutely no good....unless you can show me how to do th

2008-04-16 Thread valdhor
This doesn't appear to be documented anywhere (Well, I can't find it) but this works: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:Script ![CDATA[ import mx.controls.Alert;

[flexcoders] Re: Grid display question

2008-04-17 Thread valdhor
Check out Darron Schall's Advanced Data Grid at http://www.darronschall.com/weblog/archives/000257.cfm or the treegrid component at FlexLib http://code.google.com/p/flexlib/wiki/ComponentList --- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: AFAIK, You can't do this

[flexcoders] Re: Flex Builder 3 - RemoteObject connection failure

2008-04-18 Thread valdhor
Actually no. I do a lot of AMFPHP RemoteObject calls in my application and have never had this problem. There are two things you mention in your post that are different here... 1. My application is only used on an intranet so all connections are fast. 2. I am not using Cairngorm at the

[flexcoders] 64 bit version of mod_flex

2008-04-18 Thread valdhor
Is there a 64 bit version of mod_flex available? The mod_flex.so provided with Flex SDK 3 is 32 bit and will not load on my 64 bit Apache 2.2.6 server.

[flexcoders] Re: How to draw a cylinder

2008-04-21 Thread valdhor
There is a tutorial at http://www.vecpix.com/tutorials/illustrator/il013.php on how to draw a cylinder. You will then need to use flex component kit to convert it into a flex component. At the very least, it is a start. --- In flexcoders@yahoogroups.com, Swamy Nathan [EMAIL PROTECTED] wrote:

[flexcoders] Re: Opening the Browser From AIR

2008-04-22 Thread valdhor
Your example works perfectly for me. I click the button, the browser starts and takes me to the page specified. Have you set up your Windows Registry to open a text editor when opening a file that ends with .htm or .html? ie. what happens when you double click a file in windows explorer with

[flexcoders] Re: Flex Builder 3 - RemoteObject connection failure

2008-04-22 Thread valdhor
this problem. Any other ideas? Is there any way to force a disconnection/reconnection after a freeze? Thanks, -Todd --- In flexcoders@yahoogroups.com, valdhor stevedepp@ wrote: Actually no. I do a lot of AMFPHP RemoteObject calls in my application and have never had this problem

[flexcoders] Re: Add property to an object at run time

2008-04-22 Thread valdhor
Couldn't you just extend the timer class and just add a new property? --- In flexcoders@yahoogroups.com, markgoldin_2000 [EMAIL PROTECTED] wrote: I probably could while I haven't done that yet. The reason I was asking this question is: Let's say I want to a Timer: timer:Timer = new

[flexcoders] Re: Flex Builder 3 - RemoteObject connection failure

2008-04-23 Thread valdhor
Glad to hear your problem has been solved. I never thought about the Apache version. We have been running 2.2 for some time now. --- In flexcoders@yahoogroups.com, supertodda [EMAIL PROTECTED] wrote: I've Fixed the problem! Thanks to those who have contributed solutions. To answer your

[flexcoders] Re: Flex 2 to Flex 3 migration problem - can't copy event.result from remote cal

2008-04-23 Thread valdhor
Your code doesn't look right to me (Although I use AMFPHP remoteObject calls). At a guess... mx:method name=getOrder result=showOrder(event) fault=faultHandler(event) / public function showOrder(event:ResultEvent):void { var OrderArrColl:ArrayCollection = new

[flexcoders] Re: TypeError: Error #2007: The parameter listener must not be NULL + Cairngorm

2008-04-24 Thread valdhor
Check the value of your listener function: Application.application.repeatermovies.detailmovie.loaderCompleteHandler The error says that this is null.

[flexcoders] Re: ocnfusion over data services with flex3 standard

2008-04-24 Thread valdhor
I have done very little with WebORB (All my stuff uses AMFPHP) but they are very similar. Either one is all you need to do remoting in Flex - no need for BlazeDS, LCDS or anything else. Set up your Value Objects (VO's) or Data Transfer Objects (DTO's) (Whichever terminology feels better to you);

[flexcoders] Re: Changing the background color of a DataGrid row

2008-04-24 Thread valdhor
Yes. Check out itemRenderers. The best article on this is at http://blogs.adobe.com/aharui/item_renderers/ --- In flexcoders@yahoogroups.com, jlopes151 [EMAIL PROTECTED] wrote: In Flex3 I want to set the background color of a data grid row. Can I do it? Thanks for the Help.

[flexcoders] Re: Programmatic scrolling of a TileList?

2008-04-24 Thread valdhor
I have no idea but maybe the carousel at http://giles.roadnight.name/components.cfm might give you some ideas. --- In flexcoders@yahoogroups.com, djbrown_rotonews [EMAIL PROTECTED] wrote: any help out there? --- In flexcoders@yahoogroups.com, djbrown_rotonews djbrown_rotonews@ wrote:

[flexcoders] Re: Newbie question: Removing text from textarea/disabling a character

2008-04-24 Thread valdhor
For 1 you would probably have to add an event listener for keydown, see what key it was and then stop that keycode from reaching the textarea. For 2, check out the following I found in the Help: ?xml version=1.0? !-- textcontrols/TextRangeExample.mxml -- mx:Application

[flexcoders] Re: Images In MenuBar

2008-04-25 Thread valdhor
Use iconField: mx:MenuBar id=myMenuBar labelField=@label iconField=@icon mx:XMLList menuitem label=MenuItem A icon=myIcon/ menuitem label=MenuItem B/ menuitem label=MenuItem D /menuitem /mx:XMLList /mx:MenuBar --- In flexcoders@yahoogroups.com, Parkash [EMAIL PROTECTED] wrote:

[flexcoders] Re: Best way to secure a ColdFusion web service

2008-04-25 Thread valdhor
We don't use Flex to access our Web Services; We use PHP or Perl. To stop unauthorized access we use a combination of SSL as well as wssecurity (http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd). I don't know if Flex allows you to create SOAP Headers but if it

[flexcoders] Re: TypeError: Error #2007: The parameter listener must not be NULL + Cairngorm

2008-04-25 Thread valdhor
this errorfrom where is generated please...can you check my source... Thanks in advance. - Original Message From: valdhor [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, April 24, 2008 8:19:27 PM Subject: [flexcoders] Re: TypeError: Error #2007

[flexcoders] Re: Regexp matching string between two nodes

2008-04-25 Thread valdhor
As this looks a lot like XML, why not coerce it into an XML object and then look for nodes within it? --- In flexcoders@yahoogroups.com, Claudia Barnal [EMAIL PROTECTED] wrote: Hi Shaun, Thanks a lot for your help. But was tying to avoid using the loop, given that it might slow down the

[flexcoders] Re: Best way to secure a ColdFusion web service

2008-04-25 Thread valdhor
True. But they would need to know the location (It is not in the WSDL), the username and the password. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 25 Apr 2008, valdhor wrote: We don't use Flex to access our Web Services; We use PHP or Perl. To stop

[flexcoders] Re: TypeError: Error #2007: The parameter listener must not be NULL + Cairngorm

2008-04-28 Thread valdhor
) varloader:Loader = newLoader();this.movieCover); - Original Message From: valdhor [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, April 26, 2008 3:26:28 AM Subject: [flexcoders] Re: TypeError: Error #2007: The parameter listener must not be NULL + Cairngorm Instead of adding

[flexcoders] Re: Best way to secure a ColdFusion web service

2008-04-28 Thread valdhor
it? --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 25 Apr 2008, valdhor wrote: True. But they would need to know the location (It is not in the WSDL), the username and the password. All of which are sent over the wire. -- Tom Chiverton Helping

[flexcoders] Re: Best way to secure a ColdFusion web service

2008-04-28 Thread valdhor
Hmmm - I will have to check out WebScarab. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 28 Apr 2008, valdhor wrote: We use SSL Encryption of the username and password as well as the data going over the wire. Uh huh. Are you saying

[flexcoders] Re: how do you return an XML fault from HTTPService?

2008-04-28 Thread valdhor
Not really a Flex question but what are you trying to do? Is this just for testing purposes to see what your Flex app will do with a SoapFault? If so, the easiest way is to invoke a method that does not exist. --- In flexcoders@yahoogroups.com, Jason B [EMAIL PROTECTED] wrote: how do you

[flexcoders] Re: how do you return an XML fault from HTTPService?

2008-04-28 Thread valdhor
side returning my own made xml data as the book instructs? yea i do need to test this to verify how a fault will look in flex? How is this not a flex question? --- In flexcoders@yahoogroups.com, valdhor stevedepp@ wrote: Not really a Flex question but what are you trying to do

[flexcoders] Re: Good documentation on setting up Eclipse with Flex 3 SDK ?

2008-04-29 Thread valdhor
Check out the following sites: http://angry-fly.com/index.cfm/2007/7/15/Learning-Flex-Building-Flex-Applications-the-OpenSource-Way http://www.flex2ant.org/install.html http://www.sicdesign.co.uk/tutorials/building-actionscript-30-apps-for-free/ --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Need help finding and fixing SQL Error in AIR App

2008-04-29 Thread valdhor
I don't know whether this is your problem but your Orientation field has no type in your create table function. --- In flexcoders@yahoogroups.com, bredwards358 [EMAIL PROTECTED] wrote: Snip

[flexcoders] Re: Need help finding and fixing SQL Error in AIR App

2008-04-30 Thread valdhor
Nope - nothing to do with the XML. You have a comma missing between :Sheet_Depth and :Unique_Product_Code in your sqlText variable in your insertData function. --- In flexcoders@yahoogroups.com, bredwards358 [EMAIL PROTECTED] wrote: So, I finish a simple application to turn an XML Document

[flexcoders] Re: Need help finding and fixing SQL Error in AIR App

2008-04-30 Thread valdhor
' inserted. So Adobe's would have to be Adobe''s. But '-' and '/' aren't mentioned. http://sqlite.org/faq.html#q14 bredwards358 wrote: --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, valdhor stevedepp@ wrote: Nope - nothing to do with the XML. You

[flexcoders] Re: How to change columns count in FileSystemDataGrid?

2008-04-30 Thread valdhor
?xml version=1.0 encoding=utf-8? mx:WindowedApplication xmlns:mx=http://www.adobe.com/2006/mxml; creationComplete=onCreationComplete() mx:Script ![CDATA[ import mx.controls.dataGridClasses.DataGridColumn; private function onCreationComplete():void

[flexcoders] Re: Resetting a datechooser

2008-04-30 Thread valdhor
The following works for me. What does it do for you? ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:Script ![CDATA[ public function changeDate():void { myDateChooser.selectedDate

[flexcoders] Re: gif images as renderers

2008-05-01 Thread valdhor
This has been asked before. Flash Player doesn't support animated GIF natively. There are a couple of ways to get this functionality (AFAIK): http://www.bytearray.org/?p=95 (I cannot reach this site at the moment).

[flexcoders] Re: How do I add a header or additional post parameter to a RemoteObject Request

2008-05-05 Thread valdhor
Just send an object as the parameter that you send: var myService:RemoteObject = new RemoteObject(); myService.source = myServices.MyService; myService.destination = amfphp; myService.requestTimeout = 30; myService.addEventListener(ResultEvent.RESULT, myResult);

[flexcoders] Re: How do I add a header or additional post parameter to a RemoteObject Request

2008-05-06 Thread valdhor
in the future (If you need to add another parameter, it is very simple to do so) for a bit of extra effort to rewrite your accessor methods. Maybe someone else here has an idea? --- In flexcoders@yahoogroups.com, jennie_mai_nguyen [EMAIL PROTECTED] wrote: Valdhor, thanks for the reply. I actually call

[flexcoders] Re: RTMP vs AMF

2008-05-06 Thread valdhor
I think these two articles explain them both very well: http://en.wikipedia.org/wiki/Real_Time_Messaging_Protocol http://en.wikipedia.org/wiki/Action_Message_Format --- In flexcoders@yahoogroups.com, Adolfo Ruiz [EMAIL PROTECTED] wrote: What is the difference bettwen these two channels? i

[flexcoders] Re: NumericStepper goes nuts. Who to stop it?

2008-05-06 Thread valdhor
I can see why - you are triggering the fOnChange function on a change event. Then you go ahead and change the numeric stepper by changing the enabled flag which triggers the change event and so on... --- In flexcoders@yahoogroups.com, Dmitri Girski [EMAIL PROTECTED] wrote: Hi all, Just

[flexcoders] Re: Flex 2.01 - Multiline LinkButton

2008-05-08 Thread valdhor
Using ALex Harui's blog post at http://blogs.adobe.com/aharui/2007/04/multiline_buttons.html I put together the following in around 30 minutes: Application: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute

[flexcoders] Re: need help to create anchor in flex

2008-05-08 Thread valdhor
Have you checked out Eric Cancil's Scroll to Anchor stuff? http://blog.3r1c.net/?p=84 --- In flexcoders@yahoogroups.com, jmfillman [EMAIL PROTECTED] wrote: I would go with states, ViewStack, Accordian, or a TabNavigator. States or ViewStack are probably the closest to how this site is set

[flexcoders] Re: Traversing between pages

2008-05-09 Thread valdhor
This may not all be required (Does that make sense?) but this is what I do: var browserManager:IBrowserManager = BrowserManager.getInstance(); browserManager = BrowserManager.getInstance(); browserManager.init(, Application.application.pageTitle); var url:String = browserManager.url; var

[flexcoders] Re: dispatch events across sessions

2008-05-09 Thread valdhor
Just a couple of thoughts: BlazeDS and Adobe LCDS (And others?) allow you to push data out to clients. You could set up listeners in your Flex app that respond to data from the server. It sounds more like you want RTMP (Real Time Messaging Protocol). From the wiki The raw TCP-based RTMP protocol

[flexcoders] Re: Traversing between pages

2008-05-09 Thread valdhor
benefits of a Flex app. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of valdhor Sent: Friday, May 09, 2008 9:10 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Traversing between pages This may

[flexcoders] Re: Traversing between pages

2008-05-09 Thread valdhor
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Sorry, I should have made it clear that I was addressing that question to the original poster. I knew that ;-} There are absolutely cases, like yours, where navigateTo Url is the solution. I really wish they

[flexcoders] Re: Datagrids in FlexMDI

2008-05-14 Thread valdhor
I am using FlexMDI extensively with datagrids and have not seen any performance issues although the maximum number of columns I have used so far is five. Displaying five columns with 200 rows is almost instantaneous - it takes way longer to retrieve the data from the server. I can't imagine that

[flexcoders] Re: layout question

2008-05-14 Thread valdhor
Wrap your button in a HBox: mx:Panel id=loginPanel mx:Form id=loginForm left=10 right=10 bottom=10 top=10 mx:FormHeading label=Welcome/ mx:FormItem label=User Name mx:TextInput id=username/ /mx:FormItem mx:FormItem

[flexcoders] Re: Pass Parameters to swf from url link

2008-05-14 Thread valdhor
I found a QueryString class somewhere (Don't remember where): package customclasses { import flash.external.*; import flash.utils.*; public class QueryString { private var _queryString:String; private var _all:String; private var _params:Object;

[flexcoders] Re: Problem in FlashPaper - Convert PDF file to SWF in Web page

2008-05-15 Thread valdhor
As Alex asked, what specifically did not work? Did it throw an error? What error? What were you trying to do that did not work? How were you trying to do it? Could you post a snippet of code that does not work? --- In flexcoders@yahoogroups.com, tatva28 [EMAIL PROTECTED] wrote: Thanks for

[flexcoders] Re: mx.utils.URLUtil.replacePort() does not work?

2008-05-19 Thread valdhor
It appears that URLUtil.replacePort requires the trailing /. Try this: var newUri:String = URLUtil.replacePort(http://localhost:/;, ); I don't know if this is a bug or a undocumented feature. It kinda makes sense if you think about it - The URI is incorrectly bounded without that

[flexcoders] Re: My application crash

2008-05-19 Thread valdhor
I got this error for a while when I was testing between AMFPHP and WebORB. I can't recall off hand what the solution was...It may just have been to Clean the project. --- In flexcoders@yahoogroups.com, tuncayxxx [EMAIL PROTECTED] wrote: Hi, I hope some of you guys can help me. I made my

[flexcoders] Re: Debugging Flex3-AMFPHP

2008-05-19 Thread valdhor
My recommendation is Charles (http://www.charlesproxy.com/). BTW. If you are using Firefox, there is a bug in FF that shows Transferring data from in the status bar all the time (Unless you switch to another tab and back again). I just ignore this message. On another note, posting some code

[flexcoders] Re: Grr, HTTPService doesn't work when it should

2008-05-19 Thread valdhor
You have set the contentType property of your request to application/xml and the sent an empty string as your request. Flex (Probably) sees that and sends as the XML request. You probably want to remove the contentType property of your request and let flex use a contentType of

[flexcoders] Re: Any one have info as to how to setup an AdvancedDataGridHeaderRender?

2008-05-23 Thread valdhor
The best articles I have seen on renderers are on Alex Harui's blog http://blogs.adobe.com/aharui/item_renderers/ --- In flexcoders@yahoogroups.com, jlopes151 [EMAIL PROTECTED] wrote: I'm looking for a walk through as to how to setup an AdvanceddataGridHeaderRender. Any one know of one?

[flexcoders] Re: TittleWindow ControlBar not showing up

2008-05-23 Thread valdhor
From memory, the documentation says that the controlbar must be the last child added to the window. You are adding the controlbar to an Hbox that has already been added to the window. Try adding the controlbar directly to the window as the last item to be added. --- In

[flexcoders] Re: Aamzon flash scrolly rotator

2008-05-23 Thread valdhor
There are a number of these components around. Check these out: http://www.afcomponents.com/components/3d_carousel_as3/ http://theflashblog.com/?p=293 http://blogs.digitalprimates.net/codeSlinger/index.cfm/2007/10/28/Max-Presentation http://giles.roadnight.name/Carousel/Carousel.html --- In

  1   2   3   4   5   6   7   8   9   10   >