RE: [flexcoders] Flash 8 debug viewer download?

2005-12-13 Thread Dirk Eismann
Download and install the Flash 8 Trial, it comes withthe Flash 8 Debug Player/Plugin Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian McPheetersSent: Monday, December 12, 2005 6:29 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders]

[flexcoders] problem with retreiving data from repeater...

2005-12-13 Thread Nithya R
hi, I have an object of arrayas the dataprovider forREAPEATER. when i try to retreive the current object on click of a button, the value doesn't pass... but data is displayed in the repeater. when i use surrentItem, getRepeaterItem i only get "undefined"thanks, nithyaSend instant messages

[flexcoders] questions for remote object

2005-12-13 Thread Zhu Feng
HI,allAs we know, in flex 1.5, only AMF protocol of RemoteObject is supported, my question is: 1. Is AMF protocol XML based? That is to say, is there a tier of this protocol trying to translate objects into XML stream?2. And if it is, what is the difference between SOAP?3. If it is not, how

RE: [flexcoders] Flash 8 debug viewer download?

2005-12-13 Thread Mika Kiljunen
Does it work with Flex Builder 1.5? -Mika From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dirk Eismann Sent: 13. joulukuuta 2005 10:03 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flash 8 debug viewer download? Download and

RE: [flexcoders] Flash 8 debug viewer download?

2005-12-13 Thread Dirk Eismann
Only to a certain degree - you can debug your application (step into/over/out) but the variables view does not work. Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mika KiljunenSent: Tuesday, December 13, 2005 12:50 PMTo:

[flexcoders] flex 2 translation

2005-12-13 Thread bhaq1972
Hi i've got a knowledge issue. what does this flex 1.5 code translate to Flex 1.5 function startUp():Void { this.addEventListener(click, this); this.addEventListener(myEvent, this.parentDocument); dispatchEvent({type:myEvent, val1:hello}); } function click(event):Void { //do

[flexcoders] Introspection and ASSetPropFlags ()

2005-12-13 Thread Mink, Joseph
My apologies if this is a repeat...my last post didn't go through: Hi all, I'm trying to introspect an object in Flex 1.5, and I'm trying to use ASSetPropFlags to do it...but I'm getting an error saying that the method doesn't exist: Error /ROTest.as:7 There is no method with the

[flexcoders] Flex - Mac - Database (Semi OT)

2005-12-13 Thread Steve Cox
All, Im currently looking at ways in which we could create a standalone app using flex and a database, for Mac OSX and PC. Basically were looking at creating a cd/dvd with a mac/pc installer which will provide a client with a desktop app and database. The flex-based desktop app

RE: [flexcoders] Re: Stream mp3's with Flash Media Server and Flex

2005-12-13 Thread Dekayd Media Inc.
I have read the docs and have used the components multiple times for playing progressively downloaded files. But that was not my question. My question is: How do I use a MediaPlayback component to control an mp3 STREAMED from Flash Media Server? Maybe I just missed that part in the docs but I

Re: [flexcoders] (Flex 2.0) interacting with SWF files

2005-12-13 Thread Michael Hansen
Not exactly what you are looking for, but perhaps it may help you anyway... http://www.helpqlodhelp.com/blog/archives/000141.html http://www.livejournal.com/users/mannu/305284.html cheers -michael On 12/13/05, Darin Kohles [EMAIL PROTECTED] wrote: I was wondering if anyone can point me

RE: [flexcoders] Introspection and ASSetPropFlags ()

2005-12-13 Thread Dirk Eismann
The trick is to use _global.ASSetPropsFlags() - should work. Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mink, JosephSent: Tuesday, December 13, 2005 1:59 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Introspection and

RE: [flexcoders] Flex 1.5 for PDAs Mobiles ??

2005-12-13 Thread Mark Wales
Jesse made the comment that the PocketPC is different and able to run a regular Flash Player. Has anyone successfully installed and run an 8.5 Flash Player on a PocketPC? If so, which one? -Mark -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Re: (Flex 2.0) interacting with SWF files

2005-12-13 Thread Darin Kohles
Thanks for the links Michael! I'm not expecting a difinitive guide at this point, rather I expect to gleen bits and pieces from those who have bravely trod this path before me. Keep on keeping on --- In flexcoders@yahoogroups.com, Michael Hansen [EMAIL PROTECTED] wrote: Not exactly what you

[flexcoders] Re: flex 2 translation

