[flexcoders] Cold fusion and Flex Remoting setup driving me nuts

2010-09-09 Thread Joshua
Hello, I've been searching and searching for some consistent info regarding the complete setup required to get flex 3 to talk directly to a cfc on a REMOTE coldfusion server. I've got access to the coldfusion server admin. My problems. 1. Where is the flex gateway specified (or flash)?

[flexcoders] Re: PopUpManager and FocusManager

2010-05-12 Thread Joshua
used callLater instead of waiting on the event to dispatch. That worked callLater(setNewFocus) function setNewFocus():void { focusManager.setFocus(this.augmentPackageForm.insuranceValue); } --- In flexcoders@yahoogroups.com, "Joshua" wrote: > > This is driving me nuts. I have

[flexcoders] PopUpManager and FocusManager

2010-05-12 Thread Joshua
This is driving me nuts. I have a form that has several textInputs in it. When you tab out of a textInput and you have entered something that is not currently in the database I create a Popupwindow with another form in it so the user can add more details (Quick Add for Quickbooks style) about

[flexcoders] Re: Updating Static vars

2010-05-10 Thread Joshua
Thanks for the input... I might give that a whirl. just as an FYI for me, or I guess an FMI can you do what I was trying to do initially? I'm still doing some searching, but not finding much on updating static vars or partially calling a constructor... Oh, that just gave me an idea. --- In

[flexcoders] Updating Static vars

2010-05-10 Thread Joshua
Hello I've got a situation as follows 1. I have a class called MessageStrings.as that I use for storing static consts and variables used throughout my project. 2. Recently, we started an affiliate program where I need to make modifications to the MessageStrings to change company names, em

[flexcoders] Re: Search item in Hierarchical Data used in ADG then select node

2010-02-26 Thread Joshua
I think you can use the hierachicalCursor to run through all the nodes in the xml and then when you hit the node you are looking for you could specify it as the selectedItem in the ADG. --- In flexcoders@yahoogroups.com, "hpatino.rm" wrote: > > I display hierarchical data (different levels ea

[flexcoders] Viewing flash based website in HTML component

2010-02-26 Thread Joshua
Hello, I've got an air app where I'm trying to use the Html component to load up a flash website. Problem is that the website starts to load (I can see the preloader) and then the html component just goes blank. I wrote the html page I'm trying to load so I went in and did some trimming of ja

[flexcoders] Re: Flex Soap Version Mismatch

2009-10-31 Thread Joshua
, CURLOPT_SSL_VERIFYPEER, 0); $result = curl_exec($ch); echo $result; curl_close($ch); ?> --- In flexcoders@yahoogroups.com, "Joshua" wrote: > > > I'm still running naked, but am getting a better grip on this stuff. > > But here was my break, NOT!! > > The comp

[flexcoders] Re: Flex Soap Version Mismatch

2009-10-30 Thread Joshua
e day we'll have an answer but that day is not today. > > > HTH. > > > > > Steve > > --- In flexcoders@yahoogroups.com, "Joshua" wrote: > > > > Thanks for the advice Steve. So to do that I'm gonna need to 'hand-code

[flexcoders] Re: Flex Soap Version Mismatch

2009-10-28 Thread Joshua
worlds. > > > HTH > > > > > Steve > > --- In flexcoders@yahoogroups.com, "Joshua" wrote: > > > > I have a problem with soap and flex 3. I have created a webservice through > > the import webservice menu in Flex Builder. If I use

[flexcoders] Re: Flex Soap Version Mismatch

2009-10-27 Thread Joshua
ack an envelop of http://schemas.xmlsoap.org/soap/envelope/ which does match my predefined const but I get a security error channel DefaultHttps ?? --- In flexcoders@yahoogroups.com, "Joshua" wrote: > > > I just don't get the overall picture here with th

[flexcoders] Re: Flex Soap Version Mismatch

2009-10-27 Thread Joshua
e way when I'm working in debug mode on my computer works just fine until I upload to server. --- In flexcoders@yahoogroups.com, "Joshua" wrote: > > Some more info... > > > I'm running everything over https > > > When I create the wsdl code from fl

[flexcoders] Re: Flex Soap Version Mismatch

