Re: [flexcoders] Re: SEO Compatibility

2006-12-16 Thread hank williams
Claus, You are of course right to suggest building an XHTML version first, as a strategy, but there are two problems with this. 1. One of the issues is that good product design usual requires that you develop the interface first. The interface drives the content and data needed. What you are

Re: [flexcoders] SEO Compatibility

2006-12-16 Thread hank williams
One aside however. Although I understand Hank's frustration, I very much appreciated John Dowdell's participation in this thread. Though we may get frustrated, let's not get so hot that we are not nice to JD. He is a nice guy, and to the degree that we can keep things positive he will do what

Re: [flexcoders] SEO Compatibility

2006-12-16 Thread hank williams
But back to JD ... I just hope at some point you have an opportunity to meet him in person. Indeed. Perhaps that would adjust my impression. Yeah, he is a person too. But JD really is a really, really nice guy. I think you two would get along great. Hope you are enjoying your weekend.

Re: [flexcoders] Re: SEO Compatibility

2006-12-15 Thread hank williams
On 12/15/06, John Dowdell [EMAIL PROTECTED] wrote: dougmccune wrote: While I know Adobe employees don't like to admit this, the answer is very simple: It is often impossible, and if not impossible then at least extremely difficult, to get your Flex content indexed by search engines. That's

Re: [flexcoders] Re: Bug In Tree openItems setter?

2006-12-12 Thread hank williams
[EMAIL PROTECTED] wrote: have you tried something like myTree.expandItem(myTree.openItems[1], false); --- In flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED] wrote: lol. I am really retarded today. I redundantly restated what I said in the subject, and then I spelled it wrong

[flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
Here's the issue. You have a tree that has certain leaves open. You get a selectedIndex from a tree lets say its 9. This means that the 10th visible slot on the screen is selected, regardless of what is or isnt open. Its 10 rows from the top of the screen. Then, you put that captured

[flexcoders] Re: another bug in tree... or am I missing something

2006-12-12 Thread hank williams
is exactly the same as the iterator for the list, and does not acknowledge the tree hierarchy. It only iterates over the top level. So right now I am trying to figure out if it is at all possible to programmatically select an item in a tree with open leaves. Hank On 12/12/06, hank williams [EMAIL

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
PROTECTED] wrote: use .item of the treeEvent to get the model and use selectedItem in the tree to set according to model. so what i am basically saying is do your iteration over the dataprovider and code according to the data vs the view. On 12/12/06, hank williams [EMAIL PROTECTED] wrote: Here's

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
On 12/12/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, I think you should take a look at the; import mx.controls.treeClasses.HierarchicalViewCursor; import mx.controls.treeClasses.HierarchicalCollectionView; classes I don't think the 'underpinnings' are incorrect. It's just conceptually

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
By the way, again, just to be clear, the selectedIndex setter seems to inherit from ListBase.as instead of from something in the tree family. Regards, Hank On 12/12/06, hank williams [EMAIL PROTECTED] wrote: On 12/12/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, I think you should

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
that you want closed. Maybe were talking about two different things here. Peace, Mike On 12/12/06, hank williams [EMAIL PROTECTED] wrote: By the way, again, just to be clear, the selectedIndex setter seems to inherit from ListBase.as instead of from something in the tree family. Regards, Hank

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
On 12/12/06, Michael Schmalle [EMAIL PROTECTED] wrote: And since it is a property that can be read and written we should be able to set the list of which items are open and which are closed. What are you talking about here? If they intended to make it work such that setting openItems just

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
Problem solved. Someone offlist sent me a solution, which appears to be that setting selectedIndex doesnt work, but setting selectedItem does work. So the work around for the bug is dont use selectedIndex. Regards, Hank On 12/12/06, hank williams [EMAIL PROTECTED] wrote: By the way, again

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
selectedItem does work. So the work around for the bug is dont use selectedIndex. Regards, Hank On 12/12/06, hank williams [EMAIL PROTECTED] hank777%40gmail.com wrote: By the way, again, just to be clear, the selectedIndex setter seems to inherit from ListBase.as instead of from something in the tree

[flexcoders] Re: Bug In Tree openItems setter?

2006-12-11 Thread hank williams
Oh, by the way, this relates to the openItems property of the Treee class. Hank On 12/11/06, hank williams [EMAIL PROTECTED] wrote: The documentation for the openItems field says that it is read/write and that the default is NULL, which presumably means no items are open. But it appears

[flexcoders] Bug In Tree openItems setter?

2006-12-11 Thread hank williams
The documentation for the openItems field says that it is read/write and that the default is NULL, which presumably means no items are open. But it appears there is no way to set open items to closed. Below is the setter function for openItems and the first thing it does is say if the parameter is

[flexcoders] Re: Bug In Tree openItems setter?

2006-12-11 Thread hank williams
lol. I am really retarded today. I redundantly restated what I said in the subject, and then I spelled it wrong. On 12/11/06, hank williams [EMAIL PROTECTED] wrote: Oh, by the way, this relates to the openItems property of the Treee class. Hank On 12/11/06, hank williams [EMAIL PROTECTED

Re: [flexcoders] Tree drag drop

2006-12-07 Thread hank williams
made it work. Now I want to make this reusable some how, but didn't figure out how exactly I should approach this. Markus Von: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Im Auftrag von hank williams Gesendet: Mittwoch, 06

Re: [flexcoders] Re: Cairngorm Newbie Question - Please set me straight

2006-12-06 Thread hank williams
create a single CFC to group together lookup table queries I prefer to keep them in their distinct CFCs to allow for future methods related to those objects. Does this clear things up at all or am I still way off? Thanks again for your help! Steve On 12/5/06, hank williams [EMAIL PROTECTED

Re: [flexcoders] Multi-select not happening! - bug?

2006-12-06 Thread hank williams
I am running firefox 1.5 with player 9.0.16 and I also cannot get multiple selection working in a tree. I was just trying to figure out what was wrong and I did a search to see if there was a bug and found this thread. Hank On 11/2/06, Joan Lafferty [EMAIL PROTECTED] wrote: For that link,

[flexcoders] Tree drag drop

2006-12-06 Thread hank williams
with dragEnabled, dropEnabled, dragMoveEnabled all set to true I am able to drag an Item from one place in a tree to another. The only problem is that I dont seem to be able to promote or demote an item. meaning I can drag an item to a sibling position of another item, but not to a child of

Re: [flexcoders] Multi-select not happening! - bug?

2006-12-06 Thread hank williams
I did a further search and found that Belinda Nambooze from adobe said it was disabled and would be fixed in a later release. So I am wondering joan, are you working with the new flex framework where this is fixed? Hank On 12/6/06, hank williams [EMAIL PROTECTED] wrote: I am running firefox

Re: [flexcoders] Multi-select not happening! - bug?

2006-12-06 Thread hank williams
@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *hank williams *Sent:* Wednesday, December 06, 2006 1:14 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Multi-select not happening! - bug? I did a further search and found that Belinda Nambooze from adobe said it was disabled and would

Re: [flexcoders] Cairngorm Newbie Question - Please set me straight

2006-12-05 Thread hank williams
On 12/5/06, stevehousefl [EMAIL PROTECTED] wrote: I have a command that I would like to have pull lookup data from 6 different BusinessDelegates. Should that one command call all 6 delegates or should it fire 6 new events that call 6 new commands? If the one command should call all 6

Re: [flexcoders] Re: Cairngorm Newbie Question - Please set me straight

2006-12-05 Thread hank williams
Steve, You definitely shoud not have a business delegate for every lookup table. I dont really understand the detail of what you explained in your email, but communications between a client and a server should never be as granular as mapping just directly to a table. Think of communications with

Re: [flexcoders] FDS Environment Challenge Questions!

2006-12-04 Thread hank williams
On 12/4/06, Jamie O [EMAIL PROTECTED] wrote: Hello, After a laborious day of uninstalling, re-installing, washing, rinsing, repeating, I finally have my eclipse environment setup with WTP, Java 1.5 and the FDS Plugin Project Peter Martin created. The directory structure seems to make more

Re: [flexcoders] FDS Environment Challenge Questions!

2006-12-04 Thread hank williams
On 12/4/06, Jeff Vroom [EMAIL PROTECTED] wrote: Comments inline: 1) Without using Peter's FDS Plugin, what is the easiest way to deploy a FDS-enabled project as http://localhost:8080/ or http://localhost:8080/ProjectName/? Every example I've been able to find has it coming out of the

Re: [flexcoders] Simple Question - Array to ArrayCollection - Best Practice/CFusion

2006-12-03 Thread hank williams
On 12/3/06, Ralf Bokelberg [EMAIL PROTECTED] wrote: Maybe i'm wrong and there is special internal coldfusion handling involved, but i don't think, you can cast an Array to a ArrayCollection. You can only cast the result to something it already is. So if your result is a custom object, you have

Re: [flexcoders] uploading an object

2006-12-01 Thread hank williams
I believe the only way to do that would be to write a little javascript and then use external interface to actually send the data to the javascript. Shouldnt be too hard, though I have never tried it. Regards, Hank On 12/1/06, Daryn Nakhuda [EMAIL PROTECTED] wrote: Hi Dimitrios, FileReference

Re: [flexcoders] role based security vs session based security with a servlet container

2006-11-30 Thread hank williams
authentication scheme that you need to use because your container's native authentication isn't satisfactory (not likely). HTH, Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hank williams Sent: Wednesday, November 29

Re: [flexcoders] Is there any native media player component?

2006-11-30 Thread hank williams
s because such a high-level components can't be framework element. sure it could. No different from any other component like the tree controller for example. They could do it and it was a mistake to leave it out. It was great to be able to easily drop video into a site. Regards, Hank

Re: [flexcoders] role based security vs session based security with a servlet container

2006-11-29 Thread hank williams
Hi Seth, Thanks for the response but I am a bit of a dummy in this area so I need a bit more direction. On 11/29/06, Seth Hodgson [EMAIL PROTECTED] wrote: Hi Hank, How do you do your logins now against your account database? You're not using general J2EE auth? I am not live yet, but as a

Re: [flexcoders] Is there any native media player component?

2006-11-29 Thread hank williams
the videoDisplay is not analagous to the FLVPlayer, which is a full component with pause and play buttons and a scruber etc. Regards Hank On 11/29/06, Andriy Panas [EMAIL PROTECTED] wrote: Hello Sergey, Tuesday, November 28, 2006, 1:08:07 AM, you wrote: SK I remember FLVPlayer (or some kind

Re: [flexcoders] role based security vs session based security with a servlet container

2006-11-29 Thread hank williams
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hank williams Sent: Tuesday, November 28, 2006 10:01 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] role based security vs session based security with a servlet container I am trying to figure out

[flexcoders] role based security vs session based security with a servlet container

2006-11-28 Thread hank williams
I am trying to figure out the best way of implementing security authentication. I am using tomcat, and FDS at the moment for remoting. My server side code is obviously in java. A while back, role base security was recommended as the way to implement security. The idea being that if someone did

[flexcoders] History Management Questions

2006-11-28 Thread hank williams
I briefly reviewing the history manager doc, I am not clear if it is possible to bundle search characteristics in a history state. I understand that it can remember tab navigator and viewStack states, but within a viewStack I may have done some search that has caused a certain set of data to be

Re: [flexcoders] Is there any native media player component?

2006-11-27 Thread hank williams
nope! On 11/27/06, Sergey Kovalyov [EMAIL PROTECTED] wrote: Hi All! I remember FLVPlayer (or some kind of this) component in Flash 8 IDE. Is there any similar component available in Flex 2? Thank you in advance. Sergey. -- Flexcoders Mailing List FAQ:

Re: [flexcoders] best way to do database to Java to XML to flex

2006-11-26 Thread hank williams
@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *hank williams *Sent:* Sunday, November 26, 2006 12:57 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] best way to do database to Java to XML to flex I have been using remoting to get data out of my database and into flex. The nice thing

[flexcoders] best way to do database to Java to XML to flex

2006-11-25 Thread hank williams
I have been using remoting to get data out of my database and into flex. The nice thing about this is it handles all the data conversion issues etc. But now, I have a need to be able to communicate certain data in XML format. I would imagine that there must be a clean process/format for

Re: [flexcoders] Flex Upload Handling (design)

2006-11-18 Thread hank williams
This is a current failing in the flash/flex design. The way that I deal with it is to, before doing the actual upload, to send the data associated with the upload to the server first. The server then sends back an itemID or ticketID or something like that. When you do the upload you send with

Re: [flexcoders] Re: Structuring a collection of Flex apps in a tomcat webapps folder

2006-11-05 Thread hank williams
From: flexcoders@yahoogroups.com on behalf of hank williams Sent: Sat 11/4/2006 5:44 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Structuring a collection of Flex apps in a tomcat webapps folder Ok, looking at this somemore, I think this is most likely a design bug

Re: [flexcoders] Re: Structuring a collection of Flex apps in a tomcat webapps folder

2006-11-05 Thread hank williams
configuration and change URL or path to launch. I'm not sure if this is what you were looking for. hope that helps.X.On 11/5/06, hank williams [EMAIL PROTECTED] wrote:Dustin,Thanks for verifying this.Its odd that so few people have noticed this. I guess perhaps everyone just uses apache as a front end

Re: [flexcoders] Re: Structuring a collection of Flex apps in a tomcat webapps folder

2006-11-04 Thread hank williams
to be www.somedomain.com/flex-app-name Thanks Hank How On 11/2/06, Nick Rothwell [EMAIL PROTECTED] wrote: On 1 Nov 2006, at 22:22, hank williams wrote: I dont see how you avoid this since servlet containers require that the WEB-INF folder be in the root directory of the application, but this is not how

Re: [flexcoders] Re: Structuring a collection of Flex apps in a tomcat webapps folder

2006-11-04 Thread hank williams
or some other indirection Regards Hank On 11/4/06, hank williams [EMAIL PROTECTED] wrote: It sounds like you are letting FDS compile for you on the server. I am compiling on the client. To restate, hopefully, more clearly my problem, it is as follows: I want my swf and html output files

Re: [flexcoders] security issues when capturing flex screens that contain other domain bitmaps

2006-11-03 Thread hank williams
?-AndyOn 9/26/06, hank williams [EMAIL PROTECTED] wrote: I have a flex screen that I want to capture into a bitmap using the technique that Andrew Trice described earlier this week. it works as so: codeExample1 private function getUIComponentBitmapData

Re: [flexcoders] Isn´t there any release of Adobe Apollo yet? Alpha maybe....

2006-11-02 Thread hank williams
On 11/2/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 01 November 2006 21:05, Gordon Smith wrote: I'm confident the Apollo run time engine will be able to hook into whatever 3D acceleration the O/S can provide. I don't believe this is an Apollo goal. If we do graphics hardware

Re: [flexcoders] setting my application pageTitle

2006-11-02 Thread hank williams
is the {application} variable coming from and why cant I set it using the title parameter? Regards Hank On 11/2/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 01 November 2006 21:41, hank williams wrote: name of the apps main .mxml file (which is named index.mxml so that I dont have

Re: [flexcoders] using a linkbar with a viewstack... how can you indicate current selection

2006-11-02 Thread hank williams
: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williams Sent: Wednesday, November 01, 2006 9:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] using a linkbar with a viewstack... how can you indicate current selection a linkbar is a recommended way

Re: [flexcoders] Isn´t there any release of Adobe Apollo yet? Alpha maybe....

2006-11-02 Thread hank williams
API, which would be necessary for 3D. So it is not currently clever enough to do accelerated 3D. Of course you can do 3D using the 2D api, but that is very slow. Regards, Hank On 11/2/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 02 November 2006 11:08, hank williams wrote: If they need

Re: [flexcoders] Re: Structuring a collection of Flex apps in a tomcat webapps folder

2006-11-01 Thread hank williams
instead of the hostname, and probably many others. --- In flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED] wrote: I have a three flex applications that live under one FDS web app. Imagine a directory structure as follows webapps mainFDSAppName flexapp1

