Re: [flexcoders] BlazeDS examples?

2008-01-26 Thread James Ward
If you download Blaze there is a samples war file that you can deploy in any app server. The samples include quite a few different example applications and tutorials. Does that help? -James - Original Message - From: flexcoders@yahoogroups.com flexcoders@yahoogroups.com To:

[flexcoders] Re: Web Hosting

2008-01-26 Thread bobignacio
Thanks for all the input...signed up with eapps.com. Got my flex test application up and running :) Bob I. --- In flexcoders@yahoogroups.com, Richard Rodseth [EMAIL PROTECTED] wrote: Rimu, JaguarPC, kgbinternet are some that others have mentioned to me. Googling servlet hosting would yield

[flexcoders] .actionScriptProperties

2008-01-26 Thread Glenn Williams
Looking into the .actionScriptProperties file in the root of my project, I can see this is where the compiler options are set. My question is this, it's is ok for me to change these values here rather than using the dialog. Also is it ok to have line returns between options, just making them

[flexcoders] PopUpButton Events

2008-01-26 Thread Glenn Williams
Which Event is fired on mouse click on the 'popupbutton' (right hand button) from a PopUpButton. click() is the main Left Hand button. I just can't seem to see in liveDoc's what's happening on the right. Thanks Glenn Williams tinylion:dev/ 10 Print glenn 20 Goto 10 30 Rem was that really 1982?

[flexcoders] Re: Can't get web page to scroll large Flex app

2008-01-26 Thread jack_freud
Sherif, Thanks for your reply, but what I wanted was for the browser to scholl the entire page including the App, not just for the app to scroll itself, just like a big web page. I stripped out everything but the simplest table on an html page and it worked, so I'm cool for now. Thanks for

[flexcoders] Proxying RMPTS in a DMZ

2008-01-26 Thread Josh VanderBerg
I have a situation where I need to make a tomcat web server running LCDS accessible on the internet. Our flex application talks to the web server over https for Remote Object AMF requests, and over RMTPS using the messaging protocol for push. I don't want to put the web server in the DMZ, for

Re: [flexcoders] itemRenderer in folder other than source root

2008-01-26 Thread Johannes Nel
is your main mxml page also in the src folder or said another way have you added the src folder to your class path 2008/1/25 Sherif Abdou [EMAIL PROTECTED]: src does not count so it would be com.blah.blah.foo - Original Message From: Glenn Williams [EMAIL PROTECTED] To:

[flexcoders] Re: itemRenderer in folder other than source root

2008-01-26 Thread Glenn Williams
No, the class path is complete (no src) main mxml in root, views in com.foo.foo.foo.views, renderers in com.foo.foo.foo.renderers etc. I ended up just assuming that you can't use a class path in an mxml declaration. i know the class path is fine because now I#m setting the renderer with AS I use

Re: [flexcoders] Re: itemRenderer in folder other than source root