2009-10-27 Thread Joshua
n the php proxy and curl that I somehow lose the correct port to connect to 1.1 and get 1.2 response back. If so, anybody know how I could correct that? --- In flexcoders@yahoogroups.com, "Joshua" wrote: > > I have a problem with soap and flex 3. I have created a webservice

[flexcoders] Flex Soap Version Mismatch

2009-10-27 Thread Joshua
I have a problem with soap and flex 3. I have created a webservice through the import webservice menu in Flex Builder. If I use the service as is I get a security error because the crossdomain policy on the remote server doesn't comply. So, instead I am using a php proxy to relay the webservi

[flexcoders] Dealing with large object to print.

2009-10-26 Thread Joshua
I'm having a problem with an object (vector image that I have created) that I'm printing exceeding the maximum height and width of a printable object. Are there any strategies that I should look for with respect to this issue. Capturing the display object as a jpeg with snapshot and then splitt

[flexcoders] Image not showing up on print job but does on screen

2009-10-15 Thread Joshua
Hello. I have an array of images that I create from an array of byte array. I also push each image onto a visible display object on the screen. For some reason I can't get the image to actually print using the Flex Print Job. I swear it was just working. Here is my print code. Anything we

[flexcoders] Re: Flex and BlazeDS in internet environment

2008-10-08 Thread Joshua Partogi
--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Wednesday 08 Oct 2008, Joshua Partogi wrote: > > > Do you expect 'localhost' to resolve to the correct thing for your > > > users, on > > > their machines ? > &g

[flexcoders] Re: Flex and BlazeDS in internet environment

2008-10-07 Thread Joshua Partogi
--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Tuesday 07 Oct 2008, Joshua Partogi wrote: > > endpoint="http://localhost:8080/messagebroker/amf"; > > Do we have to change the URL? > > Do you expect 'localhost

[flexcoders] Flex and BlazeDS in internet environment

2008-10-07 Thread Joshua Partogi
Dear all, Do we have to change our code regarding the BlazeDS usage when we deploy it in internet environment? In my dev environment we use this as the RemoteObject enpoint : endpoint="http://localhost:8080/messagebroker/amf"; Do we have to change the URL? Anyone has any experience on this? Tha

[flexcoders] How do we clear List's data

2008-09-29 Thread Joshua Partogi
dear all, I have got a List component that has data in it. But I want to clear the data in it. How do we do this in Flex? Has anyone got any experience with this? I tried using list.dataProvider = null but it doesn't work. Could anyone give me a hint and clue about this please? Many thanks -- R

[flexcoders] Formatting number in dataGrid column