[flexcoders] setting my application pageTitle

2006-11-01 Thread hank williams
I am setting my applications pageTitle parameter in my mx:Application tag. Nevertheless, the page title displays as the name of the apps main .mxml file (which is named index.mxml so that I dont have to list the actual app name in my url). Thinking that it might be a cache issue, I have restart

Re: [flexcoders] Anyone have any problems using Clean... in FlexBuilder 2 Mac Beta?

2006-11-01 Thread hank williams
You have an error which is preventing building. Check you problems tab and see if you have any errors. Regards Hank On 11/1/06, DJ Lift [EMAIL PROTECTED] wrote: I just tried to Clean... my project, and now I can't build any more because it says that the bin/myapplication.html file is

Re: [flexcoders] Re: Structuring a collection of Flex apps in a tomcat webapps folder

2006-11-01 Thread hank williams
there is the your webapp directory which is inside webapps, and then a sub directory, for the flex application. How do you get FDS apps to use a simple url? Hank On 11/1/06, hank williams [EMAIL PROTECTED] wrote: Thanks. But I did figure it out. I just needed to configure a new host in my server.xml

Re: [flexcoders] Isn´t there any release of Adobe Apollo yet? Alpha maybe....

2006-11-01 Thread hank williams
I'm confident the Apollo run time engine will be able to hook into whatever 3D acceleration the O/S can provide. I don't know why you would be confident of this at all. It has not been listed as part of any Apollo API, and, according to the FAQ, they are still deciding whether there will be a