2008-01-26 Thread Paul Andrews
You need to create a new xml namespace. for example: xmlns:view=com.foo.foo.foo.views.*and add it to the the mxml file that references the component. I keep my actionscript classes amd components completely separate.. Paul - Original Message - From: Glenn Williams [EMAIL

[flexcoders] Re: itemRenderer in folder other than source root

2008-01-26 Thread Glenn Williams
thanks mate, I already have that, accessing the component is fine, it only a problem with registering the item renderer with it (in the mxml code, ok if I add it with AS) just a strange one. No idea why this one wont work. thanks everyone --- In flexcoders@yahoogroups.com, Paul Andrews [EMAIL

Re: [flexcoders] Re: itemRenderer in folder other than source root

2008-01-26 Thread Paul Andrews
I have found that putting in a relative path seems to do the trick: itemRenderer=z.IRSnippetForSelection Where z is in a sub directory of my source. Paul - Original Message - From: Glenn Williams [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, January 26, 2008 3:44 PM

[flexcoders] Re: itemRenderer in folder other than source root

2008-01-26 Thread Glenn Williams
Well, I've finally gotten to the bottom of this. I knew it should have been working. I'd forgotten that I'd been testing the last nightly build of the SDK flex_sdk_3_192625 With this SDK it was always throwing an error, but as soon as I switched back to M4Beta3 all was well. LOL, Thanks for

[flexcoders] Re: itemRenderer in folder other than source root

2008-01-26 Thread Glenn Williams
RECAP: flex_sdk_3_192625 Take this example adding an itemRender to a List with itmeRenderer not in source root a file foo.mxml that's in the folder com\blah\blah\view\foo.mxml has element mx:List id=myListNav itemRenderer=com.blah.blah.renderer.ListRenderer / ListRenderer.mxml is in in

[flexcoders] AIR Printing bug - large page margins

2008-01-26 Thread Tom Sobut
When I print from Flex apps in browser, I get nice tight page margins as expected. I'd say, about half an inch all around. When I execute that same code deployed as a AIR app, I get 2 inch top and bottom margins, and an 1.25 inches on the sides. This is not related to the known issue with

[flexcoders] Conditional Compilation

2008-01-26 Thread Glenn Williams
Am I correct in thinking that the conditional compile feature of builder 3 is only for actionScript classes, and not MXML markup?

Re: [flexcoders] Conditional Compilation

2008-01-26 Thread Johannes Nel
am i missing something? http://www.mail-archive.com/flexcoders@yahoogroups.com/msg43648.html On Jan 26, 2008 12:49 PM, Glenn Williams [EMAIL PROTECTED] wrote: Am I correct in thinking that the conditional compile feature of builder 3 is only for actionScript classes, and not MXML markup?

[flexcoders] Re: Conditional Compilation

2008-01-26 Thread Glenn Williams
http://blogs.adobe.com/flexdoc/2007/10/conditional_compilation_in_mox_1.html

Re: [flexcoders] PopUpButton Events

2008-01-26 Thread Sherif Abdou
the Right Click fires the ContextMenuEvent which is the flash menu, there is no right click event though so... - Original Message From: Glenn Williams [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, January 26, 2008 3:33:56 AM Subject: [flexcoders] PopUpButton Events

Re: [flexcoders] Re: Conditional Compilation

2008-01-26 Thread Johannes Nel
:):):) thanks 2008/1/26 Glenn Williams [EMAIL PROTECTED]: http://blogs.adobe.com/flexdoc/conditionalcompilation.pdf -- j:pn \\no comment

[flexcoders] Re: Conditional Compilation

2008-01-26 Thread Glenn Williams
I think it's early day's for this feature. Lot's of improvements can be made, but at least we now know the direction it's heading. This is the kind of functionality that's essential if the framework is to really make it's way with application developers, rather than more traditional web

[flexcoders] Re: PopUpButton Events

2008-01-26 Thread Glenn Williams
Sorry when I said right hand button I meant the component button on the right hand side of the PopUpButton Component (not mouse button), the one with the arrow that triggers the second UIcomponent to be created.

[flexcoders] Re: Conditional Compilation

2008-01-26 Thread Glenn Williams
http://blogs.adobe.com/flexdoc/conditionalcompilation.pdf

Re: [flexcoders] Re: Conditional Compilation

2008-01-26 Thread Johannes Nel
we have had to hack around a bit with servicelocators in order to get air and web compilation, this solves that :) On Jan 26, 2008 1:23 PM, Glenn Williams [EMAIL PROTECTED] wrote: I think it's early day's for this feature. Lot's of improvements can be made, but at least we now know the

[flexcoders] Dynamic Variable Naming

2008-01-26 Thread jmfillman
I am probably overlooking something simple, but I'm trying to dynamically name variables. See the code below, which is an example that illustrates what I need to do. for (var gridRows:int=15; gridRows 2895;gridRows){ var R+gridRows:Number = (gridRows / 5); gridRows = (gridRows +

Re: [flexcoders] Re: PopUpButton Events

