[flexcoders] loading flv videos dynamically

2008-08-07 Thread stinasius
hi guys i recently downloaded a flex flv video player component and tried it out and worked well only i had to feed it with the path to the flv video. so i tried to load video to a database and have that data loaded in a datagrid so that if a row is click then the video clip in that row is played i

[flexcoders] Re: Checking swfs for malicious code!

2008-08-07 Thread superbokbok
Hmmm..that sounds like a good plan. The userswfs would never interact with each other, or run by themselves for that matter. They'd only serve to be loaded into a main player. I'll give it a whirl and see what I can come up with. Thx again ;) Btw, in regards to checking swfs for malicious code, I d

[flexcoders] Chart example posted

2008-08-07 Thread Amy
Hi, all; Someone on another forum asked me about how to create multiple axes in a chart in Flex. I put together a little example of how to do a chart completely in AS and posted it on my blog. For those doing charting, you might be interested http://flexdiary.blogspot.com/2008/08/charting- ex

RE: [flexcoders] Re: How to fix this?

2008-08-07 Thread Alex Harui
Make myCollection public From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markflex2007 Sent: Thursday, August 07, 2008 7:24 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to fix this? hi I already defined myCollection b

[flexcoders] Re: How to fix this?

2008-08-07 Thread markflex2007
hi I already defined myCollection but the error happen on BindingUtils.bindSetter(watcherListener, this, "myCollection" , true); error detail is Property myCollection not found why?I do not understand please help mark

RE: [flexcoders] WindowedApplication custom close / exit

2008-08-07 Thread Alex Harui
I think you want: flash.events.Event.EXITING From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of aphexyuri Sent: Thursday, August 07, 2008 2:16 PM To: flexcoders@ya

RE: [flexcoders] Re: Checking swfs for malicious code!

2008-08-07 Thread Alex Harui
Typically you would host your player swf on www.superbokbok.com, and host all user swfs on userswfs.superbokbok.com. Then the user swfs cannot be malicious to your player swf, but they can be malicious to other user swfs. I don't know how the rules work for server configs, DNS and domain names,

[flexcoders] Re: Checking swfs for malicious code!

2008-08-07 Thread superbokbok
--- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > If you load > from the same domain, it can do anything it wants. > This is our main concern at the moment, as the user would upload their custom animation swf to our server. Our player, located on the same server, would

[flexcoders] Keeping custom metadata - a call to arms to vote in the feature request database :)

2008-08-07 Thread Josh McDonald
Hey guys, It's not my feature request, but I sure as hell would like it implemented- I don't care if the solution looks remotely like my idea or not, but I'd love to be able to count on metadata being around. If you'd like to see something similar, please lend your vote to this feature request: h

RE: [flexcoders] Re: DataServiceException

2008-08-07 Thread Jeff Vroom
Yeah, it should be calling any fill methods which are still actively managed by clients in that "refreshFill" call - as long as you have autoSync=true. There are a couple of ways to track this down: 1) Put in this printSeq.jsp file (enclosed below) and request it. It will show you all a

[flexcoders] Re: Advise - List

2008-08-07 Thread Rafael Faria
I do want the html in a redender. This was just an example that i was trying to play. That would be my item renderer. anyway, somehow i get it working... :p --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > I thought you wanted html in a renderer. If so, copy ListIte

Re: [flexcoders] Proxy server for testing?

