[flexcoders] How does Panel work in designer / layout?

2007-12-05 Thread Mark Ingram
Hi, how does the Panel class work in the designer? i.e. when I drag a button on, the designer knows to place the button inside the white area in the centre of the panel. All coordinates are in relation to that white area. I have a container class which is similar in layout to the panel (but

[flexcoders] Re: Flex 3 : : showDataTips in AdvancedDataGrid does not work any more after groupin

2007-12-05 Thread sreeni_r
This is not working for the tree column due to a bug. You can track the issue here http://bugs.adobe.com/jira/browse/FLEXDMV-1467 --- In flexcoders@yahoogroups.com, tungchau81 [EMAIL PROTECTED] wrote: Hi, I set showDataTips = true in one of an AdvancedDataGridColumn and it works without

Re: [flexcoders] Re: How to improve BitmapData processing speed?

2007-12-05 Thread Muzak
No clue how that relates to PS.. I only use PS once a year and only if I really have to ;-) I suggest you start getting your hands dirty ;-) Here's some more ColorMatrix stuff from the Adobe site: http://www.adobe.com/devnet/flash/articles/matrix_transformations_print.html

Re: [flexcoders] ASDoc tool and packages

2007-12-05 Thread Christophe Herreman
Hi Jobe, you need to specify them as arguments when invoking asdoc.exe: -package com.domain.a the a package -package com.domain.b the b package regards, Christophe --- http://www.herrodius.com http://www.pranaframework.org 2007/12/5, Jobe Makar [EMAIL PROTECTED]: Hi, I have been

Re: [flexcoders] How does Panel work in designer / layout?

