[flexcoders] Re: FileReference upload to multiple request

2008-11-12 Thread superbokbok
yeah I've run into the same thing recently. In my case, I have an uploader application that allows the user to upload multiple files at once. It allows the user to keep adding items to be uploaded. Problem was it was failing silently with no Complete Event being triggered. Checked the server for th

[flexcoders] Framework developers: Bug in DescribeTypeCache

2008-11-12 Thread Josh McDonald
Hey guys, just a heads up to anybody using DescribeTypeCache. It can't tell the difference between an instance and a class, so whichever you lookup first wins: https://bugs.adobe.com/jira/browse/SDK-18073 Pull a fix from Smartypants-IOC if you like: http://is.gd/7iTx Or for the Rick-roll-wary:

[flexcoders] Show the module second time

2008-11-12 Thread ilikeflex
Hi Team How to show the module second time? I have a button. On click event i load the module. Now if i again click the same button again after say 2 min. I do not want to load the module again but i want to use the loaded module. I am storing the module into array with url as index(Associated

[flexcoders] Same module is loaded twice.

2008-11-12 Thread ilikeflex
Hi Team I have module which make call to the backend using the caringorm framework when menu option "One" is selected. This is fine because the module is loaded first time. On another menu option "second" another module(module 2) is loaded.Now if i again select the option "One" , the modules m

Re: [flexcoders] ModuleLoader does not load module when instance is created as ModuleLoader()

2008-11-12 Thread Rajan Jain
Hi Alex It worked . Thanks Rajan From: Alex Harui <[EMAIL PROTECTED]> To: "flexcoders@yahoogroups.com" Sent: Saturday, November 8, 2008 11:59:22 PM Subject: RE: [flexcoders] ModuleLoader does not load module when instance is created as ModuleLoader() I wou

[flexcoders] fla file format license

2008-11-12 Thread vuthecuong
Hi all Gurus, Because flash is related to Flex also, and I planned to use Flex in my project so I post here: I need advice from you about license of fla file format. = Background: we intend to develop standalone flash application with nearly same fearture as FLASH CS. Our

Re: [flexcoders] load fla file into web UI then edit image inside it

2008-11-12 Thread vuthecuong
rfkrocktk wrote: > > Well, first you need to implement some backend programming which will read > a > FLA file. You can try opening an FLA file with Notepad or maybe as a ZIP > Archive... I'm not sure which format the FLA type follows, if it even has > a > format. Once you 'get in' to the FLA f

RE: [flexcoders] DataGrid nullItemRenerer's do not display until 'non-null' ItemRenderers have been used

2008-11-12 Thread Alex Harui
It would be more likely that the dataProvider length is still 0 until you get your first page. If that's not the case, can you make a small example? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Hess Sent: Wednesday, November 12, 2008 2:45 PM To: flexcoders@yahoog

RE: [flexcoders] Modules don't display radio buttons/ check box etc unless referenced in main app

2008-11-12 Thread Alex Harui
See modules presentation on my blog and shared code modules examples From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Maciek Sakrejda Sent: Wednesday, November 12, 2008 4:00 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Modules don't display radio buttons/ che

[flexcoders] Per wedge customizing callout strokes on a PieSeries

2008-11-12 Thread Tim Connor
I can customize all of the callouts on a pie chart by setting the 'calloutStroke' property, but that falls a bit short of the design I have been handed. I was wondering if anyone had any ideas about ways to customize each of the callouts to match the color I have given that wedge slice (via

RE: [flexcoders] how to use activate

2008-11-12 Thread Tracy Spratt
Lots of ways to do conditional/dynamic UI. Easiest is ViewStack. Put your component in as a child view, say at position "0" (the first child) and then do: If (this.foo == 0) { myViewStack.selectedIndex = 0; } Or, If you have foo set up properly: mailto:[EMAIL PROTECTED] On Behalf Of co

[flexcoders] Re: re-throwing keystrokes to browser?

2008-11-12 Thread John Athens
I would be very interested in your ExternalInterface solution. Pleae, tell me more. Thanx... --- In flexcoders@yahoogroups.com, ibo <[EMAIL PROTECTED]> wrote: > > I want the browser to react on the CTRL-T (new tab). > But since the focus is on the flash app, it doesnt do that. > So I think I have

Re: [flexcoders] Modules don't display radio buttons/ check box etc unless referenced in main app

2008-11-12 Thread Maciek Sakrejda
Excerpt from the Adobe docs follows, but basically, that's how it works. If you want to avoid CheckBox references in the main app, you can load the modules into the main app's application domain, but make sure you trust the modules if you do that. --- Adobe docs on modules: By default

Re: [flexcoders] updating data in Actionscript

2008-11-12 Thread john fisher
I am using an httpservice to xml files on other servers. The display changes when the file changes, mostly. All you have to do is bind the dataprovider. Maybe your problem is different? Theres lots of documentation for what I am doing John > I have been trying to find an answer for this with

[flexcoders] how to use activate

2008-11-12 Thread coder3
Hi, I created a mxml component, in my application, i can use this component, the problem is, it will show when the application starts. but i only want to use it under certain condition. for example, in my main application if this.foo == 0, use this component, if this.foo != 0, don't use it. b

[flexcoders] Re: Tree item click

2008-11-12 Thread markgoldin_2000
wrote: > > Here is my tree definition: >labelField="@name" textAlign="left" > creationComplete="userNavigation (3, > customerTree)" > itemClick="itemClickEvt(event);" >

Re: [flexcoders] Cloning Adobe Premiere Express

2008-11-12 Thread Paul Andrews
Problem is that the OP wants to build this functionality into the application as part of the application - so any user can generate that video.. - Original Message - From: Nate Beck To: flexcoders@yahoogroups.com Sent: Wednesday, November 12, 2008 10:14 PM Subject: Re: [flexco

Re: [flexcoders] Gettign data from the list and putting into an array

2008-11-12 Thread anuj sharma
Thanks a lot tracy, That worked I appreciate ur help. Anuj On Wed, Nov 12, 2008 at 2:57 PM, Tracy Spratt <[EMAIL PROTECTED]> wrote: >Depending on the dataProvider, it might be as simple as: > > > > var aList2:array = dataProvider.source; //to put the data into an array > > and > > dataProvide

[flexcoders] DataGrid nullItemRenerer's do not display until 'non-null' ItemRenderers have been used

2008-11-12 Thread Greg Hess
Hi All, I have a DataGrid that is working with a dataProvider(ArrayCollection) with null items. The ArrayCollection represents the files in a directory and I am performing pagination. Before I populate the ArrayCollection with valid FileVO objects it is filled with null items for every file in the

RE: [flexcoders] Gettign data from the list and putting into an array

2008-11-12 Thread Tracy Spratt
Depending on the dataProvider, it might be as simple as: var aList2:array = dataProvider.source; //to put the data into an array and dataProvider.removeall(); to empty the list. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behal

[flexcoders] Modules don't display radio buttons/ check box etc unless referenced in main app

2008-11-12 Thread skuteboarding
Hi, I've got a problem using modules and user interface components. I have a module with a canvas on it and some buttons / radio buttons / check boxes. In the main app I download the module, then add the canvas to a container. The buttons don't show properly (they all look like regular buttons, bu

Re: [flexcoders] Re: How do they do that (Flex & video)

2008-11-12 Thread Nate Beck
Sorry, commenting on this email again. Have you looked at animoto? They're being heavily praised for what it sounds like you want to do. They have an immense engine which takes the users input and renders a movie. I believe they are running Ruby on the server to make it all happen. On Wed, Nov

RE: [flexcoders] updating data in Actionscript

2008-11-12 Thread Tracy Spratt
And you can always simply re-assign the dataProvider. That reliably causes a full ui redraw. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sefi Ninio Sent: Wednesday, November 12, 2008 4:54 PM To: flexcoders@yahoogroups.com Sub

[flexcoders] Gettign data from the list and putting into an array

2008-11-12 Thread anuj181
Hi Guys I am moving data from one list(A) to another(B) using drag-drop manager. The data is showing fine in both the lists, it is basically moving the selected entries form one list to another. Now my requirement is as soon as user clicks on a 'Add Button' , my code should put all the entries in l

[flexcoders] Re: Traverse through a TabNavigator

2008-11-12 Thread Amy
--- In flexcoders@yahoogroups.com, "timgerr" <[EMAIL PROTECTED]> wrote: > > Thanks for the comment, if creationPolicy is bad, what do other people > do and why is it bad? You may want to look at Q5 http://www.magnoliamultimedia.com/flex_examples/Amys_Flex_FAQ.pdf

Re: [flexcoders] Cloning Adobe Premiere Express

2008-11-12 Thread Nate Beck
I'm not familiar with Adobe Premiere Express. But are you trying to record your screen as a video? If so, there are many tools to do this, my personal favorite being SnagIt Check out the results here: http://www.google.com/search?q=screen+capture Cheers, Nate On Tue, Nov 11, 2008 at 1:54 PM, co

RE: [flexcoders]How do I check if a component is on the display list?

2008-11-12 Thread Gordon Smith
A DisplayObject is on the display list if its 'stage' property is non-null. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dorkie dork from dorktown Sent: Tuesday, November 11, 2008 2:44 PM To: flexcoders@yahoogroups.com Subject: [flexcod

Re: [flexcoders] updating data in Actionscript

2008-11-12 Thread Sefi Ninio
Try setting the AC source property to the result from the server ( you might have to use BindingUtils.bindSetter instead). Changing the source property causes the AC to dispatch a change event (I don't remember with which kind property) and that will cause the DG to refresh. HTH Sefi On Wed, Nov

[flexcoders] Re:Debug Termination UPDATE

2008-11-12 Thread nathanpdaniel
I recently began using Eclipse for dev (for VSS CVS stuff). There was an error (on project load) and I googled how to fix the error. It said edit the eclipse.ini file (in eclipse install directory) and add -clean at the top of the file. Run eclipse, then close it down, edit the eclipse.in

RE: [flexcoders] Re: Accessing properties of Embedded Flash SWFs from Flex 3

2008-11-12 Thread Tracy Spratt
In an event handler, does event.target not return a reference to the dispatching object? Then parentDocument or parentApplication to the root scope? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Todd Sent: Wednesday, Nove

[flexcoders] Using URLLoader, can't determine redirected-to URL in Event.COMPLETE

2008-11-12 Thread robbarreca
[Since my last post (http://tech.groups.yahoo.com/group/flexcoders/message/130012) got hijacked, started a small re-post. Sorry if this morally offends anyone.] Is there any way to find the destination of a redirect in ActionScript? For example, using Loader, you can access loaderInfo.url and it w

[flexcoders] Re: Traverse through a TabNavigator

2008-11-12 Thread Tim Hoff
It's not bad per se, depending on the use case. But, the navigator containers only instantiate the first child, and then the other children as needed (deferred instantiation); to cut down on the application load time. If your TabNavigator only has two children, you're not going to see much of a

[flexcoders] Tree item click

2008-11-12 Thread markgoldin_2000
Here is my tree definition: and here is itemClickEvt: private function itemClickEvt(event:ListEvent):void { trace(event.currentTarget.selectedItem); // empty when a node with no children is clicked. } Is that right?

[flexcoders] Re: Accessing properties of Embedded Flash SWFs from Flex 3

2008-11-12 Thread Todd
OK, I've found some old posts now that I've been pointed that direction. I'm still struggling, though, in one of your old posts you mention doing something along the following: [Embed("SimpleCS3.swf")] public var simpleCS3:Class; and an instance of it called `foo': public var foo:Displa

[flexcoders] Re: Traverse through a TabNavigator

2008-11-12 Thread timgerr
Thanks for the comment, if creationPolicy is bad, what do other people do and why is it bad? Thanks, timgerr --- In flexcoders@yahoogroups.com, "Tim Hoff" <[EMAIL PROTECTED]> wrote: > > > Hi Tim, > > The problem is that only the first child of a TabNavigator is > instantiated initially. Not be

RE: [flexcoders] Traverse through a TabNavigator

2008-11-12 Thread Tracy Spratt
By default, TabNavigator, as well as most of the other navigation components, uses "deferred instantiation". This means that the children of a view are not created until a user navigates to that view. The purpose is to shorten the time it takes for the application/component to display for the fir

[flexcoders] Re: Traverse through a TabNavigator

2008-11-12 Thread Tim Hoff
Hi Tim, The problem is that only the first child of a TabNavigator is instantiated initially. Not best practice, but you can set creationPolicy="All" for the TabNavigator; in order to reference the other children on init. -TH --- In flexcoders@yahoogroups.com, "timgerr" <[EMAIL PROTECTED]> wro

Re: [flexcoders] bug or feature (or am i doing something wrong)?

2008-11-12 Thread Rich Rodecker
Maybe the ArrayCollections in catTreeLocalToFiltered are still referring to the original ones in categoriesTree? That might be why the object appears to be equal to itself after the first pass. On Wed, Nov 12, 2008 at 12:10 PM, Fotis Chatzinikos < [EMAIL PROTECTED]> wrote: > Hello Alex, > > C

Re: [flexcoders] IFrame, BrowserManager, HistoryManager errors.

2008-11-12 Thread Rick Winscot
Yepper ­ BrowserManager does depend on those JavaScript bits in the wrapper. It¹s kinda messy... I¹ve had to implement a fallback to a JavaScript include to smooth out those details. I feel your pain. Rick Winscot On 11/12/08 3:10 PM, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > > > Hey,

[flexcoders] Traverse through a TabNavigator

2008-11-12 Thread timgerr
Hello all, I have a TabNavigator that contains 2 forms: and I wrote this script to traverse a Form: public function Frm(f

Re: [flexcoders] bug or feature (or am i doing something wrong)?

2008-11-12 Thread Fotis Chatzinikos
Hello Alex, CategoryTree is a simple bean with a couple of string and an arraycollection... I am not using registerClassAlias, but initializing the variable first to a new class and then deep copying works.. I will investigate further... On Wed, Nov 12, 2008 at 1:11 AM, Alex Harui <[EMAIL PROTE

RE: [flexcoders] Embedding a Flex application in a HTML site

2008-11-12 Thread Tracy Spratt
Certainly it is possible, probably trivial, unless you require complex interaction with the host page. A Flex app is just a swf in an embed or object tag. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of stephen50232 Sent: W

RE: [flexcoders] Re: Http Service Issue -Urgent

2008-11-12 Thread Tracy Spratt
This is typically a security sandbox issue. Are you seeing errors? Are they security errors? Have you looked into that? I do not advise messing with the use-network setting. Almost all Flex apps need to use the network. Tracy From: flexcoders@ya

RE: [flexcoders] Confusion on creationComplete event

2008-11-12 Thread Tracy Spratt
Are any of those containers navigation components? Like ViewStack, TabNavigator, Accordion, etc? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rss181919 Sent: Wednesday, November 12, 2008 2:14 AM To: flexcoders@yahoogroups.com S

RE: [flexcoders] IFrame, BrowserManager, HistoryManager errors.

2008-11-12 Thread Tracy Spratt
Hey, Rick. Yes, the IFrame component calls BrowserManger.init() before trying to get the url property. Actually it calls ".initForHistoryManager()". I changed it to plain init(), but still, without history enabled in the wrapper, the .url property is always null. I need to create a simple t

[flexcoders] Re: DataGrid ItemRenderer - Reuse with Parameters vs Cloning

2008-11-12 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui <[EMAIL PROTECTED]> wrote: > > Maybe you can use one of the examples on my blog? Or mine? http://flexdiary.blogspot.com/2008/09/extended-datagrid-with- stylefunction.html ;-) HTH; Amy

[flexcoders] updating data in Actionscript

2008-11-12 Thread netdeep
I have been trying to find an answer for this with no success. How do you get flex to refresh data bindings using objects which are passed via remoting? I initially set up my chart to reflect the ArrayCollection I pass in during initialization like this: BindingUtils.bindProperty(lineSeries,

Re: [flexcoders] IFrame, BrowserManager, HistoryManager errors.

2008-11-12 Thread Rick Winscot
It¹s always a good idea to do a quick null check + init before you start touching BrowserManager... if ( BrowserManager.getInstance().url == null ) BrowserManager.getInstance().init(); Are you following this pattern and still having the errors? Rick Winscot On 11/12/08 1:29 PM, "Tracy Spratt"

RE: [flexcoders] threading, forcing code to run in the main thread, URLLoader, etc.

2008-11-12 Thread Alex Harui
Everything is single-threaded. Network calls are async, but results are serviced in the one and only thread The thread constantly rotates from servicing code to async events like mouse, keyboard and networks to rendering and back to code. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECT

RE: [flexcoders] DataGrid ItemRenderer - Reuse with Parameters vs Cloning

2008-11-12 Thread Alex Harui
Maybe you can use one of the examples on my blog? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pbrendanc Sent: Wednesday, November 12, 2008 10:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid ItemRenderer - Reuse with Parameters vs Cloning I have a

RE: [flexcoders] KeyboardEvent in the Air. Like Ctrl+S,Ctrl+Q,etc. Is it bug?

2008-11-12 Thread Alex Harui
I think you have to implement that functionality yourself. Try using the textInput event to block input to TextArea From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ju Aedis Sent: Wednesday, November 12, 2008 12:44 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Ke

RE: [flexcoders] IFrame, BrowserManager, HistoryManager errors.

2008-11-12 Thread Tracy Spratt
Crap, never mind, fixes the error but does not preserve the functionality. I'll post back if I can do better. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Wednesday, November 12, 2008 2:24 PM To: flexcoders@

RE: [flexcoders]How do I check if a component is on the display list?

2008-11-12 Thread Alex Harui
Subclass Image and have it register itself. You can recursively walk the children of containers too, but it can take a while. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dorkie dork from dorktown Sent: Tuesday, November 11, 2008 2:44 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Programmatically roll-up MenuBar on right-click

2008-11-12 Thread Alex Harui
Try faking an ESC KEY_DOWN event to the menubar From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danrockstheworld Sent: Tuesday, November 11, 2008 2:15 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Programmatically roll-up MenuBar on right-click Hi, I'm trying

RE: [flexcoders] IFrame, BrowserManager, HistoryManager errors.

2008-11-12 Thread Tracy Spratt
Just a single case fix of course, but it is what I need. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Wednesday, November 12, 2008 2:22 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] IFrame, Brow

RE: [flexcoders] IFrame, BrowserManager, HistoryManager errors.

2008-11-12 Thread Tracy Spratt
Looks like just a bit of code to fix the IFrame without history problem, at about line 352 of Iframe.as: if (url == null) { appHost = "http://"; } else { appHost = URLUtil.getProtocol(url) + "://" +

RE: [flexcoders] Using a NumericStepper in a DataGrid component as an ItemEditor

2008-11-12 Thread Alex Harui
editorDataField="value" From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tyler Kocheran Sent: Tuesday, November 11, 2008 3:42 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Using a NumericStepper in a DataGrid component as an ItemEditor When I try doing this, I

RE: [flexcoders] preventing click on combobox item

2008-11-12 Thread Alex Harui
I have an example of how to disable list selection in the dropdown on my blog From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thomas nordahl Sent: Wednesday, November 12, 2008 7:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] preventing click on combobox item

[flexcoders] DataGrid ItemRenderer - Reuse with Parameters vs Cloning

2008-11-12 Thread pbrendanc
I have a datagrid containing rows with multiple date columns. I need to change the cell background color based on the date value (e.g. >90 days old is red etc.) However the rules vary based on the column - for now I've created similar custom item renderers with different business rules based on

[flexcoders] threading, forcing code to run in the main thread, URLLoader, etc.

2008-11-12 Thread Pan Troglodytes
I've read that Flash Player runs flex code single threaded, with the exception of network calls and rendering calls. So if I have a URLLoader and I add an event to it for COMPLETE, does that event handler code get run in the main thread, or in a separate networking thread? If it's a separate thre

[flexcoders] sailorsea21 - "showDataEffect" disables my itemRenderer on my LineSeries...

2008-11-12 Thread sailorsea21
Hi everyone, when I add a "showDataEffect" on my LineSeries, my itemRenderer on my LineSeries is no longer visible. Here's my code: Thanks. -David

[flexcoders] Re: Canvas scrollbar appears, won't scroll content?

2008-11-12 Thread Tim Hoff
Perhaps you should be adding the cards in createChildren() and setting the x, y, and z in updateDisplayList(). -TH --- In flexcoders@yahoogroups.com, "bmilesp" <[EMAIL PROTECTED]> wrote: > > Hello, > I've tried posting this on actionscript.org with no luck. > I have a class that extends canvas a

[flexcoders] 1044 Compile time error - help?

2008-11-12 Thread nwebb
Hello, My first day working for a client on an existing project. Checked project out of SVN, but will not compile. I get a series of 1044 errors like this one: *1044: Interface method addChlidBridge in namespace mx.managers:ISystemManager is not implemented by class _ToolsBase_mx_managers_SystemM

[flexcoders] IFrame, BrowserManager, HistoryManager errors.

2008-11-12 Thread Tracy Spratt
I am trying to use Alistair Rutherfords IFrame component in a Flex 3 app and have a a couple issues (one with fix). First, unless I enable history management in the wrapper, the IFrame component throws an error because BrowserManger.getInstance().url is null. Is this to be expected, that BrowserM

Re: [flexcoders] Re: Setting cursor to particular text box on the application load

2008-11-12 Thread anuj sharma
Thanks Jim It is surprising that Flex does not provide that i built functionality. Anyways I will try to implement JavaScript way. Anuj On Wed, Nov 12, 2008 at 7:42 AM, jim.abbott45 <[EMAIL PROTECTED]>wrote: > In order for this to work, your application _as a whole_ needs to do > two things. On

RE: [flexcoders] How to mask scrolling errorTips

2008-11-12 Thread Kyle Quevillon
Maybe one of these 2 samples will help: http://blog.flexmonkeypatches.com/2008/10/08/flex-make-popup-follow-spawning-component-as-you-scroll/ http://blog.flexmonkeypatches.com/2008/10/13/flex-make-popup-follow-spawning-component-as-you-scroll-2/ -Kyle From: flexcoders@yahoogroups.com [mailto:[EM

RE: [flexcoders] Flash Player 10: FileReference.save Security User event

2008-11-12 Thread Battershall, Jeff
Jason, I'm with you on this - I just posted on this minutes before you did. In my case, I'm generating a PDF on the server side and listening for the return event of that process and then initiating FileReference.download(). Requiring that the save() or download() call occur at the top level of t

[flexcoders] Re: How do they do that (Flex & video) ?

2008-11-12 Thread comfederation
--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > First idea: upload all the assets (or asset IDs) up to a server, and have it > generate the movie, then serve it back. Thanks Tom ... but what Flex related "piece" would I use on the server to assemble the slideshow

[flexcoders] Flash Player 10: FileReference.save Security User event

2008-11-12 Thread Jason Ervin
Does anyone know if there is a way around the security feature of FileReference that requires a user event in order to execute FileReference.save? I have method that is called via a buttons click event, but this original eventhandler function calls three more functions via callLater (passing in th

[flexcoders] Flex and Webtrends

2008-11-12 Thread stephen50232
Hi, Is anyone using Webtrends and Flex, I'm trying to find out how we can add Webtrends with our Flex work. Does webtrends work with Flex? How much can it track? Any one used it? Stephen

[flexcoders] Re: TextField and Stylesheets

2008-11-12 Thread ross_w_henderson
Hi, Sceneshift. The TextField object uses a styleSheet property, rather than the styleName attribute. The styleSheet property takes an object of type StyleSheet. Check out the livedoc at http://livedocs.adobe.com/flex/3/langref/flash/text/TextField.html#styleSheet There's a link to the document

[flexcoders] FP 10 FileReference Security & Cairngorm == Headache

2008-11-12 Thread Battershall, Jeff
FP 10 has thrown a curve for Cairngorm apps by requiring that FileReference.upload() and FileReference.download() methods be scoped within a user initiated action event handler. This requires substantial reworking of my app as I had previously implemented all my upload() and download() calls withi

Re: [flexcoders] Parameter deserialization data services

2008-11-12 Thread Ward Loockx
Ward Loockx schreef: Hello, I'm trying to serialize an Actionscript associative array to Java Map. When I do my request I get an error *[RPC Fault faultString="The fill method is not defined for destination 'search' which matches fill parameters: '[ { nickname = }] (class:

[flexcoders] Parameter deserialization data services

2008-11-12 Thread Ward Loockx
Hello, I'm trying to serialize an Actionscript associative array to Java Map. When I do my request I get an error *[RPC Fault faultString="The fill method is not defined for destination 'search' which matches fill parameters: '[ { nickname = }] (class: java.util.ArrayList)'" fa

[flexcoders] Re: Confusion on creationComplete event

2008-11-12 Thread valdhor
According to the documentation, a listEvent does not bubble by default. What you would need to do is create an eventListener on Component1 that listens for ListEvent.ITEM_CLICK. In the function, create a new ListEvent that bubbles and Dispatch it. --- In flexcoders@yahoogroups.com, "rss181919" <

[flexcoders] Re: Setting cursor to particular text box on the application load

2008-11-12 Thread jim.abbott45
In order for this to work, your application _as a whole_ needs to do two things. One of them is (in Flex) to use the setFocus() method to specify where (in the Flex applications) focus should go. From your posting it appears that you have already done this. The other thing is that the _entire Flex

Re: [flexcoders] Re: lockedRowCount won't set

2008-11-12 Thread Tom Chiverton
On Monday 10 Nov 2008, grg_blls wrote: > So I will put it again: Is this property 'lockedRowCount' actually > working? If you have simple one file demo (minus items renders, etc. etc.) then log it on bugs.adobe.com. -- Tom Chiverton Helping to globally supply ubiquitous functionalities *

Re: [flexcoders] How do they do that (Flex & video) ?

2008-11-12 Thread Tom Chiverton
On Wednesday 12 Nov 2008, comfederation wrote: > So, how is this done within Premiere Express (the "ReMixer" that is on > Photobucket, MTV and used to be on YouTube) ? To start with, I am First idea: upload all the assets (or asset IDs) up to a server, and have it generate the movie, then serve

[flexcoders] Canvas scrollbar appears, won't scroll content?

2008-11-12 Thread bmilesp
Hello, I've tried posting this on actionscript.org with no luck. I have a class that extends canvas and i populate the object like so: for each (var group:XML in dataProvider.group) { card[i] = new CardComponent(); card[i].x = this.x + (offset_x * i);

[flexcoders] Re: Serbian FlexCoders

2008-11-12 Thread comfederation
<[EMAIL PROTECTED]> wrote: > > I am interested in networking with Serbian speaking FlexCoders who work from Serbia. Anyone ;?) (: Pozdrav :)

[flexcoders] How do they do that (Flex & video) ?

2008-11-12 Thread comfederation
Hi Folks, I am able to create a slideshow which uses either external or internally embeded images and music. This is the easy part. Now I need to create a stand alone movie. That is, I need to "capture" the slideshow that the user sees and then I need to encode it in some format (mp2/4 ?) so

[flexcoders] preventing click on combobox item

2008-11-12 Thread thomas nordahl
Hei Problem: I have an combobox, and in that combobox I have objects I get from an database. in my combobox renderer I see if the objects is active or not. if (data){ if(data.active != "NULL"){ .. .. .. .. } } if it is not active I do the following. - set a tooltip.

[flexcoders] Re: Communicating with Component

2008-11-12 Thread jim.abbott45
It should be quite straight-forward . . . 1) Import the component's class. For example: import com.myOrg.folderName.WidgetClass; 2) Instantiate the component: protected var aWidget:WidgetClass = new WidgetClass(); 3) Access its properties and invoke its methods: aWidget.name = 'foo'; aWidg

[flexcoders] Re: Problem with Flex form

2008-11-12 Thread valdhor
I tried the link you sent and I get the same result - Two alert boxes telling me the message was emailed etc. The fault handler will be called if there is a fault on the service itself. eg. you set a timeout of 15 seconds on the service and the server does not respond for 15 seconds. In your situ

Re: [flexcoders] binding in actionscript

2008-11-12 Thread Samuel Colak
give the object an ID and then you can do "object.vpos = xx" Regards Samuel On Nov 12, 2008, at 3:57 PM, bhaq1972 wrote: [Bindable] private var vpos:int=0; How do I put verticalPosition="{vpos}" into actionscript thanks in advance

[flexcoders] binding in actionscript

2008-11-12 Thread bhaq1972
[Bindable] private var vpos:int=0; How do I put verticalPosition="{vpos}" into actionscript thanks in advance

[flexcoders] Using a NumericStepper in a DataGrid component as an ItemEditor

2008-11-12 Thread Tyler Kocheran
When I try doing this, I get errors that I can't seem to resolve. Here's my code: This is the error that I'm getting. I don't know how to fix this: ReferenceError: Error #1069: Property text not found on main_inlineComponent3 and there is no default val

[flexcoders] LiveCycleDataServices 2.5.1 updateItem() Issue

2008-11-12 Thread jtemple77
I have been trying to update a DataGrid with data that has just been uploaded to the server using the LCDS updateItem(). My object relationship is class project { Array[Assignment] } class Assignment { Array[Allocation] } class Allocation { int x; int y; } If I have an assign

[flexcoders] Confusion on creationComplete event

2008-11-12 Thread rss181919
I have 3 hierarchial objects in the following format Container1 -Container2 --DataGrid I want Container 1 (grandparent of DataGrid) to listen for an itemClick event on the datagrid. In the creationComplete event on Container1, I added an event listener for the datagrid itemClick. When I test

[flexcoders] Programmatically roll-up MenuBar on right-click

2008-11-12 Thread danrockstheworld
Hi, I'm trying to figure out how to programmatically roll-up up any menus that are open underneath a MenuBar. Here's how to reproduce: 1) Click on a menu bar to open a drop-down menu 2) Right-click elsewhere on the app to open up the ContextMenu 3) Notice that the unused MenuBar does not roll-up

[flexcoders] Re: Communicating with Component

2008-11-12 Thread dev.apostiglioni
I'd recommend to be very careful on that, Based on own experience, you can run into troubles very easily. I'd say that there are two approaches to communicate with a custom component from business logic: 1. Binding the component to the model. 2. Using mediators Approach 1 is advocated by Cairngo

[flexcoders]How do I check if a component is on the display list?

2008-11-12 Thread dorkie dork from dorktown
How do I find out if a component is on the display list? for example, how do I find all images displayed / visible to the user? dorkie "i'm on the list (the display list)" dork from dorktown

Re: [flexcoders] Re: Problem with Flex form

2008-11-12 Thread Tyler Kocheran
Under HTTPService in LiveDocs: Due to a software limitation, HTTPService does not generate user-friendly error messages when using GET. Could that be your problem? On Tue, Nov 11, 2008 at 3:55 PM, brucewhealton <[EMAIL PROTECTED]>wrote: > Did you try the form itself? I guess I didn't show the

[flexcoders] Re: Http Service Issue -Urgent

2008-11-12 Thread harsha_galla
Hi, I have tried it but seems to give an error while running and also when I try to release build it does not happen showing the error at the addition done as u have mentioned. What files do I need at the end to embed this in a already present java project. Thanks .. --- In flexcoders@yahoo

[flexcoders] Cloning Adobe Premiere Express

2008-11-12 Thread comfederation
Folks, If I create a slide-show in Flex, how do I "capture and record" the output that the user sees ? In other words, how do I go about cloning the Save/Render portion of Adobe Premiere Express ? Thanks.

[flexcoders] Have a problem using flex ui with Java application

2008-11-12 Thread harsha_galla
Hi, I have a built a Flex UI for a java project. The UI has some forms which use a servlet for POST and data populated from servlet. I have used HTTP service to make the calls. I have built my application i.e UI in Flex Builder and when I run my application from flex builder everything works fi

Re: [flexcoders] use AIR to read image and show them?

2008-11-12 Thread Tom Chiverton
On Friday 07 Nov 2008, markflex2007 wrote: > can you give me a idea how to do it. File and Image. -- Tom Chiverton Helping to assertively architect low-risk ROI This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a l

RE: [flexcoders] passing parameters to fill method of Data services

2008-11-12 Thread Gregor Kiddie
You need to do something like public Collection fill(List fillParameters, int startIndex, int numItems) { SearchVO pageRequestData = (SearchVO)(fillParameters.get(0)); Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a B

[flexcoders] Embedding a Flex application in a HTML site

2008-11-12 Thread stephen50232
Hi, I'm about to work on a new project which will be developing sections of a site in Flex. The flex sections will have to sit in a html site, replacing some current Flash movies. Is this possible in Flex, if so what considerations are there when implementing this? Thanks Stephen

[flexcoders] passing parameters to fill method of Data services

2008-11-12 Thread Ward Loockx
Hello, I'm trying to pass some parameters to livecycle server using the fill method. The problem is that I'm unable to pass an object or Array/ArrayCollection. I've used this page as source for the parameter binding http://livedocs.adobe.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?co

  1   2   >