Re: [flexcoders] DataGroup and XML problem

2010-09-09 Thread Craig McLeod
have been searching desperately for a working example of Datagroup with item renderers using XML as the provider, but just have not been able to find one. I welcome any advice you have. Warmest regards and many thanks. Craig

Re: [flexcoders] DataGroup and XML problem

2010-09-09 Thread Craig McLeod
conversion (since datagroups support Ilists and so on) I would have been lost. So all credit to Alex Harui from the Flex SDK Team Craig McLeod Phone: 086 111 4512 Fax:033 343 2265 Email:mailto:cr...@sumitsolutions.co.za cr...@sumitsolutions.co.za Website:http

Re: [flexcoders] Re: Photo Viewer Sample App

2010-03-20 Thread Craig Steury
Hi Amy, Thanks for the help. I don't really want the other viewstack children involved. When they are the carousel seems to initiate correctly. So I thought I'd set creationPolicy to none for viewstack and initiate a createComponentsFromDescriptors. This is not working though as I get a null

[flexcoders] Re: Compiler Not Reporting Errors

2010-03-16 Thread Craig
Not sure if it's exactly the same thing, certainly the same symptoms, but there's a known issue if you're using modules as part of your project: https://bugs.adobe.com/jira/browse/FB-12298 --- In flexcoders@yahoogroups.com, okie_174 rj...@... wrote: Yesterday I found that Flex Builder (v3)

Re: [flexcoders] Submenu Opens Below Menubar on First Click (PROBLEM)

2010-02-22 Thread Craig Steury
anyone know how to fix this, please?? Craig -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

[flexcoders] Re: Identifying module loaded

2010-02-03 Thread Craig
In your event handler (dispModule in your example code), event.target will reference the IModuleInfo returned from your getModule(...) call. Use that to identify the module loaded. One additional caveat though: I'd highly recommend keeping a reference to the IModuleInfo returned from

[flexcoders] Configuring a service for HTTPS access

2009-11-30 Thread Craig
. Regards, Craig

[flexcoders] Detecting Flash Player standalone menu events

2009-10-06 Thread Craig
struggling to find any info on what exactly they do and the implications of them on SWFs developed in Flex. Any help much appreciated, Craig

[flexcoders] Detecting Flash Player standalone menu events

2009-10-05 Thread Craig Shaw
to find any info on what exactly they do and the implications of them on SWFs developed in Flex. Any help much appreciated, Craig

[flexcoders] Re: Synchronizing two ArrayCollections

2009-07-21 Thread Craig
with your VO class name; if you're using one. I'd use the change event instead of click. -TH --- In flexcoders@yahoogroups.com, Craig craigj@ wrote: Take 3... after further review, to simplify things I have bound 2 separate ArrayCollection to separate DataGrids they both share one

[flexcoders] Re: Synchronizing two ArrayCollections

2009-07-20 Thread Craig
Ticker:String = ; public var Company:String = ;..continues public function OrdEnt(obj:Object=null){ if (obj!=null){ this.Ticker=obj.Ticker; this.Company=obj.Company;..continues --- In flexcoders@yahoogroups.com, Craig cra

[flexcoders] Re: Synchronizing two ArrayCollections

2009-07-20 Thread Craig
.selectedItem.Ticker.rowindex; } Any suggestions?... Anyone?? I imagine the ListCollection will work but not sure the syntax. --- In flexcoders@yahoogroups.com, Craig cra...@... wrote: Actually after thinking about it, I should just add the 2nd Webservice result to the first

[flexcoders] Synchronizing two ArracyCollections

2009-07-19 Thread Craig
I need to create a DataModel.as that will synchronize two arraycollections and allow me to update a Form based on the contents of the 2nd arraycollection.index.item(s) when the first arraycollection selecteditem is clicked as the dataprovider for a datagrid. The 2 arraycollections are populated

[flexcoders] Re: This is not as easy as it seems ... apparently...

2009-07-12 Thread Craig
)Profit.dataField=Profit; if (value[Kind.dataField]==SHORT)Profit.dataField=ShProfit; Profit.itemRenderer=new ClassFactory(com.steury.baseClasses.CellFieldInt); return myDec.format(Profit)+%; } --- In flexcoders@yahoogroups.com, Craig cra...@... wrote

[flexcoders] Re: This is not as easy as it seems ... apparently...