2007-12-05 Thread Paul Andrews
- Original Message - From: Paul Andrews [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, December 05, 2007 11:12 AM Subject: Re: [flexcoders] How does Panel work in designer / layout? Flex completely ignores the x,y position inside my TestPanel. LOL - adding

Re: [flexcoders] How does Panel work in designer / layout?

2007-12-05 Thread Paul Andrews
Actually Mark, I take your point. When I tried it using a Panel, it wasn't so good. Unfortunately these days I tend not to use the designer. Certainly the designer has some issues! Paul - Original Message - From: Paul Andrews To: flexcoders@yahoogroups.com Sent: Wednesday,

Re: [flexcoders] How does Panel work in designer / layout?

2007-12-05 Thread Paul Andrews
- Original Message - From: Mark Ingram To: flexcoders@yahoogroups.com Sent: Wednesday, December 05, 2007 10:54 AM Subject: RE: [flexcoders] How does Panel work in designer / layout? Hi Paul, thanks for that - what if you had another container inside TestContainer? With say a 20 pixel

[flexcoders] Re: Which architecture to follow

2007-12-05 Thread mailtoanzer
tyeps of projects we are working on are simple DB applications, e-commerce applications, project management tools with multiple modules etc. Currently we are using Cairngorm but if PureMVC is better we are planning to move to that as we are already using MVC on .Net applications. --- In

Re: [flexcoders] Height Problems of List component using itemrenderer with different row height

2007-12-05 Thread Christoph Atteneder
Hi, I also already tried this workaround, but still getting from time to time during resizing the same bug. I´ve added a bug in the adobe bug base for this: *SDK-13813 https://bugs.adobe.com/jira/browse/SDK-13813 *Hopefully there will be a bug fix in the next release or at least a workaround

Re: [flexcoders] How does Panel work in designer / layout?

2007-12-05 Thread Paul Andrews
- Original Message - From: Mark Ingram To: flexcoders@yahoogroups.com Sent: Wednesday, December 05, 2007 10:01 AM Subject: RE: [flexcoders] How does Panel work in designer / layout? Hi, if the container is made as a separate class, then I add it to my main application, I

Re: [flexcoders] customizing flex download progress bar.

2007-12-05 Thread aaron smith
thanks man. I found a decent example in the programming flex 2 book. On Dec 4, 2007 12:19 PM, Jason Szeto [EMAIL PROTECTED] wrote: Aaron, Take a look at the Flex 2 Developer Guide. In chapter 14 (Using the Application Container), there is a subchapter called Showing the download

[flexcoders] Re: Adding custom events to the pre-loading sequence

2007-12-05 Thread dave_defusion
I'm just trying to do the same thing for our app today and there must be a way, surely it's quite a common requirement. All I want to do is load the runtime styles a quick check to the backend, but the loading the styles is the most important thing.

[flexcoders] Re: How to have no MenuBar No ToolBar in Browser

2007-12-05 Thread haravallabhan
--- In flexcoders@yahoogroups.com, Jack @ Zingit [EMAIL PROTECTED] wrote: If you dont wnat any of your generate code to be affected then using a separate html page is wise. In the use a Javascriot function like script function open(){ window.open(index.template.html,); } /script body

[flexcoders] Strange behaviour with singleton's and modules?

2007-12-05 Thread bjorn -
I've made a simple testcase with a singleton and three Flex projects: 1. MainApp 2. ModuleOne 3. ModuleTwo MainApp loads ModuleOne which loads ModuleTwo (it could also load both modules, the behaviour I describe below seems to be the same in both cases). I have created a TestSingleton.as which

[flexcoders] PrintDataGrid variablerowheight issue

2007-12-05 Thread jf317820
Hi everyone, I've done my thorough 5 days of documentation research, trial and error, and forum perusing on this subject, but have come to you as a frustrated, nearly broken developer. My printdatagrid will not print correctly, no matter what I try. I am getting rows cut off at the end of pages

Re: [flexcoders] Re: Local storage of password

2007-12-05 Thread Paul Andrews
- Original Message - From: Jeffry Houser [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, December 05, 2007 2:22 PM Subject: Re: [flexcoders] Re: Local storage of password That'd be too easy. He stated that he needs to prevent the user from re-entering the password

[flexcoders] Re: cfc do not understand cairngorm VO?

2007-12-05 Thread markflex2007
Please let me know where I can download the latest version CF extensions .Please help me. Mark --- In flexcoders@yahoogroups.com, Muzak [EMAIL PROTECTED] wrote: If you're using FlexBuilder, install the ColdFusion Extensions for Flex Builder (they're in the Flex Builder install dir). I've

Re: [flexcoders] xml and dataprovider for simple chart

2007-12-05 Thread Ian M. Jones
Try... dataProvider ={xmlData.entry[0].One} or dataProvider ={xmlData.*.One} On 5 Dec 2007, at 15:52, y.mauron wrote: Dear all, I have a problem which certainly be very easy. I have a xml varialbe like the following : var test:String = rootentry id=123Oney813/yx270/x/One/entryentry

[flexcoders] Re: Strange behaviour with singleton's and modules?

2007-12-05 Thread riaengineer
I've found using Darron Schall's singleton implementation seems to work great for my projects. http://www.darronschall.com/weblog/archives/000274.cfm Short of that can you post your singleton implementation code (or at least the constructor) ? --- In flexcoders@yahoogroups.com, bjorn -

RE: [flexcoders] Re: Local storage of password

2007-12-05 Thread Aaron Hergenreder
You could store an access key (hashed, encrypted, etc) that you use to lookup the data's encryption key from a database or off the server and have the server end handle the security. _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rmarples Sent: Tuesday,

Re: [flexcoders] cfc do not understand cairngorm VO?

2007-12-05 Thread Muzak
If you're using FlexBuilder, install the ColdFusion Extensions for Flex Builder (they're in the Flex Builder install dir). I've mentioned this yesterday. With the CF extensions installed, all you have to do is right click a cfc or as VO and you're done. Your cfc is missing some required stuff

[flexcoders] Re: compc swc generation, no flash cs3?

2007-12-05 Thread aaron smith
How was the UIMovieClip.swc created so that it would work for the flash CS3 (show up in the components panel)? On Dec 4, 2007 6:11 PM, aaron smith [EMAIL PROTECTED] wrote: Hey all, i'm doing some experimenting with swc files.. Does generating a swc with compc not work in in Flash CS3? How can

[flexcoders] Call to Web Service in WebSphere

2007-12-05 Thread dafox_82
I'm playing around with Flex and want to call a custom made Web Service in WebSphere. When I run my application, It seems that a lot of requests are done to the Web Service repeatably requesting the same XSD's (complex types). It looks like the application is in an infinite loop, constantly doing

Re: [flexcoders] Re: Local storage of password

2007-12-05 Thread Jeffry Houser
That'd be too easy. He stated that he needs to prevent the user from re-entering the password upon their next use of the application. Tom Chiverton wrote: On Tuesday 04 Dec 2007, rmarples wrote: requirement that I can't store the encryption key in the source code as a string literal. I'm

