Re: [flexcoders] BlazeDS Integration

2008-09-25 Thread jitendra jain
Where you have put the services-config.xml,remoting-config.xml etc files?  Thanks, with Regards, Jitendra Jain - Original Message From: Patrick McDaniel [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, 25 September, 2008 4:16:56 AM Subject: [flexcoders] BlazeDS

Re: [flexcoders] BlazeDS Integration

2008-09-25 Thread jitendra jain
Also there is no servlet mapping for swf or mxml . what you type in the address bar of the browser?  Thanks, with Regards, Jitendra Jain - Original Message From: jitendra jain [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, 25 September, 2008 11:40:07 AM Subject:

Re: [flexcoders] Learning Flex and AMFPHP

2008-09-25 Thread Aaron Miller
It is hard to find. Here is a snippet from my code. Hope it helps! public function loadFavorites( resultHandler:Function, errorHandler:Function, zone:String ): void { trace('FavoritesProxy.loadFavorites'); var dataService:RemoteObject = new RemoteObject(); var channel:Channel = new AMFChannel(

Re: [flexcoders]Convert a Java object to an ActionScript object

2008-09-25 Thread jitendra jain
[RemoteClass(alias=com.test.C)] public class C { public var testVar1:Number; public var testVar2:String; }  Thanks, with Regards, Jitendra Jain - Original Message From: Eduardo Souza [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, 25 September, 2008 2:48:15 AM

[flexcoders] Using IResponder without Cairngorm

2008-09-25 Thread quantum_ohm
Hello All, How could I use the IResponder interface without using Cairngorm ? I know this sounds dummy, but I never used it and am stuck with an ASync problem. Welcome to any help !

Re: [flexcoders] Using IResponder without Cairngorm

2008-09-25 Thread Josh McDonald
It's part of Flex, you don't need Cairngorm to use it. What're you trying to do? On Thu, Sep 25, 2008 at 5:44 PM, quantum_ohm [EMAIL PROTECTED]wrote: Hello All, How could I use the IResponder interface without using Cairngorm ? I know this sounds dummy, but I never used it and am stuck with

[flexcoders] get-method of LCDS can not communicate with ColdFusion

2008-09-25 Thread Shigeru Nakagaki
hello... I'm tired to develop LCDS + CF. There are so many troubles... Is this an enterprise product? get-method can't communicate with CF although fill-method can communicate with CF on my customer environment. get-method works on my local environment. There is no error on CF console. So

[flexcoders] Re: Using IResponder without Cairngorm

2008-09-25 Thread quantum_ohm
Hi Josh, thx for responding. I'm tryin' to do this : http://tech.groups.yahoo.com/group/flexcoders/message/126217 --- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: It's part of Flex, you don't need Cairngorm to use it. What're you trying to do? On Thu, Sep 25, 2008

[flexcoders] Livecycle / FMS3 - remote calls

2008-09-25 Thread Bart Ronsyn
Hello all, Today I tried to do a remote call from our FMS3 to Livecycle DS. The problem is that I can't get connected to the endpoint. --- FMS3 side --- var nc = new NetConnection(); nc.onStatus = function(info) { trace(status: + info.code); }

Re: [flexcoders] Re: Using IResponder without Cairngorm

2008-09-25 Thread jitendra jain
Hi,   The problem is that your code has so many asychronous call to the backend. what you have to do it first fire a remote object's method and then in result method, fire another remote object's method and so on. This way you can create a Sequence of Events. Hope this will help..Let me know.

[flexcoders] Re: Using IResponder without Cairngorm

2008-09-25 Thread quantum_ohm
Hi Jitendra, yes, I have several calls, but they are not all called at the same time. Basically this is just simple CRUD, except the create() news case which must return the get() news and refresh the page. So I guess I have only to deal with two calls. Cairngorm...mmh... I did think to that,

[flexcoders] Get Browser URL, not REAL URL

2008-09-25 Thread itdanny2002
I got a problem. I have my own domain name and hosts in ISP (A) e.g. www.abc.com My Flex program is located in another ISP (B). e.g. www.xyz.com So, I configure the frame in ISP(A) to ISP (B) file. Then, if user type www.abc.com, it displays the content of www.xyz.com. It runs prefectly. The

Re: [flexcoders] Re: Using IResponder without Cairngorm

2008-09-25 Thread Josh McDonald
When you call Operation.send() it returns an AsyncToken. You just need to call token.addResponder(myResponder). You can either add IResponder interface to one of your classes, or you can use mx.rpc.Responder which just creates a disposable Responder with whatever success and fault methods you tell

Re: [flexcoders] Re: Using IResponder without Cairngorm

2008-09-25 Thread jitendra jain
  private function manageUserResultHandler( evt:ResultEvent ) : void { vb_news.removeAllChildren();  //Here Vb_news is not visible as it is in main , pass vb_news object from main to this NewsManager class afficheNews(); if ( evt.result == 0 ) { dispatchEvent( new Event(VISIBLE_EVENT) ); } else

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

2008-09-25 Thread Gregor Kiddie
That's a fair point, it might not be public yet. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in the UK Visit our Internet Web site at www.inps.co.uk The

[flexcoders] Re: Using IResponder without Cairngorm

2008-09-25 Thread quantum_ohm
Ok, Josh I'm tryin' this... But what does the Responder that the ResulEvent of the RemoteObject.send() method doesn't do ? --- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: When you call Operation.send() it returns an AsyncToken. You just need to call

[flexcoders] Re: Using IResponder without Cairngorm

2008-09-25 Thread quantum_ohm
I tried this, but can't pass a VBox in the main.mxml to a class ??? --- In flexcoders@yahoogroups.com, jitendra jain [EMAIL PROTECTED] wrote: Â private function manageUserResultHandler( evt:ResultEvent ) : void { vb_news.removeAllChildren();Â //Here Vb_news is not visible as it is in main

Re: [flexcoders] Re: Using IResponder without Cairngorm

2008-09-25 Thread jitendra jain
why you can't do this var nm : NewsManager= new NewsManager(Vb_news); Thanks, with Regards, Jitendra Jain - Original Message From: quantum_ohm [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, 25 September, 2008 4:10:04 PM Subject: [flexcoders] Re: Using IResponder

Re: [flexcoders] Re: Cannot use keyboard to access FireFox 3.0.1 menubar

2008-09-25 Thread Tom Chiverton
On Wednesday 24 Sep 2008, itdanny2002 wrote: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute width=100% mx:TextInput x=10 y=10/ /mx:Application Yup, I get the same behaviour here, but I'm not sure if that makes it a bug or by design.

[flexcoders] Re: Using IResponder without Cairngorm

2008-09-25 Thread quantum_ohm
tried this, but doesn't work better... :-( --- In flexcoders@yahoogroups.com, jitendra jain [EMAIL PROTECTED] wrote: why you can't do this var nm : NewsManager= new NewsManager(Vb_news); Thanks, with Regards, Jitendra Jain - Original Message From: quantum_ohm

Re: [flexcoders] Automatically generating database applications

2008-09-25 Thread Tom Chiverton
On Wednesday 24 Sep 2008, nash.e2008 wrote: When I create new project, I choose PHP then I dont know what is my WEB root and Root URL Web root is the physical path on the machine to the place where your web accessible files are. Apache calls this the 'DocumentRoot'. Root URL is '/', unless

RE: [flexcoders] Module Error

2008-09-25 Thread Gregor Kiddie
AHarui impression That sounds like a shared code problem, check my blog. http://blogs.adobe.com/aharui/ /AHarui impression Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered

Re: [flexcoders] Re: Using IResponder without Cairngorm

2008-09-25 Thread jitendra jain
Either try main.mxml to listen the VISIBLE_EVENT you are firing and put those methods in it. Thanks, with Regards, Jitendra Jain - Original Message From: quantum_ohm [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, 25 September, 2008 4:37:00 PM Subject:

[flexcoders] Amfphp version update? Dataservices and rtmp

2008-09-25 Thread Sajid Hussain
Guys . I  m realy waiting about amfphp's new version to with dataservice suuport and maybe rtmp too I heard about amfphp2 but never see its link to have it(download). Sajid

Re: [flexcoders] Learning Flex and AMFPHP

2008-09-25 Thread Alan
I ironically, I have found WebOrb's site http://www.themidnightcoders.com/weborb/php/ to be very helpful for any Flex remoting info - regardless if your using amfphp or not. In their tutorials, they have an example of a remote object , constructed in action script, connecting to a php

Re: [flexcoders] Amfphp version update? Dataservices and rtmp

2008-09-25 Thread Haykel BEN JEMIA
For now the main developer, Wade Arnold, is working on integrating AMFPHP in the Zend framework, so I suppose any new features will go there first.For more infos : http://framework.zend.com/wiki/display/ZFPROP/Zend_Amf+-+Wade+Arnold On Thu, Sep 25, 2008 at 1:48 PM, Sajid Hussain [EMAIL

Re: [flexcoders] Amfphp version update? Dataservices and rtmp

2008-09-25 Thread Alan
ZendAMF will probably displace AMFPHP. http://theflashblog.com/?p=441 Especially since Wade ( current 'parent' of AMFPHP ) is spending his time on ZendAMF instead. ZendAMF is also officially supported by Adobe, AMFPHP is not, and never will be. Alan On Sep 25, 2008, at 7:48 AM, Sajid

[flexcoders] Base64Encoder / Base64Decoder

2008-09-25 Thread Joao Coelho
Anyone knows where can I get the updated documentation on these two classes? It seems that in the official documentation there are inexistent methods and with flex builder autocomplete turned on there are additional methods not documented... Thanks, Joao Coelho

Re: [flexcoders] Get Browser URL, not REAL URL

2008-09-25 Thread Haykel BEN JEMIA
try this (not tested with frames): ExternalInterface.call(window.location.href.toString); On Thu, Sep 25, 2008 at 11:03 AM, itdanny2002 [EMAIL PROTECTED] wrote: I got a problem. I have my own domain name and hosts in ISP (A) e.g. www.abc.com My Flex program is located in another ISP (B).

Re: [flexcoders] Base64Encoder / Base64Decoder

2008-09-25 Thread Samuel Colak
check adobes online version of the documents On Sep 25, 2008, at 2:14 PM, Joao Coelho wrote: Anyone knows where can I get the updated documentation on these two classes? It seems that in the official documentation there are inexistent methods and with flex builder autocomplete turned on there

Re: [flexcoders] Re: Cannot unmarshall

2008-09-25 Thread b_productiv2000
Ok i see that this problem doesn't inspire you (like me). So i come back with one more question : has anybody got a model of schema wsdl for a dataset that work correctly ? Any documentation helping me to understand what i've got to do ? Thanks a lot Alban Alban a écrit : Sorry for the delay

[flexcoders] Re: Base64Encoder / Base64Decoder

2008-09-25 Thread Joao Coelho
--- In flexcoders@yahoogroups.com, Samuel Colak [EMAIL PROTECTED] wrote: check adobes online version of the documents I did, it does not have the updated info...

[flexcoders] Re: Using IResponder without Cairngorm

2008-09-25 Thread quantum_ohm
Ok, it's working now ! :-) Actually I was dispatching the Event at the wrong place ! So don't need IResponder and stuff... thx Jitendra and Josh :-) --- In flexcoders@yahoogroups.com, jitendra jain [EMAIL PROTECTED] wrote: Either try main.mxml to listen the VISIBLE_EVENT you are firing and put

Re: [flexcoders] Learning Flex and AMFPHP

2008-09-25 Thread Terry Allen
I was also having trouble with AMFPHP until I purchased the Essential Guide to Open Source Flash. The creator of AMFPHP has a chapter (chapter 7) that fully explains how to setup the PHP and Flex side of a CRUD sample application. It also contains a primer on VO's. I highly recommend this chapter

[flexcoders] Re: Tree Component openItems and refresh dataProvider issue

2008-09-25 Thread mookie298347
I am looking for a solution to the same issue. As far as I understand it the problem is that the new dataProvider elements are assigned different UIDs from the UIDs stored in your openItems array. The UIDs assigned to the old dataProvier are different than the UIDs assigned to the new

Re: [flexcoders]Convert a Java object to an ActionScript object

2008-09-25 Thread Eduardo Souza
ok i already tried that. That's what is happening: -I'm receiving from the server-side (Java) a XML converted to an Object. -and I need to convert this Object to a XML on the Flex. What I need to do?

[flexcoders] Re: Error #2060: Security sandbox violation: ExternalInterface caller

2008-09-25 Thread valdhor
I get this all the time (And it is extremely annoying). What I have to do is go to the Global Security Settings panel at http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html and add my bin-debug (Or whatever) folder for the application. --- In

RE: [flexcoders] BlazeDS Integration

2008-09-25 Thread Dimitrios Gianninas
the error message you are getting might help :) Dimitrios Gianninas RIA Developer Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Patrick McDaniel Sent: Wednesday, September 24, 2008 6:47 PM To:

[flexcoders] Re: BlazeDS Integration

2008-09-25 Thread Patrick
The files are located under the WEB-INF/flex folder of the webapp, and I access the flex app through the generated HTML page that flex builder generates which works. Also the error I'm getting is: [RPC Fault faultString=[MessagingError message='Destination 'build' either does not exist or the

RE: [flexcoders]Convert a Java object to an ActionScript object

2008-09-25 Thread Jim Hayes
Try SimpleXMLEncoder ? http://blog.flexexamples.com/2008/03/04/converting-objects-to-xml-packet s-using-the-simplexmlencoder-class-in-flex/ -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Eduardo Souza Sent: 25 September 2008 13:09 To:

[flexcoders] Re: Get Browser URL, not REAL URL

2008-09-25 Thread itdanny2002
This method only show current URL, not the one in browser address.

[flexcoders] Re: Get Browser URL, not REAL URL

2008-09-25 Thread itdanny2002
This method only show current URL, not the one in browser address.

[flexcoders] Mapping and Data

2008-09-25 Thread headjoog
I am curious if someone can share some insight on how to do this in Flex. I have U.S. Map and I want the U.S. States to change color based on ranges of data. Would you display a background of the entire map and then use independent graphics of each U.S. State? And adjust the color of the

Re: [flexcoders] Re: Get Browser URL, not REAL URL

2008-09-25 Thread Haykel BEN JEMIA
Ah OK. Then try playing with the window hierarchy using window.parent as needed, i.e.ExternalInterface.call(window.parent.location.href.toString); On Thu, Sep 25, 2008 at 4:19 PM, itdanny2002 [EMAIL PROTECTED] wrote: This method only show current URL, not the one in browser address.

Re: [flexcoders] Mapping and Data

2008-09-25 Thread Christophe Jolif
Hi, Is this something like that you are looking for: http://visudemos.ilog.com/webdemos/sales/sales.html If yes, then ILOG Elixir might help you -- Christophe http://blogs.ilog.com/elixir/author/cjolif/ headjoog wrote: I am curious if someone can share some insight on how to do this in

[flexcoders] help w/ setting click events on dynamically created linkbuttons

2008-09-25 Thread Ramsey, Robert L
Hi, I am working on a scheduling application and need some help working with dynamically created clickable objects. I've been using linkbuttons, but anything that is clickable will work. I have an array that may contain 0-N items, where N can be any number. If N0, I need to create

[flexcoders] Not to harp on about it....

2008-09-25 Thread Samuel Colak
Dear all, if you are interested in 3D and my engine, maybe check out this link. http://www.ifeelfree.com/showvid.swf I don't think papervision has anything on it - And its all written in Flex :) If again anyone is interested in this please give me a shout :) Regards Samuel (Owner of

Re: [flexcoders] Not to harp on about it....

2008-09-25 Thread Samuel Colak
by the way - click and move the mouse of the images... On Sep 25, 2008, at 4:34 PM, Samuel Colak wrote: Dear all, if you are interested in 3D and my engine, maybe check out this link. http://www.ifeelfree.com/showvid.swf I don't think papervision has anything on it - And its all written in

[flexcoders] Re: Base64Encoder / Base64Decoder

2008-09-25 Thread nathanpdaniel
I don't think it's ever been documented like everything else... I've been searching for any type of documentation on it since... Flex 2 beta - STILL nothing. --- In flexcoders@yahoogroups.com, Joao Coelho [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Samuel Colak sam.colak@

[flexcoders] Overriding Combobox and ListBase

2008-09-25 Thread John Luke Mills
I am trying to modify Combobox so one can type multiple characters into a non-editable drop-down. Combobox.as uses ListBase.as. In ListBase there is the following: //-- // // Methods: Keyboard lookup //

[flexcoders] Printing Components Not Displayed on Screen (e.g. Children of a ViewStack)

2008-09-25 Thread y_kessler
I am dynamically populating a ViewStack with child components and then starting a PrintJob in which I add each of the ViewStack's children as a page. The problem is that, if I don't navigate to the children in the program, the pages comes out blank. I have the viewStack.creationPolicy =

Re: [flexcoders] Not to harp on about it....

2008-09-25 Thread Doug McCune
I don't think papervision has anything on it - And its all written in Flex :) That's a big claim my friend. We're going to need to see more than 4 planes with a video material to make any assessment :)

Re: [flexcoders] Re: BlazeDS Integration

2008-09-25 Thread Ryan Gravener
Is this a flex air app or just flex? Ryan Gravener http://twitter.com/ryangravener On Thu, Sep 25, 2008 at 9:36 AM, Patrick [EMAIL PROTECTED] wrote: The files are located under the WEB-INF/flex folder of the webapp, and I access the flex app through the generated HTML page that flex

Re: [flexcoders] help w/ setting click events on dynamically created linkbuttons

2008-09-25 Thread Haykel BEN JEMIA
Use addEventListener() for registering an event handler: myLabel.addEventListener(MouseEvent.CLICK, myFunction);You should take time to read about event handling in Flex/AS3 as it's a basic and very important concept! On Thu, Sep 25, 2008 at 4:33 PM, Ramsey, Robert L [EMAIL PROTECTED]wrote:

[flexcoders] Re: Module Error

2008-09-25 Thread Amy
--- In flexcoders@yahoogroups.com, Gregor Kiddie [EMAIL PROTECTED] wrote: AHarui impression That sounds like a shared code problem, check my blog. http://blogs.adobe.com/aharui/ /AHarui impression I think that only happens with singleton classes, but if it is caused

Re: [flexcoders] Flex 3 Builder and package imports

2008-09-25 Thread Paul Andrews
You have a pretty mixed up project structure - even for Flex 2. Move the com directory to be a subdirectory of src. The Flex build path should find them. Paul - Original Message - From: Edison [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, September 25, 2008 3:56

[flexcoders] Flex 3 Builder and package imports

2008-09-25 Thread Edison
Hi, I currently have a flex 2 project with the following structure: [project-name]/ src/ web/ assets/ css/ img/ javascript/ WEB-INF/ classes/ flex/ flex_classes/ com/ adobe/ cairngorm/

RE: [flexcoders] help w/ setting click events on dynamically created linkbuttons

2008-09-25 Thread Ramsey, Robert L
I have looked through the examples, and that’s what is confusing me. All of the examples show exactly what you have written: myFunction(event:MouseEvent) { Alert.show(“hello world”); } myLabel.addEventListener(MouseEvent.CLICK, myFunction); When I try to do this:

Re: [flexcoders]Convert a Java object to an ActionScript object

2008-09-25 Thread Eduardo Souza
But I saw something strange. The webservice sends me a ProxyObject ('cause we're using SOAP protocol). Can I treat that in the same way as Object? I'm using a XMLConverter that i've found at http://www.customware.net/repository/display/FLEX/Integrating+Flex+with+XML+using+XMLConverter Below I'll

[flexcoders] Re: Mapping and Data

2008-09-25 Thread headjoog
Does this work just for a U.S. maps? Or can you use other objects as well - like counties within a State? --- In flexcoders@yahoogroups.com, Christophe Jolif [EMAIL PROTECTED] wrote: Hi, Is this something like that you are looking for:

Re: [flexcoders] Not to harp on about it....

2008-09-25 Thread Samuel Colak
click and move it around ! On Sep 25, 2008, at 4:50 PM, Doug McCune wrote: I don't think papervision has anything on it - And its all written in Flex :) That's a big claim my friend. We're going to need to see more than 4 planes with a video material to make any assessment :)

Re: [flexcoders] Flex 3 Builder and package imports

2008-09-25 Thread Ed
Thanks Paul, It looks like we need to rearrange our project structure to accommodate for this. Regards, Edison --- On Thu, 25/9/08, Paul Andrews [EMAIL PROTECTED] wrote: From: Paul Andrews [EMAIL PROTECTED] Subject: Re: [flexcoders] Flex 3 Builder and package imports To:

Re: [flexcoders] help w/ setting click events on dynamically created linkbuttons

2008-09-25 Thread Haykel BEN JEMIA
You can't pass any variables to the handler that way. The event handler function must have exactly one argument, the event object, or no arguments. If you need a reference to the clicked button for example, you can get it in the handler with event.target.Doc:

Re: [flexcoders] Not to harp on about it....

2008-09-25 Thread Alan
What does PV3D have to do with Flex? PV3D is just am API of interactive geometry. Flex is a framework of components to display and mange data - an RIA. Right...? Alan On Sep 25, 2008, at 11:28 AM, Samuel Colak wrote: I don't think papervision has anything on it - And its all

Re: [flexcoders] Re: horizontal axis chart label size when chart has minimal height

2008-09-25 Thread Maciek Sakrejda
Sorry--I wasn't clear. There's a gutter property on the AxisRenderer, but when I set it explicitly, one of the methods called by the setter throws a null reference error (presumably because I'm calling the setter at the wrong time). I was asking when to call the gutter setter. -Maciek

[flexcoders] Tab Events

2008-09-25 Thread Jason B
is there a way to clear an httpservice? im defining items as tabpermissions.request.tabnav_announcements = tabnav_announcements.selectedIndex; tabpermissions.send(); now i keep adding new requests how the heck do i clear all items in the request area ?

[flexcoders] Re: Httpservice request clear

2008-09-25 Thread Jason B
sorry not sure how i wrote that subject line? --- In flexcoders@yahoogroups.com, Jason B [EMAIL PROTECTED] wrote: is there a way to clear an httpservice? im defining items as tabpermissions.request.tabnav_announcements = tabnav_announcements.selectedIndex;

Re: [flexcoders] Not to harp on about it....

2008-09-25 Thread Doug McCune
I clicked and moved... All I'm saying is that the claim that your personal 3D engine is better than PV3D is a large claim that needs far more than that example to back it up. Does yours render faster? handle more polygons? support unique textures, etc? All I'm seeing in that demo is basic 3D

RE: [flexcoders] help w/ setting click events on dynamically created linkbuttons

2008-09-25 Thread Ramsey, Robert L
I did finally find the syntax this morning: http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetailsproductId=2postId=9144 ABCButton.addEventListener(MouseEvent.CLICK,function (e:MouseEvent) : void {ABCButtonListener(e,myPrivateSpecialObject);}); Using this syntax,

[flexcoders] Re: Base64Encoder / Base64Decoder

2008-09-25 Thread Joao Coelho
--- In flexcoders@yahoogroups.com, nathanpdaniel [EMAIL PROTECTED] wrote: I don't think it's ever been documented like everything else... I've been searching for any type of documentation on it since... Flex 2 beta - STILL nothing. Pretty much what I figured... At least there's source code

Re: [flexcoders] Not to harp on about it....

2008-09-25 Thread Samuel Colak
This is completely written by me - its not someone elses work there are no frameworks used On Sep 25, 2008, at 5:46 PM, Alan wrote: What does PV3D have to do with Flex? PV3D is just am API of interactive geometry. Flex is a framework of components to display and mange data - an RIA.

Re: [flexcoders] Not to harp on about it....

2008-09-25 Thread Samuel Colak
then goto http://www.im-at-home.com - my other website. As for sandy and a couple of others, sure i guess they will do the same. Mine i think is faster - simply because it handle things in a different way. Ive been in the 3D space for quite some time since the Amiga - this has some shortcuts

Re: [flexcoders] Re: Gradient that is vertical and horizontal!

2008-09-25 Thread leds usop
or 2 displayobjects with gradient on each, one is horizontal and one is vertical but use one as mask of the other. ^^ --- On Wed, 9/24/08, Josh McDonald [EMAIL PROTECTED] wrote: From: Josh McDonald [EMAIL PROTECTED] Subject: Re: [flexcoders] Re: Gradient that is vertical and horizontal! To:

[flexcoders] Re: help w/ setting click events on dynamically created linkbuttons

2008-09-25 Thread Amy
--- In flexcoders@yahoogroups.com, Haykel BEN JEMIA [EMAIL PROTECTED] wrote: You can't pass any variables to the handler that way. The event handler function must have exactly one argument, the event object, or no arguments. If you need a reference to the clicked button for example, you can

Re: [flexcoders] Amfphp version update? Dataservices and rtmp

2008-09-25 Thread Sajid Hussain
Wow , so it mean amfphp projects have to see migration possibilities with zendamf - Original Message From: Alan [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, September 25, 2008 2:10:25 PM Subject: Re: [flexcoders] Amfphp version update? Dataservices and rtmp

Re: [flexcoders] Not to harp on about it....

2008-09-25 Thread Doug McCune
I didn't mean to come off as rude :) Writing your own 3D engine is a huge undertaking and it's an impressive accomplishment. Congrats on the work. Is it going to be released (open source?) On Thu, Sep 25, 2008 at 9:02 AM, Samuel Colak [EMAIL PROTECTED] wrote: then goto http://www.im-at-home.com

Re: [flexcoders] Re: Data Binding to BitmapData

2008-09-25 Thread leds usop
i'd rather use ely's superimage ^^ or a subclass at that - but that's just me. --- On Thu, 9/25/08, Amy [EMAIL PROTECTED] wrote: From: Amy [EMAIL PROTECTED] Subject: [flexcoders] Re: Data Binding to BitmapData To: flexcoders@yahoogroups.com Date: Thursday, September 25, 2008, 5:00 AM ---

Re: [flexcoders] Re: Mapping and Data

2008-09-25 Thread Christophe Jolif
headjoog wrote: Does this work just for a U.S. maps? Or can you use other objects as well - like counties within a State? There is a set of predefined maps, and then you can easily create your own ones using a tool provided with the product. See:

[flexcoders] Is adding children in updateDisplayList() wrong?

2008-09-25 Thread wesley.petrowski
Hey list, I'm trying to dynamically create a HSlider and add it as a child in the updateDisplayList method of a Canvas subclass. When I do this, I get a run-time exception because the slider's updateDisplayList runs before the slider's commitPropertes (and commitProperties seems to set up

[flexcoders] your 3d engine

2008-09-25 Thread Samuel Colak
Jon, There is really no api documentation - im looking to release the code line into the community or basically just keep this internal. I've done alot of work into getting the framerate acceptable without hitting the CPU dramatically. Each TdObject is a container which can have either

RE: [flexcoders] Re: Base64Encoder / Base64Decoder

2008-09-25 Thread Peter Farland
What do you want to do with Base64? I might be able to point you at an example. I've also logged a bug for documentation to ask them to provide examples in these classes (note this, and commenting on the live docs, is a better way to get the doc team's attention).

[flexcoders] what's a good 3rd party flv encoder?

2008-09-25 Thread Ryan
hi- we are looking to encode flv's at a professional level. Can anyone recommend a software that allows complete control over the encoding (quality etc) rather than just choosing from a set of presets? I have used Riva Encoder and the default one from Adobe, but is there a more professional

[flexcoders] Re: horizontal axis chart label size when chart has minimal height

2008-09-25 Thread Amy
--- In flexcoders@yahoogroups.com, Maciek Sakrejda [EMAIL PROTECTED] wrote: Sorry--I wasn't clear. There's a gutter property on the AxisRenderer, but when I set it explicitly, one of the methods called by the setter throws a null reference error (presumably because I'm calling the setter at

[flexcoders] Re: Base64Encoder / Base64Decoder

2008-09-25 Thread Joao Coelho
--- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED] wrote: What do you want to do with Base64? I might be able to point you at an example. I've also logged a bug for documentation to ask them to provide examples in these classes (note this, and commenting on the live docs, is a

[flexcoders] Re: horizontal axis chart label size when chart has minimal height

2008-09-25 Thread Tim Hoff
Sorry Maciek, got a late start today. Amy's CSS is correct. You can also set the gutter dimensions on the ColumnChart tag in mxml. Try using a big number first; like 200. I don't think that 20 is going to be enough to solve the problem. -TH --- In flexcoders@yahoogroups.com, Amy [EMAIL

Re: [flexcoders] Not to harp on about it....

2008-09-25 Thread wkolcz
On Sep 25, 2008, at

Re: [flexcoders] Re: Base64Encoder / Base64Decoder

2008-09-25 Thread Doug McCune
In my version of the SDK source the toString method is defined and looks like this: public function toString():String { return flush(); } On Thu, Sep 25, 2008 at 10:15 AM, Joao Coelho [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED]

Re: [flexcoders] Re: Base64Encoder / Base64Decoder

2008-09-25 Thread Doug McCune
woops, that was in Base64Encoder, not Decoder. My mistake. On Thu, Sep 25, 2008 at 10:25 AM, Doug McCune [EMAIL PROTECTED] wrote: In my version of the SDK source the toString method is defined and looks like this: public function toString():String { return flush(); } On Thu,

Re: [flexcoders] Not to harp on about it....

2008-09-25 Thread Samuel Colak
If you want to be pedantic, yes its written in AS3 using Flex (hence flexcoders !!) Pepervision is written using Flash On Sep 25, 2008, at 7:19 PM, wkolcz wrote: On Sep 25, 2008, at 11:28 AM, Samuel Colak wrote: I don't think papervision has anything on it - And its all written in Flex

Re: [flexcoders] Re: Base64Encoder / Base64Decoder

2008-09-25 Thread Doug McCune
I assume the bug here is that the toString() method was supposed to be implemented the same way in Base64Decoder as it is in Base64Encoder, which would then make the docs at least make sense. But it looks like that method simply got left out of the decoder class. Add it in just like in the encoder

[flexcoders] scroll to make a child all visible

2008-09-25 Thread Jonathan Lee
Hello: I have a HBox which list different some thumbnails. And I know the index of the child that needs to be visible. What function I need to call? Thanks.

[flexcoders] Re: Tree Component openItems and refresh dataProvider issue

2008-09-25 Thread Ivo
Are you resetting the data provider or just updating it? I find that if I just update the data provider by inserting/removing elements the Tree reflects the change appropriately. One bug I've hit, which might be what you are experiencing, is that if I remove the Tree from the stage and add it

[flexcoders] Re: How to make only certain rows in an AdvancedDataGrid selectable?

2008-09-25 Thread tungchau81
Hi Amy, event.preventDefault() was the very first solution I tried, but it did not help in this case. I tried Marcelo's approach to using drawSelectionIndicator and it worked. Thanks alot, Tung Chau --- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In

RE: [flexcoders] Re: Base64Encoder / Base64Decoder

2008-09-25 Thread Peter Farland
Just curious, where'd folks see the decoder docs talk about a toString()? Base64Decoder's primary use is to decode to a ByteArray so it has a toByteArray() method. If you wanted to construct a String from this ByteArray you'd need to know the charset encoding used in the bytes. Pete

Re: [flexcoders] Amfphp version update? Dataservices and rtmp

2008-09-25 Thread Alan
No need to migrate projects, if it uses AMFPHP - keep using it. AMFPHP will probably still be used by those who don't want to mess with Eclipse. ZendAMF ( as it sounds now ) is going to be a plug-in for Eclipse and Flex Builder. On Sep 25, 2008, at 12:12 PM, Sajid Hussain wrote: Wow

[flexcoders] removing workspaces from FB workspace pulldown!

2008-09-25 Thread ronnlixx
FB2, I have old workspaces showing up in the switch workspace pulldown, my question is how do i remove these old locations? I've done this before but cant remember what config file I need to edit

Re: [flexcoders] Re: Base64Encoder / Base64Decoder

2008-09-25 Thread Doug McCune
Woops, my bad again. I gotta stop responding to threads without really understanding what I'm talking about. I think I just noticed that both have flush() methods and I assumed that was to a String (which is wrong in the case of the decoder). I'll stop talking now. On Thu, Sep 25, 2008 at 10:42

Re: [flexcoders] Re: Tree Component openItems and refresh dataProvider issue

2008-09-25 Thread Ryan Gravener
override the set dataProvider; then store the openitems, selecteditems, etc... call super.dataProvider = provider; openItems=storedOpenItems; validateNow(); selectedItems=storedSelectedItems; validateNow(); as for amf calls, I have a method which gets the instance from the dataprovider and adds

[flexcoders] TabNavigator - have to click twice on tab to display page

2008-09-25 Thread donald_d_hook
I have a tab navigator with 3 tabs. Each tab has a canvas with several components on it. when the page is displayed, you see the 1st tab. When I navigate to the 2nd tab, I have to click the 2nd tab twice in order to view the contents of the tab. It looks like the first click on the 2nd tab

RE: [flexcoders] Not to harp on about it....

2008-09-25 Thread Ryan Graham
Isn't Flash Player 10 going to have some basic 3D support built in? I thought I read that somewhere. Should be awesome if so... Ryan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wkolcz Sent: Thursday, September 25, 2008 10:20 AM To:

  1   2   >