2005-12-13 Thread Darin Kohles
A couple fo issues here: function startUp():Void { /* event listener needs target (this) event to listen for (MouseTypeEvent.CLICK) and what to do about it (myClickFunction - stay away from using key words like 'click' for custom functions */ this.addEventListener(MouseEventType.CLICK,

[flexcoders] Using Embed with dynamic values possible?

2005-12-13 Thread Stacy Young
Im creating a component that will require a XML dataprovider in which a number of elements are paths to images. Currently Im embedding these images statically as follows: [Embed(source=/assets/images/menu/menu_inbox_off.png)] var img_0_off :String;

[flexcoders] Re: flex 2 translation

2005-12-13 Thread bhaq1972
Thanks Darin for your input, i would like to ask some further questions on your suggestions.(appreciate your help). this.addEventListener(MouseEventType.CLICK, myClickFunction); you mean MouseEvent.CLICK? this.parent.addEventListener(myEvent, someFunction); I'm sure thats a compile error

[flexcoders] Re: Using Embed with dynamic values possible?

2005-12-13 Thread Darin Kohles
Stacy, yes and no. Just create a new image dynamically when your XML data is returned (no need to use Embed in this case): private function resultHandler(event:ResultEvent):Void { myImage: new Image(); myImage.source=event.result._xml_path_to_image_url;

RE: [flexcoders] Re: Using Embed with dynamic values possible?

2005-12-13 Thread Stacy Young
Was taking a similar approach with repeater and Image tagthanks for the tip! Stace From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Darin Kohles Sent: Tuesday, December 13, 2005 10:32 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Using

[flexcoders] Flex Builder 2 for flex1.5

2005-12-13 Thread Fernando Lobos
somewhere using Flex Builder 2 to developed in flex 1.5 , do can? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

[flexcoders] Re: flex 2 translation

2005-12-13 Thread Darin Kohles
I little bit more to clarify: You should have a variable defined and set in your application that stores the text you'd like to pass/use when the event is triggered: public var val1:String=Hello; // defined and set for use elsewhere To be complete you need to define the someFunction (this was

[flexcoders] Re: flex 2 translation

2005-12-13 Thread bhaq1972
Thanks for the link. Need to do some reading. Is there an alternative to your suggestion regarding someFunction and val1. regards bod --- In flexcoders@yahoogroups.com, Darin Kohles [EMAIL PROTECTED] wrote: I little bit more to clarify: You should have a variable defined and set in your

[flexcoders] Re: Unable to retrieve data via HTTPService over https in *IE*.

2005-12-13 Thread colinblackmore
Thank you both for your insight. I'm glad I'm not the only one getting caught out with all this! ;-) I'll add the header and report back if there are any more issues. Thanks again ...Col --- In flexcoders@yahoogroups.com, Carson Hager [EMAIL PROTECTED] wrote: Colin, Dave is spot on with

[flexcoders] Re: flex 2 translation

2005-12-13 Thread Darin Kohles
The call back/listener function passes the event as a default parameter (giving you access to its properties, like x, and y of click etc.), if you want extend your function to pass additional arguments, you are free to do so. I'm not entirely certain of the necessary syntax in the listener

RE: [flexcoders] Redraw a datagrid

2005-12-13 Thread James
Thanks Jester, worked great Jim From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXLSent: Monday, December 12, 2005 3:10 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Redraw a datagrid To update DataProviders, you need to use the

[flexcoders] HTTPService Fault...???

2005-12-13 Thread martinator
I picked up the book by Steven Webster and Alistar McLeod, Developing Rich Clients With Macromedia FLEX. I downloaded the source code, [http://www.iterationtwo.com/flexbook/source.html], off of their site. I try running the 'BlogReader.mxml' example from Chapter 2 and I cannot get it to

[flexcoders] Re: Stream mp3's with Flash Media Server and Flex

2005-12-13 Thread Renaun Erickson
I had it working a long time ago but just as a proof of concept. Kind of busy now, but maybe I can make sense of my old code. But just to let you know it does work. Here is some of my old code (I dont have time to explain it or make sense of why I created it, it was a long time ago that I did

[flexcoders] Re: questions for remote object

2005-12-13 Thread Dave Wolf
I would not automatically believe the rampant gospel that AMF is always smaller and always faster. There have been tons of debates here on the pros and cons of each. Search the archives and you will find them. We very much prefer using mx:HttpService/ or mx:WebService/ over the AMF based

[flexcoders] Re: HTTPService Fault...???

2005-12-13 Thread Dave Wolf
There is a file in your installation called flex-config.xml which includes some initial configurations you will need to setup to get past this issue. By default Flex controls send their data access requests through a proxy that runs on the server. That proxy also by default only will allow

Re: [flexcoders] fyi: no more zip file attachments for adobe

2005-12-13 Thread jeremy lu
wow++On 12/13/05, JesterXL [EMAIL PROTECTED] wrote: Holy crap, your email... it's changed!Wow -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

[flexcoders] Packages must not be nested

2005-12-13 Thread joao_m_fernandes
Hi there, does anyone know what does this mean? I'm trying to convert XIFF AS2 classes into AS3 and I had to set those inside packages but Flex Builder is throwing me this error. Thanks, João Fernandes Yahoo! Groups Sponsor ~-- Fair play? Video

[flexcoders] focusedCell for tree's work differently?

2005-12-13 Thread Rick Schmitty
Hi all, Trying to get focus and edit up on a newly added node in a tree. When I do the add node function, the selection changes, but it flips to the top level node for the edit for a split second, then goes back down and selects the new node at the bottom, but no editable anymore. Watch closely

Re: [flexcoders] Why does this effect not work?

2005-12-13 Thread Ben Lucyk
Hey Jesse, I almostforgot to post a thank you follow up inhere. I only remembered the sticky issues surrounding certain effects and the need to embed fonts after reading your comments. Thanks for the helpful code snippets. -Ben On 12/10/05, JesterXL [EMAIL PROTECTED] wrote: AND, here's an

Re: [flexcoders] Why does this effect not work?

2005-12-13 Thread JesterXL
Glad it helps! That's why I post 'em. - Original Message - From: Ben Lucyk To: flexcoders@yahoogroups.com Sent: Tuesday, December 13, 2005 2:39 PM Subject: Re: [flexcoders] Why does this effect not work? Hey Jesse, I almostforgot to post a thank you follow up inhere. I only

Re: [flexcoders] Packages must not be nested

2005-12-13 Thread Jeff Tapper
chances are you have something like this: package myPackage{ class myPackage.myClass{ } } you no longer declare the package name as part of the class, instead, try this: package myPackage{ class myClass{ } } At 01:12 PM 12/13/2005, you wrote: Hi there, does anyone know what does

[flexcoders] Toggle a child of a DividedBox?

2005-12-13 Thread charged2885
I have a console which displays debugging messages as a child of a VDividedBox. I want my user to be able to toggle the visibility of the console. When they set it to off, it should disappear including the little drag gripper. My idea is to create a ViewStack with 2 children. One of the

Re: [flexcoders] Re: Flex Builder 2 and CFEclipse

2005-12-13 Thread Tom Ortega
Sounds good. Thanks for checking for me! =) Has Macromedia stated whether they would upgrade the underlying eclipse build with each iteration of the Flex Builder standalone? Thanks, Tom On 12/12/05, sn197412 [EMAIL PROTECTED] wrote: Hi there.I think it must be cause by Flex Builder

Re: [flexcoders] Flex - Mac - Database (Semi OT)

2005-12-13 Thread Tom Ortega
Zinc provides a way to talk to mySQL directly with no need for a middle tier. Of course, you'd have to precompile your swf to have Zinc compile it. Mixing MDMScript in with your flex code, asp, etc. might prove a bit time-consuming though. You'd have to include the MDMScript in the flex file,

Re: [flexcoders] Using Embed with dynamic values possible?

2005-12-13 Thread eddy eustace
hi, i'm not sure if this is what you're looking for, but you can load images into mx:Image using load(url); yours, ed eg: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; mx:Script ![CDATA[ function setImage(n : Number) : Void { if(n == 1)

Re: [flexcoders] Flex - Mac - Database (Semi OT)

2005-12-13 Thread John C. Bland II
Zinc actually connects to more than just MySQL. Zinc™ v2.5 can connect to Microsoft Access* and MySQL Databases, and with added ADO support, you can practically connect to any Database Type! Zinc™ v2.5 supports SQL statements which means that you can execute all INSERT, UPDATE, DELETE and

RE: [flexcoders] problem with retreiving data from repeater...

2005-12-13 Thread Matt Chotin
Look into event.target.getRepeaterItem(). currentItem is only going to work for binding, when you use an event handler you need to call getRepeaterItem on the actual object that was repeated. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On

RE: [flexcoders] SAP Webservices problem

2005-12-13 Thread Matt Chotin
Is the SAP server at a different location than youre SWF?  If so youre running into crossdomain.xml issues.  Im guessing that the SAP web service is not at port 80, but when we make the crossdomain request it will go to http://server/crossdomain.xml even if your request was at

RE: [flexcoders] Toggle a child of a DividedBox?

2005-12-13 Thread Matt Chotin
Maybe you can just remove the console panel from the divided box so that it has only one child and add it back in when you want it? You can't get the DividedBox to change child pointers like you're attempting. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

Re: [flexcoders] fyi: no more zip file attachments for adobe

2005-12-13 Thread Douglas Knudsen
talk about a quick working collectiveDKOn 12/13/05, jeremy lu [EMAIL PROTECTED] wrote: wow++On 12/13/05, JesterXL [EMAIL PROTECTED] wrote: Holy crap, your email... it's changed!Wow -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] Modifying Scroll Bars

2005-12-13 Thread Sreenivas R
Hi Jeff, From what I know there are two ways to do this. You can set the several styles available for the ScrollBar. Take a look at the default.css file which lists many of the styles. Using a Style tag for ScrollBar you can change the look at feel of all the scroll bars in your application

[flexcoders] Re: Flex Builder 2 and CFEclipse

2005-12-13 Thread Larry McLister
Hi Tom, Could you give me a bit more information about your set up? What version of Eclipse are you using? Do you simply have a Flex project that contains a linked network folder that points to a mapped network drive? What does the linked folder contain? What happens when you disable the

[flexcoders] Re: Flex Builder 2 for flex1.5

2005-12-13 Thread Larry McLister
Hi Fernando, Flex Builder 2 only officially supports Flex 2 authoring. Previous version of Flex Builder can be used for Flex 1.0 or 1.5 authoring. Larry McLister Flex Builder Team --- In flexcoders@yahoogroups.com, Fernando Lobos [EMAIL PROTECTED] wrote: somewhere using Flex Builder 2 to