[flexcoders] using a linkbar with a viewstack... how can you indicate current selection

2006-11-01 Thread hank williams
a linkbar is a recommended way to control a viewstack. But I want to be able to show the user the currently selected view. I am not clear whether the linkbar is supposed to allow this. When I try to initially set the selectedIndex to 0 I get an error indicating that it is out of range. I know I

Re: [flexcoders] Re: using a linkbar with a viewstack... how can you indicate current selection

2006-11-01 Thread hank williams
defined in the LinkBar help docs. Mike --- In flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED] wrote: a linkbar is a recommended way to control a viewstack. But I want to be able to show the user the currently selected view. I am not clear whether the linkbar is supposed to allow

[flexcoders] Structuring a collection of Flex apps in a tomcat webapps folder

2006-11-01 Thread hank williams
I have a three flex applications that live under one FDS web app. Imagine a directory structure as follows webapps mainFDSAppName flexapp1 flexapp2 flexapp3 I want to be able to say www.somedomain.com points to flexapp1 ww2.somedomain.com points to flexapp2

Re: [flexcoders] Re: Flash Player 9 Beta Available

2006-10-27 Thread hank williams
I dont believe there is any way currently other than FB to get syntax highlighting though I think that someone can probably do that pretty easily. I would think code completion code hinting and syntax checking in the editor would be fairly valuable and much harder too. IMHO these things hardly