2008-01-26 Thread Sherif Abdou
that would be the open Event, left Part gets Triggered by the Click like you said and the right part gets triggered by the open Event, here is the code from Flex /** * Opens the UIComponent object specified by the codepopUp/code property. */ public function open():void { openWithEvent(null);

[flexcoders] how to swap backgroundImage when rollover it?

2008-01-26 Thread Yochikoh Haruomi
Hi list, I have a vBox container with a backgroundImage (bg1.jpg). When rollover the backgroundImage ,I want to display another backgroundImage (bg2.jpg) at the same position ( swap). The below code doesn't work properly . When I rollout, the background2 (sometimes) shows and when I rollover

Re: [flexcoders] Dynamic Variable Naming

2008-01-26 Thread Sherif Abdou
why does it say var R it should be var r:String =R if u want it like that, what are your tring to do - Original Message From: jmfillman [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, January 26, 2008 12:57:55 PM Subject: [flexcoders] Dynamic Variable Naming I am

Re: [flexcoders] how to swap backgroundImage when rollover it?

2008-01-26 Thread Sherif Abdou
use mouseOver and mouseOut instead - Original Message From: Yochikoh Haruomi [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, January 26, 2008 1:04:20 PM Subject: [flexcoders] how to swap backgroundImage when rollover it? Hi list, I have a vBox container with a

[flexcoders] Re: Dynamic Variable Naming

2008-01-26 Thread jmfillman
Variables can't start with a number, so I need the variable to include the variable gridRows. For example, I need that variable to be like this: var R15ColumnNumber:Number = (gridRows / 5); where the 15 in the variable name comes from the variable gridRows in the for loop. JF --- In

[flexcoders] Re: PopUpButton Events

2008-01-26 Thread Glenn Williams
Cheers Mate, lol, i must have looked at the docs 100s times. strange how sometimes you just don't see it. I kind of assumed the open event was triggered after the poppedUp UIComp was created. Thanks for that.

Re: [flexcoders] how to swap backgroundImage when rollover it?

2008-01-26 Thread Yochikoh Haruomi
Thanks for your help! --- Sherif Abdou [EMAIL PROTECTED] wrote: use mouseOver and mouseOut instead - Original Message From: Yochikoh Haruomi [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, January 26, 2008 1:04:20 PM Subject: [flexcoders] how to swap

Re: [flexcoders] Re: Dynamic Variable Naming

2008-01-26 Thread Sherif Abdou
you can't do that at least i dont think, you would need to use an object with the key as the dynamic so var object:Object = new Object(); object.r[gridrows] = (gridRows / 5); - Original Message From: jmfillman [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, January

[flexcoders] Re: Can't get web page to scroll large Flex app

2008-01-26 Thread arieljake
Generally, this has to do with the parent of the container/component that is really long not having a width or height defined so that scrollbars don't appear. Post some code, we can help. --- In flexcoders@yahoogroups.com, jack_freud [EMAIL PROTECTED] wrote: Sherif, Thanks for your reply, but

Re: [flexcoders] Re: Dynamic Variable Naming

2008-01-26 Thread Johannes Nel
use a dictionary On Jan 26, 2008 2:34 PM, Sherif Abdou [EMAIL PROTECTED] wrote: you can't do that at least i dont think, you would need to use an object with the key as the dynamic so * var * object:Object = *new* Object(); object.r[gridrows] = (gridRows / 5); - Original

[flexcoders] AS3 code in exported Flash component not executing

2008-01-26 Thread cougar_shuttle
I am using the Flex Component Kit for Flash and I have mouse event handlers and drawing code in the flash code that are not executing in Flex. Things work well in the published swf. Are there special considerations when executing code within Flash AS3 classes that get exported to Flex

[flexcoders] import fl.controls

2008-01-26 Thread Muharem Lubovac
Greetings, I used Flex environment to create new AS3 project and it won't allow me to import anything from fl.controls package. Matter of fact, it doesn't event show that fl.controls exists. Is there workaround for this or what do I need to do to get it going. Oddly enough, Flash IDE

Re: [flexcoders] import fl.controls

2008-01-26 Thread Sherif Abdou
flash and flex have two diffrent (not entirely) API's. what controls are you looking for? - Original Message From: Muharem Lubovac [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, January 26, 2008 2:56:08 PM Subject: [flexcoders] import fl.controls Greetings, I used

[flexcoders] Re: import fl.controls

2008-01-26 Thread muharem_l
ColorPicker, Button, standard stuff... --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: flash and flex have two diffrent (not entirely) API's. what controls are you looking for? - Original Message From: Muharem Lubovac [EMAIL PROTECTED] To:

Re: [flexcoders] Re: import fl.controls

2008-01-26 Thread Sherif Abdou
you would need to do flex project then, here are the Api in flex http://livedocs.adobe.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=1923.html - Original Message From: muharem_l [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday,

[flexcoders] Help with passing values from tilelist selecteditem to TitleWindow?

2008-01-26 Thread pioplacz
Hi, I'm was wondering if somebody here have any idea how to pass values from selecteditem in tilelist to TitleWindow? I have a seperate mxml for the titlewindow. Thanks for all the help!

Re: [flexcoders] Help with passing values from tilelist selecteditem to TitleWindow?

2008-01-26 Thread Sherif Abdou
create a public variable or setter and getter and bind it. - Original Message From: pioplacz [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, January 26, 2008 5:17:10 PM Subject: [flexcoders] Help with passing values from tilelist selecteditem to TitleWindow? Hi,

[flexcoders] Re: Help with passing values from tilelist selecteditem to TitleWindow?

2008-01-26 Thread pioplacz
any example? i've tryed: [Bindable] public var objItemSelected = movieTile.selectedItem; i've red few examples that i found on google but nothing seems to be working. --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: create a public variable or setter and getter and

Re: [flexcoders] Re: Help with passing values from tilelist selecteditem to TitleWindow?

2008-01-26 Thread Sherif Abdou
something like this is out to work [Bindable] public var objItemSelected:Object = myTile.selectedItem; then for the TitleWindow you create another public variable and pass it so myTitileWindow.tileSelectedItem = objItemSelected; I have no idea what your exactly trying to do or where the

[flexcoders] Re: Gauge, Dial, or Speedometer component

2008-01-26 Thread sarotalotus
Those visualization components are so awesome. It's exactly what I am looking for. Unfortunately, we are in a rush to release our product and it is written in Flex 2 (we didn't take the hit on Flex 3 beta because we wanted to minimize unknown factors). I'd love to snag these components, I see

[flexcoders] Children arrangement gets disturbed once tile resizes

2008-01-26 Thread rohit_sharma1982
Hi All, In one of my apps I have to put all the alphabets onscreen. I am using the following code snippet to perform the above operation :- mx:Application ... mx:Script . private var alphabet:Array = [ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I',

[flexcoders] Setting ComboBox selection in a Data Grid

2008-01-26 Thread grendel19320
Hello All! I have a data grid and one of the columns is an itemRendered ComboBox. Everything I need to do is working fine except one thing. I need the selected value of the ComboBox to equal the value being passed into the DataGrid's source. For example, my ComboBox has values A, B, C and A

[flexcoders] Re: Can't get web page to scroll large Flex app

2008-01-26 Thread Randy Cooper
The problem is that when Flex builds the HTML file, it automatically puts a body scroll=no Edit this out and your document will scroll as you wish. Randy Cooper http://www.randycooper.net --- In flexcoders@yahoogroups.com, jack_freud [EMAIL PROTECTED] wrote: Sherif, Thanks for your reply,

Re: [flexcoders] newbie questions about mx:Move

2008-01-26 Thread [p e r c e p t i c o n]
thanks Sherif On Jan 25, 2008 8:10 PM, Sherif Abdou [EMAIL PROTECTED] wrote: mx:Move targets=[]/ remb targets and it takes an array of them - Original Message From: [p e r c e p t i c o n] [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, January 25, 2008 4:08:53

[flexcoders] Re: Help with passing values from tilelist selecteditem to TitleWindow?

2008-01-26 Thread pioplacz
Ok, here is my code: what i'm looking after is when dubbelclicking on either the tilelist (id movieTile) or the list (id movie_list) the Titlewindow popup showing all the info about the selectedItem. once again thanks for all the help. MovieView.mxml - ?xml

Re: [flexcoders] Re: Help with passing values from tilelist selecteditem to TitleWindow?

2008-01-26 Thread Sherif Abdou
this is what u need to do ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical initialize=initApp() xmlns:local=* xmlns:flexsolutions=com.flexsolutions.* mx:Script ![CDATA[ [Bindable] private var itemSelected:Object; private function

[flexcoders] Re: Setting ComboBox selection in a Data Grid

2008-01-26 Thread simonjpalmer
see http://tech.groups.yahoo.com/group/flexcoders/message/97597 I think that discussion may be relevant --- In flexcoders@yahoogroups.com, grendel19320 [EMAIL PROTECTED] wrote: Hello All! I have a data grid and one of the columns is an itemRendered ComboBox. Everything I need to do is

[flexcoders] Re: Dynamic Variable Naming

2008-01-26 Thread jer_ela
I think the following will do what what your want var R:Object = {}; for (var gridRows:int=15; gridRows 2895;gridRows += 20){ var R[gridRows] = (gridRows / 5); } you can't dynamically generate var names, but you can dynamically generate object keys. since gridRows is a number it can be the

[flexcoders] Re: import fl.controls

2008-01-26 Thread muharem_l
well, if I do this in Flex, I still get the same problem ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Script ![CDATA[ import fl.controls.ColorPicker; ]]

Re: [flexcoders] Re: import fl.controls

2008-01-26 Thread Sherif Abdou
if i understand your correctly then the stuff that u need would be in import mx.controls.*; - Original Message From: muharem_l [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, January 26, 2008 9:03:20 PM Subject: [flexcoders] Re: import fl.controls well, if I do this in

[flexcoders] Re: import fl.controls

2008-01-26 Thread muharem_l
You are correct but that only works for Flex project, not ActionScript project... --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: if i understand your correctly then the stuff that u need would be in import mx.controls.*; - Original Message From:

[flexcoders] Destination not found error with liveCycle DS and Flex

2008-01-26 Thread flexuser1
Hi, I just installed livecycle DS and looked at all the samples, etc. I tried making my own project by 1. adding a destination called 'chat' in the C:\lcds\jrun4\servers\default\flex\WEB-INF\flex messaging-config.xml default-channels channel

[flexcoders] Destination not found error with liveCycle DS and Flex

2008-01-26 Thread flexuser1
Hi, I just installed livecycle DS and looked at all the samples, etc. I tried making my own project by 1. adding a destination called 'chat' in the C:\lcds\jrun4\servers\default\flex\WEB-INF\flex messaging-config.xml default-channels channel

[flexcoders] Remove Drop Insertion Artifact after dragDrop Operation?

2008-01-26 Thread Kevin
Does anyone know how to cleanup the insertion indicator after a custom dragDrop event? I always seem to get a black line on the screen that doesn't go away until my next dragDrop. Thanks, Kevin

RE: [flexcoders] Re: import fl.controls

2008-01-26 Thread Alex Harui
The libraries for fl*.* are not shipped with Flex Builder. Flash components are not compatible with Flex or Flex Builder either. You should be able to use the mx.* version of the fl.* controls. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] Destination not found error with liveCycle DS and Flex

2008-01-26 Thread Jeff Vroom
There are two ways to fix this: 1) change your compile options to include the -services WEB-INF/flex/services-config.xml so that the destination configuration and channel configuration is compiled into the SWF. This allows you to use the symbolic destination id in your client without

[flexcoders] Re: Resize Event Complete

2008-01-26 Thread jmfillman
Mabye this is a bug, but when using Windows Vista and you switch users, the updateComplete event fires. What is odder, is that any components that I have dynamically added, e.g. myCanvas.addItem (myItem), their width formatting, and often their x and y formatting. --- In

[flexcoders] Re: Resize Event Complete

2008-01-26 Thread jmfillman
Mabye this is a bug, but when using Windows Vista and you switch users, the updateComplete event fires. What is odder, is that any components that I have dynamically added, e.g. myCanvas.addItem (myItem), LOSE their width formatting, and often their x and y formatting. --- In