Re: [flexcoders] Re: how do you guys read flexcoders

2010-09-05 Thread Wesley Acheson
+1 On Sun, Sep 5, 2010 at 2:25 PM, tom.chiverton ya...@falkensweb.com wrote: now that searchcoders dashboard has not been working for sometimes, on a show of hands, how are you guys reading flexcoders mailing list? Never heard of it before. just using rss ?? No, over email and

Re: [flexcoders] Re: Switching Item Renderers

2010-09-01 Thread Wesley Acheson
then instantiate the appropriate one based on the data and add it in the updateDisplayList method. --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Wesley Acheson wesley.ache...@... wrote: Since nobody has replied I'm continueing to try this. I currently think I may need to override all

Re: [flexcoders] Re: Switching Item Renderers

2010-09-01 Thread Wesley Acheson
%40yahoogroups.com, Wesley Acheson wesley.ache...@... wrote: Yeah thats the way I've done it previously. I thought that this way would cut out on some additional computation. On Tue, Aug 31, 2010 at 6:04 PM, valdhor valdhorli...@...wrote: That seems overly complicated to me. What I

Re: [flexcoders] Window website

2010-08-30 Thread Wesley Acheson
Hi, I'm a little confused as to what you want here? Do you mean you want the website to work at low resolutions say 640x480 or something else? Regards, Wesley Acheson On Sun, Aug 29, 2010 at 6:13 PM, Christophe christophe_jacque...@yahoo.frwrote: Hello, I am searching for examples

Re: [flexcoders] Where To Declare CSS Style Name in AS Component

2010-08-27 Thread Wesley Acheson
I think the issue is that you need to namespace all of the styles. So depending on which component your myButton was based off a spark component or a Halo component. See the following link for more details. http://cookbooks.adobe.com/post_How_to_use_the_new_CSS_syntax_in_Flex_4-15726.html

Re: [flexcoders] Listening for CollectionEvent in custom component

2010-08-21 Thread Wesley Acheson
Okay from the looks of things. You want the even to change when you change the XML in the games variable? The collectionChange event is fired when you change something in the existing collection. Your changing the collection itself. This means that your listening to a change in a subsequently

Re: [flexcoders] Listening for CollectionEvent in custom component

2010-08-21 Thread Wesley Acheson
wrote: Hello Wesley, On Sun, Aug 22, 2010 at 12:47 AM, Wesley Acheson wesley.ache...@gmail.com wesley.acheson%40gmail.com wrote: This means that your listening to a change in a subsequently unbound collection. oh ok thanks, this makes sense. In that case I probably don't need any events

Re: [flexcoders] Is this possible with Flex 4?

2010-08-20 Thread Wesley Acheson
I don't think flex can interact with a third party website *except* to post data to that website. It would be a major security risk if you could do all of this. AIR may be able to do it but I believe only if the origional website owners have a crossdomain.xml file. On Fri, Aug 20, 2010 at 10:38

Re: [flexcoders] flex2gateway error

2010-08-19 Thread Wesley Acheson
code. Also we have seen intermittant errors in Internet explorer that were due to a badly configured https remote connection. Note I've no solutions for you I'm just saying some of the stuff you can look at. Regards, Wesley Acheson On Thu, Aug 19, 2010 at 7:12 PM, Mary Jo Sminkey mar

[flexcoders] Re: Switching Item Renderers

2010-08-19 Thread Wesley Acheson
like the architecture seems a bit off. I mean if all of those methods are implemented why is there still a dependency on DisplayObject. Its not just enough to implement IListRenderer which seems to defeat the purpose of an interace On Wed, Aug 18, 2010 at 11:42 PM, Wesley Acheson wesley.ache

Re: [flexcoders] flex2gateway error

2010-08-19 Thread Wesley Acheson
Okay in a default apache install there is a request log. Take a look at that when you see the error on screen and make sure theres no lines ending in 500 (most lines should be 100, 200) Charles proxy is used for debugging what data is sent over the wire via amf. Regards, Wesley On Thu, Aug

Re: [flexcoders] Re: HTTPService not updating...

2010-08-19 Thread Wesley Acheson
Whats the server type? You could probably add the expires header, cache-control:none and pragma:no-cache. Btw please look these up I'm typing from memory. I'd personally prefer the correct response headers to spurious timestamps. On Thu, Aug 19, 2010 at 8:34 PM, Laurence lmacne...@comcast.net

Re: [flexcoders] Hi, how do I signal a Binding event from a class?