2008-09-17 Thread Joshua Partogi
Dear all, I want to format a number inside a dataGrid column, how do I do this? I tried using labelFunction as such, but it still doesnt work. Does anyone here have any clue on how to do it? private function basePriceLabel(item:Object):String{ return fBasePriceEntry.format(item.bas

[flexcoders] Validating more than one source with one validator

2008-09-03 Thread Joshua Partogi
Dear all, Can we use one validator to validate more than one source? I placed more than one value inside the source attribu

[flexcoders] Re: Applying form login in Flex

2008-08-26 Thread Joshua Partogi
Thanks. I can work it out now. :-) Many thanks --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > Data from an RPC call, HTTPService for example, is just data, and can be > used however you wish. Of course, you will need to use a result handler > function. Do you

[flexcoders] Applying form login in Flex

2008-08-25 Thread Joshua Partogi
Dear all, How do you apply form login in Flex? I use HttpService from flex to send the username and password to the Backend. And then the backend will send back login message in XML format. Now how do I display this XML in Flex as it seems that based on the documentation the XML data to be sent

[flexcoders] Accessing Java Object property in DataGrid

2008-08-15 Thread Joshua Jackson
Dear all, I want to display a Java object property in DataGridColumn's dataField. How do I this in Flex? In my dataProvider I have an object namely called member. Now from the DataGridColumn's dataField, how do I display member.firstName? This is what I meant:

[flexcoders] Upload file component

2008-08-11 Thread Joshua Jackson
Dear all, How do I upload file with Flex? Is there any file uploader component? I could not find any in the documentation, perhaps I have missed anything. Could anyone give me some hints? Best regards, -- Setting a new landmark. Blog: http://joshuajava.wordpress.com/ Twitter: http://twitter.com

[flexcoders] Re: How to pass value to ComboBox selectedItem?

2008-08-11 Thread Joshua Jackson
--- In flexcoders@yahoogroups.com, Laurent Cozic <[EMAIL PROTECTED]> wrote: > > You need to go through the dataProvider to change the value of the selected item. For example: > > comboBox.dataProvider.setItemAt(newItem, comboBox.selectedIndex); > Thanks Laurent, it works now. Best regards,

[flexcoders] How to pass value to ComboBox selectedItem?

2008-08-11 Thread Joshua Jackson
Dear all, I haven't succeed passing object value to ComboBox selectedItem, how do I do this in Flex? In HTML I pass a record id to the value. Best regards, -- Setting a new landmark. Blog: http://joshuajava.wordpress.com/ Twitter: http://twitter.com/thejavafreak

[flexcoders] Re: How does AIR apps connect to database?

2008-08-11 Thread Joshua Jackson
--- In flexcoders@yahoogroups.com, "Douglas McCarroll" <[EMAIL PROTECTED]> wrote: > > It sounds like you want to connect to a local DB. BlazeDS works fine to > connect to a remote DB but for a local DB the standard approach is the use > the SQLite DB that is built into the AIR runtime. Exactly. I

[flexcoders] Re: How does AIR apps connect to database?

2008-08-10 Thread Joshua Jackson
--- In flexcoders@yahoogroups.com, "haykelbj" <[EMAIL PROTECTED]> wrote: > > If you are using remoting with Flex you should still be able to use it > with AIR. But you can not bundle a web servlet container with AIR apps. :( -- Setting a new landmark. Blog: http://joshuajava.wordpress.com/ Twitte

[flexcoders] How does AIR apps connect to database?

2008-08-09 Thread Joshua Jackson
Dear all, I want know how does AIR apps can connect to database? With Flash flex apps, I connect to the database using BlazeDS. But how do I do this with AIR apps since I can not distribute the web container with AIR apps. Could anyone give me a hint on this? Best regards, -- Setting a new land

[flexcoders] Re: Paginate DataGrid

2008-08-08 Thread Joshua Jackson
gt; across multiple pages. > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Joshua Jackson > Sent: Friday, August 08, 2008 1:16 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Paginate DataGrid > > > > Dear all, &

[flexcoders] Paginate DataGrid

2008-08-08 Thread Joshua Jackson
Dear all, How do I paginate DataGrid? In the flex 3 reference it is written that DataGrid can be paginated, but it doesn't explain on how to do it? Could anyone give me a hint on this? Best regards -- Setting a new landmark. Blog: http://joshuajava.wordpress.com/ Twitter: http://twitter.com/the

[flexcoders] Multiple select with mx:List

2008-08-04 Thread Joshua Jackson
Dear all, How do I do multiple selection with mx:List. Is there any parameter that I have to set? Because I can only select on item from mx:List. Could anyone give me a hint on this? Many thanks.

[flexcoders] How do I add selectedItems in the PopUp window?

2008-08-03 Thread Joshua Jackson
Dear all, In the parent window I have a List targetComponent and in the pop up window I also have a List component. The question is how do I add the selectedItems in the popup window to the listData of the targetComponent/parent window? Could anyone give me a hint on this? Many thanks -- Settin

[flexcoders] How do we implement pop-up input in Flex?

2008-07-31 Thread Joshua Jackson
Dear all, I want to have a popup input in my flex apps where the values in the popup window will be set to the parent window that calls this popup window. How do we set the variable chosen to the parent window in Flex? Could anyone give me a hint on these please. Many thanks -- Setting a new la

Re: [flexcoders] Refreshing data in dataGrid

2008-07-31 Thread Joshua Jackson
Hi tom, thanks for the fast response. I'm using Java on the server side. I use spring hibernate for the backend On 7/31/08, Tom Chiverton <[EMAIL PROTECTED]> wrote: > On Wednesday 30 Jul 2008, Joshua Jackson wrote: >> How do we do this with BlazeDS? I'm currently using

Re: [flexcoders] Refreshing data in dataGrid

2008-07-30 Thread Joshua Jackson
On Wed, Jul 30, 2008 at 10:29 PM, Tom Chiverton <[EMAIL PROTECTED]> wrote: > On Wednesday 30 Jul 2008, Joshua Jackson wrote: >> I've got a list of data displayed in a datagrid where the DataProvider >> is from Spring as the backend. Now everytime I add, update or delete &

[flexcoders] Refreshing data in dataGrid

2008-07-29 Thread Joshua Jackson
Dear all, I've got a list of data displayed in a datagrid where the DataProvider is from Spring as the backend. Now everytime I add, update or delete data, it doesn't refresh the datagrid. How do I do this in Flex? I've tried doing - dataProvider.refresh(); - dataGrid.dataProvider.dispatchEvent(n

[flexcoders] Re: alert button order

2008-07-25 Thread joshua gatcke
Thanks for the tips. I am going to write a new alert component - this might end up being super awesome now that I think about it. Oh the possibilities. :D

[flexcoders] alert button order

2008-07-24 Thread joshua gatcke
Anyone know if it is possible to control the order of buttons in an alert? According to the docs adobe has predetermined the button order for us. Currently the alert's buttons read [yes] [no], however our entire app has all our controls in reverse order [no] [yes]. This design decision is

[flexcoders] ByteArray as VideoDisplay source

2008-06-19 Thread Joshua Garnett
Does anyone know of a way to connect a VideoDisplay or Video object to a locally created ByteArray as opposed to a NetStream source? or perhaps how to sub-class NetStream in order to manually feed bytes from a ByteArray to the Video object? Essentially what I want to do is have a custom loading ro

[flexcoders] Intelligent ViewStack Children

2008-04-14 Thread joshua gatcke
Does anyone know if it is possible for a component to know if it's 'visible' or 'on screen' when it's inside a ViewStack without looking at the parent ViewStacks properties? I have a component and I need to to 'know' if it's actually in the showing viewstack child or in one of the hidden on

[flexcoders] Re:HBox children alignment?

2008-02-11 Thread joshua gatcke
use a spacer.

[flexcoders] scale nine bug?

2008-01-29 Thread joshua gatcke
Do you think this is a bug? I have declared a css background image for a panel (id="myPanel") component. If I click on this panel the event.target is: 'myPanel'. However, if I include scale nine formatting in the css background image declaration, the event.target becomes: 'myPanel.style__

[flexcoders] use runtime image more than once

2008-01-07 Thread joshua gatcke
over and over. So far, nothing. I have tried several things, so far nothing is panning out. Is this sorta thing possible? Any tips or advice would be greatly appreciated. Joshua Gatcke - Director Visua Design Group Inc. [EMAIL PROTECTED]

[flexcoders] all text selection in app is grey

2007-10-31 Thread joshua gatcke
. Has this ever happened to anyone else? Thanks in advance for the help - joshua

[flexcoders] Re: dataGridColumn width problems

2007-10-22 Thread joshua gatcke
Thanks Alex, That worked perfectly! Such a simple solution, I love it. I guess I missed that property the 100 times I read the property list! lol. I hope that this post helps someone else in the future.

Re: [flexcoders] LCDS/Hibernate DataServices Issue

2007-10-19 Thread Joshua Garnett
value when the parent item is sent to the client. > > > > Jeff > > > -- > > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On > Behalf Of *Joshua Garnett > *Sent:* Friday, October 19, 2007 11:44 AM > *To:* flexcoders@yahoogroups.com &

Re: [flexcoders] LCDS/Hibernate DataServices Issue

2007-10-19 Thread Joshua Garnett
ity, we need to know the identity property for the instances in > collectionb and c so that we can do the mapping properly. > > > > Jeff > > > -- > > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On > Behalf Of *Joshua Ga

[flexcoders] LCDS/Hibernate DataServices Issue

2007-10-18 Thread Joshua Garnett
Hello, We've recently encountered a problem on a project I'm working on. We are using the Data Management Services to managed all of our persisted objects. It connects to our database via a customized Hibernate assembler. The issue we are seeing is that we have a series of collections that point

Re: [flexcoders] help binding info to a title window

2007-09-20 Thread Joshua Garnett
Hi Gustavo, First off you should have some method for converting the XML into an object. The class can be named something like SampleVO with the fields client, description, and image. Verify that you are able to read in the XML and set the fields properly. Then in your title window create the

Re: [flexcoders] Re: Adding to an ArrayCollection

2007-09-19 Thread Joshua Garnett
Don, The ArrayCollection contains an array of references. When doing the for each loop, xyz2 is a reference to the original object you created in the previous loop. --Josh On 9/19/07, donvoltz <[EMAIL PROTECTED]> wrote: > > This is where I am confused. > > if I do > > xyz2.address = "Some Addr

Re: [flexcoders] Adding to an ArrayCollection

2007-09-19 Thread Joshua Garnett
Hi Don, You should be able to do: for each (xyz2:CustComponent in someArrayCol){ xyz2.address = "Some address"; } --Josh On 9/19/07, donvoltz <[EMAIL PROTECTED]> wrote: > > Is there a good way to add additional information into an array > collection variable? > > If I start with this cod

Re: [flexcoders] Code behind - class extend mxml vs. mxml extend class

2007-09-19 Thread Joshua Garnett
Hi Christoph, I think one of the things you should look into doing, is try to avoid directly referencing the items that are in your view in your code behind class. By doing so this will allow you rebuild your view without changing much to your base class. For example, say you have an application

[flexcoders] Load Manager Class

2007-06-07 Thread Joshua Buhler
I need to load potentially few hundred images into an app I'm building. Does anyone know of a good AS3-based load manager? Something that could let me provide a list of images to be loaded, and control all of the loading for me? I could write one myself, but honestly, I'd like to save the time inv

Re: [flexcoders] HSlider Skinning Troubles

2007-06-06 Thread Joshua Buhler
thumb - but if it does, my guess is that > it's going to scale it proportionally to the height of the track. Not sure > about that though. > > good luck, > > jon > > > > On Jun 6, 2007, at 9:46 AM, Joshua Buhler wrote: > > > First, a picture of what's going on: > > http://joshbuhler.com/images/sliders.jpg > > (The grey rectangle background on the left isn't part of the problem.) > > > >

[flexcoders] HSlider Skinning Troubles

2007-06-06 Thread Joshua Buhler
First, a picture of what's going on: http://joshbuhler.com/images/sliders.jpg (The grey rectangle background on the left isn't part of the problem.) I want the slider to appear like the slider on the right. However, once it loads in Flex, I get the slider on the left - with the shrunken thumb b

[flexcoders] Testing... 1... 2... 3...

2007-06-06 Thread Joshua Buhler
Just checking to see if I can send messages here. I haven't seen any of my last few messages come through the list.

[flexcoders] HSlider Skinning Troubles

2007-06-05 Thread Joshua Buhler
First, a picture of what's going on: http://joshbuhler.com/images/sliders.jpg (The grey rectangle background on the left isn't part of the problem.) I want the slider to appear like the slider on the right. However, once it loads in Flex, I get the slider on the left - with the shrunken thumb b