2009-07-12 Thread Craig
, it's the data column name. --- In flexcoders@yahoogroups.com, Craig craigj@ wrote: yes the datagrid is bound to an array collection. I don't want to select any item, I want to change the value of a column's DataField to a one of two values based on the value of another column's output

[flexcoders] Re: This is not as easy as it seems ... apparently...

2009-07-12 Thread Craig
the Application.application stuff on there. Just reference the datagrid by it's id. mx:DataGrid id=mygrid mygrid.selectedItem[columname] = some value --- In flexcoders@yahoogroups.com, Craig craigj@ wrote: From within the custom component DataGrid Column I tried this code as you suggested

[flexcoders] Re: This is not as easy as it seems ... apparently...

2009-07-12 Thread Craig
this... yourDataGrid.selectedItem[dataColumnNameOfColumn] --- In flexcoders@yahoogroups.com, Craig craigj@ wrote: I GIVE UP!! I have tried everything!!.. I have a dataGrid that binds to an ArrayCollection. I need to change the value of one columen (Profit) based on the value of another column (Kind) ie

[flexcoders] Re: This is not as easy as it seems ... apparently...

2009-07-12 Thread Craig
. --- In flexcoders@yahoogroups.com, Craig cra...@... wrote: yes the datagrid is bound to an array collection. I don't want to select any item, I want to change the value of a column's DataField to a one of two values based on the value of another column's output. I don't want to have

[flexcoders] Re: This is not as easy as it seems ... apparently...

2009-07-12 Thread Craig
the code with dgOrdExt.dataField=Profit; which just sets the dataField without referencing the other column the code is all working... I also tried creationcomplete event and that did not work either. --- In flexcoders@yahoogroups.com, Craig cra...@... wrote: cause I was doing it within

[flexcoders] Re: This is not as easy as it seems ... apparently...

2009-07-12 Thread Craig
] = yourDataGrid.selectedItem[dataColumn2] --- In flexcoders@yahoogroups.com, Craig craigj@ wrote: I am trying to set the value of a column based on the value of another column. If I use ...selectedItem... it does not work, unless I am mistaken. --- In flexcoders@yahoogroups.com, postwick paul

[flexcoders] Re: This is not as easy as it seems ... apparently...