2010-08-19 Thread Wesley Acheson
Is the event listener in another class? public function pass():void { _grade = 'A'; } change this method to public function pass():void { grade = 'A'; } On Thu, Aug 19, 2010 at 9:11 PM, luvfotography ygro...@all-digital-links.com wrote: Hi, how do I signal a Binding event that I

Re: [flexcoders] flex2gateway error

2010-08-19 Thread Wesley Acheson
On Thu, Aug 19, 2010 at 9:30 PM, Mary Jo Sminkey mar...@dogpatchsw.comwrote: So any clue how to disable it in this situation?? Does flex4 still have channel config and remoting config? If so could you post them? Your communication channels should be listed there I think.

Re: [flexcoders] Listening for CollectionEvent in custom component

2010-08-19 Thread Wesley Acheson
when are you expecting to see the event tiggered. I don't see anywhere it would be triggered in this code. On Thu, Aug 19, 2010 at 12:40 AM, Alexander alexander.far...@gmail.comwrote: Hello, I have 2 problems with my custom component (code below), which works ok otherwise. It represents a

Re: [flexcoders] Re: Null object error on test for null

2010-08-18 Thread Wesley Acheson
in before and just stepping through the code I've seen errors magically disappear this way. If using Flash/Flex Builder ensure there are no errors in your problems tab. Regards, Wesley Acheson

[flexcoders] Switching Item Renderers

2010-08-18 Thread Wesley Acheson
*Disclaimer:* This is a cross post with Stack Overflow. I know at least one person on this list saw it there. http://stackoverflow.com/questions/3507313/flex-switch-item-renderer Hi I was wondering if anyone had any luck with the following senario in flex. I'd like to be able to have a custom

Re: [flexcoders] Re: Method for a Datagrid Button Itemrenderer

2010-08-17 Thread Wesley Acheson
in my datagrid, i have declared creationComplete=myDataGrid_CreationComplete() In my itemrenderer, I have placed a code : override protected function clickHandler(event:MouseEvent) :void { dispatchEvent(new Event('myTest', true)); } try override protected function

Re: [flexcoders] Re: Method for a Datagrid Button Itemrenderer

2010-08-17 Thread Wesley Acheson
sorry that should have been owner.dispatchEvent()

[flexcoders] Air Update -modules

2010-08-12 Thread Wesley Acheson
Hi If you have an Air Application and only one module changes. Do the end users need to redownload the entire AIR project? Regards, Wesley Acheson

Re: [flexcoders] Alert messages in multi window AIR bug in framework?

2010-08-11 Thread Wesley Acheson
Hi, I've run into this problem too. I've attempted the solution in the original email. However when I tried it I also had to delete the import to core/ version.as as it didn't seem to work. I'm not sure what this import does as it seemed to work correctly without it. Also if this is in Jira

Re: [flexcoders] Re: flex debuging

2010-07-30 Thread Wesley Acheson
Did you look at the page you were sent?. It explains it well. On Fri, Jul 30, 2010 at 3:56 AM, cholid cholid cholid_rid...@yahoo.comwrote: i mean debuging when flex running like we debuging JS with firebug at firefox i've try with add alert in actionscript tag to know the sequence of code

[flexcoders] Air Sub Application installing.

2010-07-29 Thread Wesley Acheson
Hi, I've asked this question here but no joy. Anyone here know? http://stackoverflow.com/questions/3275746/air-sub-applications -- Hi Is it possible for an Adobe Air application to install, upgrade and

Re: [flexcoders] Re: Flash Debugger crashing in Firefox?

2010-07-15 Thread Wesley Acheson
anyway. Regards, Wesley Acheson On Thu, Jul 15, 2010 at 3:23 PM, valdhor valdhorli...@embarqmail.comwrote: After a day of trying this fix, I can confirm that it works. Of course, I don't know what else it will break ;-} --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: I'll

Re: [flexcoders] Re: Flash Debugger crashing in Firefox?

2010-07-15 Thread Wesley Acheson
for awhile and then came back to the tab later that it showed the plug-in had crashed. If there is nothing happening (Waiting on an event) then Firefox incorrectly assumes the plug-in has crashed. --- In flexcoders@yahoogroups.com, Wesley Acheson wesley.ache...@... wrote: Basically what else

Re: [flexcoders] Re: The lifespan of flex.

2010-07-14 Thread Wesley Acheson
a vacuum for the next best application development environment, but by that time hopefully there will be direct connects to the brain for application development and some of the best development done while we sleep. IMHO Randy --- In flexcoders@yahoogroups.com, Wesley Acheson wesley.ache

Re: [flexcoders] HTTP Session is lost in IE8 when SWF is opened in J2EE Web Application...