[flexcoders] Re: Binding to a ViewStack Child Container Property

2007-12-05 Thread tedgies
Jeez, what happened? I've never been cutoff when posting to a newsgroup before! I'm trying to bind a label's text to a viewStack's selected VBox toolTip. I have specified each toolTip within VBox components themselves. Anyways, the following binding does not work for me: mx:Label

[flexcoders] How to access .net dll's in FLEX 3.0

2007-12-05 Thread Praveen
HI.. I am Praveen. I joined this group newly. I recently joined in job as fresher in hyderabad. My company is product devleopment company and it developed its product in FLEX 1.5 and .Net. Presently we design our interface in FLEX and interact with .Net dll's using

RE: [flexcoders] getChildByName returning NULL

2007-12-05 Thread Tom Chiverton
Any thoughts??? Post your code. Please note, as of 10th December 2007 the registered office address of Halliwells LLP will be at 3 Hardman Square, Spinningfields, Manchester, M3 3EB

Re: [flexcoders] LINUX BLANK PAGE

2007-12-05 Thread Darron Schall
yourName wrote: dear all i have created a sample flex apllication and try to access it from mozila my operating system is *linux 3 with flash player *9.0.115.0 release i386.rpm. the problem is url is accessed but the page is blank. plz help me out . {I also tried to acces sample flex

[flexcoders] Sequence Diagram for Cairngorm

2007-12-05 Thread lawriegallardo
Hi, Just wondering if anyone has a sequence diagram for Cairngorm? If so, I'd be ever so grateful if you could post it... Thanks, Lawrie

[flexcoders] Change Height of Track Highlight?

2007-12-05 Thread Ethan Miller
Greetings - I've increased the height of my slider tracks but can't for the life of me figure how to change the height of the track highlight to match. ?? cheers, ethan

[flexcoders] Any additional details on NativeDrag to OS?

2007-12-05 Thread ivo
Hello all, What I would like to do is allow users to drag files off my AIR app onto their OS. I believe I can tell reliably when a drag gesture ends outside the AIR app but I have not figured out how to tell whether the drag gesture ended at a filesystem location (like an open folder) or

[flexcoders] Re: Question about Astro text capabilities

2007-12-05 Thread tudsy
Yeah I saw the left hand page type layout. I'm really interested in the right page, which is much more complex. I haven't been able to find any good detailed spec information on Astro that would help me determine if it's possible, know of any? Andy --- In flexcoders@yahoogroups.com, Tom

[flexcoders] Re: PrintDataGrid variablerowheight issue

2007-12-05 Thread jf317820
Default --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Custom or default renderers? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jf317820 Sent: Wednesday, December 05, 2007 7:28 AM To:

Re: [flexcoders] Re: Local storage of password

2007-12-05 Thread Paul Andrews
I can't claim to have invented the technique. It's even better if a new hash is passed back every time and replaces the old one (it means that any copies of the old hash will no longer work). Paul - Original Message - From: Jeffry Houser [EMAIL PROTECTED] To:

[flexcoders] Re: Triggering a .htrml page inside a html frame from Flex.

2007-12-05 Thread kalyancce
sorry for the typo in the title...its 'triggering a .html...'.

[flexcoders] Triggering a .htrml page inside a html frame from Flex.

2007-12-05 Thread kalyancce
Hi Friends, I am trying to work on a situation but not any close yet, and thought that I could find some help here. I am trying to trigger a html page from my flex .swf, but open it inside a html frame. ie., from my app.swf, i click a button and must open page1.html inside a frame existing in

[flexcoders] How to disble double click in ComboBo?

2007-12-05 Thread flexawesome
Hi, I am working on ComboBox components and like to disable double click event once click the little scrub( arrow icons ) The code doesn't work for me. Is there any way to reach that? Thanks = ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

RE: [flexcoders] DataGrid - Swap columns and rows

2007-12-05 Thread Alex Harui
I would convert the object to an array of tag/value objects From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Vladimir Stankovic Sent: Wednesday, December 05, 2007 7:07 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid -

RE: [flexcoders] PrintDataGrid variablerowheight issue

2007-12-05 Thread Alex Harui
Custom or default renderers? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jf317820 Sent: Wednesday, December 05, 2007 7:28 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] PrintDataGrid variablerowheight issue Hi everyone,

[flexcoders] styling Flex - able to use multiple stylenames - styleName=styleA styleB ?