2009-07-12 Thread Craig
; } --- In flexcoders@yahoogroups.com, Craig craigj@ wrote: Ok... In the parent component to the datagrid I used an initialize event: public function initDg():void { if(dgOrdExt.selectedItem[Kind]==LONG)dgOrdExt.Profit.dataField=Profit; if(dgOrdExt.selectedItem[Kind]==SHORT

[flexcoders] Re: This is not as easy as it seems ... apparently...

2009-07-12 Thread Craig
--- In flexcoders@yahoogroups.com, postwick p...@... wrote: thank you, sir... I appreciate your help, I shall do as you say !! Craig That'll update the value of the cell. You can't do what you're trying to do. You can't have a column with a different dataField per row

[flexcoders] This is not as easy as it seems ... apparently...

2009-07-11 Thread Craig
I am trying to access the value of a DataGridColumn and change the DataField for another column based on this value... Here is my code: ?xml version=1.0 encoding=utf-8? mx:DataGrid xmlns:mx=http://www.adobe.com/2006/mxml; creationComplete=getDp() ... Datagrid mx:columns

[flexcoders] HELP! - Can not access Web Service!

2009-02-22 Thread Craig
I get error below if webservice asmx and URL of domain do not match... they both have to have http://www or no 'www' in order to run... otherwise I get the following error below BUT my cross domain is at the root of the webserver!! what am I doing wrong???: [RPC Fault faultString=Security

[flexcoders] Re: HELP! - Can not access Web Service!

2009-02-22 Thread Craig
By the way... I am running this via a SWF file that is hosted off of a folder of the same domain. --- In flexcoders@yahoogroups.com, Craig cra...@... wrote: I get error below if webservice asmx and URL of domain do not match... they both have to have http://www or no 'www' in order to run

[flexcoders] Need Guidance for Integrating Flex and ASP.NET

2008-10-26 Thread Craig
My project loads stock tickers from SQL into asp.net datatables and when a chart is needed, the SWF file for Flex runs as a separate program. The datatables and charts are duplicated and run separately so you select the ticker from the table in flex to load the flex chart. What I would really

[flexcoders] Re: Help with ViewStack Event Listeners for Custom Components

2008-06-28 Thread Craig
=pn1/ comp:myPanel2 id=pn2/ -- /mx:Application I suspect I will need to create some Listeners and Handlers, but I am not too good at understanding how to do that on my own, can you provide any guidance? Thanks !! Craig

[flexcoders] Re: Help with ViewStack Event Listeners for Custom Components

2008-06-28 Thread Craig
--- In flexcoders@yahoogroups.com, Craig [EMAIL PROTECTED] wrote: Jitendra, Hi, my original post was not incorrect. I am actually trying to make children of a viewstack visible using a tab navigator, however the tab navigator is not a parent of the viewstack components. It is a parent

[flexcoders] Help with ViewStack Event Listeners for Custom Components

2008-06-27 Thread Craig
. vwChrt.getChildAt(0).addEventListener(FlexEvent.CREATION_COMPLETE, getLong); vwChrt.getChildAt(1).addEventListener(FlexEvent.CREATION_COMPLETE, getShort); Can anyone offer any advice? Thank you in advance for any help. Craig

[flexcoders] Very Strange Behavior

2008-06-23 Thread Craig
I have a Panel with a Tab Navigator and two Divided Boxes with DataGrids. I am not sure why I can't get dgShorts to load properly... any ideas? It will only load if it's brought to the to front before I bind it to the array collection, whereas the dgResults (first) datagrid will load fine either

[flexcoders] Re: ASP.NET RSS proxy?

2008-05-23 Thread Craig
is an example feed, my RSS feeds will need a variable ie... http://finance.yahoo.com/rss/headline?s=MSFT (the ticker symbol will be the variable). I am trying to access the feeds through Flex SWF. Any suggestions? The remote server returned an error: (404) Not Found. Here is code Craig %@ Page

[flexcoders] Re: ASP.NET RSS proxy?

2008-05-23 Thread Craig
] On Behalf Of Craig Sent: Friday, May 23, 2008 2:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: ASP.NET RSS proxy? Hey Tracy, this looks pretty easy, I am using ASP.NET with Flex 3.0 and but when I create an aspx page I get an error with the code below... I don't use code behind

[flexcoders] Re: ASP.NET RSS proxy?

2008-05-23 Thread Craig
it simulates a web environment, (though I guess I'm not sure). Craig Server Error in '/velocitytrading.net' Application. \ The remote server returned an error: (404) Not Found. Description: An unhandled exception occurred

[flexcoders] Re: ASP.NET RSS proxy?

2008-05-23 Thread Craig
top level element is allowed in an XML document. Error processing resource 'http://localhost:1821/velocitytrading div id=__asptrace -^Any Ideas? Craig --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Do you control the server? Can you turn on verbose errors

[flexcoders] Re: ASP.NET RSS proxy?

2008-05-23 Thread Craig
that in a try catch block and handle the html error. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Craig Sent: Friday, May 23, 2008 4:48 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: ASP.NET RSS proxy? Tracy, I

[flexcoders] Learning to use RegEx Sting Replace

2008-05-22 Thread Craig
= pattern.exec(str); rssQteTitle = result.toString(); Craig

[flexcoders] Re: Handling html formatted tables in Flex

2008-05-22 Thread Craig
]] --- In flexcoders@yahoogroups.com, Battershall, Jeff [EMAIL PROTECTED] wrote: Craig, See the note from Claus if you haven't already - he makes the important point that if the data is in XHTML you'll be able to conver the data into a format that could drive your datagrid very easily without string

[flexcoders] Re: Learning to use RegEx Sting Replace

2008-05-22 Thread Craig
@yahoogroups.com, Craig [EMAIL PROTECTED] wrote: i know, it should be easy, the following code gives me: Output: QuoteRSS i am looking for it to give me: Output: IBM 100 can you tell me what i am doing wrong? var str:String = QuoteRSS: IBM 100; var pattern:RegExp = /QuoteRSS/gi

[flexcoders] CrossDomain RSS Error Accessing from Web Server

2008-05-22 Thread Craig
I have a Flex 3.0 app that connects to RSS feed fine from FlexBuilder IDE but when deployed on Web Server gets the following error Error #2044: Unhandled securityError:. text=Error #2048: Security sandbox violation: http://mywebserver.net/myflexapp.swf cannot load data from

[flexcoders] Re: Handling html formatted tables in Flex

2008-05-21 Thread Craig
Jeff, Since you put it that way, I shall get to string parsing. I really do appreciate your input. Craig --- In flexcoders@yahoogroups.com, Battershall, Jeff [EMAIL PROTECTED] wrote: Too difficult Having a feed that has UI embedded in it, is 'less than optimum'. Ideally the data you'd