2008-08-07 Thread ivo
Shortly after sending this message I fired up Fiddler2 (http://www.fiddlertool.com/Fiddler) and noticed that all the traffic from my AIR app goes thru it. By updating a simple js script file the behavior of the Fiddler proxy is modified at runtime. Very slick. - Ivo - Original Message --

Re: [flexcoders] Flex access of RMI server

2008-08-07 Thread Fidel Viegas
On Thu, Aug 7, 2008 at 11:07 PM, ron_mori <[EMAIL PROTECTED]> wrote: > While I go off and explore the land of 'Flex to RMI' connections, > anyone want to offer any insights? > > Things like: > > - Can you do this? Seems like a natural with BlazeDS remote objects. > Just change the URL to point to r

[flexcoders] Proxy server for testing?

2008-08-07 Thread ivo
Hello all, I am testing an AIR app that works over a network and consumes REST services from various internal servers. The app always points to the same URL and I want to be able to redirect the IP it resolves to without having to edit by hand the hosts file and restarting the app. Seems a pro

[flexcoders] Flex access of RMI server

2008-08-07 Thread ron_mori
While I go off and explore the land of 'Flex to RMI' connections, anyone want to offer any insights? Things like: - Can you do this? Seems like a natural with BlazeDS remote objects. Just change the URL to point to rmi://localhost/server... - Simple or difficult? And any other insights are we

RE: [flexcoders] Re: Garbage Collection and event listeners

2008-08-07 Thread Alex Harui
If you are the parent, adding an event listener to a child does not create a reference to the child, it creates a reference from the child to the parent, so it won't affect collection of the child when you release all other references to that child. From: flexcode

[flexcoders] WindowedApplication custom close / exit

2008-08-07 Thread aphexyuri
Hi I need some help preventing window close, on system chrome close button click. Basically, what I would like to do, is check for a condition when the user clicks the system chrome close btn. It the condition states its ok, I'd like to call app.exit(), and if not, perform other actions. Any help

[flexcoders] Re: Garbage Collection and event listeners

2008-08-07 Thread flexaustin
But it does matter. Say I create an object on stage through code. var result:Boolean = super.handleAdd(event); var child:UIComponent = event.relatedObject as UIComponent; child.addEventListener(MouseEvent.CLICK, handleChil

[flexcoders] PHP Chat Example

2008-08-07 Thread todd_geist
I am unable to get the WebOrbChat application to work in the WebOrb Management console examples tab. This is with WebOrb PHP 3 running in XAMPP on a mac. It just doesn't do anything. I click the send button and nothing happens. flash security what could I be missing??? Thanks Todd

[flexcoders] Re: Null reference after creationComplete()

2008-08-07 Thread Tim Hoff
cool --- In flexcoders@yahoogroups.com, "Steve Brownlee" <[EMAIL PROTECTED]> wrote: > > Makes perfect sense. Thanks, Tim. > > --- In flexcoders@yahoogroups.com, "Tim Hoff" wrote: > > > > > > Yes, but your dataGrid is in a child of a viewStack. It won't be > > instantiated until yu change to

RE: [flexcoders] Re: Problems with nudgescrolling when programatically clicking items in DataGrid

2008-08-07 Thread Alex Harui
private static var fakeMouseX:QName = new QName(mx_internal, "_mouseX"); private static var fakeMouseY:QName = new QName(mx_internal, "_mouseY"); before dispatching the event, figure out the stage coordinates of the mouse, then set that position root[mouseX] = stagePt.x; root[mouseY]

[flexcoders] Re: Null reference after creationComplete()

2008-08-07 Thread Steve Brownlee
Makes perfect sense. Thanks, Tim. --- In flexcoders@yahoogroups.com, "Tim Hoff" <[EMAIL PROTECTED]> wrote: > > > Yes, but your dataGrid is in a child of a viewStack. It won't be > instantiated until yu change to that selectedIndex. You can use the > viewStack's creationPolicy="all". But, that

[flexcoders] Re: Null reference after creationComplete()

2008-08-07 Thread Tim Hoff
Yes, but your dataGrid is in a child of a viewStack. It won't be instantiated until yu change to that selectedIndex. You can use the viewStack's creationPolicy="all". But, that's not usually best practice. Better to just use binding. Instead of: reportProjects.dataProvider = rptProjects; do

[flexcoders] Re: removing default 1/1/70 label on DateTimeAxis

2008-08-07 Thread blc187
figured this out... in the DateTimeAxis there is a method called buildLabelCache. creating a class that extends DateTimeAxis and overriding buildLabelCache like this: override protected function buildLabelCache():Boolean { var returnVal:Boolean = super.buildLabelCache(); if(labe

[flexcoders] Null reference after creationComplete()

2008-08-07 Thread Steve Brownlee
When attempting to assign a dataProvider to a DataGrid... reportProjects.dataProvider = rptProjects; I get the following error... Cannot access a property or method of a null object reference. The only difference between this DataGrid, and one that is properly instantiated is that its on a Canvas

[flexcoders] Re: Using Create App from DB - Saving decimal number 123.123??

2008-08-07 Thread Tim Hoff
No, you're stuck using just int for the rest of your programming existence. Ha, just kidding. :) Just change it to a long on the php side. And change it to a Number on the flex side. -TH --- In flexcoders@yahoogroups.com, "cox.blair" <[EMAIL PROTECTED]> wrote: > > I'm using the Create Applic

[flexcoders] Re: is there a way to disable scrolling to selected row when DataGrid sorts?

2008-08-07 Thread ndele_sutton
thx again, alex. --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Override collectioniChangeHandler. if collectionEventKind = REFRESH, > set anchorBookmark = null; > > At least in theory... > > > > From: flexcoders@yahoogroups.com

[flexcoders] Using Create App from DB - Saving decimal number 123.123??

2008-08-07 Thread cox.blair
I'm using the Create Application from database for testing and I'm just wondering on earth it appears to only update whole numbers to the table? It will not pass a decimal number to the database? I see in the php 'int', can I change this to allow it to store 123.123 instead? Really, whole numbers

[flexcoders] Re: Problems with nudgescrolling when programatically clicking items in DataGrid

2008-08-07 Thread bsensale
Heh, sorry, I meant the other option. Thanks! --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > dragEnabled="true"> > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of bsensale > Sent: Thursday, Aug

RE: [flexcoders] Re: How to fix this?

2008-08-07 Thread Alex Harui
BindingUtils.bindSetter(watcherListener, this, "myCollection1" , true); From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markflex2007 Sent: Thursday, August 07, 2008 11:39 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to

RE: [flexcoders] is there a way to disable scrolling to selected row when DataGrid sorts?

2008-08-07 Thread Alex Harui
Override collectioniChangeHandler. if collectionEventKind = REFRESH, set anchorBookmark = null; At least in theory... From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ndele_sutton Sent: Thursday, August 07, 2008 10:57 AM To: flexcoders@ya

RE: [flexcoders] Re: Problems with nudgescrolling when programatically clicking items in DataGrid

2008-08-07 Thread Alex Harui
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bsensale Sent: Thursday, August 07, 2008 12:43 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Problems with nudgescrolling when programatically clicking items in DataGrid Tha

RE: [flexcoders] Must call super.commitProperties at END of overrided commitProperties when extending TitleWindow?

2008-08-07 Thread Gordon Smith
I think Josh stated the fundamental problem here: commitProperties() is not a place for setting properties, it's a place for commiting them once they've been set. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] O

[flexcoders] Re: Problems with nudgescrolling when programatically clicking items in DataGrid

2008-08-07 Thread bsensale
Thanks for the quick reply. Is there a sample anywhere of how to do this? Or could someone put the sample code into the little app below? Thanks! --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > set dragEnabled=true > > or use the mx_internal mouseX/Y override

[flexcoders] make the trace work on a windows 2003 server

2008-08-07 Thread Zhu De Hao
I can make the trace logging work form my developper machnice (which is a XP) But JUST CAN NOT make it work on a windows 2003 box, i have mm.cfg in place, debug verison of flash player (ver 9.0.124.0), Admin right on the server, but when i check Application Data\Macromedia\Flash Player\Logs f

[flexcoders] is there a way to disable scrolling to selected row when DataGrid sorts?

2008-08-07 Thread ndele_sutton
i have found that DataGrid will automatically scroll to the first selected row when the grid is sorted (this includes re-sorts caused by data being updated in the data provider). is there some way i can disable this behavior?

[flexcoders] Re: Application's height property problem

2008-08-07 Thread guillaumeracine
Thank you very much! Using ExternalInterface.call("resizeDiv",myHeight); solved my problem of scrolling! Here is my js function: function resizeContent(height) { document.getElementById("content").style.height = parseInt(height)+"px"; } --- In flexcoders@yaho

[flexcoders] Re: XML Document and Navigation

2008-08-07 Thread Amy
--- In flexcoders@yahoogroups.com, "Patrick J. Jankun" <[EMAIL PROTECTED]> wrote: > > Hello Everyone, > > I run into a problem, something that probably a lot of people here > knows how to solve. > But after sitting for 2 days building nestes for loops, i can't see > the light by the end of t

[flexcoders] Re: How to fix this?

2008-08-07 Thread markflex2007
changeOrder is the application name (changeOrder.mxml) the error details is here: ReferenceError: Error #1069: Property myCollection not found on changeOrder and there is no default value. at mx.binding.utils::ChangeWatcher/getHostPropertyValue()[E:\dev\3.0.x\frameworks\projects\framewor

[flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Amy
--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Thursday 07 Aug 2008, Gus wrote: > > Well I think it depends on how many projects, libraries, etc you have. > > Well, of course. > > > and also if you are compiling... etc. > > I see higher spikes, but 200meg is

[flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Amy
--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Thursday 07 Aug 2008, Gus wrote: > > Well I think it depends on how many projects, libraries, etc you have. > > Well, of course. > > > and also if you are compiling... etc. > > I see higher spikes, but 200meg is

RE: [flexcoders] Garbage Collection and event listeners

2008-08-07 Thread Alex Harui
No one call can remove all listeners. No one call can remove all references, just one at a time. If you add a listener on yourself, there is no need to remove it. It might slightly help if it is a DRC object, but eventually it will be garbage collected. a.addEventListener("foo", b.someMethod)

RE: [flexcoders] Re: Advise - List

2008-08-07 Thread Alex Harui
I thought you wanted html in a renderer. If so, copy ListItemRenderer and modify to set the htmlText instead of text. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rafael Faria Sent: Thursday, August 07, 2008 12:22 AM To: flexcoders@yaho

RE: [flexcoders] Checking swfs for malicious code!

2008-08-07 Thread Alex Harui
If you load content from another domain or sub-domain, it is loaded into a secure sandbox and can't really do anything malicious. If you load from the same domain, it can do anything it wants. If you load content from another domain or sub-domain, and another piece of content from that same "oth

RE: [flexcoders] Re: Add a context menu to a menubar item

2008-08-07 Thread Alex Harui
You can file a request, but I think there's already one in there. Several folks already deal with trying to select the item that got right-clicked in a list. They use mouseX/Y and track events to do it. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] O

RE: [flexcoders] CursorManager problem - custom cursor disappears

2008-08-07 Thread Alex Harui
The cursor won't draw until code stops running. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ferriejbank Sent: Thursday, August 07, 2008 5:59 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] CursorManager problem - custom cursor d

RE: [flexcoders] Re: How to save datagrid data to a Arraycollection?

2008-08-07 Thread Alex Harui
If the DG re-ordered, then it got re-ordered in the collection. The DG doesn't have its own copy. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markflex2007 Sent: Thursday, August 07, 2008 6:29 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Problems with nudgescrolling when programatically clicking items in DataGrid

2008-08-07 Thread Alex Harui
set dragEnabled=true or use the mx_internal mouseX/Y override in UIComponent From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bsensale Sent: Thursday, August 07, 2008 6:54 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Problems wi

RE: [flexcoders] Where are the AIR resources?

2008-08-07 Thread Alex Harui
Flex/AIR security is not designed to control what happens if an evil app gets access to a computer's harddrive. Once it can do that, it can substitute an evil flash player, erase your hard drive, spread worms. So, if you don't think your users have that level of control, then yes, verify the SWF

RE: [flexcoders] How to fix this?

2008-08-07 Thread Alex Harui
Please post full stack traces, examples that actually compile and examples that actually have the problem in it. ChangeOrder does not appear in the example. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markflex2007 Sent: Thursday, Augus

[flexcoders] Garbage Collection and event listeners

2008-08-07 Thread flexaustin
Is possible to remove all event listeners by doing something like the following? mc.removeEventListener(*,*,false); Though not sure how you would get the count of eventlisteners or iterate through them? And as far as deleteing any reference to an object can you override removechildren and add f

Re: [flexcoders] Re: Changing Parents

2008-08-07 Thread Sid Maskit
I may be wrong, but I have a guess here. First, you should not need your calls to removeChild. If you take an item that is currently in the display list, and use addChild to put it somewhere else in the display list, flex will automatically switch its parent from the old one to the new one. My

[flexcoders] How to fix this?

2008-08-07 Thread markflex2007
Hi, I try to catch a change happen for ArrayCollection,but I get follow error. ReferenceError: Error #1069: Property myCollection not found on changeOrder and there is no default value. but I already have myCollection,why this happen. Thanks Mark http://www.adobe.com/2006/mxml"; layout="abs

[flexcoders] Re: Changing Parents

2008-08-07 Thread wwwpl
Forgive me, but how do you remove the child from the stage? Did you do the following (using my example): //Go to full screen app.addChild(imageViewer); subcomponent.removeChild(imageViewer); //Go to normal screen subcomponent.addChild(imageViewer); app.removeChild(imageViewer); The problem I a

Re: [flexcoders] XML Document and Navigation

2008-08-07 Thread Sid Maskit
If you have to perform basically the same operation at each level of your XML, one way to deal with an open-ended number of levels is to use recursion. I apologize for not saying more, but I am running out the door, and don't have time to write up any kind of sample code on this. However, I'm su

[flexcoders] Compressing BitmapData

2008-08-07 Thread Jesse Warden
How can you compress BitmapData in Flash to reduce the amount of RAM it uses? I need to scrub H264 video frame by frame. You cannot do this utilizing NetStream.seek because it seeks to the nearest keyframe. This would require the video to consist of nothing but keyframes. Naturally this is not

Re: [flexcoders] Flex 3 SWCs within CS3

2008-08-07 Thread Matt Chotin
It's supposed to work as far as I know. On 8/7/08 8:43 AM, "Brian Deitte" <[EMAIL PROTECTED]> wrote: Can you use framework-less Flex 3 SWCs within CS3? I'm having a hard time googling about information on this. I assumed that you could do this if the compatibility-version flag was used and

[flexcoders] Different separator line colors on AdvancedDatagrid

2008-08-07 Thread Pun Sophany
Hello, I want to draw horizontal separators between rows with different line colors depending on the row data. I tried to use optimized item renderers but the performance was still too slow during vertical scrolling. I also tried to extend AdvancedDatagridItemRenderer and set border at true. But I

[flexcoders] Re: Problem in Identfying Flash Objects in QTP 9.2

2008-08-07 Thread Anthony DeBonis
Did you include automation.swc, automation_agent.swc, and qtp.swc? Besure to use IE and not Firefox... but if your using ActiveX I would guess your already using firefox. Also - turn off Tabbed browsing - this can cause issues. It should work

Re: [flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Tom Chiverton
On Thursday 07 Aug 2008, Gus wrote: > Well I think it depends on how many projects, libraries, etc you have. Well, of course. > and also if you are compiling... etc. I see higher spikes, but 200meg is about a rough average, and I'll have several projects open (CFML, Flex, Perl, plain text etc.)

Re: [flexcoders] Changing Parents

2008-08-07 Thread Brian Deitte
I did this recently, and it didn't cause havoc. What are seeing that goes wrong? I had two issues that I did needed to fix. One is that you have to remember to remove the child from the stage before adding it back to the application. The second is that the bindings were reexecuted when added ba

[flexcoders] Changing Parents

2008-08-07 Thread wwwpl
I have an image viewer that I would like to go full screen. I now have my app taking up the full screen, but I need the image viewer window to become the size of the app window. The image viewer is a child of a child of a child of the Application. I am calling application.addChild (imageView

Re: [flexcoders] Loading Stuff In Order - Advice?

2008-08-07 Thread Ralf Bokelberg
I'm using states to do this. As soon, as the data is loaded, i switch currentState to dataLoadedState, which adds the view. Cheers Ralf. On Thu, Aug 7, 2008 at 4:11 PM, nwebb <[EMAIL PROTECTED]> wrote: > Hi, > > I have a small application. A single view is declared in the main mxml file. > This v

[flexcoders] Re: Data caching dto's

2008-08-07 Thread flexaustin
Actually obtaining the data isn't the issue. I more interested how do I go about comparing the old data to the new data? Array, some sort of custom hash, or xml. Which is faster or better? I would think array would be best by comparing old data array to new data array and then creating a third da

[flexcoders] removing default 1/1/70 label on DateTimeAxis

2008-08-07 Thread blc187
A DateTimeAxis on a chart with no data shows 1 label: 1/1/70. Is there a way to either make the whole axis invisible, or not show any date labels at all? I want to do this before I populate the chart, then when the data comes in, turn the visibility back on so that the 1/1/70 never shows.

[flexcoders] Flex 3 SWCs within CS3

2008-08-07 Thread Brian Deitte
Can you use framework-less Flex 3 SWCs within CS3? I'm having a hard time googling about information on this. I assumed that you could do this if the compatibility-version flag was used and you didn't use any of the Flex framework. The SWFs I'm creating in Authoring, however, are 1k and don't se

Re: [flexcoders] Data caching dto's

2008-08-07 Thread Brian Deitte
Caching of data across browser sessions, I assume? This is usually done with SharedObject. But I wonder if there's a way to rearchitect your application so this isn't needed? I assume that all 500 objects aren't shown at once and that you could implement some kind of paging mechanism. -Brian O

Re: [flexcoders] Testing Internet Connection in Flex

2008-08-07 Thread Brian Deitte
If it's not AIR, just add event listeners for this, usually an IOErrorEvent. If you can listen for SecurityErrorEvent, make sure to do this as well, since depending on what you're loading, this could show up as the event for a connection being down. -Brian On Wed, Aug 6, 2008 at 4:06 PM, nagaoft

[flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Daniel
200MB? javaw.exe can take up to 700MB when running builder for a couple of hours... That's a lot of memory... --- In flexcoders@yahoogroups.com, "Gus" <[EMAIL PROTECTED]> wrote: > > > I don't think 200meg is a lot these days is it ? > > Well I think it depends on how many projects, libraries, et

Re: [flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Johannes Nel
i vm my work enviroment and two instances of eclipse (either while working on plugins or building stuff side by side) is a annoying at times. On Thu, Aug 7, 2008 at 5:01 PM, Gus <[EMAIL PROTECTED]> wrote: > > I don't think 200meg is a lot these days is it ? > > Well I think it depends on how ma

[flexcoders] Re: Error: Service was not found in the Cairngorm Services registry.

2008-08-07 Thread sk_acura
Hi All, I am able to resolve the Issue by using the ServiceLocator from Cairngorm rather than the one from UM Extensions. Accordingly i needed to change the Services.mxml File.. Regards Mars --- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Wednesday 06 Aug

[flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Gus
> I don't think 200meg is a lot these days is it ? Well I think it depends on how many projects, libraries, etc you have. and also if you are compiling... etc.

RE: [flexcoders] Re: BlazeDS/LCDS on Jboss 4.2.3

2008-08-07 Thread Dimitrios Gianninas
I had blocked all calls to the MessageBroker servlet by adding a security constraint in the web.xml which is no good for Flex...cause then the SWF cannot communicate with the server at all. This is the constraint that was there that I removed: /* DELETE GET POST

Re: [flexcoders] Where are the AIR resources?

2008-08-07 Thread Steve Mathews
It turned out to be an issue on my part. I figured it out and got it working. As to security, now that my Flex swf is in the app directory, can't someone just drop a new one in there and my AIR app think it is secure? Do I need to verify swfs and html loaded from the app directory? On Wed, Aug 6,

[flexcoders] Tracking bytes loaded & bandwidth usage on streaming video

2008-08-07 Thread nathanpdaniel
How can I track the amount of bandwidth used on a streaming video? For progressive download of video, we can say the user downloaded X number of bytes. However, if the video is streaming, there's no way for me to say X number of bytes have been downloaded/transfered/whatevered - at least not that I

[flexcoders] Tracking bytes loaded & bandwidth usage on streaming videos

2008-08-07 Thread nathanpdaniel
How can I track the amount of bandwidth used on a streaming video? For progressive download of video, we can say the user downloaded X number of bytes. However, if the video is streaming, there's no way for me to say X number of bytes have been downloaded/transfered/whatevered - at least not

[flexcoders] Problems with nudgescrolling when programatically clicking items in DataGrid

2008-08-07 Thread bsensale
Hello, I'm writing some tools to automate clicking items in datagrids through mouse events. Right now that means scrolling to an index, and calling mouseDown, then mouseUp on datagrid.indexToItemRenderer(idx). The problem is if the physical mouse cursor happens to be below the datagrid when

[flexcoders] Loading Stuff In Order - Advice?

2008-08-07 Thread nwebb
Hi, I have a small application. A single view is declared in the main *mxml *file. This view loads some [remote] data upon initialisation. I rejigged the application so that it loads in a config file first (this config file contains the url from which I should load the data). Initially the confi

[flexcoders] Re: Add a context menu to a menubar item

2008-08-07 Thread Amy
--- In flexcoders@yahoogroups.com, "valdhor" <[EMAIL PROTECTED]> wrote: > > Ok, I have created a custom itemRenderer which displays my context > menu perfectly. > > Now, how do I get at the menu item data that the context menu came from. > > IOW, I left click on my menu bar which drops down a me

[flexcoders] Re: How to save datagrid data to a Arraycollection?

2008-08-07 Thread markflex2007
Hi, myCollection.getItemAt(i) is used to go over arraycollection. I want to make the second Arraycollection get data from datagrid (because I can change order in datagrid). so the order of data in myCollection1 are different with myCollection. I want to know how to go over the data in datagrid.

Re: [flexcoders] SummaryObject Warning, no clue what it means...

2008-08-07 Thread Josh McDonald
It means mx.collections.SummaryObject does not dispatch events, therefore it can't dispatch PropertyChanged events, which is how bindings know that your data has been updated. On Thu, Aug 7, 2008 at 11:09 PM, bredwards358 <[EMAIL PROTECTED]>wrote: > While checking to make sure my summary informat

[flexcoders] SummaryObject Warning, no clue what it means...

2008-08-07 Thread bredwards358
While checking to make sure my summary information was correct, I got this warning while debugging the application: warning: unable to bind to property 'total2' on class 'mx.collections::SummaryObject' (class is not an IEventDispatcher) warning: unable to bind to property 'total3' on class 'mx.col

[flexcoders] Text control - first line disappears

2008-08-07 Thread Heiko Niemann
Hi, I have a multiline (HTML)text in a text control. When I select it and get beyond its last line/character and move further down the whole text will suddenly jump up one line, so the first line is not visible anymore. Is this a bug or is there a way to prevent this behavior (besides making the

[flexcoders] Re: BlazeDS/LCDS on Jboss 4.2.3

2008-08-07 Thread valdhor
Would you mind posting the fix (Just so it's available later on when someone is searching). --- In flexcoders@yahoogroups.com, "Dimitrios Gianninas" <[EMAIL PROTECTED]> wrote: > > nevermind, figure out my problem > > Dimitrios Gianninas > RIA Developer and Team Lead > Optimal Payments Inc. >

[flexcoders] CursorManager problem - custom cursor disappears

2008-08-07 Thread ferriejbank
Hi, I'm having this really weird problem in Flex 2.0.1 using LCDS ES 2.5.1 where whatever I do using CursorManager to change the cursor (like to activate the BusyCursor or any kind of custom cursor, no matter what priority) all my mouse pointer does is just disappear into nothing. As soon as I re

[flexcoders] Re: Add a context menu to a menubar item

2008-08-07 Thread valdhor
Now that is definitely a hack/Kludge. Is there no other way? Maybe I should file a feature request? --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Keep track of rollover events? > > > > From: flexcoders@yahoogroups.com [mailto:[EM

[flexcoders] Need help urgently regarding the uploading component in flex

2008-08-07 Thread santoshgadagoju
I strucked at a point in designing uploading component in flex. Below is the code of my uploading component. Please find the red marked content in the below code. My requirement is to alert the URL of the file selected in the list box when i click a file item in the listbox. Please help me ... h

[flexcoders] Set background color of special dates in DateField

2008-08-07 Thread kruse.morten
Hi, I have got a DateField where it is possible to choose a date. But I want to mark the dates already choosen with a color. Is this possible? I mean it is possible to giv current date a color so I think that it should be possible to give other dates another color to.

Re: [flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Josh McDonald
Standalone, it's a packaged eclipse. Two builders == two eclipses I just went with builder because I prefer the way some menus are layed out and I don't do any java + flex (at the same time) development. My responsibilities at work end at the WSDL these days. -Josh On Thu, Aug 7, 2008 at 10:10 PM

Re: [flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Johannes Nel
just kick of another eclipse and select the second workspace. it works fine.no i am serious, why two flexbuilders, i am trying to think of a scenario where 1 is not enough. a java and flex eclipse instance i get, but two flex builder instances? also, did you install the plugin version of flexbuild

Re: [flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Josh McDonald
Ew, is that a joke? Besides I already said that it was two different workspaces. Switching between them takes way too long, and I wanted to be able to work in one while the other is building (which also takes way too long) On Thu, Aug 7, 2008 at 9:34 PM, Johannes Nel <[EMAIL PROTECTED]> wrote: >

[flexcoders] XML Document and Navigation

2008-08-07 Thread Patrick J. Jankun
Hello Everyone, I run into a problem, something that probably a lot of people here knows how to solve. But after sitting for 2 days building nestes for loops, i can't see the light by the end of the tunnel :-) So, here is a problem: I have to build an xml based navigation, so far, quite si

Re: [flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Tom Chiverton
On Thursday 07 Aug 2008, Gus wrote: > AFAIK, just open a new eclipse and point it to a different workspace > than the one is open, at least in windows it works. but its a matter > of how memory do you have because eclipse eats a lot!! I don't think 200meg is a lot these days is it ? -- Tom Chive

Re: [flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Johannes Nel
yeah, thats the way, why would you however want two instances of flex builder (i get two eclipses).if its more than one project just open both at once, or have both in one project and mod your build script. On Thu, Aug 7, 2008 at 1:29 PM, Gus <[EMAIL PROTECTED]> wrote: > AFAIK, just open a new

[flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Gus
AFAIK, just open a new eclipse and point it to a different workspace than the one is open, at least in windows it works. but its a matter of how memory do you have because eclipse eats a lot!! --- In flexcoders@yahoogroups.com, "Josh McDonald" <[EMAIL PROTECTED]> wrote: > > I figured out a "close

Re: [flexcoders] Checking swfs for malicious code!

2008-08-07 Thread Tom Chiverton
On Thursday 07 Aug 2008, superbokbok wrote: > please. The concern my client has is that the swf's that are > uploaded(AS3) may contain malicious code that might affect other > users/websites etc... T You want a virus scanner for Flash binary files ? I'm not sure there is one, and witness the probl

[flexcoders] Re: simple arraycollection question

2008-08-07 Thread Richard Baker
Micheal, That's great - thanks very much! Richard --- In flexcoders@yahoogroups.com, "Michael VanDaniker" <[EMAIL PROTECTED]> wrote: > > As you loop over the objects you can save them in an array instead of > in the collection. When the array is finished being populated you can > set it to be the

Re: [flexcoders] New to Adobe AIR - SQLite

2008-08-07 Thread Tom Chiverton
On Thursday 07 Aug 2008, tech.sivakami wrote: > i tried some simple > examples on using this SQLite but i couldnt retrieve data from that or > even to update database.anyone knows about this or having any idea pls > let me know. You forgot to include the code or the error. -- Tom Chiverton

Re: [flexcoders] Multiple Builder instances / windows?

2008-08-07 Thread Tom Chiverton
On Thursday 07 Aug 2008, Josh McDonald wrote: > I figured out a "close enough" one - start builder with "open -n" (mac > only)... It complains when you open it about the workspace being locked, > but then lets you choose another. I guess If I set "always ask for > workspace" in eclipse that problem

Re: [flexcoders] Re: Error: Service was not found in the Cairngorm Services registry.

2008-08-07 Thread Tom Chiverton
On Wednesday 06 Aug 2008, sk_acura wrote: >I did lot of testing and Still cannot figure out why the > ServiceLocator is unable to get the RemoteObjects.. ... > And my remoting-config.xml is as listed below: "Cairngorm Services registry" doesn't mean that does it, but the ServiceLocator, may

  1   2   >