[flexcoders] how to remove the icons in a tree

2006-10-26 Thread hank williams
I know you can replace the art with your own, and in a pinch I guess I can substitute a really small transparent jpg. But this really feels like a hack. Is there any way to just turn the icons off. Of course I am not talking about the triangle, but the folder and document icons. Hank --

Re: [flexcoders] how to remove the icons in a tree

2006-10-26 Thread hank williams
Thanks guys. I thought I had tried assigning it to null but I think I had done null instead of {null} which of course makes total sense except at 4 in the morning!Regards,Hank __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

[flexcoders] Flex for mac public beta is out!

2006-10-25 Thread hank williams
Flexbuilder for the mac beta is out!!! http://labs.adobe.com/technologies/flexbuilder2/ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit

Re: [flexcoders] FB2 != Eclipse 3.2

2006-10-25 Thread hank williams
It will probably be tied to the work associated with bringing out FB2 4 Mac. The mac version requires eclipse 3.2 so whatever issues there are with 3.2 will probably be addressed when the next version of flex comes out for windows, which I would guess would be similar in time frame to the mac

Re: [flexcoders] Flex Deployment Best Practices

2006-10-24 Thread hank williams
, but I agree that it shuld be possible as well in order to get a real flexible technology. Just my thoughts.Best.C.On 10/24/06, hank williams [EMAIL PROTECTED] wrote: My situation is not a huge app, but I think probably fits in a fairly mainstream situation.I have