[flexcoders] Re: Changing between Windows and Mac

2007-05-15 Thread Joshua Garnett
o get things converted in a week, but its always better to plan for the worse. --Josh On 5/9/07, Joshua Garnett <[EMAIL PROTECTED]> wrote: Hi everyone, I've just gone through the very turbulent process of getting my Flex Builder 2 serial number converted from Windows to Mac. The FAQ m

[flexcoders] Changing between Windows and Mac

2007-05-09 Thread Joshua Garnett
Hi everyone, I've just gone through the very turbulent process of getting my Flex Builder 2 serial number converted from Windows to Mac. The FAQ makes the process seem fairly straightforward, but it is not. Here are a few things to keep in mind when calling Adobe's Customer Service: 1) Do not

[flexcoders] capture event on runtime image

2007-04-29 Thread joshua gatcke
, thanks in advance for your help :) - joshua

[flexcoders] Re: Tile Extra Space

2007-04-27 Thread joshua gatcke
I haven't found a solution to this at all. Seems to only happen when I set the width of the tile to 100%. I want the hight to fit the content, so I can't set to a number or percent. - joshua

[flexcoders] xmlrpc

2007-04-22 Thread joshua gatcke
are using Flex + PHP and just trying to read write via xmlrpc requests. I do not want to use AMFPHP. Is it possible to specify the remote xmlrpc method with a rest style request or am I totally out to lunch. Thanks in advance for your help, - Joshua

