[flexcoders] Flex 2 - CF Adapter in a WAR install error

2005-11-08 Thread kaibabsowats
I have CF MX 7.0.1 installed in Tomcat (using JRE 1.4.2) using the WAR installation. The it will server CF pages just fine. Then I start the process of trying to install the CF Adapter from the installation instructions here: http://labs.macromedia.com/wiki/index.php/CF_Adapter#Installation When

[flexcoders] Re: Cairngorm Sequence Command Example

2005-10-31 Thread kaibabsowats
Do any of the command depends on each other (have to work in a specific sequence) or do they just all have to be done to create the state you want? If it's the later you might not want to use the SequenceCommand but just 5 separate commands that change some state variables and once your state is s

[flexcoders] Re: Beta Flash Player causing FLV problems?

2005-10-27 Thread kaibabsowats
This is a nice tool to use to switch between flash players. http://www.kewbee.de/FlashPluginSwitcher/index.php There is an uninstaller exe located under the Program Files\Macromedia\Flash or Flex. You can also get one from macromedia's site if I remember correctly. Renaun --- In flexcoders@yaho

[flexcoders] Re: (Flex 1.5 using Cairngorm Framework) MenuBars in PopUps not Working

2005-10-25 Thread kaibabsowats
More details are need? How is PopUp.mxml used? Whats the top component in PopUp.mxml,etc... You probably doing this but just to double check, in PopUp.mxml are you putting the AS function insdie > > (That works fine) > > - >

[flexcoders] Flex/AS Documentation Tools

2005-09-17 Thread kaibabsowats
What tools do people use for creating documentation for their MXML and AS files? I came across http://naturaldocs.org/ has anybody used this? Renaun Yahoo! Groups Sponsor ~--> Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet L

[flexcoders] Re: Flex, Coldfusion and RH

2005-09-15 Thread kaibabsowats
What is your Coldfusion server version, "Standard" or "Enterprise"? Renaun --- In flexcoders@yahoogroups.com, "Fernando Barros" <[EMAIL PROTECTED]> wrote: > I cant put to work my flex 1.5, coldfusionmx 7 and RH AS: > > My coldfusion is working fine but flex only errors: > > Any idea will be gre

[flexcoders] Re: Modeling Cairngorm

2005-09-14 Thread kaibabsowats
__|-> SetupVH __| __|-> Manage UsersVH __| __|-> Change PasswordVH --- In flexcoders@yahoogroups.com, "kaibabsowats" <[EMAIL PROTECTED]> wrote: > Whats the best way to model (UML modeling, Class Diagram, etc...) to > model Cairngorm, specifically ViewHelpe

[flexcoders] Modeling Cairngorm

2005-09-14 Thread kaibabsowats
Whats the best way to model (UML modeling, Class Diagram, etc...) to model Cairngorm, specifically ViewHelpers and the UI structure. For Example I have a Main page that has a ViewStack for 3 sub parts of the application. Each Sub part has their own sub parts with respective ViewHelpers. The Diag

[flexcoders] Re: How to create a binding from within an actionscript class file - Impossible?

2005-09-13 Thread kaibabsowats
I dont believe binding is a good use in the instance. What is the string in the class file used for? Is it used in displaying something? If so the value should probably be in the Model and bound to the View and not in a Class. Is it used for class logic? Probably better to take a step back

[flexcoders] Re: Including Panel depending on the selected canvas

2005-09-06 Thread kaibabsowats
Look for an example of ViewStack in the livedocs. --- In flexcoders@yahoogroups.com, vnice Cute <[EMAIL PROTECTED]> wrote: > Hello All; > Please how can i add (include a panel) to the mxml file. > > Please see the attached code > > Thanks > Attach Code > > http://www.macromedia.com/2003/mxml"

[flexcoders] Re: Jboss throws out of memory error

2005-08-31 Thread kaibabsowats
PROTECTED]> wrote: > Hi > I am using Sun JDK 1.4 > What does those parameters signify. > > Regards > Husain > > kaibabsowats <[EMAIL PROTECTED]> wrote: > Most likely its a JVM issue. What JVM are you using? > > If its Sun's set the -Xms and -X

[flexcoders] Re: Embedding images in an array