2007-12-05 Thread sgarrity1
In HTML, one can have multiple CSS Rules/classnames in one class declaration like: p class=ruleA ruleBexample/p From my testing, it seems this is not available in Flex. Is there any way to apply two separate CSS Rules to an element ? So this does not seem to work: mx:VBox styleName=styleA

[flexcoders] xml and dataprovider for simple chart

2007-12-05 Thread y.mauron
Dear all, I have a problem which certainly be very easy. I have a xml varialbe like the following : var test:String = rootentry id=123Oney813/yx270/x/One/entryentry id=123Oney890/yx280/x/One/entry/root; var xmlData = new XML(test); and would like to use this as

[flexcoders] Tree - Open all child layers when open branch

2007-12-05 Thread nhid
Hi, I have this tree structure: Branch1 ChildA Child1 Child1.1 Child1.2 Child1.2.1 Child2 Child2.1 Child2.1.1 Child2.1.2 Child2.2

[flexcoders] ValueObject Factories?

2007-12-05 Thread Christophe Herreman
Hi all, I was wondering how you guys deal with model objects and their corresponding value objects. We have a pretty big domain model with complex nested classes and we need to create value objects from them before sending them to the server. Right now we create a factory for each model, that can

[flexcoders] Getting local connection info from Socket

2007-12-05 Thread RipSUp
Okay I'm working on an app that integrates with Novell's Groupwise Messenger and I'm having an issue. When sending login info you have to send your IP and PORT you are using for the connection. Not what I am connecting to but the random port I was assigned locally. Is there any way to get this

[flexcoders] Re: Adding custom events to the pre-loading sequence

