[flexcoders] Masks, Filters, Soft Wipes

2007-05-03 Thread Lachlan Cotter
Hi, Can anybody help shed some light on an odd problem with filters? I want to create soft edge wipe effects. I've got a pretty good proof of concept that works like so: target.cachePolicy = 'on' mask.filters = [new BlurFilter(20,20)] Sure enough, that creates a nice feather

RE: [flexcoders] Re: Grid columns of fixed and equal width

2007-05-03 Thread cooper_martin
Again, my sincere apologies for disappearing for an extended period. This looks like a handy tip, and I will keep it in my back pocket for when I'm working with datagrids. Thanks for that. The problem I've been having, though, is with Grid rather than DataGrid. A bit of a different beast. ;-) -

[flexcoders] Re: Formattin dates in DataGrid with itemRenderer

2007-05-03 Thread kkinaru
Thankyou very much... I managed to solve it. At the end, I used labelFunction, cleaner than all other ways I tried. Thanks a lot.

[flexcoders] Re: Is this a bug? 1195 - Attempted access of inaccessible method name ...

2007-05-03 Thread mattjshannon
RTFM tst.name = "XXX" Sorry for the email spam. --- In flexcoders@yahoogroups.com, "mattjshannon" <[EMAIL PROTECTED]> wrote: > > Hi, I'm new to flex and actionscript - having a java background. > > I keep getting a 1195 compiler error when trying to invoke what i > believe is a public non-st

[flexcoders] form not filling parent Canvas

2007-05-03 Thread arieljake
I have this code: var categoryCanvas:Canvas = new Canvas(); categoryCanvas.label = [EMAIL PROTECTED]; categoryCanvas.percentHeight = 100; categoryCanvas.percentWidth = 100; var categoryForm:Form = new Form(); categoryForm.percentHeight = 100; var vbox:VBox = new V

[flexcoders] Re: Html Text does NOT print in same format as rendered on scre

2007-05-03 Thread scott_flex
Thanks for the example John! However, when you printed your output to PDF did you lose a lot of text quality? Printing the image/bitmap i lose a lot of quality on the printout, font is real jagged. The bitmap image created from my source panel is very clear on. I assume this is because the f

[flexcoders] Box Y adjustment fails when is child

2007-05-03 Thread beatportdavem
Hello All, I am running into a weird bug. I have a VBox with an id="w1", within "w1" there is a component. I am attempting to adjusting the y coord. It doesn't work. BUT, when I replace with component in the VBox, I _can_ adjust the y coord of "w1". The reason I am trying to use the comp

[flexcoders] Force a screen refresh

2007-05-03 Thread Lucas Pereira
Hi all. I was wondering if it is possible to force a screen refresh on Flex. My problem is that i am performing an action on a flex Application and sometimes a part of the screen doesn't show how it is supposed to. Then, if i resize the window (for instance) the screen shows exactly how it is sup

[flexcoders] test

2007-05-03 Thread Dimitrios Gianninas
test ignore Dimitrios Gianninas Developer Optimal Payments Inc. -- WARNING --- This electronic message and its attachments may contain confidential, proprietary or legally privileged information, which is solely for the use of the intended recipient. No privilege or other rights are wa

[flexcoders] serializing app creation that involves loading asynchronously

2007-05-03 Thread arieljake
I have two classes that get loaded with data from an http service that the rest of my controls and classes need for designing themselves. I want to have two functions in my Application: 1) initApp - called by creationComplete, tells the two classes to load there data 2) loadApp - called when all

Re: [flexcoders] Sending complex objects through AMF3 to a server

2007-05-03 Thread Austin Kottke
I'm using the red5 os java server. Best, Austin Kevin wrote: Are you using PHP or Java? I have been able to do it fine using AMFPHP. In fact with PHP 5 you can use type hinting to force method parameters to be a specific VO. I would have to look at the code to see why it is not working, bu

Re: [flexcoders] Sending complex objects through AMF3 to a server

2007-05-03 Thread Kevin
Are you using PHP or Java? I have been able to do it fine using AMFPHP. In fact with PHP 5 you can use type hinting to force method parameters to be a specific VO. I would have to look at the code to see why it is not working, but it should work fine by just sending the VO through as a pa

Re: [flexcoders] Sending complex objects through AMF3 to a server