2005-08-31 Thread kaibabsowats
Try, var viewImages:Array = new Array(); [Embed(source="/assets/lock.png")] var lockImage:String; viewImages[ "lockImage" ] = lockImage; Renaun --- In flexcoders@yahoogroups.com, "zipo13" <[EMAIL PROTECTED]> wrote: > Hi, > I'm trying to embed a bunch of images into an array instead of a string.

[flexcoders] Re: Jboss throws out of memory error

2005-08-31 Thread kaibabsowats
Most likely its a JVM issue. What JVM are you using? If its Sun's set the -Xms and -Xmx parameters. Renaun --- In flexcoders@yahoogroups.com, "relisanhard52" <[EMAIL PROTECTED]> wrote: > Hi > I am using JBoss 3.2.2. I deploy some sample flex demo code. Sometimes > it is throwing this error - O

[flexcoders] Re: Flex & Cairngorm + ColdFusion + Framework?

2005-08-31 Thread kaibabsowats
The nature of Remoting does limit the benifits of frameworks for the backend. Let me restate this. It doesn't warrant anything fancy for the actual Remote Object interface. Of course you should use patterns for business logic but the actual Remote Object interface is just API structure of folder

[flexcoders] Re: Embedding a slideshow swf that calls image files

2005-08-31 Thread kaibabsowats
bles were passed through Flashvars and used later in a XML download. > It was just puzzling me ;)) > > Philippe Maegerman > > ____ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kaibabsowats > Sent: mercredi 31 août 20

[flexcoders] Re: Embedding a slideshow swf that calls image files

2005-08-31 Thread kaibabsowats
ot hesitate to correct me. > > Cheers, > > Philippe Maegerman > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kaibabsowats > Sent: mardi 30 août 2005 20:15 > To: flexcoders@yahoogroups.com > Subject:

[flexcoders] Re: Model changed when used as dataProvider (Cairngorm)

2005-08-30 Thread kaibabsowats
This is a stab in the dark. When calling "EventBroadcaster.getInstance().broadcastEvent("someCommand", modelLocator.myArray)" the EventBroadcaster takes the modelLocator.myArray parameter and sets the event.data object, which actaully keeps a pointer to modelLocator.myArray. Then it calls dispatc

[flexcoders] Re: Embedding a slideshow swf that calls image files

2005-08-30 Thread kaibabsowats
I blogged some more info on the SWF FlashVar, view it at: http://renaun.com/blog/?p=4 Yahoo! Groups Sponsor ~--> Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM ---

[flexcoders] Re: Embedding a slideshow swf that calls image files

2005-08-30 Thread kaibabsowats
You can set variables or call functions on SWF's that have been loaded through the Loader class. The question is will these variables be set before the first frame is called on the SWF. If not try progress instead of complete event. Renaun --- In flexcoders@yahoogroups.com, Steve Oce

[flexcoders] Re: MediaPlayback

2005-08-25 Thread kaibabsowats
What do you mean "update the MediaPlayback component's slider bar more often?" What type of media are you using, FLV, MP3? Just call mediaPlayer.setMedia( mediaURL, mediaType ); As for the complete event being unreliable, what are you experiencing? Are you experiencing that the media doesn't fin

[flexcoders] Re: Loading in the background

2005-08-11 Thread kaibabsowats
In regards to the MediaDisplay and downloading all the media before playing, one way is to do: mediaDisplay.setMedia( "somemedia" ); mediaDisplay.stop(); Then there is a "start" event which fires when the MediaDisplay thinks there is enough buffered to start playing. If you want to set your ow

[flexcoders] Re: Cairgorm command question.

2005-08-10 Thread kaibabsowats
Its a combination. Your command will catch the error, then it should call a ViewHelper function to do anything that is in regards to the View. The Cairgnorm Shopping Cart example has Alerts for most of the on Fault calls. So it kinda of depends on what you want to have done. If you want to ch

[flexcoders] Re: Interesting news on Zorn

2005-08-09 Thread kaibabsowats
I just read this and WOW is right. Any more news on this will be good. But after looking into it more, there will be differences in the Product offerings. Some items below will keep you wanting to buy the Flex Server license, but it depends on the kind of Project you are using Flex for: - new se