2010-07-07 Thread Wesley Acheson
Is your application running in a frame / iframe. When you say it only happens in IE8, how many different browsers have you tested on. Is the privacy level set to high? If it is you will lose session cookies. Are you sure your flex application is being loaded from exactly the same domain and the

[flexcoders] The lifespan of flex.

2010-07-02 Thread Wesley Acheson
firms using it successfully? Regards, Wesley Acheson

Re: [flexcoders] how to create a web application with Maven

2010-04-11 Thread Wesley Acheson
Take a look at flex mojos. http://flexmojos.sonatype.org/ It can be tricky getting an existing app compiled. On Wed, Apr 7, 2010 at 12:01 PM, Nini7016 Nini7016 nahloulaha...@hotmail.com wrote: Hello :) I have an existing application Flex. I would like to create and automatise this web

Re: [flexcoders] Re: Why most Flex Developer job ads ask now for Knowledge in Java??

2010-02-19 Thread Wesley Acheson
I can say which our company picks when given that choice but the mailing list isn't going to like it. 2010/2/17 Jake Churchill reyna...@gmail.com I think the server technology experience part of the requirements are usually cut and paste. But if you have a large system already built in

Re: [SPAM] [flexcoders] Adaptation of an application to the screen size

2010-01-11 Thread Wesley Acheson
and basically everyone has a resolution of in excess of 1024 x 768 which is good for me. The java trail on layouts is good for a few ideas too. Regards, Wesley Acheson On Sat, Jan 9, 2010 at 10:16 PM, Tracy Spratt tr...@nts3rd.com wrote: “By setting all the width and height values

Re: [flexcoders] Re: 3.5 is out!!!

2009-12-27 Thread Wesley Acheson
Clicking on that link I just get no matching issues I'd really love to see some proper release notes between versions On Mon, Dec 14, 2009 at 10:16 PM, Andriy Panas a.pa...@gmail.com wrote: Hi all, Here is the list of fixed issues in Flex 3.5 SDK, 25 in total

Re: [flexcoders] CSS Div not working

2009-12-09 Thread Wesley Acheson
Try putting in a valid doctype into the document. This forces IE into standards mode which should make a difference to margin:auto On Mon, Dec 7, 2009 at 10:02 PM, Dan Pride danielpr...@yahoo.com wrote: I am trying to enclose pages in a div that is centered on the page. It works great on the

Re: [flexcoders] [BlazeDS] float serialization to Number problem

2009-10-13 Thread Wesley Acheson
Same with all programming languages I think. Basically certain decimal numbers can't be represented in binary. like for instance 0.1 There was a good article about this in pc plus this month (a uk magazine). http://en.wikipedia.org/wiki/Floating_point#Accuracy_problems has some information On

[flexcoders] Training Courses

2009-10-09 Thread Wesley Acheson
Hi, My boss was wondering if there are any recommended training courses for flex. We are based in Gibraltar but I don't think traveling is an issue. Personally I'd like to see some kind of certification out of it. Any recommended courses? I know its vague because I haven't specified a level

Re: [flexcoders] Re: Training Courses

2009-10-09 Thread Wesley Acheson
:)) Dan Pride http://www.danielpride.com --- On Fri, 10/9/09, Wesley Acheson wesley.ache...@... wrote: From: Wesley Acheson wesley.ache...@... Subject: [flexcoders] Training Courses To: flexcoders flexcoders@yahoogroups.comflexcoders%40yahoogroups.com Date: Friday, October 9, 2009, 1

Re: [flexcoders] ItemRenderer killing datatips in List?

2009-09-17 Thread Wesley Acheson
Is there something to implement because we usually get Object[object] as a data tip. Regards, Wes On Thu, Sep 17, 2009 at 5:53 AM, Alex Harui aha...@adobe.com wrote: The renderer is responsible for showing datatips. You can see how it is done in the default renderer and decide how you

Re: [flexcoders] Why never create an item renderer?

2009-09-17 Thread Wesley Acheson
*From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Wesley Acheson *Sent:* Thursday, September 03, 2009 3:29 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Why never create an item renderer? I've created a few. I've recreated a few

Re: [flexcoders] Don't understand how to use deferred instantiation

2009-09-14 Thread Wesley Acheson
http://livedocs.adobe.com/flex/3/html/help.html?content=layoutperformance_05.html Have you tried setting the creation policy? Jake It says on the above page that viewStack defers child creation by default. Regards, Wesley Acheson On Mon, Sep 14, 2009 at 9:17 PM, Jake Churchill j

