[flexcoders] Re: Problems With my XML Created Array Collection

2010-04-21 Thread valdhor
I am a little late to this party but I would have to recommend using AMF to pass your data back and forth. this allows you to pass objects and arrays of objects both ways. No need to convert objects to XML and back to objects - they are all just objects. When the data comes in you can use

[flexcoders] Re: What is the Correct Type of Component For This?

2010-04-21 Thread valdhor
Take a look at SuperTabNavigator which is part of FlexLib (http://code.google.com/p/flexlib/). From your description, it looks like it would do the trick. --- In flexcoders@yahoogroups.com, James garymoorcroft_...@... wrote: I'm lost as to what component to use for navigation within my

[flexcoders] Re: Alive Pdf To Slow

2010-04-21 Thread valdhor
You could try using your back end server to create the PDF. I have had excellent results with TCPDF (http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf) on my PHP server. One caveat - my server has 16 dual core processors and 32GB of RAM. YMMV. --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Problems With my XML Created Array Collection

2010-04-21 Thread valdhor
for the advice so far. --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote: I am a little late to this party but I would have to recommend using AMF to pass your data back and forth. this allows you to pass objects and arrays of objects both ways. No need to convert objects to XML

[flexcoders] Re: What is the Correct Type of Component For This?

2010-04-21 Thread valdhor
to achieve this same effect again but I'm not sure if a tilelist can achieve this either as it simply has that dull blue theme box. I know this box can be removed using actionscript but how can one add in the glow effect to a tilelist hovered over item? --- In flexcoders@yahoogroups.com, valdhor

[flexcoders] Re: Problems With my XML Created Array Collection

2010-04-21 Thread valdhor
obviously it needs to all be web based. --- On Wed, 21/4/10, valdhor valdhorli...@... wrote: From: valdhor valdhorli...@... Subject: [flexcoders] Re: Problems With my XML Created Array Collection To: flexcoders@yahoogroups.com Date: Wednesday, 21 April, 2010, 13:49   James

[flexcoders] Re: What is the Correct Type of Component For This?

2010-04-21 Thread valdhor
wish the repeater component had a selected item property as I think that'd work. --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote: I have never tried to do anything like this but just thinking off the top of my head... Try skinning components in Flex. http

[flexcoders] Re: Problems With my XML Created Array Collection

2010-04-21 Thread valdhor
@yahoogroups.com, valdhor valdhorlists@ wrote: James First off, I would not use AMFPHP as it is deprecated in favor of ZendAMF (Part of Zend Framework). I found WebORB much easier to integrate than ZendAMF. With WebORB you use Object Oriented PHP. You create data transfer classes in both

[flexcoders] Re: What is the Correct Type of Component For This?

2010-04-21 Thread valdhor
OK, I did some googling and this looks like exactly what you are after... http://flexaired.blogspot.com/2008/07/sample-image-tile-list.html --- In flexcoders@yahoogroups.com, James garymoorcroft_...@... wrote: Yes but it's the glow effect that I require. when each item is hovered over it

[flexcoders] Re: What is the Correct Type of Component For This?

2010-04-21 Thread valdhor
by exposing a public variable and use a switch statement to select the correct size. HTH Steve --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: OK, I did some googling and this looks like exactly what you are after... http://flexaired.blogspot.com/2008/07/sample-image

[flexcoders] Re: What is the Correct Type of Component For This?

2010-04-21 Thread valdhor
@yahoogroups.com, valdhor valdhorlists@ wrote: I also looked at TourDeFlex to get some ideas. Here is a small example that I created that shows how to create a custom component as well as do the Glow effect on an image. (I got the image from downloading the file inside TourDeFlex under Glow

[flexcoders] Re: What is the Correct Type of Component For This?

2010-04-21 Thread valdhor
Ooops. That should have been MyImageComponent.mxml instead of MyCustomComponent.mxml. BTW, where are you from? I am an ex pat Kiwi now living in the states. --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: The way I would do it is to have a click event listener in the custom

[flexcoders] Re: NetStream.Publish.BadName

2010-04-19 Thread valdhor
I assume the problem occurs at the line... ns = new NetStream( nc ); nc has not been created at this point. You have declared it but it needs to be created and initialized. --- In flexcoders@yahoogroups.com, venkat eswar cooler...@... wrote: I am in deep trouble.I have a problem with

[flexcoders] Re: Reuse a LabelFunction

2010-04-16 Thread valdhor
If it were me, I would use an item renderer. --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: Hi Amy, But as you can see in the function, I am specifying the Datafieldname from the object which was passed. How can I make it more generic so that I can re-use it

[flexcoders] Re: MXML Component Call Event in Parent

2010-04-16 Thread valdhor
--- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: Hi Valdhor, Thanks for the advice. I have created a sample button component and a parent component to implement this. Parent.mxml ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; Â Â Â Â

[flexcoders] Re: MXML Component Call Event in Parent

2010-04-16 Thread valdhor
...@... wrote: Valdhor, Wouldn't it be enough to set the click event on the appButtonComponent's MXML declaration, like: click=myButtonComp onent_Click( event) I think I am missing a point here but could you please elaborate further why you would do so in your example? Thanks a lot

[flexcoders] Re: What is the MXML syntax for this?

2010-04-15 Thread valdhor
Try... local:myContainerComponent id=containerComponent imageVar=@Embed(source='myTestImage.jpg')/ --- In flexcoders@yahoogroups.com, Christopher McArthur cmcart...@... wrote: I have a component, that has a property of type Image. I need to assign a new Image component to it. this is trivial

[flexcoders] Re: EPUB reader in Flex

2010-04-15 Thread valdhor
This may or may not help (As I understand it, it needs Flash Builder 4) http://opl.rit.edu/projects/page2pub/download --- In flexcoders@yahoogroups.com, Zdenek Mikan zde...@... wrote: Is there any open-source project which implements EPUB reader in Flex? Thanks for any info Zdenek M

[flexcoders] Re: MXML Component Call Event in Parent

2010-04-15 Thread valdhor
Make sure the event is set to bubble. Once it has, the event should bubble up the chain to the parent where an event listener should catch it. --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: Hi FlexCoders, I have created a component consisting of some buttons which

[flexcoders] Re: flex online training

2010-04-15 Thread valdhor
One place I always recommend is the Learn Flex in a Week at http://www.adobe.com/devnet/flex/videotraining/ --- In flexcoders@yahoogroups.com, Manoj Kumar rssma...@... wrote: Hi,   is there any online flex training Could you please let me know   Regards,   Manoj. --- On Thu,

[flexcoders] Re: highlight a cell in datagrid

2010-04-15 Thread valdhor
Use the data grid highlightItemRenderer? --- In flexcoders@yahoogroups.com, sathish_mca_raja sathish_mca_r...@... wrote: I want to use 2 selection indicators in a data grid at the same time. I will use one to highlight a row. I will use another to highlight a particular cell in the

[flexcoders] Re: MXML Component Call Event in Parent

2010-04-15 Thread valdhor
properties). --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: Hi Valdhor, Care to show some examples? Or some links? Thanks. Angelo From: valdhor valdhorli...@... To: flexcoders@yahoogroups.com Sent: Thu, 15 April, 2010 12:14:11

[flexcoders] Re: With the latest eula agreement from Apple

2010-04-13 Thread valdhor
Yes, I know that. What I was suggesting is that Adobe change the output from ARM code to to an XCode project. Wouldn't that get around the new Apple agreement? --- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote: On Monday 12 Apr 2010, valdhor wrote: Just as a thought

[flexcoders] Re: Simply Cannot Insert Values into My Database From Flex

2010-04-12 Thread valdhor
No idea. I get data and insert data to/from MySQL databases via PHP every day without issue. Could you post your app code and the PHP code? Also, I would STRONGLY recommend getting a copy of Charles (http://www.charlesproxy.com). It costs $50 but it saves oodles of time when trying to track

[flexcoders] Re: render tree click problem with viewstack

2010-04-12 Thread valdhor
That is very possible. You may like to look at calllater to run that code. --- In flexcoders@yahoogroups.com, advancedonsite nos...@... wrote: If I put in an Alert statement before the mainviewstack.selectedChild = Container(mainviewstack.getChildByName(selectedno...@hidden)); then

[flexcoders] Re: With the latest eula agreement from Apple

2010-04-12 Thread valdhor
Just as a thought, couldn't Adobe output an XCode project that you just need to compile? --- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote: On Friday 09 Apr 2010, Battershall, Jeff wrote: Reportedly Unity 3D was told that this new EULA would not apply to them, yet

[flexcoders] Re: Flex File component?

2010-04-08 Thread valdhor
Google is your friend. Just search for Flex Upload Component. --- In flexcoders@yahoogroups.com, markflex2007 markflex2...@... wrote: I am looking for a Flex File component that is similar with html file that used for upload file. Thanks Mark

[flexcoders] Re: Setting the desktop directory as the source of an image in a flex app

2010-04-08 Thread valdhor
It can in AIR. See http://livedocs.adobe.com/flex/3/langref/flash/filesystem/File.html File.desktopDirectory --- In flexcoders@yahoogroups.com, James garymoorcroft_...@... wrote: Can this be done? My app creates an image folder on the user's desktop and creates image snapshots in it. I then

[flexcoders] Re: how to expand tree control from a button?

2010-04-07 Thread valdhor
In your function test() change the line to... var node:XMLList = treeData.main.view.(@hidden == 'stations_info'); 'root' is not needed. --- In flexcoders@yahoogroups.com, advancedonsite nos...@... wrote: My TEST button I want to expand and select on this XML Node view label=Info

[flexcoders] Re: open source server side push

2010-04-05 Thread valdhor
WebORB definitely has polling (At least, WebORB for PHP does). --- In flexcoders@yahoogroups.com, hgnowhg hgno...@... wrote: so, if there is no server side push what about anything w/ polling? Again, i can't find this w/ weborb or zend thx --- In flexcoders@yahoogroups.com, Jeffry

[flexcoders] Re: Flash focus issue or browser issue ?

2010-04-05 Thread valdhor
I tried your example on my system (Windows XP, Firefox 3.6.3, Flash Player WIN 10,0,45,2) and I don't see any bugs. What do you see? --- In flexcoders@yahoogroups.com, liloosweet liloosw...@... wrote: Hello there. I'm experiencing a bug with non-IE browsers (firefox, opera, chrome, ...)

[flexcoders] Re: Unsubscribe

2010-04-05 Thread valdhor
Go to the flex coders group membership page (http://tech.groups.yahoo.com/group/flexcoders/join), login and then click the leave group button in the bottom right hand corner. --- In flexcoders@yahoogroups.com, Andres Serral aser...@... wrote: Can someone tell me how can i unsubscribe from

[flexcoders] Re: AdvancedDataGrid read cells

2010-04-05 Thread valdhor
I would recommend NOT doing that. You should be looking at the dataprovider for the ADG. --- In flexcoders@yahoogroups.com, Jairo França (TGI) ja...@... wrote: In my application there is an AdvancedDataGrid where I insert rows and columns dynamically. My question seems simple but is

[flexcoders] Re: ContextMenu 'clipboardMenu' property

2010-04-05 Thread valdhor
Could you post some code? --- In flexcoders@yahoogroups.com, twcrone70 twcron...@... wrote: Can't get access to the ContexMenu's clipboardMenu property as the Flex docs specifies at http://livedocs.adobe.com/flex/3/langref/flash/ui/ContextMenu.html. Error is rror: Access of possibly

[flexcoders] Re: Allowing Jpgs saved Within Flex to be named by the user

2010-04-01 Thread valdhor
Try... var file:File = File.applicationDirectory.resolvePath('assets/images/' + imagenameentry.text + '.jpg'); --- In flexcoders@yahoogroups.com, James garymoorcroft_...@... wrote: My app allows a user to take a snapshot of a website and it then saves this snapshot as a jpg. However what I

[flexcoders] Re: Uploading a Specific file rather than browsing

2010-04-01 Thread valdhor
I'm fairly sure that would break the security so would not be allowed. You already have the image data in memory so send that data to the server and have the server save the image. This post may help... http://blog.pigdev.com/?p=137 --- In flexcoders@yahoogroups.com, James

[flexcoders] Re: Amfphp and require_once

2010-03-31 Thread valdhor
Also check the Apache error log. I always tail this file while testing. --- In flexcoders@yahoogroups.com, Oleg Sivokon olegsivo...@... wrote: Either one of these: Required file cannot be found. Required file was found but contained errors. Try Charles HTTP proxy - it'll display what the

[flexcoders] Re: Adding Drag/Drop with selected text within a TextArea

2010-03-29 Thread valdhor
can reference externally (without the need to extend the Flex components)? --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote: There are other cursors you can set it to. That one was to set it back to the standard system cursor. --- In flexcoders@yahoogroups.com

[flexcoders] Re: Best Way To Tweet To Twitter From an Air Application

2010-03-29 Thread valdhor
What did you manage to glean from the Twitter API documentation? --- In flexcoders@yahoogroups.com, James garymoorcroft_...@... wrote: I am looking for the quickest and simplest possible method to allow a user to post a tweet to twitter from within an air application. Basically I just want

[flexcoders] Re: Best Way To Tweet To Twitter From an Air Application

2010-03-29 Thread valdhor
Sorry, no idea. I haven't had to add that to any applications I've built. --- In flexcoders@yahoogroups.com, James garymoorcroft_...@... wrote: Hi Valdhor. I did finally manage to get this done. My app now has the capability to display a users Twitter feed and post a tweet to a twitter feed

[flexcoders] Re: Dataprovider and events

2010-03-29 Thread valdhor
How does the combobox get its data? If it is using remoting, you can wait for the resultevent to fire and then populate the listbox. Also, you could populate the dataprovider with dummy blank data so it's not null and then update it when the data arrives. --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Between the client and server....

2010-03-25 Thread valdhor
I think I would start out with WebORB for PHP and use their polling. This uses AMF to exchange binary data. Definitely stay away from XML - it's very portable but also very verbose. If the thing becomes wildly successful then I'd seriously look at data push technology like LCDS. --- In

[flexcoders] Re: Adding Drag/Drop with selected text within a TextArea

2010-03-25 Thread valdhor
it working by doing a this.setFocus() in the component outside of the TextArea, then it removes the focus. --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote: When the drop is made, use the CursorManager class to set the cursor... CursorManager.setCursor(CursorManager.NO_CURSOR

[flexcoders] Re: FocusOut event fires over and over...

2010-03-25 Thread valdhor
? This is just ridiculous -- it *should* work, but for some reason focus keeps getting sent back to the first TextInput. I'm running Flex Builder 3.5a, and Flash Player 10,0,42,34. Thanks, L --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote: Add the focusOut event

[flexcoders] Re: Adding Drag/Drop with selected text within a TextArea

2010-03-24 Thread valdhor
My thought would be to use a modifier key. If the user holds down the Ctrl key while over the text area, change the cursor to a hand, grab the current selection and drag/drop that. I've never done anything like that but it seems reasonable to me ;-} --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Computation and Flex

2010-03-24 Thread valdhor
In my case, I use PHP on the server side and Weborb (http://www.themidnightcoders.com) for data transfers. --- In flexcoders@yahoogroups.com, Christophe christophe_jacque...@... wrote: Hello, When a Flex application has too much of computation needs, how to execute this computations on

[flexcoders] Re: Automatically insert name, date, time into code, etc

2010-03-24 Thread valdhor
Why not just use Subversion? --- In flexcoders@yahoogroups.com, Nick Middleweek n...@... wrote: Hi, Is it possible from Eclipse to automatically insert my name, the date and time to the top of Class files and when making code changes, perhaps press a key combo to insert this information?

[flexcoders] Re: FocusOut event fires over and over...

2010-03-24 Thread valdhor
Add the focusOut event listener when you get a focusIn on the text input. Then, when your focusOut event fires and you open the pop-up window, remove the focusOut event listener from the text input. --- In flexcoders@yahoogroups.com, Laurence lmacne...@... wrote: I want a pop-up window to

[flexcoders] Re: Loading swf in child window?

2010-03-24 Thread valdhor
I believe that it's possible to do what you want but I have never tried it. What I would do is implement modules and an interface so that the main app and modules can exchange data. --- In flexcoders@yahoogroups.com, newflexer d...@... wrote: We need to be able to open a window from our main

[flexcoders] Re: Pasting an image into an image or bitmap container?

2010-03-24 Thread valdhor
I don't think so. Why not just ask them to open the file on their system and then you could upload it to the server. I don't do this with images but I do with MS Excel files. There are many Flex File Upload examples. --- In flexcoders@yahoogroups.com, Nick Middleweek n...@... wrote: Hi,

[flexcoders] Re: Framework Choice

2010-03-24 Thread valdhor
I have an extremely large enterprise application (24 modules and counting) that does not use any framework. If you can discipline yourself in the way you organize your code, I don't really see the need for a framework. It just adds complexity in my view. I would recommend starting with modules

[flexcoders] Re: Framework Choice

2010-03-24 Thread valdhor
the need. Is there anything regarding modules that I should know before starting? On Wed, Mar 24, 2010 at 10:27 AM, valdhor valdhorli...@...wrote: I have an extremely large enterprise application (24 modules and counting) that does not use any framework. If you can discipline yourself

[flexcoders] Re: Style/skin the Menu class?

2010-03-24 Thread valdhor
Check out the Flex 3 Style Explorer http://examples.adobe.com/flex3/consulting/styleexplorer/Flex3StyleExplorer.html# --- In flexcoders@yahoogroups.com, flex...@... flex...@... wrote: We have created a hoverMenu:Menu and I've been asked to style it. It seems that one would need to extend

[flexcoders] Re: Framework Choice

2010-03-24 Thread valdhor
, Mar 24, 2010 at 10:31 AM, valdhor valdhorli...@...wrote: I actually read the documentation around five or six times until I was sure I understood it and then used places like Alex's blog ( http://blogs.adobe.com/aharui/2007/03/modules.html) to fill in any gaps. The biggest hurdle I had

[flexcoders] Re: Adding Drag/Drop with selected text within a TextArea

2010-03-24 Thread valdhor
When the drop is made, use the CursorManager class to set the cursor... CursorManager.setCursor(CursorManager.NO_CURSOR); --- In flexcoders@yahoogroups.com, gareth_arch gareth_a...@... wrote: OK, very close with this now. The final thing is that after I have dragged the value to the

[flexcoders] Re: Regarding CollapsiblePanel's minimize and restore Events

2010-03-23 Thread valdhor
, binoop_cv binoop...@... wrote: Yes valdhor. We are also using the same. For CollapsiblePanel, the events are of minimize and restore. We cant achieve this functionality using open or close events. Once again thanking you for the support. Regards, Binoop --- In flexcoders@yahoogroups.com

[flexcoders] Re: Empty Combobox with confirmed data in dataProvider

2010-03-23 Thread valdhor
Arrays don't have event dispatchers so when you change the array no event is dispatched to let the bound variable know about it. Change your array to an array collection... userlist = new ArrayCollection(ArrayUtil.toArray(event.result)); --- In flexcoders@yahoogroups.com, trefalgar

[flexcoders] Re: FileReference.load() not found -- help please?

2010-03-22 Thread valdhor
I get... Property http://www.adobe.com/2008/actionscript/Flash10/::save not found on flash.net.FileReference and there is no default value. at LiveCycle/onSaveText()[C:\ColdFusion8\wwwroot\LiveCycle\src\LiveCycle.mxml:15] at

[flexcoders] Re: Euros/Dollars conversion tools

2010-03-22 Thread valdhor
Try http://www.xe.com/dfs/product.php. You can get an XML feed at whatever frequency you desire. Also, a lot of countries produce their own conversion tables on their government web sites (I know they do in Australia and New Zealand). These are usually Excel spreadsheets that you can download.

[flexcoders] Re: Regarding CollapsiblePanel's minimize and restore Events

2010-03-22 Thread valdhor
Which CollapsiblePanel are you using? (Note: CollapsiblePanel is not a built-in Flex component). If you are using the one from http://hasseg.org/blog/?p=113, you can check if the CollapsiblePanel is open or not to figure out if it's a open or close event. --- In flexcoders@yahoogroups.com,

[flexcoders] Re: how to prevent multiple logins w/ same id

2010-03-22 Thread valdhor
Use a PHP Session variable and a database to keep track of which user is logged in. --- In flexcoders@yahoogroups.com, hgnowhg hgno...@... wrote: My application is a .swf file inside a php wrapper. Since I have a paid subscription site, I want to prevent user A from giving his password to

[flexcoders] Re: using custom components

2010-03-19 Thread valdhor
have. How do I use those? I get an error w/ this: upArrowSkin: Embed(source=../assets/scrollUpArrow2.mxml); but when I replace it w/ a .png file there are no problems. --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote: Check these two sites out for good examples of custom

[flexcoders] Re: Pb with Amfphp

2010-03-19 Thread valdhor
Thank you, Christophe, --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote: How are you setting up the channel for AMFPHP? Is it with AS3 code or with a services-config.xml file? If it is the latter, check to see if you have channels set up in the XML and that you

[flexcoders] Re: Pb with Amfphp

2010-03-19 Thread valdhor
endpoint uri=http://www.mywebsite.com:80/amfphp/gateway.php; class=flex.messaging.endpoints.AMFEndpoint/ /channel-definition /channels /services-config Thank you, Christophe, --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote: How

[flexcoders] Re: What book in Flex would you guys recommend for a newbie ?

2010-03-19 Thread valdhor
Before you go and buy a book, I recommend doing the Flex in a Week video training (https://www.adobe.com/devnet/flex/videotraining/). It's free and a great start to learning Flex. After that, all you should need is the Flex Documentation and, perhaps, a good ActionScript 3 reference. I

[flexcoders] Re: Problem reading an XML file

2010-03-19 Thread valdhor
I am not very good with XML (That's Tracy's expertise) but you can get it with the following: myXML..woeid myXML[0]..woeid and probably a dozen different ways. You may like to check these out for more detail... http://www.adobe.com/devnet/flex/quickstart/accessing_xml_data/

[flexcoders] Re: Reuse a LabelFunction

2010-03-18 Thread valdhor
it be inline as well? Thanks. Angelo From: valdhor valdhorli...@... To: flexcoders@yahoogroups.com Sent: Wed, 17 March, 2010 14:41:19 Subject: [flexcoders] Re: Reuse a LabelFunction Use an itemRenderer instead. If you need help creating one, let me know

[flexcoders] Re: Pb with Amfphp

2010-03-18 Thread valdhor
How are you setting up the channel for AMFPHP? Is it with AS3 code or with a services-config.xml file? If it is the latter, check to see if you have channels set up in the XML and that you have a child channel-definition named amfphp with the endpoint set to the location of the gateway.php

[flexcoders] Re: using custom components

2010-03-17 Thread valdhor
Check these two sites out for good examples of custom scrollbars for datagrids... http://www.switchonthecode.com/tutorials/flex-fun-advanced-datagrid-topics http://www.pixelbox.net/2008/06/02/skinning-scrollbars-in-flex-3/ --- In flexcoders@yahoogroups.com, hgnowhg hgno...@... wrote:

[flexcoders] Re: Flash Buidler and Flash

2010-03-17 Thread valdhor
You could also look into some of the tweening libraries for Flex... http://blog.greensock.com/tweenmaxas3/ http://blog.greensock.com/tweenliteas3/ http://code.google.com/p/tweener/ http://www.gskinner.com/libraries/gtween/ http://code.google.com/p/tweensy/ Actually, these are better...

[flexcoders] Re: Reuse a LabelFunction

2010-03-17 Thread valdhor
Use an itemRenderer instead. If you need help creating one, let me know. --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: Hi FlexCoders, I have created a labelfunction which I use in my datagrid to format the display value. mx:DateFormatter id=df

[flexcoders] Re: How to use blue plastic theme plz. Guide

2010-03-17 Thread valdhor
Is this the one from fleksray? If so, there is a sample that you can download and check out the source to see how it's done. --- In flexcoders@yahoogroups.com, raja_s_patil kpr.rspa...@... wrote: Hello, I am developing my first flex project and I would like to use Blue Plastic theme to my

[flexcoders] Re: show handcursor on mouseOver UITextField

2010-03-16 Thread valdhor
If it were me, I would create eventListener's for mouseOver and MouseOut and use the cursormanager to set and remove a cursor. For a hand cursor you can use MouseCursor.HAND. --- In flexcoders@yahoogroups.com, siddiq mfsid...@... wrote: Hi May i know how do i use useHandCursor

[flexcoders] Re: Remove item from Array and loop messes up

2010-03-16 Thread valdhor
While that may work, I have found that anytime you are looping over an array like this, modifying/deleting items in the array while iterating over it is problematic at best. I find the best way is to create a new array that holds the id's of the items you want to delete and iterating over this

[flexcoders] Re: Automatically update ValueObjects...

2010-03-15 Thread valdhor
What I generally do is not use a Working Folder on the server. I use the Live folder for everything. Is there any specific reason you need a Working Folder? If this is new code, don't you need new ValueObjects? If this is existing code and you need to add new properties to a ValueObject, (I

[flexcoders] Re: Adding a button Icon

2010-03-15 Thread valdhor
Yes, this requires a class. Try creating variables to hold your icons and then declaring them in your class... [Embed(source=icons/more.gif)] private var moreIcon:Class; Then use the class in the setStyle method... (issButArray[i] as Button).setStyle(icon, moreIcon); --- In

[flexcoders] Re: Send a fax

2010-03-15 Thread valdhor
It depends. If you are using AIR, you could use Merapi to connect with a Java application to send the fax. If you are using a browser, you would have to send the data to a back end server which could send the fax. For example, using PHP, you could create a PDF with TCPDF

[flexcoders] Re: Adding a click to a button

2010-03-15 Thread valdhor
(issButArray[i] as Button).addEventListener(MouseEvent.click, moreDetail); --- In flexcoders@yahoogroups.com, criptopus sd_br...@... wrote: Thanks for those that helped with setting the Icon style with a button programatically but now I have a problem with the click event. // Add Link To

[flexcoders] Re: I need some basic ActionScript help that I'm stumped on

2010-03-15 Thread valdhor
I'm not great with XML (That's more Tracy's forte) but shouldn't it be trace(myADG.selectedItem.links.length); --- In flexcoders@yahoogroups.com, Mark mark.pusat...@... wrote: I'm having an issue with finding the length of the number of children items in my ArrayCollection. A small part of

[flexcoders] Re: flexlib | CanvasButtonAccordionHeader | Identify Child

2010-03-12 Thread valdhor
In HeaderRenderer.mxml change the Checkbox to: mx:CheckBox click=checkBoxHandler(event) mouseDown=event.stopImmediatePropagation() / then add a function to the Script block: private function checkBoxHandler(event:Event):void {

[flexcoders] Re: DragTile code help

2010-03-12 Thread valdhor
I have had a cursory look at the example code. Your first problem will not be easy to accomplish. It looks like you will need to modify the generateLayout function in DragTile.as. I did not look into this further. I recommend you study the code to see how it works and read all the articles at

[flexcoders] Re: mxlm component instantiation using ActionScript

2010-03-12 Thread valdhor
Your code should work fine. I do this all the time. In all likelihood there is another error in your code. What is the error? Is it a null reference of some kind? if so, have you tracked down what is null and why? Maybe some judicial use of callLater will help. --- In

[flexcoders] Re: TypeError - Please Help

2010-03-12 Thread valdhor
Have you installed the Flash Debug Player? Did you run your application from inside Flex Builder? Did you run it using the Debug option (ie. click the debug button or select the menu option Run-Debug Your application Name). That is what is meant by a debug build. Perhaps you should go over the

[flexcoders] Re: ViewStack and CreationComplete...

2010-03-11 Thread valdhor
assume after, but I don't want to guess incorrectly. Thanks, L. --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote: Have you tried the show event? --- In flexcoders@yahoogroups.com, Laurence LMacNeill@ wrote: I've been using a ViewStack to switch between views in my

[flexcoders] Re: right click (view source)

2010-03-10 Thread valdhor
http://livedocs.adobe.com/flex/3/html/help.html?content=build_7.html http://livedocs.adobe.com/flex/3/langref/flash/ui/ContextMenu.html http://blog.flexexamples.com/2008/11/07/adding-custom-context-menu-items-to-a-flex-application/ --- In flexcoders@yahoogroups.com, cholid cholid

[flexcoders] Re: range of values checked in a case (switch)

2010-03-10 Thread valdhor
Yes. You need to change the expression you are switching on... switch(true) { case age = 0 age = 4: ageGroup = 1; break; } The reason for this: Your case expression returns a true or false value. This does not match the expression in the switch so change the expression in the

[flexcoders] Re: Module's setup / ready event is not dispatched

2010-03-10 Thread valdhor
How are you loading the module and how are you adding the event listener for the ModuleEvent.READY event. Also, have you tried loading the module with the ModuleLoader class instead of the ModuleManager class? --- In flexcoders@yahoogroups.com, Mayur ondemand_ma...@... wrote: I am having a

[flexcoders] Re: HTTPService not returning ArrayCollection...

2010-03-10 Thread valdhor
I use new ArrayCollection(ArrayUtil.toArray(event.result)). It works for 1 or more items in the result. --- In flexcoders@yahoogroups.com, Laurence lmacne...@... wrote: I'm trying to read data from an XML file, and put that data into an ArrayCollection. This works great when I have more

[flexcoders] Re: range of values checked in a case (switch)

2010-03-10 Thread valdhor
Probably. But that's not what he asked for ;-} --- In flexcoders@yahoogroups.com, Richard Rodseth rrods...@... wrote: That's very creative! But I think an if statement would be clearer... On Wed, Mar 10, 2010 at 6:00 AM, valdhor valdhorli...@...wrote: Yes. You need to change

[flexcoders] Re: ViewStack and CreationComplete...

2010-03-10 Thread valdhor
Have you tried the show event? --- In flexcoders@yahoogroups.com, Laurence lmacne...@... wrote: I've been using a ViewStack to switch between views in my app... The first time you jump to a particular view, that view runs throws its CreationComplete event, whereupon I have it running an

[flexcoders] Re: Httpservices as3 class

2010-03-09 Thread valdhor
Have you tried using Remote Objects? With something like WebORB (http://www.themidnightcoders.com/) --- In flexcoders@yahoogroups.com, Jose adriano Alves alves.jadri...@... wrote: Hi Does anybody have a httpservice class, implemented in as3, for flahs builder 4? I am trying to create an

[flexcoders] Re: Flex Module System ( Different programmers working on a single Project)

2010-03-04 Thread valdhor
Create an interface that all modules as well as the main application implement. http://livedocs.adobe.com/flex/3/html/help.html?content=04_OO_Programming_10.html http://livedocs.adobe.com/flex/3/html/help.html?content=mxmlcomponents_advanced_5.html --- In flexcoders@yahoogroups.com, Fahim

[flexcoders] Re: Flex Module System ( Different programmers working on a single Project)

2010-03-04 Thread valdhor
://apps.facebook.com/feline-frenzy/ Signature powered by WiseStamp http://www.wisestamp.com/email-install On Thu, Mar 4, 2010 at 7:55 PM, valdhor valdhorli...@... wrote: Create an interface that all modules as well as the main application implement. http://livedocs.adobe.com/flex/3/html

[flexcoders] Re: Dumb Question - Transition after a module has loaded

2010-03-03 Thread valdhor
I don't think I would apply the effect to the module itself; I would add the effect to the main component that the module displays once loaded. --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: I have my kids site where when they click a 'button' I want to have the module

[flexcoders] Re: Context Menu

2010-03-03 Thread valdhor
Angelo According to the documentation at http://livedocs.adobe.com/flex/3/html/help.html?content=Menus_4.html - The primary drawback to using the context menu API is that it does not support submenus. But, there are other ways to skin a cat. Check these links out...

[flexcoders] Re: new augmented reality + PV3D project, check it out.

2010-03-03 Thread valdhor
Before I even got to look at it I get: TypeError: Error #1009: Cannot access a property or method of a null object reference. at com.transmote.flar.source::FLARCameraSource/initCamera() at com.transmote.flar.source::FLARCameraSource/init() at

[flexcoders] Re: new augmented reality + PV3D project, check it out.

2010-03-03 Thread valdhor
-- On Wed, Mar 3, 2010 at 12:05 PM, valdhor valdhorli...@...wrote: Before I even got to look at it I get: TypeError: Error #1009: Cannot access a property or method of a null object reference

[flexcoders] Re: Using Flex Builder 3 With PHP and MYSQL

2010-03-01 Thread valdhor
I use WebORB. Check out http://www.themidnightcoders.com/products/weborb-for-php/overview.html --- In flexcoders@yahoogroups.com, James garymoorcroft_...@... wrote: Can anybody link me to any examples of using flex in conjunction with php and mysql? I need to display data stored in my mysql

[flexcoders] Re: Flex with Google Checkout

2010-03-01 Thread valdhor
From one extreme to the other... http://lce-com.com/ http://www.flashcomponents.net/component/simple_shopper_2.0.html --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: Anyone know of a true example/tutorial (or inexpensive component) that allows a flex app to work with Google

[flexcoders] Re: Flex Logging in a Web Application

2010-03-01 Thread valdhor
In my case, I have created a logging class in Flex that sends the log data to a back end PHP server. The PHP, in turn, writes all the data to a MySQL database. I'd post the code but I'm afraid I cannot as it is proprietory to my company. I will say that it is pretty trivial to do. --- In

<    1   2   3   4   5   6   7   8   9   10   >