[flexcoders] How to discover the natural dimensions of a loaded image

2006-10-24 Thread hank williams
When I load an image, I would love to be able to set the width and have the height be set appropriately. This does happen on the screen - the image is scaled to the given width and the height is scaled on the screen. But the height on the page is not scaled and so, in a VBox for example, the

[flexcoders] accessing assets in an external project

2006-10-24 Thread hank williams
I can access code in another project but I cannot seem to access a swf object in the project. I am setting the given directory as a directory from which to export assets, but when I use the following code it doesnt see the swf. @font-face { src:

Re: [flexcoders] Stand-alone apps

2006-10-24 Thread hank williams
You can use local sharedObjects. Depending on your needs this may or may not be sufficient. sharedObjects cannot be carried from one computer to another or emailed or backed up. Basically any object can be saved by name to the shared object. This can include all object types. But the user doesnt

Re: [flexcoders] How to discover the natural dimensions of a loaded image

2006-10-24 Thread hank williams
@yahoogroups.com] On Behalf Of hank williams Sent: Tuesday, October 24, 2006 4:44 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to discover the natural dimensions of a loaded image When I load an image, I would love to be able to set the width and have the height be set appropriately

Re: [flexcoders] Re: Stand-alone apps

2006-10-24 Thread hank williams
/000130.cfm --- In flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED] wrote: You can use local sharedObjects. Depending on your needs this may or may not be sufficient. sharedObjects cannot be carried from one computer to another or emailed or backed up. Basically any object can be saved

Re: [flexcoders] Flex Deployment Best Practices

2006-10-23 Thread hank williams
I have been glancing at Roger's blog, for the last month or two, but the one thing I am not clear on is whether the work that he is doing reduces the all or nothing nature of the actual flex framework? I am very clear on how to modularize my own code, but if the flex framework's dependecies are

Re: [flexcoders] Flex Deployment Best Practices

2006-10-23 Thread hank williams
RSL. RSLs come into play when you start having multiple apps that re-use the same code. Matt From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of hank williams Sent: Monday, October 23, 2006 1:57 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders

[flexcoders] Making the datagrid header background alpha 0

2006-10-18 Thread hank williams
I want to make my datagrid header transparent the way the body is, but there is no field for header alpha as far as I can see. I am sure I could make some kind of skin, but I havent much looked into skinning the datagrid and was wondering if there was some fairly easy way to acheive the effect I

Re: [flexcoders] Re: Making the datagrid header background alpha 0

2006-10-18 Thread hank williams
{ backgroundAlpha: 0.0; } -Jim --- In flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED] wrote: I want to make my datagrid header transparent the way the body is, but there is no field for header alpha as far as I can see. I am sure I could make some kind of skin, but I havent

Re: [flexcoders] Re: Making the datagrid header background alpha 0

2006-10-18 Thread hank williams
From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of hank williams Sent: Wednesday, October 18, 2006 2:50 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Making the datagrid header background alpha 0Jim, Thanks

Re: [flexcoders] WebOrb for Rails

2006-10-14 Thread hank williams
As for overlap, how about the Java implementation? Overlap there? Also, did Midnight tell you/the community they wouldn't do a language that Adobe has already done? In other words, did they say they would stifle WebORB for the sake of not competing with Adobe? They have said on this forum that

Re: [flexcoders] Why defaultButton do not work when in TabNavigator?

2006-10-13 Thread hank williams
I am encountering this same problem, namely that the defaultButton feature doesnt work inside a tabnavigator. Is this confirmed as a known bug, and is there a work around? Hank On 8/15/06, Sergey Kovalyov [EMAIL PROTECTED] wrote: Hi All! I have simple application. Authentication form with

Re: [flexcoders] where to place crossdomain.xml

2006-10-12 Thread hank williams
As Carson said, I dont think this problem has anything to do with crossdomain issues. It sounds like a regular access of a flex application on a tomcat server. I dont see the crossdomain issues.Hank On 10/12/06, Matias Nicolas Sommi [EMAIL PROTECTED] wrote: You must put the crossdomain.xml

Re: [flexcoders] Cairngorm commands - best practise