Re: [flexcoders] Re: Flex - BlazeDS - Java: int are set to 0 when they should be kept to NULL.

2009-09-13 Thread Wesley Acheson
If you need null you should use Integer (object not int primative) in java. In flex I'm not sure. On Thu, Sep 10, 2009 at 8:31 PM, Jon Gunnip jongun...@gmail.com wrote: David, The int primitive type in Java and Flex cannot be null. They both default to 0. If you have, var myInt:int; //

Re: [flexcoders] Re: BlazeDS use secure channel when loaded over https.

2009-09-11 Thread Wesley Acheson
Thanks I'll give that a shot. On Fri, Sep 11, 2009 at 4:51 PM, Tom Chiverton tom.chiver...@halliwells.com wrote: On Friday 11 Sep 2009, Nick Collins wrote: You might put something like the following code in a preinitialize event handler: You could just but both a secure and non-secure

[flexcoders] Re: BlazeDS use secure channel when loaded over https.

2009-09-10 Thread Wesley Acheson
Does anyone else know where I can ask or point me somewhere I might find more information? Regards, Wesley Acheson On Wed, Sep 9, 2009 at 5:28 PM, Wesley Acheson wesley.ache...@gmail.comwrote: Hi all, We are nearing the end of a development cycle. One thing that I just noticed is that my

[flexcoders] BlazeDS use secure channel when loaded over https.

2009-09-09 Thread Wesley Acheson
there is no https component. Is there any way of loading off a secure channel when the flash file was loaded via https and a non secure channel otherwise? Otherwise I'm going to have to change all the channels to secure for deployment, and no longer run the application locally. Regards, Wesley Acheson

Re: [flexcoders] DataGrid Check box State problem

2009-09-08 Thread Wesley Acheson
If checkboxes appear checked when loading the xml but not when changing a value in the xml. Try wrapping the xml list in an XMLListCollection and using that as your dataprovider. If that doesn't work when you programatically change the value refresh the XMLListCollection. I believe you should

Re: [flexcoders] FlexBuilder Shortcuts

2009-09-08 Thread Wesley Acheson
Only one here ALT-SHIFT-L will list all shortcuts for the current view your in. Search for eclipse shortcuts. Anybody having FlexBuilder Shortcuts Please post... Thanks inAdvance సతీష్ -- Love Cricket? Check out live scores, photos, video highlights and

Re: [flexcoders] Google Earth inside of Flex

2009-09-04 Thread Wesley Acheson
We've used google maps not google earth. http://code.google.com/apis/maps/documentation/flash/ however It does requrire an internet connection from the client machine. (As does I beleve google earth) Regards, Wesley Acheson On Fri, Sep 4, 2009 at 11:01 AM, Darrin Kay dar...@stop-ing.com wrote

[flexcoders] Why never create an item renderer?

2009-09-03 Thread Wesley Acheson
as advise? Regards, Wesley Acheson

Re: [flexcoders] Why never create an item renderer?

2009-09-03 Thread Wesley Acheson
can't stand by either of these sometimes you need things to just work, however if you don't worry about practices you've got unmaintainable code. So how do I know if what I've written is good enough. Regards, Wesley Acheson On Thu, Sep 3, 2009 at 9:38 PM, Tracy Spratt tr...@nts3rd.com wrote

Re: [flexcoders] Re: Find Actual Width After Setting Percent Width

2009-08-28 Thread Wesley Acheson
This may help or not. Its a bit of a hack. but if your always resizing children when the size of the container changes I may just leave it in as a permenant event listener. Regards, Wesley ?xml version=1.0 encoding=utf-8? mx:WindowedApplication xmlns:mx=http://www.adobe.com/2006/mxml;

Re: [flexcoders] Re: Find Actual Width After Setting Percent Width

2009-08-28 Thread Wesley Acheson
Or if you want your origional code to work call this.validateNow() not foo.validateNow(). Its the parents job to size the child not the childs job to size itself. This was stated in Beau Scott's email but may have passed you by. On Fri, Aug 28, 2009 at 10:06 PM, Wesley Acheson wesley.ache

Re: [flexcoders] Html template for Flex appli.

2009-08-28 Thread Wesley Acheson
What exactly do you want 1 html with two flash files. OR something styled? 1 html with two flash files should be easy enough. If you need designs thats more complicated. Regards, Wesley On Thu, Aug 27, 2009 at 12:46 PM, christophe_jacquelin christophe_jacque...@yahoo.fr wrote: Hello, I

Re: [flexcoders] Flex Builder 3 - Conditional Debugging