2007-05-03 Thread Austin Kottke
Thanks Kevin, I've been unable to send a remoteclass TO a server, I've been able to receive remoteclasses and the binding works fine, sending is a different story. I'm not using FDS however, so it possibly might be a drawback in the server. Best, Austin Kevin wrote: yes. HOW depe

RE: [flexcoders] Removing Popups

2007-05-03 Thread Alex Harui
GC on occurs on alloc if it needs to, so it won't always recover memory right away. See the GC preso on my blog for more info. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Thursday, May 03, 2007 3:34 PM To: flexcode

[flexcoders] modules with video

2007-05-03 Thread John Robinson
I have an app that has a few external modules that it switches my "main" view between. One of these modules has an externally loaded video (using VideoDisplay, or whatever it's called). When I load this module up everything works fine, the video plays, etc. When I unload it and load a differ

Re: [flexcoders] Re: Function to check if component supports a style?

2007-05-03 Thread Manish Jethani
On 5/3/07, zzwi89 <[EMAIL PROTECTED]> wrote: > Thanks, but I don't think it actually outputs style info. Unless one > of the following IS style information and I'm just overlooking it: [snip] Did you compile with -keep-as3-metadata as Gordon said? > Are there any negative effects to setting a non

Re: [flexcoders] Removing Popups

2007-05-03 Thread Manish Jethani
On 5/4/07, Carlos Rovira <[EMAIL PROTECTED]> wrote: > Could you post some example, I'm finding this issue too, and want to know > more about this since maybe we are using it in a bad way. > when I remove the popup with PopupManager I suppose I'm removing it form > memory, or I'm only removing from

[flexcoders] anyone interested in some skinning?

2007-05-03 Thread blc187
does anyone have any experience skinning a header renderer? I'm implementing a custom header renderer but having trouble changing the background of it. I found you can set the 2 gradient colors from the data grid but can it be set to skins? at the moment it isn't responding to upSkin, overSkin,

[flexcoders] LinearAxis: override the default (ascending) order of numerical data?

2007-05-03 Thread Peter Demling
I have a LinearAxis that's used in a LineChart to display a LineSeries, where the yField is a numeric value from 0->100. By default, it displays 0 at the x/y origin, and ascends up the y-axis to a max of 100. What I need to do is reverse that, so that the y-axis starts at 100 and ascends (visuall

Re: [flexcoders] Sending complex objects through AMF3 to a server

2007-05-03 Thread Manish Jethani
On 5/4/07, Austin Kottke <[EMAIL PROTECTED]> wrote: > Hi - is it possible to send an array of VOs over an AMF3 gateway to a > server and have > the server correctly parse this? > > I've noticed that only strings and ints are supported in the tests I'm > doing. Is this true? Yup. You can send stuff

Re: [flexcoders] ambiguous question about resizable components

2007-05-03 Thread John Robinson
mx:HDividedBox? john On May 3, 2007, at 3:48 PM, flashcrow2000 wrote: Hello, I want to implement an application which will require 2 columns, one with controls and one with some content. These columns will be separated by a dragable bar; the effect will be the one on Windows Explorer when yo

Re: [flexcoders] accordion selected / normal text style

2007-05-03 Thread Manish Jethani
On 5/3/07, kasey.mccurdy <[EMAIL PROTECTED]> wrote: > does anyone out there know how to change the text style for a selected > accordion panel vs. a non selected one? I think there are some "selected" styles, but you can also do it with a custom header renderer. See this example below. http://w

Re: [flexcoders] Re: Html Text does NOT print in same format as rendered on scre

2007-05-03 Thread John Robinson
Scott - I thought the same thing (use Bitmap/BitmapData). Quick example: http://www.adobe.com/2006/mxml"; creationComplete="init()" > autoLayout="true" click="onClick()"> height="{my_panel.height}"/> I did

Re: [flexcoders] Why aren't we allowed to process the event queue? (eg: like DoEvents)

2007-05-03 Thread Ralf Bokelberg
What about yield. This would make it easier to break things into smaller parts. Thread are the last thing i'd like to see in the Flash player. Ugly, complicated and errorprone. Like assembler. r. On 5/3/07, Samuel R. Neff <[EMAIL PROTECTED]> wrote: Troy's suggestion would not require making ev

[flexcoders] Re: Why aren't we allowed to process the event queue? (eg: like DoEvents)

2007-05-03 Thread Tim
> > Troy's suggestion would not require making everything thread-safe. I I'm not so sure about that. We don't know the internals of the flash player where I'm sure a lot of performance optimizations have occured - perhaps with garbage collection, for example. Throw threading into the mix and

Re: [flexcoders] Howto dynamicly bind XML element to a TextInput component using BindingUtils?

2007-05-03 Thread Manish Jethani
On 4/27/07, xyjaws <[EMAIL PROTECTED]> wrote: > The question is: Howto dynamicly bind XML element to a TextInput > component using BindingUtils? Not sure you can use BindingUtils for XML. You can just call setNotification() on the XML object and your callback will be called every time that node is

Re: [flexcoders] Sending complex objects through AMF3 to a server

2007-05-03 Thread Kevin
yes. HOW depends a little on where you are going with it (Java or PHP or ??) but you use the [RemoteClass (alias=''some.server.class")] to map your AS VO to your server VO. With PHP, you will need to use the $_explicitType variable in your PHP classes. - Kevin On May 3, 2007, at 4:40 P

[flexcoders] Sending complex objects through AMF3 to a server

2007-05-03 Thread Austin Kottke
Hi - is it possible to send an array of VOs over an AMF3 gateway to a server and have the server correctly parse this? I've noticed that only strings and ints are supported in the tests I'm doing. Is this true? Best, Austin

[flexcoders] calling web service with mutiple parameters

2007-05-03 Thread Mike Vargo
Hello all... I want to call the method "getAccountPerformance" in the following wsdl. https://qaapi.business.com/v3_0_1/Account?wsdl For the life of me, I cant figure out how to pass the parameters in. The soap envelope that I want to send looks like this: http://schemas.xmlsoap.org/soap/envelo

RE: [flexcoders] Grid columns of fixed and equal width

2007-05-03 Thread cooper_martin
My sincere apologies for disappearing for an extended period. Too many projects going on... I have not used hard numbers, because I need the whole thing to resize properly and I don't want to have to get into "knowing" about the grid cell spacings. Hence I've been using percentage widths. I've

[flexcoders] Re: How to stop and start a wipe effect at a specific place?

2007-05-03 Thread camlinaeizerous
--- In flexcoders@yahoogroups.com, Ian Skinner <[EMAIL PROTECTED]> wrote: > > I assume I use the xFrom, yFrom, xTo, and yTo properties. But I'm not > sure I understand how to use them to stop a wipe left effect at 20% the > width of the container and start the subsequent wipe right effect at the

[flexcoders] ambiguous question about resizable components

2007-05-03 Thread flashcrow2000
Hello, I want to implement an application which will require 2 columns, one with controls and one with some content. These columns will be separated by a dragable bar; the effect will be the one on Windows Explorer when you enlarge the "folders" column's width.. My question: Is there a component

[flexcoders] Re: Uploading File/ Post Request

2007-05-03 Thread iko_knyphausen
I am afraid you may have to parse the data for its fields before you can use them. Commercial upload components will do this for you. If you want to use plain ASP, I recommend to take a look at the Upload script by Lewis Moten. --- In flexcoders@yahoogroups.com, "jd_lingwai" <[EMAIL PROTECTED]>

RE: [flexcoders] Re: Help! Object integrity across DataService.commit()

2007-05-03 Thread Peter Farland
Just a minor note Simon, for the logging categories, I'd suggest using either "Endpoint.*" OR "Message.*" rather than both at the same time as they give two different views for virtually the same information. The other categories are fine, but these two in particular are some what best treated as m

[flexcoders] Re: Help! Object integrity across DataService.commit()

2007-05-03 Thread simonjpalmer
thanks, that did it, I now have copious debug logs. Onto fence two... --- In flexcoders@yahoogroups.com, "Jeff Vroom" <[EMAIL PROTECTED]> wrote: > > That certainly looks right to me. That version of ConsoleTarget just > uses the System.out to print messages so you might look around to see if > t

RE: [flexcoders] Re: Help! Object integrity across DataService.commit()

2007-05-03 Thread Jeff Vroom
That certainly looks right to me. That version of ConsoleTarget just uses the System.out to print messages so you might look around to see if they are going into a separate log file. You might try changing ConsoleTarget to ServletLogTarget which uses the Servlet's log method. That sometimes works

RE: [flexcoders] Re: WSDLParser Error #1009 when calling a web service

2007-05-03 Thread Peter Farland
The issue might be that your WSDL operation only declares an input message but does not declare an output message. Flex only supports WebService operations that are request/response style.

Re: [flexcoders] Removing Popups

2007-05-03 Thread Carlos Rovira
Hi Alex, Could you post some example, I'm finding this issue too, and want to know more about this since maybe we are using it in a bad way. when I remove the popup with PopupManager I suppose I'm removing it form memory, or I'm only removing from displaylist My app rely heavily in Titlewindows

[flexcoders] Any good documentation on printing text.....

2007-05-03 Thread scott_flex
Any really good articles on the fine points of printing text? Or am i just running into bugs out of my control I'm trying to print Text boxes with html text but never get consistent results. My text box looks like this: The height of myText grows, depending on how much html text i assi

[flexcoders] Re: Images show in FireFox but NOT IE using @Embed

2007-05-03 Thread tjcox1969
Forget it! I just got a new laptop and had not changed my IE settings to "always check for new pages" so it was caching an older page. Thanks. --- In flexcoders@yahoogroups.com, "tjcox1969" <[EMAIL PROTECTED]> wrote: > > I am trying to understand why some of my images show up fine in > FireFox

[flexcoders] Images show in FireFox but NOT IE using @Embed

2007-05-03 Thread tjcox1969
I am trying to understand why some of my images show up fine in FireFox but when viewing the same SWF in IE, they don't show up (broken image). Here is a simple test that I did. ALL of the images show up fine in FireFox. "img2" does not show up in IE. Its the only one I used embed on. I compile

RE: [flexcoders] Why aren't we allowed to process the event queue? (eg: like DoEvents)

2007-05-03 Thread Samuel R. Neff
Troy's suggestion would not require making everything thread-safe. He proposed a mechanism where by you could create a worker object which can act only on it's internal data which means thread safety is preserved. The other nice thing about this solution is it could be done through new player cl

[flexcoders] Re: Help! Object integrity across DataService.commit()

2007-05-03 Thread simonjpalmer
Jeff, I have fallen at the first fence trying to switch on the debug logs. I presumed this happened in the logging section of services-config.xml, so this is what I did: [Flex] false false false

RE: [flexcoders] Is there a way to get a function name using actionscript command ?

2007-05-03 Thread Alex Harui
For debugging on debug players you can do: var e:Error = new Error(); trace (e.getStackTrace()); From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of helihobby Sent: Thursday, May 03, 2007 10:00 AM To: flexcoders@yahoogroups.com Subject: [fl

[flexcoders] Is there a way to get a function name using actionscript command ?

2007-05-03 Thread helihobby
Is there a command like: getFunctionName() or something like this that will print the function name this was called within ? Thank you for all the help, Sean - HeliHobby.com

[flexcoders] Error #2032: Stream Error with ASP.NET 1.1 Web Service (running on local machine

2007-05-03 Thread mark_j_ellul
Hi, I seem to have an random error with my Flex app which happens every so often. I am using Cairngorm 2.2 with a mx:WebService Object in my Services.mxml. The web service is written in ASP.NET 1.1. I am using Firefox as my browser. Below is the trace on the faultEvent Object. Upon doing some r

[flexcoders] Re: Uploading File/ Post Request

2007-05-03 Thread jd_lingwai
Thanks but I'm having trouble reading the value...I'm doing the following: For Each fileItem In UploadedFiles.Items Set streamFile = Server.CreateObject("ADODB.Stream") streamFile.Type = 1 streamFile.Open StreamRequest.Position=fileItem.Start StreamRequest.C

[flexcoders] Re: Function to check if component supports a style?

2007-05-03 Thread zzwi89
Thanks, but I don't think it actually outputs style info. Unless one of the following IS style information and I'm just overlooking it: The class of the object The attributes of the class The inheritance tree from the class to its base classes The interfaces implemented by the class The declar

RE: [flexcoders] Removing Popups

2007-05-03 Thread Alex Harui
They might have to listen for the "remove" event and removeEventListeners From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Giles Roadnight Sent: Thursday, May 03, 2007 8:20 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Removing Pop

[flexcoders] dragDrop COPY bug (with fix)

2007-05-03 Thread Jonathan Doklovic
hi, If you read the quick start on drag/drop: http://www.adobe.com/devnet/flex/quickstart/adding_drag_and_drop/ it states: "Copying items by using the drag-and-drop operation The following example lets you copy items from one List control to another by dragging them. You can copy the same item m

RE: [flexcoders] Using Application Domain

2007-05-03 Thread Alex Harui
Should work if the swfs are all in the same domain on the server. How are you accessing the static classes? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of residentevil_64 Sent: Thursday, May 03, 2007 8:18 AM To: flexcoders@yahoogroups.com

Re: [flexcoders] Looking for Custom panel widget as used on adobe.com/In The Flex community

2007-05-03 Thread Pat Buchanan
Found it I believe. Go here: http://coenraets.org/blog/2007/05/new-mdi-style-trader-desktop-with-flex-and-apollo/#more-31 Download traderdesktop.zip and look at MDIPanel.as. Thanks! -Pat Buchanan -DataNotion On 5/3/07, Pat Buchanan <[EMAIL PROTECTED]> wrote: Yes I've seen it as well. But

[flexcoders] Using Application Domain

2007-05-03 Thread residentevil_64
Hi all, I am currently creating a Flex application that has a shell application and it will load in several other SWF files at runtime. I want the SWF files to access the static classes in the main shell application. I use a loader (flash.display.loader) with the loadercontext to the current appl

Re: [flexcoders] Looking for Custom panel widget as used on adobe.com/In The Flex community

2007-05-03 Thread Pat Buchanan
Yes I've seen it as well. But it wasn't called a panel - I believe it was a called a custom "Pod" component or something??? efgeho: Google for something like: flex pod maximize resize You might get a hit there. At one point there was a demo out there that displayed panels (pods) inside a conta

[flexcoders] Re: Why aren't we allowed to process the event queue? (eg: like DoEvents)

2007-05-03 Thread Tim
> Currently all the code assumes there's > > only one thread of execution. > > There are good reasons for both cases, however, if Adobe insists on continuing down their threading model, they need to find ways to make it more friendly. For example, syntactical sugar for timers might be a good idea

[flexcoders] Re: WSDLParser Error #1009 when calling a web service

2007-05-03 Thread rd_grimes
Are your other web services also called via document-style wsdl's? I ask because I had trouble calling document-style wsdl's in the manner you're indicating. I found that rpc-style could be called as you indicate webserviceid.operation.send(param1, param2, paramN) syntax But, document-style ha

[flexcoders] How to stop and start a wipe effect at a specific place?

2007-05-03 Thread Ian Skinner
I assume I use the xFrom, yFrom, xTo, and yTo properties. But I'm not sure I understand how to use them to stop a wipe left effect at 20% the width of the container and start the subsequent wipe right effect at the same 20% position.

[flexcoders] Re: WSDLParser Error #1009 when calling a web service

2007-05-03 Thread Cosma
Hi, thank you for the suggestions, but I have many other web services - published on another server and generated in another way - that are correctly called using the webserviceid.operation.send(param1, param2, ..., paramN) syntax. Anyway, I tried the alternative calling method (the Object 'bag'

Re: [flexcoders] Why aren't we allowed to process the event queue? (eg: like DoEvents)

2007-05-03 Thread Paul J DeCoursey
Manish Jethani wrote: > On 5/3/07, Troy Gilbert <[EMAIL PROTECTED]> wrote: > > >> I think the best solution for Flash would be to introduce a first-class >> thread object. That way developers could spawn long-lasting tasks to a >> separate thread. >> > > If threading is introduced in the

[flexcoders] REMOTE_USER

2007-05-03 Thread Brian Holmes
Is there any way to get info about the remote user from flex? Specifically I'm looking for the cgi.REMOTE_USER as it comes through in Cold Fusion. Thanks, Brian. *** The information in this e-mail is confidential and intended solely for the individual or entity to whom it is addressed. If

[flexcoders] Re: WSDLParser Error #1009 when calling a web service

2007-05-03 Thread rd_grimes
The one thing that I see different from the way I execute document- style WSDL operations is this. Here is the way I do it: private var _loginWS:WebService = new mx.rpc.soap.WebService(); // Login user public function loginUser(email:String, password:String):void { _email= email;

[flexcoders] Removing Popups

2007-05-03 Thread Giles Roadnight
Hi All I have a popup that is added to the stage using PopupManager.addPopup and is removed with PopupManager.RemovePopup. This all works fine but once this has been done a few times we have 2 or 3 or 6 or however many of these popups have been created still in memory responding to events (throug

[flexcoders] Re: WSDLParser Error #1009 when calling a web service

2007-05-03 Thread Cosma
Thank you Pete, this is the full WSDL. I post it here because it breaks the maximum length of the adobe bug report form. CarRentalProcessExport1_CarRentalProcessHttp_Service.wsdl http://CarRental/CarRentalProcessInterface/Binding"; xmlns="http://schemas.xmlsoap.org/wsdl/"; xmlns:Port_0="http://C

[flexcoders] Re: 2nd transition not working

2007-05-03 Thread bill.fogarty17
Thanks for your feedback, I tried my best to debug the code, but was unable to find out anything like that. I'm running the application in Debug mode, have set breakpoints and have my variables window open. But in the variables panel area, i get: "This = layoutPanel", which is a big list of var

Re: [flexcoders] Why aren't we allowed to process the event queue? (eg: like DoEvents)

2007-05-03 Thread Manish Jethani
On 5/3/07, Troy Gilbert <[EMAIL PROTECTED]> wrote: > I think the best solution for Flash would be to introduce a first-class > thread object. That way developers could spawn long-lasting tasks to a > separate thread. If threading is introduced in the player, much of the Flex framework might hav

Re: [flexcoders] Using SVN (tortoise) with Flex Builder

2007-05-03 Thread Troy Gilbert
I just mean that Subclipse will not automatically check-in your bin folder... I'm not sure if it does anything else. Obviously you can do that from the command-line as well (manually). I didn't mean to suggest it was magic or anything... ;-) Troy. On 5/3/07, Tom Chiverton <[EMAIL PROTECTED]> wr

Re: [flexcoders] Why aren't we allowed to process the event queue? (eg: like DoEvents)

2007-05-03 Thread Troy Gilbert
I think the best solution for Flash would be to introduce a first-class thread object. That way developers could spawn long-lasting tasks to a separate thread. Issues like Alex mentioned could be avoided by putting restrictions on what threads could and could not do... for example, you don't have

Re: [flexcoders] Detect text wrap?

2007-05-03 Thread Daniel Freiman
It might be easier to override the TextInput or TextArea and set the autoSize of the UITextField to true, and then having the TextArea determine the height of itself by the height of the UITextField. This UITextField should also throw a resize event so you'll only have to detect when the size cha

[flexcoders] Re: Menu bar root menu click

2007-05-03 Thread Devin
Well if you do it on the click then it wont show a menu if you have a brach of the item your clicking. I dont want that i still want the branch to show if its there.

[flexcoders] Re: CacheAsBitmap stops working.

2007-05-03 Thread helix206
I think ill go with scrollRect, ill try to hide everything except what the user sees on his monitor. That would be like 1600x1200 px of visible parts of the map. If anyone has some math for scroolRect done post it here. If not, after a fiew days of brainstorming ill post the whole map component

RE: [flexcoders] How to constrain child elements within a flexable parent?

2007-05-03 Thread Ian Skinner
"I'm curious you're still getting scrollbar and/or no truncation of the label." No, I do not have a small example, because the small example works as expected. It's when I expand the code into my actual application that the behavior changes slightly. I will say what I have is quite workable.

RE: [flexcoders] WSDLParser Error #1009 when calling a web service

2007-05-03 Thread Peter Farland
Flex SDK 2.0.1 Hotfix 2 will be out soon and will include a new WebService implementation that I hope will solve your issue as it better supports WSDL import and XML Schema import and include. To be sure, can you log a bug with a small test case? http://www.adobe.com/cfusion/mmform/index.cfm?n

Re: [flexcoders] Is this a bug? 1195 - Attempted access of inaccessible method name ...

2007-05-03 Thread Manish Jethani
On 5/3/07, mattjshannon <[EMAIL PROTECTED]> wrote: > I keep getting a 1195 compiler error when trying to invoke what i > believe is a public non-static method from a singleton class instance. >private function onCreationComplete() : void >{ > var tst : ATest = ATest.getIn

Re: [flexcoders] Is this a bug? 1195 - Attempted access of inaccessible method name ...

2007-05-03 Thread Paul J DeCoursey
Although you declare test as a function it is not used as one. When you use the get and set syntax the function is treated like a property. mattjshannon wrote: > Hi, I'm new to flex and actionscript - having a java background. > > I keep getting a 1195 compiler error when trying to invoke what i

Re: [flexcoders] 2nd transition not working

2007-05-03 Thread Manish Jethani
On 5/2/07, bill.fogarty17 <[EMAIL PROTECTED]> wrote: > I'm working on a transition, I'm using a Hdividedbox and when the > divider is pressed, I want the panel to close with a transition to > the left. When the divider is pressed a second time, I want the panel > to open again with a transition to

[flexcoders] Re: Is this a bug? 1195 - Attempted access of inaccessible method name ...

2007-05-03 Thread Cosma
--- In flexcoders@yahoogroups.com, "mattjshannon" <[EMAIL PROTECTED]> wrote: > > Hi, I'm new to flex and actionscript - having a java background. > > I keep getting a 1195 compiler error when trying to invoke what i > believe is a public non-static method from a singleton class instance. > > Her

[flexcoders] Resources and compiling library in command line/ant (compc)

2007-05-03 Thread Roman Protsiuk
Hi. I'm compiling flex2 library in command line/ant script. The problems I faced related with including resources into library. When I use -include-file directive like the following [excerpt from library-config.xml] ... some_styles.css src/resources/css/some_styles.css

[flexcoders] Is this a bug? 1195 - Attempted access of inaccessible method name ...

2007-05-03 Thread mattjshannon
Hi, I'm new to flex and actionscript - having a java background. I keep getting a 1195 compiler error when trying to invoke what i believe is a public non-static method from a singleton class instance. Here is a cut-down version of the code that demonstrates the problem, along with accompanying

Re: [flexcoders] Looking for Custom panel widget as used on adobe.com/In The Flex community

2007-05-03 Thread Jon Bradley
I'd love to know where that is as well. I can't be certain but I think I've seen it before somewhere ... - jon On May 3, 2007, at 8:46 AM, efgeho wrote: Hi, I'm looking for the component used at the bottom of: http://www.adobe.com/devnet/flex/?tab:home=1 Recent Activity 69 New Members Visi

[flexcoders] Re: Looking for Custom panel widget as used on adobe.com/In The Flex community

2007-05-03 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, "efgeho" <[EMAIL PROTECTED]> wrote: > Does anyone know the name/location of this widget/panel? This is not a standard component of the Flex framework. You would have to create a custom component that mimics that behaviour.

Re: [flexcoders] Re: Menu bar root menu click

2007-05-03 Thread Manish Jethani
On 5/2/07, Devin <[EMAIL PROTECTED]> wrote: > I figured it out... I extended the menubar >private function mouseDownHandler > (event:MouseEvent):void >{ ... >var click:MenuEvent = new > MenuEvent(MenuEvent.ITEM_CLICK); >

Re: [flexcoders] Detect text wrap?

2007-05-03 Thread Manish Jethani
On 5/3/07, qnotemedia <[EMAIL PROTECTED]> wrote: > I have a collection of vertically placed TextInput and TextArea boxes. > I'm using a "resize" function that manually resizes each of the boxes' > heights depending on the amount of text that is in each, so that > there's never any extra space, and

[flexcoders] WSDLParser Error #1009 when calling a web service

2007-05-03 Thread Cosma
Hi, I have a flex application that loads data using several web services. With only one of those services I'm experiencing the following error: TypeError: Error #1009: Impossibile accedere a una proprietà o a un metodo di un riferimento oggetto null. at mx.rpc.soap::WSDLParser/http://www.adobe.co

[flexcoders] Looking for Custom panel widget as used on adobe.com/In The Flex community

2007-05-03 Thread efgeho
Hi, I'm looking for the component used at the bottom of: http://www.adobe.com/devnet/flex/?tab:home=1 The one with the 3 'panels' and the preview pane. I haven't been able to find it on adobes ressourcelist. Does anyone know the name/location of this widget/panel? Regards,

[flexcoders] Cairngorm 2.2 incompatible with AS-based ServiceLocator?

2007-05-03 Thread ben.clinkinbeard
I think there may be a problem related to using the accessors collection returned by describeType() in AbstractServices.as. It doesn't seem to include items declared in AS. I am getting an error saying the web service can't be found or something similar when calling getWebService() on my AS-based

Re: [flexcoders] Drag a panel and add reflection to this panel

2007-05-03 Thread Roman Protsiuk
The thing is that when you use Panel (or derived class) instance as a pop up it is draggable by default. I took me an effort (not much though) to get rid of that "handy behavior". R. On 5/3/07, Osvaldo Aufiero <[EMAIL PROTECTED]> wrote: I think the reflection is just an image... I mean a few

[flexcoders] File Upload I/O error only on Mac

2007-05-03 Thread mthielman11
Hello, we are having a strange problem trying to upload files via flex in out app. Our code works fine from Windows FIrefox. But on the mac we are getting an error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2038: File I/O Error. URL: http://10.250.20.

[flexcoders] Send With CFMAIL

2007-05-03 Thread m4cl4rk
Say I have a text area component and I want to have a button action to cfmail the contents of the text area component. How would I do that?

[flexcoders] Detect text wrap?

2007-05-03 Thread qnotemedia
I have a collection of vertically placed TextInput and TextArea boxes. I'm using a "resize" function that manually resizes each of the boxes' heights depending on the amount of text that is in each, so that there's never any extra space, and all of the text is always displayed. Since these are

RE: [flexcoders] Using SVN (tortoise) with Flex Builder

2007-05-03 Thread Mark Ingram
So you're using SVN with Flex Builder? What do you do with the .actionScriptProperties / .flexProperties / .project files? Are they under source control? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Troy Gilbert Sent: 02 May 2007 1

[flexcoders] Re: Menu bar root menu click

2007-05-03 Thread Devin
I figured it out... I extended the menubar package components { import mx.controls.MenuBar; import flash.events.MouseEvent; import mx.events.MenuEvent; import mx.controls.menuClasses.IMenuBarItemRenderer;; public class menuBar extends mx.controls.MenuBar{ public

RE: [flexcoders] Re: weird accordion consequences

2007-05-03 Thread Tracy Spratt
In that case, you could listen for the creationComplete event of the child view, then do your setup. creationPolicy="all" is almost cheating. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of arieljake Sent: Wednesday, May 02, 2007

[flexcoders] Re: Getting started with CF and Flex

2007-05-03 Thread sean.drexler
--- In flexcoders@yahoogroups.com, "hoffsm" <[EMAIL PROTECTED]> wrote: > > I figured that out. I had forgotten to set up the data source. I now > get this error when I'm trying to run the program and I don't know how > to address it: > > [MessagingError message='Unknown destination 'cfcontact-de

Re: [flexcoders] DataGrid CheckBox itemRenderer select all

2007-05-03 Thread nhid
Yes, it does set the state based on passed in item data. I got it to work now by assigning each of the object into a new arraycollection and reassign it back to the original. Thanks Tracy. On 5/2/07, Tracy Spratt <[EMAIL PROTECTED]> wrote: Does your itemRenderer override the set data() fu

[flexcoders] 2nd transition not working

2007-05-03 Thread bill.fogarty17
Hi folks, I'm working on a transition, I'm using a Hdividedbox and when the divider is pressed, I want the panel to close with a transition to the left. When the divider is pressed a second time, I want the panel to open again with a transition to the right. When I click the divider, the panel

RE: [flexcoders] How to display Chart datatip at a specific data point ?

2007-05-03 Thread Claude Hussenet
Thank your Ely for pinpointing your excellent site. I expected to be able to extend the chartbase class so I can reuse the functionnalities provided by the Datatip,DataTipFunction, Thx-Claude Ely Greenfield <[EMAIL PROTECTED]> wrote: Hi Claude. We’v

RE: [flexcoders] Re: weird accordion consequences

2007-05-03 Thread Gordon Smith
Don't pull data from outside your component. Push outside data into your component, but store it in data vars, not directly in the children. Then when the children get created, have them pull data to display from those data vars. - Gordon From: flexcoders@yahoog

Re: [flexcoders] Drag a panel and add reflection to this panel

2007-05-03 Thread Osvaldo Aufiero
I think the reflection is just an image... I mean a few different images for the different panel "states". About the drag and drop, I think The work with the mousemove event, and a "DragProxy image" while it is being dragged. But anyway.. it is just an idea... you can find a lot of different ways

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-05-03 Thread Jon Bradley
On May 2, 2007, at 10:15 PM, Andrew Muller wrote: Ooh, does this mean that they forgot to announce IE for the Mac at MIX??? Thank goodness they won't... I'd be afraid of all the new CSS hacks I'd have to learn. Oh, and all those other hacked variations on standard languages... - jon

Re: [flexcoders] using XMLListCollection and it's filterFunction... how to filter children nodes

2007-05-03 Thread Manish Jethani
On 4/30/07, jensen.axel <[EMAIL PROTECTED]> wrote: > any one have any advice on this? > > --- In flexcoders@yahoogroups.com, "jensen.axel" <[EMAIL PROTECTED]> wrote: > > > > Problem: > > > > Trying to filter a mx:Tree to show only things that I type… when I > > filter, it filters the folders, and t

  1   2   >