2007-12-05 Thread hannes.stockner
Now I have a possible solution: CustomPreloader: private function onFlexInitComplete(event:Event):void { //now we can access the Application.application Application.application.addEventListener(AppReadyEvent.READY, onAppReadyEvent); } private function

[flexcoders] html wrapper

2007-12-05 Thread pateyog
I am trying to extend the height of the html wrapper such that it would get a scroll instead of the swf. Here is what I am trying to achieve: In my html wrapper I have Header (some html content) Object tag that includes my varying height flex swf Footer (some html content) What I am trying to

Re: [flexcoders] Re: cfc do not understand cairngorm VO?

2007-12-05 Thread João Fernandes
try to set the Alias attribute in your component. something like alias=path.to.my.cfc.PersonVO Also, be sure that the AS3 class maps to the same path defined in the alias attribute. -- João Fernandes http://www.onflexwithcf.org http://www.riapt.org

RE: [flexcoders] Missing classes when using RSL cache

2007-12-05 Thread Alex Harui
Because TweenEffect is not in the app? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Wednesday, December 05, 2007 4:38 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Missing classes when using RSL cache

[flexcoders] Custom ItemEditor too big for container

2007-12-05 Thread Ken Dunnington
I've built a custom Tree ItemEditor that consists of a VBox with a Form in it. It works just fine (besides the CheckBox which is too picky about true vs. true in the XML data...) except when I try to edit an item near the bottom of the container, the editor gets cut off. Because I wanted it to

Re: [flexcoders] Re: Triggering a .htrml page inside a html frame from Flex.

2007-12-05 Thread DreamCode
one option is to have the function to load a specific url in javascript, which would be easy to find a tutorial/example on. You'd then use the external interface to call js from flex. Only the first argument is required for the call() method, everything else is added to the function call

Re: [flexcoders] cairngorm value object type and cfc type do not match,why?

2007-12-05 Thread Mark Shen
Yes I change the cfc function code like cffunction name=addPerson displayname=addPerson access=remote output=false returntype=boolean cfargument name=personVO type=Bursary.cfcs.PersonVO required=true / cfquery name=insertPerson datasource=bursary INSERT INTO person_info (fname,

Re: [flexcoders] How to access .net dll's in FLEX 3.0

2007-12-05 Thread Jeffry Houser
I had no idea Flex 1.5 allowed you to call .NET dlls using RemoteObject. Pretty sweet. If Flex 1. Server could access .NET DLLs, then I Bet that this funcionality would be present in the current rendition of LiveCycle Data Services. You could also look into WebORB for .NET, although if

[flexcoders] Datagrid ItemEditor - multiple data edits?

2007-12-05 Thread Rick Schmitty
Is it possible for an ItemEditor in a datagrid (or some other way) to allow you to edit 2 or more things at once? Like say instead of a combo box dropdown for a cell in a datagrid, could you have an item editor that is like a mini form update multiple data objects in that row's data that may not

[flexcoders] Mutliple alert copies

2007-12-05 Thread Richard Rodseth
I have a wizard which ends with the following alert: alert = Alert.show(The message has been sent. Would you like to send another?, , Alert.YES | Alert.NO, null, handleClose); If the user chooses YES the alert disappears from view, but next time there are two of them. Any obvious mistakes?

[flexcoders] Re: getChildByName returning NULL SOLVED - kinda

2007-12-05 Thread riaengineer
Using callLater() seems to have fixed this behavior. I dynamically created var f:Object = new form1(); I then call a recusive function on f, f.GetData() o is found a 1-2 levels of recursion (a canvas that's in an accordion that' in the canvs, f) So perhaps the call to updateDisplayList,etc

[flexcoders] DataGrid - Swap columns and rows

2007-12-05 Thread Vladimir Stankovic
Hello everybody! I have an XML file containing data of only one student sth like: ?xml version=1.0 encoding=utf-8? catalog student studentId=1 imeVlada Stankovic/ime datumRodjenja24.09.1984./datumRodjenja ispita5+/ispita fakultetFON/fakultet

[flexcoders] cfc can not get cairngorm VO data?

2007-12-05 Thread markflex2007
Hi I am using cairngorm with cfc now. I make some progress and the error like this: Services.mxml ?xml version=1.0 encoding=utf-8? cairngorm:ServiceLocator xmlns:mx=http://www.adobe.com/2006/mxml; xmlns:cairngorm=com.adobe.cairngorm.business.* !-- Bursary

[flexcoders] Re: Line Segment over Item Renderer in Line Series

2007-12-05 Thread adtrantravis
I forgot to mention that this in Flex 2 w/ Hot Fix 3, using the standard charts package. --- In flexcoders@yahoogroups.com, adtrantravis [EMAIL PROTECTED] wrote: I am using a simple Line Chart and Line Series. My array of data has yField values that are off the chart. Data points after the

[flexcoders] Line Segment over Item Renderer in Line Series

2007-12-05 Thread adtrantravis
I am using a simple Line Chart and Line Series. My array of data has yField values that are off the chart. Data points after the off the chart point are rendered incorrectly. The line segment is drawn over the item renderer. Anyone have a similar experience?

RE: [flexcoders] DataGrid tab order (again)

2007-12-05 Thread Alex Harui
If you're cheating on how tabbing works, you'll have this problem in IE. In IE, if you aren't in the tab order from the FocusManager's perspective you could end up having focus leave to the browser. There might be a bug related to that as well where we don't handle all cases. I won't have time

[flexcoders] chart computed max value

2007-12-05 Thread y.mauron
Hello, Is it possible to get the computed max value for a chart ??? Thank you in advance...

[flexcoders] Re: Probleme Upload File de flex vers PHP

2007-12-05 Thread johantrax
--- In flexcoders@yahoogroups.com, exuperok [EMAIL PROTECTED] wrote: Hello How should understand this trace when uploading file to php application: what does eventPase = 2 means? same thing for bubbles=false? bubbles = false means the event doesn't 'bubble' eventPhase = 2 means the event

[flexcoders] Re: xml and dataprovider for simple chart

2007-12-05 Thread y.mauron
It doesn't work :-( If I use a xml like that : rootentryOney813/yx270/x/OnePeak/entryentryOney890/yx280/x/OnePeak/entry/root and the following provider : {xmlData.entry.One} I cann display all the points, but as if it was one series and note two. Alternativly, I can specify entry[0] or 1 to

[flexcoders] Re: cfc do not understand cairngorm VO?

2007-12-05 Thread markflex2007
I create the PersonVO with the cfc wizard,the error still same. PersonVO.cfc cfcomponent displayname=PersonVO hint=Login VO For CairngormTest output=false cfproperty name=firstname type=string default= cfproperty name=lastname type=string default= cfproperty name=sid

[flexcoders] Menubar Render

2007-12-05 Thread Marvin Froeder
Hi folks, I had create a MenuBar (copy from LiveDoc's exemple) and set a custom menuBarItemRenderer. But when I tried to run I got a runtime error, every time I put the cursor over the render. Error: TypeError: Error #1034: Type Coercion failed: cannot convert mx.core::[EMAIL PROTECTED] to

[flexcoders] Re: Design support for template components (my wish)

2007-12-05 Thread Gus
Any updates on this?? it's my wish too... hehehe --- In flexcoders@yahoogroups.com, borekbe [EMAIL PROTECTED] wrote: Hi, I've just downloaded Flex Builder 3 beta and was curious if template components are supported in the design view this time - unfortunately, they still aren't. How hard

RE: [flexcoders] Tree - Open all child layers when open branch

2007-12-05 Thread Jim Hayes
The method you need is in the help file under Tree, as it happens. I guess a mix of the change event and selectedItem (off the top of my head and without checking) would probably do what you want. hth Jim. expandChildrenOf () method public function expandChildrenOf(item:Object,

Re: [flexcoders] Sequence Diagram for Cairngorm

2007-12-05 Thread Bjorn Schultheiss
cairngormdocs.org On 06/12/2007, at 5:30 AM, lawriegallardo wrote: Hi, Just wondering if anyone has a sequence diagram for Cairngorm? If so, I'd be ever so grateful if you could post it... Thanks, Lawrie

RE: [flexcoders] Re: getChildByName returning NULL SOLVED - kinda

2007-12-05 Thread Gordon Smith
There are several things that may be confusing you... 1. A child descriptor is not an actual child. The descriptor simply stores the information specified for the MXML tag; it is used to create an actual child DisplayObject. So a component can have a descriptor for a child without yet having

Re: [flexcoders] How to access .net dll's in FLEX 3.0

2007-12-05 Thread Douglas Knudsen
yeah, news to me too. Must have had some secret edition of Flex 1.5 for that. Praveen, maybe your Flex 1.5 app was actually calling a Java POJO that did some magic to use a .NET dll? Jumping the globe to travel to the neighbourhood coffee shopanyhoo, with Flex 2 and 3, you could possibly

[flexcoders] Re: Problem with setting initial sort of AdvancedDataGrid via data provider.

2007-12-05 Thread Ian M. Jones
--- In flexcoders@yahoogroups.com, Ian M. Jones [EMAIL PROTECTED] wrote: Hi there, hope someone has come across my problem and can point out my mistake... I have an ArrayCollection acting as the data provider for an AdvancedDataGrid, and am saving out the data provider's sort fields

Re: [flexcoders] Re: AdvancedDataGrid::toolTip formatting

2007-12-05 Thread Scott Melby
I just wrote this post http://blog.fastlanesw.com/?p=31 on my blog this morning that shows how to do HTML tooltips in Flex. It is very simple. hth Scott tungchau81 wrote: The full code is : private function myDataTip(data:Object):String { return BTung Chau/B; } controls:AdvancedDataGrid

Re: SPAM-LOW: [flexcoders] Encryption in Flex and Decryption in ColdFusion.

2007-12-05 Thread Jeffry Houser
Which library? I've been able to successfully pass data back and forth between Flex and Crypto using AES. There are settings you need to specify (128 bit something?), but w/o pulling the code, I don't remember them. ivansebastiansurya wrote: Hi there, Has anyone attempted to

[flexcoders] Re: Series Effects do not dispatch start events (bug?)

2007-12-05 Thread vic8427
I'm having trouble with SeriesInterpolate and the effectEnd event. This seems to continually dispatch so my callback function is continually being called. I know that this effect should only dispatch an event for each target. Has anyone else ran into this before? --- In

Re: SPAM-LOW: [flexcoders] Encryption in Flex and Decryption in ColdFusion.

2007-12-05 Thread ivansebastiansurya
Crypto? You mean ColdFusion? Seems like I can't decode the encoded string. Thanks. I use the library at http://crypto.hurlant.com/ Thanks, Ivan. --- In flexcoders@yahoogroups.com, Jeffry Houser [EMAIL PROTECTED] wrote: Which library? I've been able to successfully pass data back and

Re: [flexcoders] Mutliple alert copies

2007-12-05 Thread Dave Glasser
Did you put some tracing code in to prove that that code isn't actually executed twice the second time around? Event-driven software can be a tricky business. Maybe you neglected to remove an old event listener from some object that is dispatching the event that ultimately executes that

RE: [flexcoders] Datagrid ItemEditor - multiple data edits?

2007-12-05 Thread Tracy Spratt
Sure, this should not be difficult. Have your renderer do its own updating of the dataProvider item, and don't attempt to use the renderIsEditor or other built in item editor functionality. The renderer gets a reference to the entire item, so it can manipulate that data however you want. I

RE: [flexcoders] howto save image from flex app to local disk - any tips / ideas?

2007-12-05 Thread Jim Hayes
absolutely spot on, navigateToURL( request,_self) did exactly what I wanted (displaying the download prompt rather than the image itself). The only bad thing being that I didn't think of it before asking the question :) Thanks for the tip Ben, very much appreciated even if I do feel like a

Re: [flexcoders] Mutliple alert copies

2007-12-05 Thread Richard Rodseth
You're right, it was getting shown twice. Thanks. I was re-using the same HTTPService instance, and I'm not sure why I got two completion events. I'm now instantiating a new instance of the service. On Dec 5, 2007 1:08 PM, Dave Glasser [EMAIL PROTECTED] wrote: Did you put some tracing code in

[flexcoders] getVisibleBounds()? clipped component with scrollbars in accordion

2007-12-05 Thread Brian
I've got a problem where I'm trying to detect a MouseOut on a component so that I can revert it back to its original state. The scenario is I've got an accordion component with VBoxes as the children. The VBoxes contain several custom components each, enough that I've got scroll bars on the

[flexcoders] How to restore automatic height calculation (after an explicit value was set)

2007-12-05 Thread Cosma
Hi flexcoders out there, I'm facing a simple problem. In Flex, containers such as Panel usually layout themself looking at their children(automatically choosing an appropriate width and height). Is there any way to restore this behaviour after setting an explicit height in ActionScript? Example:

Re: [flexcoders] How to restore automatic height calculation (after an explicit value was set)

2007-12-05 Thread Daniel Freiman
To set the height of a component without setting the explicitHeight use setActualSize() or to reset the explicitHeight, set it equal to NaN. - Dan Freiman On Dec 5, 2007 11:38 AM, Cosma [EMAIL PROTECTED] wrote: Hi flexcoders out there, I'm facing a simple problem. In Flex, containers such

[flexcoders] cairngorm value object type and cfc type do not match,why?

2007-12-05 Thread markflex2007
I have built a cfc vo class and flex vo class PersonVO.as package com.abc.CESF.Bursary.vo { import com.adobe.cairngorm.vo.IValueObject; [RemoteClass(alias=Bursary.cfcs.PersonVO)] public class PersonVO implements IValueObject { public var firstname:String = ; public var lastname:String = ;

[flexcoders] Probleme Upload File de flex vers PHP

2007-12-05 Thread exuperok
Hello How should understand this trace when uploading file to php application: what does eventPase = 2 means? same thing for bubbles=false? [CODE] progressHandler: name=4-nov-2007.gpx bytesLoaded=32768 bytesTotal=169869 progressHandler: name=4-nov-2007.gpx bytesLoaded=65536 bytesTotal=169869

[flexcoders] Call to Web Service in WebSphere

2007-12-05 Thread da FoX
I'm playing around with Flex and want to call a custom made Web Service in WebSphere. When I run my application, It seems that a lot of requests are done to the Web Service repeatably requesting the same XSD's (complex types). It looks like the application is in an infinite loop, constantly

Re: [flexcoders] cairngorm value object type and cfc type do not match,why?

2007-12-05 Thread Jeffry Houser
Make sure you add properties to the CFC VO using the cfproperty tag. Properties case and order must match what is in the AS3 VO. Additionally, use the full path with dot notation as the argument type. Basically, Flex+CF is not smart enough to know that PersonVO is equal to

[flexcoders] Re: Which architecture to follow

2007-12-05 Thread tomeuchre
I started with Cairngorm, but I switched to pureMVC. I have a separate tool that we use to take simple configuration statements and generate Flex apps, and it just made things a tad easier for us. PureMVC doesn't neccessarily speak of delegates, but I still use them instead of just using the

Re: [flexcoders] Binding to a ViewStack Child Container Property

2007-12-05 Thread Tom Chiverton
On Tuesday 04 Dec 2007, tedgies wrote: I'm trying to bind a label's text to the selected VBox's toolTip text. I'm trying: mx:Label id=titleText text={vs_articles.selectedChild.toolTip} And ? -- Tom Chiverton Helping to preemptively supply vertical users on: http://thefalken.livejournal.com

[flexcoders] Missing classes when using RSL cache

2007-12-05 Thread Tom Chiverton
Why would I get startup RTEs along the lines of 'VerifyError: Error #1014: Class mx.effects.TweenEffect could not be found when setting datavis to be a RSL in Flex 3 beta 2 ? -- Tom Chiverton Helping to vitalistically cultivate cross-media networks on: http://thefalken.livejournal.com

[flexcoders] Re: Local storage of password

2007-12-05 Thread rmarples
Well the thing about this application is, I don't own the server. I'm using a 3rd party Internet web service (salesforce.com in this case). So I can't change the way the server authenticates people - actually it does so in a very rational way anyway. The requirement was simply to save the

[flexcoders] Re: How to disble double click in ComboBo?

2007-12-05 Thread flexawesome
any suggestions? thanks --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hi, I am working on ComboBox components and like to disable double click event once click the little scrub( arrow icons ) The code doesn't work for me. Is there any way to reach that?

Re: [flexcoders] Populate one Datagrid from another

2007-12-05 Thread Tom Chiverton
On Tuesday 04 Dec 2007, fusioninteractive wrote: a plant on my site. I want the other grid to show the average ratings of the plants people from a specific state have voted on. I am using ColdFusion 8 and Remote Objects. So the question is how do I bind the second datagrid to the state

[flexcoders] Styling extended Flex Components... simple misunderstanding?

2007-12-05 Thread bithroop
I think I'm not understanding something... My app has a bunch of .mxml classes that extend TitleWindow (singletons in a UI). I want them all to be styled the same EXCEPT for I want each one to have a custom background color. Here's how I'm attempting this... -begin external css

[flexcoders] howto save image from flex app to local disk - any tips / ideas?

2007-12-05 Thread Jim Hayes
Greetings flexcoders, I have a need for my flex application to have a saveimage button that enables the user to save an image of part of the application. I've been able to get this to work without too much trouble, but it still needs a bit of polish so I thought I'd ask if anyone has any

Re: [flexcoders] Re: Local storage of password

2007-12-05 Thread Jeffry Houser
I think that's a simple (yet elegant) solution. I wish I thought of it. Paul Andrews wrote: - Original Message - From: Jeffry Houser [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, December 05, 2007 2:22 PM Subject: Re: [flexcoders] Re: Local storage of

[flexcoders] Re: AdvancedDataGrid::toolTip formatting

2007-12-05 Thread tungchau81
The full code is : private function myDataTip(data:Object):String { return BTung Chau/B; } controls:AdvancedDataGrid id=reportTable groupIconFunction=reportArchiveGroupingIcon defaultLeafIcon={Icons.ReportArchiveIcon} dataTipFunction=myDataTip initialize=gc.refresh(); width=100%

[flexcoders] cfc do not understand cairngorm VO?

2007-12-05 Thread Mark Shen
I have built a cfc vo class and flex vo class PersonVO.as package com.abc.CESF.Bursary.vo { import com.adobe.cairngorm.vo.IValueObject; [RemoteClass(alias=Bursary.cfcs.PersonVO)] public class PersonVO implements IValueObject { public var firstname:String = ; public var lastname:String = ;

[flexcoders] Re: Strange behaviour with singleton's and modules?

2007-12-05 Thread bjorn -
gah, of course, I meant to say singletons and modules in the subject! Sorry about that :-| On 05/12/2007, bjorn - [EMAIL PROTECTED] wrote: I've made a simple testcase with a singleton and three Flex projects: 1. MainApp 2. ModuleOne 3. ModuleTwo MainApp loads ModuleOne which loads

[flexcoders] Re: Adding custom events to the pre-loading sequence

2007-12-05 Thread rudmonster
Hello, I posted an answer this morning but I dont see it so let me try again (first time posting :) All you need to do is extend mx.preloader.Download progressbar then override the FlexEvent.INIT_COMPLETE you can then control when your preloader will end ...see here (sorry ...I am

Re: [flexcoders] Which architecture to follow

2007-12-05 Thread Richard Rodseth
I still need to find the time to look at PureMVC, but I'm quite pleased with the architecture described here: http://www.joeberkovitz.com/blog/2007/10/18/max-2007-in-barcelona-talk-materials-online/ On Dec 4, 2007 9:34 PM, Anzer [EMAIL PROTECTED] wrote: Cairngorm or PureMVC? I have read

  1   2   >