[flexcoders] Handling html formatted tables in Flex

2008-05-20 Thread Craig
An RSS Feed providing quotes for my Flex application is outputting an HTML formatted table. I am able to parse everything out but can not display it with TextArea.htmlText as htmlText does not support Tables. Does anyone know of a way to display Table formatted html code using Flex? There is

[flexcoders] Re: Handling html formatted tables in Flex

2008-05-20 Thread Craig
--- In flexcoders@yahoogroups.com, Battershall, Jeff [EMAIL PROTECTED] wrote: Use your parsed data to create a dataprovider for a DataGrid. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Craig Sent: Tuesday, May 20, 2008 9:51 AM

[flexcoders] Parse RSS XML in HTML format???

2008-05-19 Thread Craig
I am using the RSSParser to read XML data into Flex, but can't get past an item which is formatted in HTML, it is the itemdescription portion of the feed... it it between Script tags like this... description![CDATA[ table border=0 cellspacing=0 cellpadding=0 width=200 TR

[flexcoders] Re: How to remove space at the end of line chart when using disabledDays = [6,0]!

2008-04-07 Thread Craig
I figured out the specifics of 'monkeypatching' and your patch works great. --- In flexcoders@yahoogroups.com, Craig [EMAIL PROTECTED] wrote: Hey Jim, I am ready to start in on this monkeypatch for disabled days white space... but don't know where or how to copy and paste

[flexcoders] Re: How to remove space at the end of line chart when using disabledDays = [6,0]!

2008-04-06 Thread Craig
two classes with the same name... I've taught myself AS and MXML and do custom mxml components but have not done a lot of custom classes. Any direction would be appreciated. Craig --- In flexcoders@yahoogroups.com, Jim Cheng [EMAIL PROTECTED] wrote: It's a Flex 3 charting bug alright

[flexcoders] Re: Need some help with charts

2008-04-04 Thread Craig
try Lynda.com. --- In flexcoders@yahoogroups.com, flexuser1 [EMAIL PROTECTED] wrote: If the CFC returns an arraycollection you can just bind it to a chart in Flex. Maybe I don't quite understand what you're asking.

[flexcoders] Re: How to remove space at the end of line chart when using disabledDays = [6,0]!

2008-03-30 Thread Craig
with 2.0 please let me know... I have signed up to the Adobe Bug Report ... https://bugs.adobe.com/jira/browse/SDK-15081 Let's hope this one does not get closed out as unresolved like the others!! Craig --- In flexcoders@yahoogroups.com, Jim Cheng [EMAIL PROTECTED] wrote: It's a Flex 3

Re: [flexcoders] Security error - can anyone help with this?

2005-10-26 Thread Craig Newroth
nope, not yet, will give that a shot.. thx Jeff Tapper [EMAIL PROTECTED] wrote: try setting useProxy="true" on your HttpService tagAt 12:05 PM 10/26/2005, you wrote:I am getting the following popup error when i try to access theexamples on my secured server. Any one seen this before and I ahve

RE: [flexcoders] problem with cell renderer showing data in datagrid twice