2006-10-11 Thread hank williams
So we have Tom saying do it in the delegate and Bjorn saying do it in the command. Any tie breakers? Hank On 10/11/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 11 October 2006 02:12, Robin Burrer wrote: However I also want to send the userID when I do my server request. Should

[flexcoders] how to make a hyperlink in text call a function

2006-10-11 Thread hank williams
I want to have a block of text that executes a function when the user clicks the hyperlink. Could someone give me an example or point me to the proper formatting. Thanks Hank -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] how to make a hyperlink in text call a function

2006-10-11 Thread hank williams
clickHandler. This was accomplished in the previous version of AS using asfunction. differences between ActionScript 2.0 and 3.0: http://livedocs.macromedia.com/flex/2/langref/migration.html Hope that helps, P On 10/11/06, hank williams [EMAIL PROTECTED] wrote: I want to have a block

Re: [flexcoders] how to make a hyperlink in text call a function

2006-10-11 Thread hank williams
I tried this but I am not sure how to use a TextField in flex. I cant add a TextField to a UIComponent because UIComponent.addChild expects a UIComponent as a parameter. How can I integrate these.Hank On 10/11/06, hank williams [EMAIL PROTECTED] wrote: Thanks a lot! Just what I needed.Regards

Re: [flexcoders] how to make a hyperlink in text call a function

2006-10-11 Thread hank williams
Nevermind. Just listening for a link event on a mx:Text component works fine even though there is no listed link event for an mx.control.Text object. I would imagine the reason for this is that the event bubbles from the internal textField. HankOn 10/11/06, hank williams [EMAIL PROTECTED] wrote

Re: [flexcoders] where should I place crossdomain.xml for tomcat server

2006-10-11 Thread hank williams
I probably dont quite understand your question, but if your application is in the tomcat server installed as a webapp then you dont need a crossdomain file.If you have two servers, and your flex app is in one server and your tomcat installation is on another server then the answer isnt quite as

Re: [flexcoders] where should I place crossdomain.xml for tomcat server

2006-10-11 Thread hank williams
Hey Hank, I havent sent this to the list. At one time there was a thread about the price of FDS and you mentioned that the 20k per cpu was an unreasonable price for remoting. Well we require the use of AMF3 here on a flex project but not the rest of the FDS features and it was brought

Re: [flexcoders] Re: WebOrb for Rails

2006-10-10 Thread hank williams
fired for hiring IBM have they.On 10/7/06, hank williams [EMAIL PROTECTED] wrote: BTW, almost anything enterprise is expensive to scale, except to..err..enterprises. :-)OpenAMF and OpenPHP are free, which is a lot cheaper than $20k per server. Personally, I dont consider $0 for 10 OpenAMF servers

Re: [flexcoders] Cairngorm commands - best practise

2006-10-10 Thread hank williams
Funny, I was just dealing with this same question. I did it at the command because it seemed to me that is where all the application logic should go and so any additional processing and data handling that must be done should be done in the command. But I wasnt 100% sure. That was my gut. I

Re: [flexcoders] Cairngorm commands - best practise

2006-10-10 Thread hank williams
Hmm... I'm not sure, but I dont think you understood the question. Your answer, as far as I can tell, does not seem responsive. But I'm not sure that I could repeat it and make it any clearer than robin's initial question. Perhaps you could re-read it. Regards,HankOn 10/10/06, Bjorn Schultheiss

Re: [flexcoders] Re: WebOrb for Rails

2006-10-07 Thread hank williams
why didn't Adobe release remoting solutions themselves? What do you mean? I take it http://www.adobe.com/go/flashremotingisn't what you are talking about? this does not work with flex 2.They obviously did release FDS which does remoting but is quite expensive at scale, and Cold Fusion which

Re: [flexcoders] Re: WebOrb for Rails

2006-10-07 Thread hank williams
with that??? RegardsHank On 10/7/06, hank williams [EMAIL PROTECTED] wrote: why didn't Adobe release remoting solutions themselves? What do you mean? I take it http://www.adobe.com/go/flashremotingisn't what you are talking about? this does not work with flex 2.They obviously did release FDS which

Re: [flexcoders] Re: WebOrb for Rails