2009-08-27 Thread Wesley Acheson
what I do is something like this. if(shouldBreak){ trace(Break point); } I then put a break point on the trace line. Its the only way round I know about. Regards, Wesley Acheson. On Thu, Aug 27, 2009 at 8:20 AM, Michael Ridland rid...@gmail.com wrote: Hi Is is possible to have

Re: [flexcoders] Air bundle strips Mac executable permissions

2009-08-25 Thread Wesley Acheson
It sounds like a bug with the nochump library. I doubt many people are using it which Is why I doubt your getting many replies. On Tue, Aug 25, 2009 at 11:36 AM, christofink ya...@elevenxy.com.au wrote: I posted this message a few days ago and have not received any response, is this the

Re: [flexcoders] Re: How to iterateOverChildren of an component not in display

2009-08-24 Thread Wesley Acheson
. --- In flexcoders@yahoogroups.com, Wesley Acheson wesley.ache...@... wrote: It may be because of deferred instantiation the component doesn't actually have children yet. On Fri, Aug 21, 2009 at 10:29 PM, alexeoscar alexeos...@... wrote: Suppose you have a MyView.mxml file, which

Re: [flexcoders] relativeTo and position question for States

2009-08-24 Thread Wesley Acheson
It depends on the container but if its an absolute positioning container , Canvas or (Application with layout=absolute or Panel with layout=absolute) you should be able to just set the .x and .y properties directly. On Mon, Aug 24, 2009 at 5:36 AM, agaboogaboo agabooga...@yahoo.com wrote: I

Re: [flexcoders] How to iterateOverChildren of an component not in display

2009-08-23 Thread Wesley Acheson
It may be because of deferred instantiation the component doesn't actually have children yet. On Fri, Aug 21, 2009 at 10:29 PM, alexeoscar alexeos...@yahoo.com wrote: Suppose you have a MyView.mxml file, which is basically a Panel with several children (Form, FormItems, Buttons...). Is it

Re: [flexcoders] Navigating to a jsp while flex movie is loaded

2009-08-22 Thread Wesley Acheson
Redirecting the request when responding a to a flex call will only redirect the result of that call not the page the browser is on. You need to send back information to flex and have it do the redirection On Fri, Aug 21, 2009 at 8:19 AM, Ram Mohan ram.mo...@customerxps.comwrote: Hi all, My

Re: [flexcoders] matrix math help

2009-08-21 Thread Wesley Acheson
Just FYI we can't view that without a username / password On Fri, Aug 21, 2009 at 7:03 PM, grimmwerks gr...@grimmwerks.com wrote: I'm building a sort of image zoomer/viewer -- you've seen it all before -- one large image that scales with a smaller image showing the full image. As you zoom

Re: [flexcoders] VBox constrains - A simple question :-p

2009-08-20 Thread Wesley Acheson
@ bottom 10. If i set the height or maxHeight it works as advertised. I am not trying to just fix it though.. I am trying to understand/know why it does not work.. Thanks, for the reply though On Thu, Aug 20, 2009 at 12:47 AM, Wesley Acheson wesley.ache...@gmail.com wrote: try setting

Re: [flexcoders] VBox constrains - A simple question :-p

2009-08-20 Thread Wesley Acheson
if it does mean this. Personally I think thats misleading and contradictory. Regards, Wesley Acheson On Thu, Aug 20, 2009 at 11:19 AM, Fotis Chatzinikos fotis.chatzini...@gmail.com wrote: Thanks! Setting the minimum height works but still its counterintuitive at the least... Can somebody

Re: [flexcoders] how to wait for more than one httpserivice/remoteobject result to finish?