2005-09-16 Thread Craig Newroth
Matt: Sure did, Kevin H sent me some files that showed how to fix... thanks Craig ps. sorry for not responding quicker, been REAL busy... Matt Chotin [EMAIL PROTECTED] wrote: Craig, did you solve this or do you still need help? From: flexcoders@yahoogroups.com [mailto:flexcoders

RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

2005-08-11 Thread Craig Newroth
sorry it took so long to respond...here is the file Craig Abdul Qabiz [EMAIL PROTECTED] wrote: Hi, Can you please send the test file (mxml + swf) to me. I would like to see it... We tried compiling your code with Flex 1.5 and running the app in firefox and IE with Flash Player 8. I can't

Re: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

2005-08-11 Thread Craig Newroth
: Well i think not "rendering" objects with alpha zero is a big mistake.There is a visible property, and i think that should be the criteria to render an object.Especially when you look to backward compatibility i hope macromedia will decide to (not) fix this isue.Greets,SjorsAlias wr

Re: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

2005-08-11 Thread Craig Newroth
and as Studio 8 was released on mnayday that is what I intend to doyes, that did help, thx Alias Alias [EMAIL PROTECTED] wrote: Craig,This sounds like it's actually the result of a *fix* that's in the newplayer. If an object's _alpha is set to zero, it shouldn't bedisplayed at all - however

Re: [flexcoders] problem with cell renderer showing data in datagrid twice

2005-08-11 Thread Craig Newroth
here are the files cnewroth55 [EMAIL PROTECTED] wrote: okay, heres one for all; i have a datagrid and the last cell i wanted to put a combo box in it with a set of selections for a user to pick from. got the cell renederer to work and it puts the combo box in it, however if yu select an item

[flexcoders] Flex Portal Integration - Flex as a Portlet

2005-07-14 Thread Craig McDonald
I am just not seeing/missing something obvious. Any help, much appreciated. Cheers, Craig McDonald\ -- == UCOnline Development Team University of Canberra e: [EMAIL PROTECTED] p: +61-2-6201-5514 -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group

Re: [flexcoders] Re: Column chart using webservice result

2005-07-14 Thread Craig Newroth
Tony, I would be interested in seeing how you did this, I have a similar situation, but have not been able to get it to do what I want either. thanks, Craig tony_lic [EMAIL PROTECTED] wrote: Hi Matt, Thanks for your help. I'm now able to render the chart successfully.with regards,tony

RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

2005-07-14 Thread Craig Newroth
s@yahoogroups.comSubject: RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!! Hi, We tried reproducing the same here at our end and we don't see any difference between two players (FP7 FP8 Beta). -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Craig Newroth

Re: [flexcoders] Flex Portal Integration - Flex as a Portlet

2005-07-14 Thread Craig McDonald
then, correct? If so, what is the procedure for installing Flex in a portal environment? I am guessing I have to allow flex to run in the /jetspeed/flex context rather than the /flex context. Thanks for your help so far. Cheers, Craig -- Flexcoders Mailing List FAQ: http://groups.yahoo.com

RE: [flexcoders] Re: okay, so I can't beleive that......

2005-06-09 Thread Craig Newroth
lts? If so then please send, maybe I am missing something else.. thanks, Craig "Mercer, Dustin" [EMAIL PROTECTED] wrote: Ok sorry, I thought he was going to Java not CFC. A method signature is just what the method is expecting and what it is returning. Basically how you typed the function

Re: [flexcoders] Calendar

2005-06-09 Thread Craig Newroth
use the caledar that is built in to flex Joel Parish [EMAIL PROTECTED] wrote: Is there any way to impliment a calendar in flex? I am looking intousing a TileList but I really don't want to reinvent the wheel(granted it's allready invented). Any insights into how i may do this,or how others have

RE: [flexcoders] prblem with getting dat back from A Remote Object

2005-06-03 Thread Craig Newroth
mx:Arguments tag to my RO tag? not sure how to do this, i think i saw it somewhere in the online docs, but not sure where :-) Craig Tracy Spratt [EMAIL PROTECTED] wrote: I am assuming I missed the send().Have you traced or alerted the result in your result handler?Tracy-Original Message-From

Re: [flexcoders] can I bind more that one checkbox to a send requ est?

2005-05-25 Thread Craig Newroth
That helped alot, thanks Jeff. --- Jeff Steiner [EMAIL PROTECTED] wrote: Craig, I have a specific example on FlexAuthority. Visit: http://www.flexauthority.com/samplesIndex.cfm?sampleID=23 I have multiple checkboxes that pass along their checked state to a CFC that returns XML

RE: [flexcoders] can I bind more that one checkbox to a send requ est?

2005-05-24 Thread Craig Newroth
) and then pass that array value to my cfc call? Craig --- Matt Chotin [EMAIL PROTECTED] wrote: Are you trying to pass a list of the ones that are checked or just one? Your changeThrusts method can simply store which checkboxes are selected and then you can build an array to pass to your web service

RE: [flexcoders] Announcing Flex Style Explorer

2005-05-19 Thread Craig Newroth
with the exception that CSS style selectors are not supported in components...would have to load a .css file I am assuming... --- Jeff Beeman [EMAIL PROTECTED] wrote: This tool is absolutely fantastic! I've got a bug report that one of our developers noticed, though, and since I can't make a

RE: [flexcoders] how to use a repeater question

2005-05-13 Thread Craig Newroth
, APS - Advanced Platform Systems, NCO - Netcentric Operations ]; ]] and would like for it to be the checkboxes label. is it faster to do a repeater or just make them up normally.. Craig Newroth Structures Technology - STL Executive Computing Support The Boeing Company

RE: [flexcoders] help enabling or disabling a control when a user selects something - Solved