[flexcoders] Re: expand entire tree?

2007-04-16 Thread joshua gatcke
Thanks Christophe, that worked wonders.

[flexcoders] expand entire tree?

2007-04-16 Thread joshua gatcke
); pageListTree.expandChildrenOf(pageListTree, true); } Thanks in advance, Joshua Gatcke - Director Visua Design Group Inc. Cell:(403) 815-3265 [EMAIL PROTECTED]

[flexcoders] change Panel.titleIcon via actionscript

2007-04-14 Thread joshua gatcke
I am hoping someone could help me figure out how to change the Panel.titleIcon via AS during runtime. So far from the documentation, it looks like I have to use @Embed and cannot use a runtime loaded image. I tried creating a bindable object then manipulating that via AS, with no avail. T

[flexcoders] Tile Extra Space

2007-04-10 Thread joshua gatcke
content. Thanks in advance for your help Joshua Gatcke Design/ Development [EMAIL PROTECTED] P: 403.269.1020 C: 403.815.3265 - http://www.LaunchCMS.com - Simple intuitive

[flexcoders] Re: amfphp + codeigniter

2007-02-21 Thread joshua gatcke
Thanks for the tips :) As for the xmlrpc as 3 library link you posted, I had found this before and was unable to get this to work at all. Has anyone found a simple, reliable way to do xmlrpc calls directly from within flex? That would be the ultimate solution for our project. - joshua