[flexcoders] Re: Fastest Hardware for Flex compilation

2005-08-08 Thread kaibabsowats
Definetly call Macromedia Sales Rep for clarification because thats not what the Sales Rep told me. It doesn't seem right to have to pay $29k just to get going on a single CPU server. And if the starter kit is 4 separate licenses it seems to agree with the EULA. --- In flexcoders@yahoogroups.c

[flexcoders] Re: Fastest Hardware for Flex compilation

2005-08-08 Thread kaibabsowats
Is not the Flex license per CPU regardless of Single, Dual? So the 4 Licenses in a starter kit can be used on 4 single Server, 2 Duals, etc... basically one per CPU. At least this is how Macromedia Sales Rep explained it to me. And yes alot of ppl talk about doing it this way, that is compile th

[flexcoders] Re: Problem of installation with Fedora C4

2005-08-08 Thread kaibabsowats
Seems to be a "awk" issue. Find what version of awk is on the Flex support RedHat Enterprise stuff and use a version close to it. --- In flexcoders@yahoogroups.com, "endofadam228" <[EMAIL PROTECTED]> wrote: > Hi All, > I want to install the Flex server in fedora C4, I tried many different > confi

[flexcoders] Re: Fastest Hardware for Flex compilation

2005-08-05 Thread kaibabsowats
I agree with the JVM relationship. And the multi-threaded answer makes sense. We use JRockit as I have had success with it on other Java nonFlex projects. Renaun --- In flexcoders@yahoogroups.com, "Brian Deitte" <[EMAIL PROTECTED]> wrote: > Some answers and suggestions in regards to compilation

[flexcoders] Re: Another framework topic . . . .

2005-08-05 Thread kaibabsowats
As for the RemoteObjects examples being in Java, its pretty straight forward to change out the RemoteObjects to ColdFusion cfc's. The hiccup will be the Value Object (VO) implementation. But there has been some posts about using VO's and ColdFusion cfc's on the list. Passing Array data as cfc ar

[flexcoders] Re: Fastest Hardware for Flex compilation

2005-08-05 Thread kaibabsowats
CPU is defintely the factor for compiling, as for Dual CPU it depends on if the compiler is multi-threaded. Does any one know if the mxmlc compiler is multi-threaded? --- In flexcoders@yahoogroups.com, "Allen Manning" <[EMAIL PROTECTED]> wrote: > I have 1.5 gigs of memory and still have loads fre

[flexcoders] Re: has anyone had problems setting media components volumes?

2005-07-21 Thread kaibabsowats
t after it's playing... and report back. > > Thanks for the idea. > > On 7/21/05, kaibabsowats <[EMAIL PROTECTED]> wrote: > > > > rtmp address. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: h

[flexcoders] Re: has anyone had problems setting media components volumes?

2005-07-21 Thread kaibabsowats
Are you using MediaPlayer or MediaController with MediaDisplay? You can try to set the volume level after you have loaded and started playing the media. I use MediaController and MediaDisplay, I can set the volume correctly after the videos have been loaded and then play them. But I am not using

[flexcoders] Re: Flex CPU License(s)

2005-07-20 Thread kaibabsowats
at do you see is the bottleneck? Flex, > CPU, RAM, etc.? > > Without going live, any suggestions on how to benchmark? > > Thanks, > > Jack > > > --- In flexcoders@yahoogroups.com, "kaibabsowats" <[EMAIL PROTECTED]> > wrote: > > I won&#

[flexcoders] Re: Flex CPU License(s)

2005-07-20 Thread kaibabsowats
bottleneck? Flex, > CPU, RAM, etc.? > > Without going live, any suggestions on how to benchmark? > > Thanks, > > Jack > > > --- In flexcoders@yahoogroups.com, "kaibabsowats" <[EMAIL PROTECTED]> > wrote: > > I won't give you definit

[flexcoders] Re: Flex CPU License(s)

2005-07-20 Thread kaibabsowats
I won't give you definite answer as it does really depend, but give you a at least number. With Java the JVM has a 1.5Gb ram limitation (unless using Sun boxes or 64 bit correct me if I am wrong). So I usually try and get 2Gb of ram minimum. This allows the JVM use its limit if needed and have

[flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-19 Thread kaibabsowats
My question about this story is your take on the cost of development of Flash compared to Flex. Figure in development cost (Design Time, Training, Maintenance, etc… ) for one 1 year or more. Is there a big enough difference in Staff Costs to warrant a $750k licensing of Flex over a longer period

[flexcoders] Re: SWF and Flex SSL confusing situations

2005-07-15 Thread kaibabsowats
Thanks for your answers I appreciate it! Fourth Situation: Regular Flash Player 7 SWF is loaded over http. It loads a Flex application using the Loader class and a https url. Is the Flex application considered https? And to double check if the loaded Flex application has remoting call

[flexcoders] Re: SWF and Flex SSL confusing situations

2005-07-15 Thread kaibabsowats
> > You should be able to keep the SWF as http and the remoting calls as > https without a problem. The only disadvantage is that your users will > not see the secure icon in their browser. Since the content on the page > will not all be https. > Does this mean that the client will not see the

[flexcoders] Re: Debug Player crashing on Flex App

2005-07-14 Thread kaibabsowats
I have been developing a flex application that uses MediaController and MediaDisplay along with a Loader to load a FLV and a SWF and then sync them. I get the Flash Player to warn that there were errors quite often, and less often I get the whole browser IE and Firefox to crash. I also ported t

[flexcoders] SWF and Flex SSL confusing situations

2005-07-14 Thread kaibabsowats
I would like to understand some of the http and https situations and how it affects SSL connections. First Situation: Flex application loaded with http. The Flex access remoting calls with a https endpoint. Are the remoting calls really send over https? Second Situation: Flex applica

[flexcoders] Re: Panel Mouse Down Problem

2005-05-24 Thread kaibabsowats
Here I made it simplier: http://www.macromedia.com/2003/mxml"; xmlns="*"> Have your mouse over the panel as you refresh the page, the mouseDown event is not working until you move the mouse. Yahoo!

[flexcoders] Re: Making a page with a video clip

2005-05-24 Thread kaibabsowats
There is also a free encoder here http://www.rivavx.com/ We ended up with Sorenson for quality reasons, but Riva is a good starting point. As for playing video in Flex, its pretty simple just explore the API of MediaPlayback, MediaDisplay and MediaController. Yahoo! Groups Links <*> To vis

[flexcoders] Panel Mouse Down Problem

2005-05-24 Thread kaibabsowats
I have a problem where the mouse doesn't fire off the correct MouseDown event. It only happens when the mouse doesn't move and a new container with a mouseDown event is loaded under it. It seems to remember the last container's mouseDown area and fires that event. I am trying to figure out how t

[flexcoders] Re: Perplexing caching behavior

2005-05-11 Thread kaibabsowats
The only way I got it to work was to turn off Caching. from the flex-config.xml false Dont necessarly need caching in development at least while you are messing with changing icons/images out. Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/

[flexcoders] Re: NetStream instance in Media Components

2005-04-29 Thread kaibabsowats
Let me know if I can help with any specific feedback on the Media components. Looking forward to the improvements. --- In flexcoders@yahoogroups.com, Matt Chotin <[EMAIL PROTECTED]> wrote: > Yeah, we're looking at improving the media components for 2.0 to hopefully > avoid issues like this. > >

[flexcoders] Re: NetStream instance in Media Components

2005-04-28 Thread kaibabsowats
Thanks for the reply, When I use the "start" event to start playing the attached swf, the swf starts playing but the stream doesn't start playing for a little longer and since I am using the Media Component I can't tell if its buffering or doing what. I do know the play head doesn't really start

[flexcoders] NetStream instance in Media Components

2005-04-27 Thread kaibabsowats
Is there a instance of NetStream or PlayerNetStream in the Media Components? If not does the Media Components create some instance of the NetStream or PlayerNetStream some where else? The closest thing to FCS and Flex is: http://coenraets.com/viewarticle.jsp?articleId=90 In his LiveMediaDispla

[flexcoders] Re: FCS NetStream with Flex

2005-04-27 Thread kaibabsowats
Misspelled rmtp its suppose to be rtmp://fcsserver/application/instance/some.flv --- In flexcoders@yahoogroups.com, "kaibabsowats" <[EMAIL PROTECTED]> wrote: > > I am trying to learn how to use FCS with Flex's mx:MediaPlayback. I > can get it to play a Streamin

[flexcoders] FCS NetStream with Flex

2005-04-27 Thread kaibabsowats
I am trying to learn how to use FCS with Flex's mx:MediaPlayback. I can get it to play a Streaming FLV by just attaching a rmtp:// url to the setMedia function. But how do I then work with NetStream's onStatus events as NetStream is not used at all. How do I get the events from FCS about buffe

[flexcoders] Re: Questions About Services Security

2005-04-25 Thread kaibabsowats
This is a bit confusing to me, but I understand when you say it has to use AMF, unless exposed as a SOAP. I guess my question then is. If you use the Flex proxy remoteObject gateway (as right now I actually call a different AMF gateway for all my AMF calls), can you restrict domain/ip access in

[flexcoders] Re: MediaPlayback dragDrop event not triggering

2005-04-25 Thread kaibabsowats
I didn't understand the following code on dragEnter: event.handled = true; event.target.drawFocus(true); Problem solved, sorry for the post. --- In flexcoders@yahoogroups.com, "kaibabsowats" <[EMAIL PROTECTED]> wrote: > > I must be missing something her

[flexcoders] Re: Dynamic CSS

2005-04-25 Thread kaibabsowats
"Dynamic CSS". You'll > see quite a few posts on the topic. > > -- Matthew > > On 4/25/05, kaibabsowats <[EMAIL PROTECTED]> wrote: > > > > > > > > Can you reference CSS files in the main Application file dynamically?

[flexcoders] Questions About Services Security

2005-04-25 Thread kaibabsowats
I want to use RemoteObject that invokes a Java class. (not AMF, HTTPService, or SOAP). Question 1, are the Java classes restricted to the same server as Flex? (besides some funky network share i mean). Question 2, Using RemoteObject to Java classes (not AMF) do I gain the security that only mxm

[flexcoders] Dynamic CSS

2005-04-25 Thread kaibabsowats
Can you reference CSS files in the main Application file dynamically? I tried to bind a value to the CSS include statement and kept getting errors. Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this g

[flexcoders] Re: Windows Logon ID in Flex

2005-04-25 Thread kaibabsowats
Since the flash player resides in a "sandbox" on the clients machine (for security reasons) it wont be able to talk to the underlying OS to try and grab sensitive information like Login ID's. You would have to use other mechanisms to get the users Login ID and pass it along to the server. But t

[flexcoders] MediaPlayback dragDrop event not triggering

2005-04-25 Thread kaibabsowats
I must be missing something here. I have a simple mx:List with dragEnabled = true. I have a MediaPlayback tag: I can't get the MediaPlayback to fire the dragDrop event when I drag a item from the list over the MediaPlayback control. Anyone have any experience of dropping items into a MediaPl

[flexcoders] Re: PopUpManager

2005-04-20 Thread kaibabsowats
ater(this, "removePopUp"); > } > > function removePopUp() > { > popup.deletePopUp(); > } > > It's ok but if I were to immediately remove it, the dropshadow still is > there. Anyway, the above works all the time. > > - Original Message -

[flexcoders] Re: PopUpManager

2005-04-20 Thread kaibabsowats
); > } > > > function click() > { > doLater(this, "removePopUp"); > } > > function removePopUp() > { > popup.deletePopUp(); > } > > It's ok but if I were to immediately remove it, the dropshadow still is > there. Anyway, the above works all

[flexcoders] Re: PopUpManager

2005-04-20 Thread kaibabsowats
A solution to my own question: function interval() { this.setStyle( "dropShadow", false ); clearInterval( this.intervalNumber ); doLater( this, "deletePopUp" ); } But this seems like a hack, and the fact that the dropShadow stays around seems like a bug? Anyone seen this before?

[flexcoders] Re: DataGrid doublelclick

2005-04-20 Thread kaibabsowats
Here is an example of a DoubleClickTree should be pretty easy to convert over to a DataGrid: [Event("doubleClick")] class com.mason.core.components.DoubleClickTree extends mx.controls.Tree { var lastClick = 0; var dbLastSelected:Object; var dClick = false;