2005-05-11 Thread Craig Newroth
h Craig --- Craig Newroth [EMAIL PROTECTED] wrote: Thanks Tracy for getting me on the right track.!!! In the action script file that I posted here is what I changed/added in the below function to make it work... Now all I have to do is do a test on it to see if they selected

RE: [flexcoders] help enabling or disabling a control when a user selects something

2005-05-10 Thread Craig Newroth
reports from srcgrid and drag it into destgrid I want 'srcgrid' to be disabled... thanks, Craig --- Tracy Spratt [EMAIL PROTECTED] wrote: The enable toggle works correctly right? Say if you were to run it directly from a button? And the drag/drop works correctly? Your code wasn't complete

Re: [flexcoders] help enabling or disabling a control when a user selects something

2005-05-06 Thread Craig Newroth
well, it is supposed to test for the content of the selected item and then what I want to do is enable or disable a list control.. I have tired both the number zero (the selected index) of my first list and the text value and cannot get it to work. --- Manish Jethani [EMAIL PROTECTED] wrote: On

RE: [flexcoders] Re: creditcard dashboard - for Alistair

2005-04-30 Thread Craig Newroth
to 'see' it in actionhumm... Steven Webster [EMAIL PROTECTED] wrote: Craig,Can I clarify what your setup is here ?Are you invoking the remote object as an unnamed service ? (eg source="")Have you removed the named service for the delegate, including thenode.If you have done both those th

RE: [flexcoders] Re: creditcard dashboard - for Alistair

2005-04-29 Thread Craig Newroth
Dear MR. WEBSTER: READ pages that you mention, and READ chapter 21, and I DO UNDERSTAND the concepts of the whitelist VERY well, and I DO have a CLEAR understanding of the mentioned concepts. Rather than make a smart assed comment like "...it's probably worth making sure you've got a clear

RE: [flexcoders] Re: creditcard dashboard - for Alistair

2005-04-29 Thread Craig Newroth
and learned quite alot from it, so i cannot understand why this is not working out of the box so to speak...just about everything else has (with the exception of the chart thing - thank god for grep and global replace) Craig --- Steven Webster [EMAIL PROTECTED] wrote: Craig, On page 576 of the book

RE: [flexcoders] Charting

2005-04-24 Thread Craig Newroth
I would like to see those also. let me know when they are up if you could please.. Craig Matt Chotin [EMAIL PROTECTED] wrote: I mailed Christophe to see if he can update it. Unfortunately they changed the passwords on that machine so I can’t grab the data. Matt From: flexcoders

RE: [flexcoders] Comments: Tab Navigator with Tabs at Bottom

2005-04-24 Thread Craig Newroth
Thanks Steven...after you guys explained how the SWC was packaged, it made more sense. DUH!, i'm slow :-) Craig Steven Webster [EMAIL PROTECTED] wrote: Craig, If you feel better about it, you can change your code to: mx:Canvas xmlns:keepAwayFromAli="com.iterationtwo.conta

RE: [flexcoders] Comments: Tab Navigator with Tabs at Bottom

2005-04-19 Thread Craig Newroth
I have read the namespaces info in the docs, but the namespace that you give to use is, "com.iterationtwo.containers.*"...and that 'path' doesn't exist on my box...so i am wondering why that works?, or is that not a 'path' as it were..Alistair McLeod [EMAIL PROTECTED] wrote:

RE: [flexcoders] Comments: Tab Navigator with Tabs at Bottom

2005-04-19 Thread Craig Newroth
ver somewhere to get the correct namespace for the URI? if so then that won't do...I need to make sure that it is reading the swc that you provided on my box... Craig Alistair McLeod [EMAIL PROTECTED] wrote: Hi,iterationtwo:AdvancedTabNavigator tabPlacement="bottom" //What goe

Re: [flexcoders] how to make an object active?

2005-04-15 Thread Craig Newroth
= !summaryCHB.enabled;}/mx:Script mx:FormItem mx:CheckBox label="Summary" labelPlacement="bottom" id="summaryCHB" click="changeOther( event );"/ /mx:FormItem mx:FormItem mx:CheckBox label="Detail" labelPlacement="bottom" id="detailCHB" cli

Data Service Layer Client-Client Message Interception

2004-06-04 Thread Craig Bowman
remember that the significant delay only happens in the Flex SWFs when data services are present in the file. Although there is a modest delay even without the data services. (Flex about a second) No problem with Flash at all, only about 3-4 milliseconds lag time) Craig