[flexcoders] Project Opportunity

2007-02-15 Thread joshua gatcke
asual working environment in retro downtown loft office If you or anyone you know is interested, please contact [EMAIL PROTECTED], 403-269-1020 :) - joshua -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.c

[flexcoders] xml-rpc

2007-02-12 Thread joshua gatcke
Does anyone know of an xml-rpc class or package for AS3? I found this one: http://www.hrum.org/people/debedb/pro/blog/2006/12/ xmlrpc_in_flex_2actionscript_3_1.html however, I cannot seem to get it to work. XML-RPC from flex would be the ultimate solution for me. Does any one know of any sol

[flexcoders] amfphp + codeigniter

2007-02-09 Thread joshua gatcke
Has anyone ever created a Flex + PHP project using AMFPHP + Codeigniter? I have been trying to integrate the two with no luck. Or maybe I shouldn't integrate the two, the question then becomes: does anyone know how to consume webservices from external sources with amfphp? what I mean is, rig

[flexcoders] RPC method

2007-02-06 Thread joshua gatcke
data="PM"/> I understand how to send value pairs, bind data, send the request, etc. I just cannot figure out how to call the RPC server method that I want to use. Hope my question is clear, thanks in advance for any help :) - joshua

Re: [flexcoders] Binding a property to a function

2007-01-30 Thread Joshua Garnett
HI Lieven, The way I usually do this is wrap the function I want to call with a setter function. So for example lets say I have , I'd have a function: private function set myValue(v:String) : void { if(v != null) { callMyFunction(v); } } If you only want to use AS you can use the b

[flexcoders] NetConnection animation or visual feedback?

2006-12-06 Thread Joshua Flood
I'm using NetConnection in several places in my application. I'd like to create a class to extend NetConnection that would open a popup window to display feedback to tell the user to wait while communicating with the server. The idea is to put this in the extended NetConnection class so that I don'

RE: [flexcoders] Company for sale (owns 4 cpu FDS)

2006-09-18 Thread Joshua Ostrom
Alexander, How much are you looking to get for your flex licenses? Joshua Ostrom >From: "Alexander Tsoukias" <[EMAIL PROTECTED]> >Reply-To: flexcoders@yahoogroups.com >To: flexcoders@yahoogroups.com >Subject: [flexcoders] Company for sale (owns 4 cpu FDS) >

Re: [flexcoders] Adobe, Help Memory Leaking !!

2006-08-23 Thread Joshua Garnett
Have you tried setting the recycleChildren attribute of the Repeater to false?  I believe when you have recycleChildren set to true, even if you reduce the number of items in the dataProvider, it still keeps an object in memory that it will reuse.  I've actually encountered other issues with hav