2009-08-20 Thread Wesley Acheson
private var list1Result:ResultEvent; private var list2Result:ResultEvent; private function handleList1Result(event:ResultEvent):void { list1Result = event; if(list2Result) { handleResults(list1Result, list2Result); } } private function handleList2Result(event:ResultEvent):void {

Re: [flexcoders] Help trying to sort data provider for DataGrid

2009-08-20 Thread Wesley Acheson
I've not experienced it yet my self but the problem is probably the dates. Flex does string comparison on the dates not object comparison. (even if they were dates which they're probably strings by the time they get into your application. I haven't verified the accuracy of said post but at a

[flexcoders] Re: Flex UI and NT Login

2009-08-19 Thread Wesley Acheson
Whats your server technology? On Wed, Aug 19, 2009 at 6:58 AM, ballofmagic ballofma...@yahoo.com wrote: Thank you! I tried to download the project.zip to work with the code and I received a decompression failure. Any other recommendations? Would it be difficult to use the wizard login then

Re: [flexcoders] Capturing URL Requests in AIR application (HTML/HTMLLoader/HTMLHost)

2009-08-19 Thread Wesley Acheson
Is it not the responseHeaders that you need? on the following object http://livedocs.adobe.com/flex/3/langref/flash/events/HTTPStatusEvent.html Regards, Wesley Acheson On Wed, Aug 19, 2009 at 12:54 PM, Barry Evans bazza...@hotmail.com wrote: Hi, This post is quite lengthy, but I really need

Re: [Spam] Re: [flexcoders] Fields grouping?

2009-08-19 Thread Wesley Acheson
wrong? Hope so... Also, where is the Shapes area in FB3? Are there drawing tools or do i have to draw within a specific container? Cheers for the help guys! Nick 2009/8/18 Wesley Acheson wesley.ache...@gmail.com On Tue, Aug 18, 2009 at 7:07 PM, Nick Middleweek n

Re: [flexcoders] VBox constrains - A simple question :-p

2009-08-19 Thread Wesley Acheson
try setting the minWidth also. On Wed, Aug 19, 2009 at 6:29 PM, fotis.chatzinikos fotis.chatzini...@gmail.com wrote: mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; width=640 height=480 mx:VBox top=100 bottom=10 horizontalCenter=0 width=90%

Re: [flexcoders] Swf in a html

2009-08-18 Thread Wesley Acheson
http://www.w3schools.com/flash/flash_inhtml.asp On Tue, Aug 18, 2009 at 6:25 PM, christophe_jacquelin christophe_jacque...@yahoo.fr wrote: Hello, How to put a swf carrousel made with Flex, in the middle of a html page ? Thank you, Christophe, --

Re: [flexcoders] Fields grouping?

2009-08-18 Thread Wesley Acheson
On Tue, Aug 18, 2009 at 7:07 PM, Nick Middleweek n...@middleweek.co.ukwrote: hi guys, Is there a component that allows us to group fields/ objects together? I can't find a built in object, I'm after something visual that i can use to group fields, such as all the address fields together

Re: [flexcoders] ReferenceError #1069 property not found on native class

2009-08-18 Thread Wesley Acheson
All I can think of is check the verson of flash player but I don't know if it could cause that problem. On Tue, Aug 18, 2009 at 7:17 PM, dhchang77 dhchan...@yahoo.com wrote: Hi folks, Any chance anyone here has run into the following? ReferenceError: Error #1069: Property reencrypt not

[flexcoders] Why doesn't move effect occur?

2009-08-17 Thread Wesley Acheson
HI, I've got an application I'm trying to implement a custom layout. I'm trying to get move and resize effects to work on the children but it doesn't seem to work. Have I missed something obvious? Also... When I'm extending Canvas am I changing the correct method to recalculate the size and

Re: [flexcoders] Application with WebCam

2009-08-17 Thread Wesley Acheson
Isn't this a bit vague? Googleing for flex webcam came up with several results. What is it you need exactly. To fetch video from the webcam? On Mon, Aug 17, 2009 at 7:35 PM, christophe_jacquelin christophe_jacque...@yahoo.fr wrote: Hello, I am searching an example of a flex application that

Re: [flexcoders] Content area of a container.

2009-08-16 Thread Wesley Acheson
in viewMetrics Alex Harui Flex SDK Developer Adobe Systems Inc. http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Wesley Acheson *Sent:* Saturday, August 15, 2009 2:21 PM *To:* flexcoders *Subject

Re: [flexcoders] Hierarchical Tree Data

2009-08-16 Thread Wesley Acheson
are fulfilled? Cheers, Baz On Sat, Aug 15, 2009 at 2:23 PM, Wesley Acheson wesley.ache...@gmail.comwrote: I usually do this at the server level. I collect all my data from the database and then I put it into objects. (I use java) Then I use Xstream to convert to XML if required. However

Re: [flexcoders] Hierarchical Tree Data

2009-08-16 Thread Wesley Acheson
guess, send that entire strucutre off to flex through remote object (amf). What do you get in flex, a nested ArrayCollection of objects, with a nested ArrayCollection of objects, indefinitely until all levels are fulfilled? Cheers, Baz On Sat, Aug 15, 2009 at 2:23 PM, Wesley Acheson

Re: [flexcoders] Content area of a container.

2009-08-16 Thread Wesley Acheson
Never mind I found it. On Sun, Aug 16, 2009 at 9:19 AM, Wesley Acheson wesley.ache...@gmail.comwrote: Thanks thats what I needed. Looking at viewmetrics it says it factors the scrollbar if the policy is on. Is there a way to factor the scrollbar if the scroll policy is auto

Re: [flexcoders] simple RSS reader can't read with one item

2009-08-15 Thread Wesley Acheson
I think its because it doesn't know if its an item or a collection try the following. If its not this I can't help. var f_Array:ArrayCollection = event.result.RDF.item as ArrayCollection; if (f_Array == null) { f_Array = new ArrayCollection([event.result.RDF.item]); }

Re: [flexcoders] Flex and NT Login

2009-08-15 Thread Wesley Acheson
I think this is LDAP authentication. If your using server technology look at what that sever supports http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetailsproductId=2postId=7122 On Fri, Aug 14, 2009 at 9:01 PM, ballofmagic ballofma...@yahoo.com wrote: Do you know how to

Re: [flexcoders] Html Title and Google rank

2009-08-15 Thread Wesley Acheson
I probably woudn't use that file in production. You can easily copy out areas that you want. Google Rank I don't know. Get many incomming links. On Sat, Aug 15, 2009 at 10:04 PM, christophe_jacquelin christophe_jacque...@yahoo.fr wrote: Hello, How to set the balise Title,Description,

[flexcoders] Content area of a container.

2009-08-15 Thread Wesley Acheson
How do I find the content area of a container? For example a panel. This as far as I can tell is different to its height, width, explicitHeight, explicitWidth are all the height and width of the panel not of its content area.

Re: [flexcoders] Hierarchical Tree Data

2009-08-15 Thread Wesley Acheson
I usually do this at the server level. I collect all my data from the database and then I put it into objects. (I use java) Then I use Xstream to convert to XML if required. However usually I just use a remote object and bypass the XML stage. Regards, Wesley Acheson On Fri, Aug 14, 2009 at 10

Re: [flexcoders] Re: This mailing list vs the forum.

2009-08-14 Thread Wesley Acheson
that makes great technology but thinks they are so good that they don't need to bother with something as basic as letting users contact them to report problems. --- In flexcoders@yahoogroups.com, Wesley Acheson wesley.acheson@ wrote: I saw a mail a while ago about new Adobe forums

Re: [flexcoders] Re: TabNavigator changing from MXML to actionscript.

2009-08-13 Thread Wesley Acheson
@yahoogroups.com, Wesley Acheson wesley.ache...@... wrote: Hi I've an application already mostly written. *Background*: This application uses several custom components that extend or contain TabNavigators. A requrirement which I've missed is that if the user doesn't have permission

Re: [flexcoders] Re: TabNavigator changing from MXML to actionscript.

2009-08-13 Thread Wesley Acheson
the appropriate viewstate based on user permissions. Similar to your init() code, it might look something like: if (Permissions.hasPermission(restrictedTab) { currentState = stateWithRestrictedTab; Good luck! --- In flexcoders@yahoogroups.com, Wesley Acheson wesley.ache...@... wrote

Re: [flexcoders] This mailing list vs the forum.

2009-08-13 Thread Wesley Acheson
I don't think I'm going to bother joining the forums then. On Thu, Aug 13, 2009 at 5:38 PM, Tom Chiverton tom.chiver...@halliwells.com wrote: On Thursday 13 Aug 2009, Gregor Kiddie wrote: It does have to be said, I use the Mailing list functionality of the Adobe forums rather than

[flexcoders] TabNavigator changing from MXML to actionscript.

2009-08-12 Thread Wesley Acheson
Hi I've an application already mostly written. *Background*: This application uses several custom components that extend or contain TabNavigators. A requrirement which I've missed is that if the user doesn't have permission to view a tab then the tab doesn't appear in the tab navigators.

[flexcoders] This mailing list vs the forum.

2009-08-12 Thread Wesley Acheson
I saw a mail a while ago about new Adobe forums. Those of you who use both which do you perfer flexcoders or the Adobe forums? I've an impression that the community is pretty strong here. ] Please only answer If you use both. Its not a real opinion to get the opinion of someone who only uses

Re: [flexcoders] Re: Instantiation of State Objects

2009-08-12 Thread Wesley Acheson
Maybe you could use the activate event instead of the creation complete event? On Tue, Aug 11, 2009 at 2:23 AM, Geoffrey gtb...@yahoo.com wrote: I'm getting a clearer picture of why I'm seeing state-related issue. In my setup, state B is a custom component. This component has event

Re: [flexcoders] TabNavigator changing from MXML to actionscript.

2009-08-12 Thread Wesley Acheson
-- *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Wesley Acheson *Sent:* Wednesday, August 12, 2009 11:06 AM *To:* flexcoders *Subject:* [flexcoders] TabNavigator changing from MXML to actionscript. Hi I've an application already

Re: [flexcoders] Execute events while loop is iterating - possible?

2009-08-12 Thread Wesley Acheson
Short answer no. I'm not sure If thats a good thing in your use case or not. Basically flex is single threaded so the events only get processed after the loop finishes. If you need it to be otherwise you have to break out of the loop. The other problem with doing a 10 iterations is that you

Re: [flexcoders] Embedding Emmentaler Fonts

2009-08-12 Thread Wesley Acheson
Maybe the font only has bold. You need a seperate embedding for bold fonts. On Wed, Aug 12, 2009 at 9:51 PM, Tim Sawyer l...@calidris.co.uk wrote: Hi, I'm trying to embed the Emmentaler font from lilypond (www.lilypond.org) in order to be able to output musical notation with Flex. If I

Re: [flexcoders] Re: How to use XML file as dataProvider for s:List

2009-08-12 Thread Wesley Acheson
If you want to load it from the server its easiest to make a http request. If you don't need to change it at runtime. You can embed an xml easy enough. anyway to load one see http://livedocs.adobe.com/flex/3/html/help.html?content=13_Working_with_XML_11.html regards wes On Wed, Aug 12, 2009 at

Re: [flexcoders] Re: How to make variables persist across application

2009-08-07 Thread Wesley Acheson
Static properties are properties bound to a class instance. This is usually the way I would do it. you create a class login info as normal then inside you can put public static var userId:String; This can then be accessed anywhere in the application by LoginInfo.userId as stated by Gordon. The

Re: [flexcoders] Re: this group isn't very good [1 Attachment]

2009-08-03 Thread Wesley Acheson
you can always add a search plugin to firefox. http://labnol.blogspot.com/2006/09/learn-to-create-firefox-search-plugin.html or to IE http://www.microsoft.com/windows/ie/searchguide/en-en/default.mspx# or probably any other browser that supports open search OpenSearchDescription

Re: [flexcoders] Re: How to Export data from an AdvancedDataGrid to excel

2009-07-26 Thread Wesley Acheson
Or as another work arround sent the values to the clipboard tab delimited. This requires the user post to flex. On Sun, Jul 26, 2009 at 1:11 PM, mitchgrrt mitch_g...@hotmail.com wrote: Two separate problems: how to get the data out of the AdvancedDataGrid and how to get it into Excel.

Re: [flexcoders] Problem with Flex tree and arraycollection

2009-07-24 Thread Wesley Acheson
Does UID work like hashcode in java? On Thu, Jul 23, 2009 at 1:03 AM, Alex Harui aha...@adobe.com wrote: If there are duplicate items (items with the same UID) it may not work correctly Alex Harui Flex SDK Developer Adobe Systems Inc. http://www.adobe.com/ Blog:

Re: [flexcoders] Flex Architecture Question

2009-07-24 Thread Wesley Acheson
applications. Regards, Wesley Acheson On Thu, Jul 23, 2009 at 8:23 PM, guess what myworld10...@yahoo.com wrote: I am struggling to get the Best Architecture. Can anyone suggest me some direction . Its a very simple Web App , which needs some data grid and filters on the page . Front End Flex

Re: [flexcoders] Re: FileReference Upload

2009-07-24 Thread Wesley Acheson
. This will probably write a session cookie. Go back to your flex application and then try the test thats failing. If it works then its something server side thats requiring a session. Regards, Wesley Acheson On Fri, Jul 24, 2009 at 9:52 PM, [p e r c e p t i c o n] percepti...@gmail.com wrote

Re: [flexcoders] Re: FileReference Upload

2009-07-24 Thread Wesley Acheson
, an astute assumption and a correct one at that, but here's the thing...i'm passing my session id (the rails app session key that is) in my url... or is there another session key that i should be using and if so where can i find it... thanks percy On Fri, Jul 24, 2009 at 1:04 PM, Wesley Acheson

Re: [flexcoders] Flex Architecture Question

2009-07-24 Thread Wesley Acheson
can connect to any backend including Java using SOAP Webservices or REST Webservices which do not require BlazeDS or anything similar. Wesley Acheson wrote: I think you may be a bit confused. Flex won't talk directly to a Java server application without something like BlazeDS

[flexcoders] Correct way to notify flex of an event that occurs in a java webapp.

2009-05-21 Thread Wesley Acheson
for exceptions to do with running out of permgen space in JBoss. Is there no interface to call to send a message. Thanks, Wesley Acheson

  1   2   >