[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

[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 -" <[E

[flexcoders] getChildByName returning NULL

2007-12-05 Thread riaengineer
o.getChildByName("foo") returns NULL. However, I *can* drill down to the childDescriptors of o in the debug window. I do see "foo" therein. The call to o.getChildByName() was working until o's parent became a AS3 variable. Prior to this, o's parent was an MXML tag & everything worked. Any th

[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: Vlada Stankovic 24.09.1984. 5+ FON . . . I would like to show data in the grid view but instead of columns I would li

[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

Re: [flexcoders] Re: Local storage of password

2007-12-05 Thread Paul Andrews
- Original Message - From: "Jeffry Houser" <[EMAIL PROTECTED]> To: 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 upon their next use

[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 function open(){ window.open("index.template.html",); } Use the following link

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 b

[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.

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 "Bursary.cfc

[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

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: > And ? -- Tom Chiverton Helping to preemptively supply vertical users on: http://thefalken.livejournal.com Please

[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: 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 c

[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 i

[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 prog

[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 doi

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, Decemb

[flexcoders] compc swc generation, no flash cs3?

2007-12-05 Thread aaron smith
Hey all, i'm doing some experimenting with swc files.. Does generating a swc with compc not work in in Flash CS3? How can I generate a SWC to that will Work in Flash CS3 without going through the library option? Or is that the only way?

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

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 s

[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: Adding custom events to the pre-loading sequence

2007-12-05 Thread hannes.stockner
I can't believe that there is no other possibility! Someone has an idea? Thanks --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > One possibility is to draw an identical popup over the app when the app > starts up. > > > > > >

[flexcoders] DataGrid tab order (again)

2007-12-05 Thread Stephen Roy J. Tang
Hi! Thanks to Alex's help I got the datagrid tab order functionality I needed mostly working (including avoiding the datagrid remembering the last edited cell). Just one minor issue now, which I *might* be able to just ignore, but I'm curious about it because it works correctly on Firefox, but n

[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: 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 p

[flexcoders] Re: AdvancedDataGrid::toolTip formatting

2007-12-05 Thread sreeni_r
Hi Tung, you can use the trick mentioned here http://www.flex-flex.net/blog/article.asp?id=18 to display html formatted strings as toolTips. -Sreenivas --- In flexcoders@yahoogroups.com, "tungchau81" <[EMAIL PROTECTED]> wrote: > > Hi, > I wrote my own custom dataTipFunction that return an HTM

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

2007-12-05 Thread Paul Andrews
- Original Message - From: "Paul Andrews" <[EMAIL PROTECTED]> To: 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 layout="absolute" might be a go

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

[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 flexcoders

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 http://www.adobe.com/d

[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 with

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

2007-12-05 Thread Mark Ingram
Hi Paul, thanks for that - what if you had another container inside TestContainer? With say a 20 pixel border around all sides. How could you add a button to the child container (not the parent container). Thanks, Mark From: flexcoders@yahoogroups.co

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, Dec

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 ha

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] 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 *Hopefully there will be a bug fix in the next release or at least a workaround w

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

2007-12-05 Thread Mark Ingram
Hi, if the container is made as a separate class, then I add it to my main application, I can't position buttons inside an internal container - it doesn't recognise my new control as an actual container (even though it is a series of canvases and vboxes). Fr

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 9:48 AM Subject: [flexcoders] How does Panel work in designer / layout? Hi, how does the Panel class work in the designer? i.e. when I drag a button on, the designer know

[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 dif

Re: [flexcoders] Re: Local storage of password

2007-12-05 Thread Tom Chiverton
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 wondering if you or anybody else has ideas on how to > handle this? Sorry to jump in mid-thread, but if you just need to check a password is the same as one en

Re: [flexcoders] Question about Astro text capabilities

2007-12-05 Thread Tom Chiverton
On Tuesday 04 Dec 2007, tudsy wrote: > http://www.templesanjose.org/JudaismInfo/Torah/Talmud_Spread-thumb.jpg The left hand page was certainly demo'd at MAX. -- Tom Chiverton Helping to conveniently revolutionize revolutionary patterns on: http://thefalken.livejournal.com **

<    1   2