RE: [flexcoders] Chart error when mouse rolls over

2006-08-11 Thread Joshua Lingwai
get the following run time error when my mouse rolls over one of my charts: ReferenceError: Error #1069: Property hitData not found on mx.charts.HitData and there is no default value. at Chart1/::formatDataTip() at mx.charts.chartClasses::ChartBase/::invokeDTFunction() at mx.charts::HitData/get d

[flexcoders] Charting Dilemma....can anyone help?

2006-08-11 Thread Joshua Lingwai
Im receiving the following run time error when the mouse rolls over one of my charts: ReferenceError: Error #1069: Property hitData not found on mx.charts.HitData and there is no default value. at Chart1/::formatDataTip() at mx.charts.chartClasses::ChartBase/::invokeDTFunction()

[flexcoders] Re: Issue with DragEvents

2006-07-17 Thread Joshua Garnett
from capturing events when they aren't visible? --JoshOn 7/17/06, Joshua Garnett < [EMAIL PROTECTED]> wrote: I'm trying to capture the dragEnter event in a VBox container, but the event will only fire if the mouse is placed over an empty area of the Vbox.  If the mouse is placed

[flexcoders] Issue with DragEvents

2006-07-17 Thread Joshua Garnett
I'm trying to capture the dragEnter event in a VBox container, but the event will only fire if the mouse is placed over an empty area of the Vbox.  If the mouse is placed over an area that is filled (label, etc..) it doesn't want to fire.  Is there a way to enable bubbling of DragEvents? or perh

Re: [flexcoders] F2F FDS AMF Issue

2006-07-07 Thread Joshua Garnett
ding no-cache headers on a response by setting the following in the secure-amf channel-definition section:   false   Let me know if that fixes the issue.     From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Joshua Garnett Sent: Friday, July 07, 2

[flexcoders] F2F FDS AMF Issue

2006-07-07 Thread Joshua Garnett
I've setup FDS to build the clients on the server using the secure-amf channel as the default.  The channel uses the java adapter.  Now the client that I'm working on works fine in Firefox.  It is able to make calls through the AMF gateway without any issues.  When trying to run the same client

Re: [flexcoders] Cairngorm 2 SequenceCommand question

2006-07-05 Thread Joshua Garnett
There are a couple of ways that you can do it.  1) Have your command extend SequenceCommand and then in the command's constructor call super(nextEvent). or 2) You can dynamically assign the nextEvent by passing it to the command.  This is the way I prefer, since it allows you to build different

Re: [flexcoders] Cairngorm 2 SequenceCommand question

2006-07-05 Thread Joshua Garnett
(Controller.EVENT_DO_FIRST, secondEvent);            CairngormEventDispatcher.getInstance().dispatchEvent(firstEvent);There may be a better approach, but this has been working for me.--JoshOn 7/5/06, Joshua Garnett <[EMAIL PROTECTED]> wrote: There are a couple of ways that you can do it.  1) Hav

Re: [flexcoders] result & fault event errors:

2006-07-03 Thread Joshua Garnett
I believe you need to change the references to event.call to event.token.--JoshOn 7/3/06, lownlazy000 < [EMAIL PROTECTED]> wrote:After upgrading to Flex 2 full-version I keep recieving this error: 1119: Access of possibly undefined property call through a referencewith static type mx.rpc.events:

Re: [flexcoders] F2F: Auto-complete import issue

2006-06-29 Thread Joshua Garnett
nge. --JoshOn 6/29/06, Tom Chiverton <[EMAIL PROTECTED]> wrote: On Thursday 29 June 2006 16:14, Joshua Garnett wrote:> Is there some setting I need to adjust or clear out?Do you have the old source code for Cairngorm somewhere ?--Tom Chiverton***

[flexcoders] F2F: Auto-complete import issue

2006-06-29 Thread Joshua Garnett
When creating a new variable and referencing CairngormEvent, Flex Builder 2 is automatically adding import org.nevis.cairngorm.control.CairngormEvent; instead of import com.adobe.cairngorm.control.CairngormEvent;.  I've imported the new library and it compiles fine, its just that the auto-comple