2006-10-07 Thread hank williams
On 10/7/06, John C. Bland II [EMAIL PROTECTED] wrote: OpenAMF and OpenPHP = Enterprise? Again, an opinion.Lol. Boy do I hate being misquoted:OpenAMF OpenPHP != Enterprise.OpenAMF == software that can connect to J2EE highly scaled cluster of servers. Enterprise or not. I dont personally have

Re: [flexcoders] Using Remoting on Flex 2.0

2006-10-06 Thread hank williams
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hank williams Sent: Friday, October 06, 2006 3:20 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Using Remoting on Flex 2.0 I dont think the referenced article here is really on point to the question for a variety

Re: [flexcoders] Using Remoting on Flex 2.0

2006-10-05 Thread hank williams
I'd put remoteing to one side, for getting started purposes, and concentrate on drawing a chart from XML, then from XML returned by an URL. What kind of advice is this? I presume he is asking because he needs to know. He didnt say he had any problems with drawing the chart, and he hasnt said

Re: [flexcoders] Using Remoting on Flex 2.0

2006-10-05 Thread hank williams
I dont think the referenced article here is really on point to the question for a variety of reasons, the most important of which is that it is based on using FDS which he explicitly stated he doesnt want to use. Also the article is for constructing Data Acess Objects, but presumably, since he

[flexcoders] Re: Accessing resources in one project from another

2006-10-02 Thread hank williams
Ok so I posted this yesterday, but it was a sunday, and I'm sure lots more people are here today so I thought I would try again. I have two projects and I am dead in the water until I can figure out how to bring them together. Hence the urgency. Any help appreciated. Hank On 10/1/06, hank

[flexcoders] Project References Dialog in Flex Builder

2006-10-02 Thread hank williams
I cant find any documentation about the project references section of the properties dialog for projects. The documentation merely states in numerous locations that this is how you allow references to another project. But when trying to actually reference elements in the other project, they are

[flexcoders] Accessing resources in one project from another

2006-10-01 Thread hank williams
I have two project/applications that are in the same workspace. I would like to be able to access the .as and mxml files in project A from project B. I have gone into the dialog at propertiesproject references of project B and selected project A. But having done so, I still am not able to see the

Re: [flexcoders] How do you handle many transitions between many states

2006-09-27 Thread hank williams
You should be making mxml components. Components allow you to create modular progams, and each component can have different states and transitions.RegardsHankOn 9/26/06, Sam Shrefler [EMAIL PROTECTED] wrote: I'm trying to figure out a way to clean up the transitions from my application.mxml

Re: [flexcoders] New Autocomplete component (free)...feedback?

2006-09-27 Thread hank williams
Are you sure this is the right url? nothing at weblogs.macromedia.com seems to respond at all. I also tried at weblogs.adobe.com. Hank On 9/27/06, David Mendels [EMAIL PROTECTED] wrote: Hi all, FYI: http://weblogs.macromedia.com/flexteam/archives/2006/09/component_autoc. cfm We'd be

Re: [flexcoders] New Autocomplete component (free)...feedback?

2006-09-27 Thread hank williams
/2006/09/component_autoc.cfm DK On 9/28/06, hank williams [EMAIL PROTECTED] wrote: Are you sure this is the right url? nothing at weblogs.macromedia.comseems to respond at all. I also tried at weblogs.adobe.com. HankOn 9/27/06, David Mendels [EMAIL PROTECTED] wrote: Hi all, FYI: http

Re: [flexcoders] Re: Strategies for adworks in Flex2 apps?

2006-09-26 Thread hank williams
On 9/26/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 26 September 2006 03:56, Dan wrote: Right, I am knowing for a solution for that too. Though we are using FLEX1.5 is it a way to intergrate Google Adwords with it? All you need to do is add the code to the HTML wrapper, no ?

Re: [flexcoders] Re: Strategies for adworks in Flex2 apps?

2006-09-26 Thread hank williams
All you need to do is add the code to the HTML wrapper, no ? Presuming that you dont mind having an html strip that is totally out of context with the style of the rest of your application. Oh, and of course presuming that you dont need the ad words to actually look at any of the text in

<    1   2   3   4   5   >