Re: [flexcoders] switching from beta 3 to the real thing?

2006-06-28 Thread Joshua Garnett
One thing to keep in mind is that F2B3 code doesn't seem to run the same in the newly released Flash 9 Player.  I just loaded up my F2B3 app with the new Flash Player and it doesn't work the same.  The UI colors are off and I can't even load up all of my views in the code. So make sure you bundl

[flexcoders] Re: F2B3: Internal build error

2006-06-28 Thread Joshua Garnett
I finally discovered what the problem was.  It turns out I was using the wrong ending tag in my FDS configuration file.  It would be nice to get better feedback in the Builder for this type of error.  Internal Build Error isn't very clear. --JoshOn 6/27/06, Joshua Garnett <[EMAIL P

[flexcoders] F2B3: Internal build error

2006-06-27 Thread Joshua Garnett
I'm running the Flex 2 plugin inside of Eclipse.  I made a few changes to the code and ended up hitting an Internal build error.  I'm not sure what the actual cause is since I've tried to back out of the code changes I had recently made. Here is the message from the .log file:!ENTRY com.adobe.f

[flexcoders] Flex 1.5 AMF Issue

2006-06-14 Thread Joshua Garnett
I'm having a problem passing objects that contain objects through the AMF gateway.  I've found a way to work around it, but I'm not really keen on the solution.  What I'm trying to do is pass an object to a java function.  This object contains a reference to another object within it.  When tryin

[flexcoders] Question about History Management

2006-06-01 Thread Joshua Noble
tes its swf (I think) so if the user is hitting a pre-generated swf none of this is going to happen. I want to go tell the client this is impossible, but wanted to check first. Am I right? - Joshua Noble [EMAIL PROTECTED] 617-350-0339 x 33 aim: METProfessor -

[flexcoders] Re: probably-stupid AS3 question

2006-05-19 Thread Joshua Santangelo
Many thanks for the verbose explanation, that was the solution I was looking for. --- In flexcoders@yahoogroups.com, "Gordon Smith" <[EMAIL PROTECTED]> wrote: > > You don't show how you declared __editWindow, but from the error message > it sounds like you declared it as > > var __editWind

[flexcoders] Flex Developer Position in Boston

2006-05-11 Thread Joshua Noble
Mindseye Technology, Inc. 266 Summer Street Boston, MA 02210 617-350-0339 http://www.mindseye.com Mindseye is a growing Boston based company and we need talent. We believe that good code is more important than dress code. We build applications for the web...and we play to win. If you have the t

Re: [flexcoders] How to user setInterval() to call the remoteobject method?

2006-04-25 Thread Joshua Garnett
Try calling setInterval like this,  intervalID = setInterval(this,"getUser",1);  Also, in the getUser function add clearInterval(intervalID);--JoshOn 4/25/06, loveewind <[EMAIL PROTECTED]> wrote: Hi All, I have a piece of code below:http://www.macromedia.com/2003/mxml "initialize="test()"> 

Re: [flexcoders] OutOfMemoryError

2006-04-05 Thread Joshua Garnett
I'm not sure if this is related, but when running large Flex 1.5 apps I'd get an OutOfMemory Error from Tomcat.  If you open up the Tomcat monitor and then goto the Java tab you can adjust the memory settings.  I've set "Initial Memory Pool" to 64 and "Maximum Memory Pool" to 512.  After making

Re: [flexcoders] Re: What happened to Iteration:Two Site?

2006-04-03 Thread Joshua Garnett
Yeah if you refresh that link a few times it'll eventually show up.--JoshOn 4/3/06, rodneyjlucas <[EMAIL PROTECTED] > wrote:Most of the site is down but I was able to get Cairngorm v2.0 via the following pagehttp://www.richinternetapps.com/archives/000143.html--- In flexcoders@yahoogroups.com ,

Re: [flexcoders] Flash within Flex?

2006-03-20 Thread Joshua Garnett
I haven't used Flex 2.0 yet, but I know in Flex 1.5 to load in a swf you can use the Loader Class (checked Flex 2.0 docs and I don't believe this was depreciated).   mxml example: Once the file is loaded you can access any public functions/variables that exist in the swf.--JoshOn 3/20/06, risky

  1   2   >