Re: [flexcoders] Debugging flash app running in C++ app

2007-06-07 Thread Aldo Bucchi
Hi Alex, The problem is that I cannot use RUN to launch the app since it HAS to be inside the C++ app... it relies on several externalinterface calls to work. By itself it woudln't even load correctly. If I load debug versions of the app it will ask me for the IP of the debugger... not sure

[flexcoders] Flex Java, Where to Start?

2007-06-07 Thread aaronvm707
Hello, I have begun working with Flex a couple of months ago and have been learning fairly quickly. I come from a Microsoft ASP.net background, but would prefer to work with Flex Java. Can anyone suggest resources and/or books to start learning Java as it relates to Flex. There seams to be many

[flexcoders] RichTextEditor problem

2007-06-07 Thread Robs
Hi all, I am assigning a 'commentText' property from the result of a backend java call to the 'htmlText' property of the richtexteditor. But, somehow, the paragraph is getting truncated. Have checked the resultobject am getting the entire paragraph there. What could be the reason for

[flexcoders] Tile list of images to auto re-sort

2007-06-07 Thread David
Hi all, Trying to put together a back-end admin section that will allow users to get a tilelist of images and be able to drag them around, and as they drag i'd like the sort order to change, and update in the database automatically. Anyone have any idea how i'd go about that? I don't really know

[flexcoders]Faking an XMLRPC call

2007-06-07 Thread dorkie dork from dorktown
Is there a way to fake an XML RPC call? It seems like it'd be simple but I can't get it to work: mx:HTTPService id=srv url=http://www.judahfrangipane.com/blog/xmlrpc.php; fault={faultHandler(event)} result={resultHandler(event)} resultFormat=text method=POST

[flexcoders] Re: Visible Buttons

2007-06-07 Thread David
Tim, Wow! Thanks a bunch! I got pretty close but i got this one error: 1151: A conflict exists with definition linkedFormButton in namespace internal. I'm really new to flex so alot of this is just a whole other OO level then i'm use to. Below is my code for the whole page. IF you can take a

[flexcoders] EventResult to Array

2007-06-07 Thread Giro
How can I convert an eventResult to an array? I have this code: mx:HTTPService resultFormat=e4x result=updateTree(event) id=listdir_ext showBusyCursor=true method=POST url=read_dir.php useProxy=false mx:request xmlns= /mx:request /mx:HTTPService Httpservice return: dirlist

Re: [flexcoders] Load a Flash 9 SWF with loadBytes?

2007-06-07 Thread EECOLOR
Check the documentation on the flash.display.Loader class, that will get you what you need. // Now what? // Do I create a new class and associate it with the bytes // and then add it as a child to my container? // SWFHolder.addChild( ? ); The above comment would be replaced by something like

Re: [flexcoders] Re: Landscape printing in Flex

2007-06-07 Thread Tom Chiverton
On Wednesday 06 Jun 2007, archtechcomputers wrote: I even tried to design the page rotated, but when you rotate a label, you can't see it anymore :-( You need to change to an embeded font to make that bit work, but yes, when I try to print a rotated PrintDataGrid it hasn't been scaled

[flexcoders] Re: coordiates of items in a datagrid

2007-06-07 Thread Matt Maher
Alex, thanks so much! Can you tell me a bit more? I have looked through the debugger and seen the listItems but I cannot seem to figure out how to get reference to that list during runtime... Is this what subclassing will do for me? How can I do that? Thanks again for at least letting me know

Re: [flexcoders] Re: repeater child click event

2007-06-07 Thread Tom Chiverton
On Wednesday 06 Jun 2007, nhp_ny wrote: the repeater has no children property. Did you read all of http://livedocs.adobe.com/flex/201/langref/mx/core/Repeater.html ? -- Tom Chiverton Helping to synergistically reinvent cross-platform IPOs on: http://thefalken.livejournal.com

[flexcoders] Re: repeater child click event

2007-06-07 Thread nhp_ny
--- In flexcoders@yahoogroups.com, Derek Vadneau [EMAIL PROTECTED] wrote: Sorry, I responded before trying, duh. Here's some working code (modified from the docs Referencing repeated components): ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

[flexcoders] applying filters to assets to use as icon in components

2007-06-07 Thread Paolo Bernardini
How do you applying filter to assets to use as icon in components? I want to apply a shadow to an image and than use it as icon for a button. [Embed(source=myIcon.gif)] [Bindable] public var imgCls:Class; I'm trying to convert it to a BitmapAsset then apply my filters and convert back to Class

[flexcoders] Parameter passing !! I am shocked

2007-06-07 Thread Ravi Kumar Gummadi
Hi all How does flex handle parameter passing, as I understand, it is by Pass by reference. But I was having some memory leaks and playing around a few tweaks and the following snippet completely took me by surprise. // CODE START script public var obj:Object; createObject(){ obj =

[flexcoders] Formatting tabnavigator labels?

2007-06-07 Thread candysmate
Is there a way to highlight letters within the label of a tabnavigator tab label? (the user wants accelerator key reminders)

[flexcoders] Re: Flex 2 locales...

2007-06-07 Thread teracyte
Whoops. You did answer my question to #1. My apologies. --- In flexcoders@yahoogroups.com, teracyte [EMAIL PROTECTED] wrote: Thanks for the reply. I don't think you answered my question for #1 though. I am using Eclipse with the Flex Builder plug-in. If I create a new MXML and add

[flexcoders] fullscreen question

2007-06-07 Thread Bogdan BALAJ
Hi, we are looking to build a standalone app that will run in full screen. To go to fullscreen on start is easy, the only problem that I have is that when the user is pressing ESC, the player is getting back to it's window size. This might be easy also to solve with an addEventListener

[flexcoders] 2 quick chart questions

2007-06-07 Thread cruci_nz
Hi there, I just have 2 quick chart questions. 1) I read in the docs that with a line chart You can use an icon or symbol to represent each data point along the line, or show a simple line with no icons. - but I can't find any information about how to add the icon/symbol to the line. Anyone

[flexcoders] mx:List: How do you get rid of the 1 pixel gap between item renderers?

2007-06-07 Thread Arpit Mathur
This has been asked in the group before but I havent seen an answer. Does anyone know how to get rid of the 1 pixel gap between item renderers in a list ? I think Flex is trying to ensure the highlighting (or rollover or selected) works but I dont need the highlighting since the renderer itself

[flexcoders] AS2 SWF in Flex for Pdf2Swf

2007-06-07 Thread Anush Shetty
Hi, I am trying to use the AS2 SWF created from pdf2swf tool and use it in flex. All I want is to be able to flip through the SWF frames in flex. I am using LocalConnection technique for this method since Flex has some problems with Flash8 SWFs. I have defined nextFrame within LocalConnection

[flexcoders] Re: EventResult to Array

2007-06-07 Thread candysmate
--- In flexcoders@yahoogroups.com, Giro [EMAIL PROTECTED] wrote: How can I convert an eventResult to an array? I have this code: mx:HTTPService resultFormat=e4x result=updateTree(event) id=listdir_ext showBusyCursor=true method=POST url=read_dir.php useProxy=false

[flexcoders] Re: Sysdeo Tomcat Plugin

2007-06-07 Thread Everson Alves da Silva
Has anyone had success using the Tomcat Plugin from Sysdeo with Flex Builder? Yes. Just install Eclipse Java Development Tools, from eclipse update site that it will work.

[flexcoders] Re: Flex Java, Where to Start?

2007-06-07 Thread simonjpalmer
Sun has a very comprehensive online documentation of the Java language. This is a good book if you are a seasoned developer and just wanting to pick up Java Java In A Nutshell by David Flanagan, O'Reilly. Another really good book is Just Java 2 by Peter van der Linden, Sun Microsystems

[flexcoders] Modify plain text without losing html

2007-06-07 Thread hrund1k
Hello guys! How to modify plain text and at the same time save it's html formatting? (i'm working on smilies support for TextInput and TextArea and have to replace some parts of the text with spaces in order to place smilies on them). I'm thinking on direct html parsing, but i can break html

Re: [flexcoders] Parameter passing !! I am shocked

2007-06-07 Thread Roman Protsiuk
objParam is not the same reference to created object as obj. Whenever you set objParam to null it becomes null (try checking it out in your deleteObject method). But who said the obj should become null? To prepare obj for garbage collection you should set obj to null. R. On 6/7/07, Ravi Kumar

[flexcoders] Re: Modify plain text without losing html

2007-06-07 Thread hrund1k
Here is my smiley component - http://www.hrundik.ru/smiley/ SmileyTextTest.html You can download the source http://www.hrundik.ru/smiley/ SmileyText.zip Any help and comments are appreciated --- In flexcoders@yahoogroups.com, hrund1k [EMAIL PROTECTED] wrote: Hello guys! How to modify plain

RE: [flexcoders] Re: EventResult to Array

2007-06-07 Thread Giro
Dont work, if i make mx.controls.alert.show(dataArrayResult.length) this show 1 Giro. _ De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] En nombre de candysmate Enviado el: jueves, 07 de junio de 2007 12:26 Para: flexcoders@yahoogroups.com Asunto: [flexcoders] Re:

Re: [flexcoders] Modify plain text without losing html

2007-06-07 Thread Tom Chiverton
On Thursday 07 Jun 2007, hrund1k wrote: I'm thinking on direct html parsing, but i can break html code that way, for example, with :) smiley Only if you don't insert gt;:) instead. -- Tom Chiverton Helping to autoschediastically facilitate error-free design-patterns on:

Re: [flexcoders] Re: repeater child click event

2007-06-07 Thread Tom Chiverton
On Thursday 07 Jun 2007, nhp_ny wrote: yes ok,... thats what i'm working on too... but when i put the : mx:Button label=onClick click=onClick(myLB[0]);/ line inside a function, i doesn't work.. because i need to call the function from AS. Like: proivate function onInitApp():void {

[flexcoders] Re: ArrayCollection not working? Pulling out my HAIR!!!

2007-06-07 Thread Jason Ervin
If I can just get my xml into an array that would be great. I guess I am going to have to skip ArrayUtil and hand code this as before with proxyObject. Sure wish Adobe would update the arrayutil in Flex 3, or better yet make importing data a drag and drop operation. Would make this much simpiliar.

Re: [flexcoders] Modify plain text without losing html

2007-06-07 Thread Hrundik
The real problem is that i work with .getCharBoundaries and this method needs char index. And i can't get real char index by processing html, not plain text On 6/7/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 07 Jun 2007, hrund1k wrote: I'm thinking on direct html parsing, but i can

[flexcoders] Re: repeater child click event

2007-06-07 Thread nhp_ny
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 07 Jun 2007, nhp_ny wrote: yes ok,... thats what i'm working on too... but when i put the : mx:Button label=onClick click=onClick(myLB[0]);/ line inside a function, i doesn't work.. because i need to

Re: [flexcoders] Possible bug with TextInput

2007-06-07 Thread Tom Chiverton
On Wednesday 06 Jun 2007, Dmitry Miller wrote: Entering the following string (by copy/pasting) #7945;#947;#943;#945; #931;#959;#966;#943;#945; into Flex2 TextInput would result in the string displayed incorrectly. The first character of the string would appear as square. Does the font have a

[flexcoders] Re: repeater child click event

2007-06-07 Thread nhp_ny
this is my OnClick function: private function onClickCanali(obj:Object, xmlFile:String):void { var lb:LinkButton; for each (lb in lbCanali) { lb.enabled = true } obj.enabled = false; LoadXmlFile(xmlFile); } as you can see,

Re: [flexcoders] Parameter passing !! I am shocked

2007-06-07 Thread Jeffry Houser
I think you missed his point. He sent in obj as a parameter to a function. So objParam should be a reference to obj; and nulling one should definitely null the other. I do notice that the functions in the example are not declared as functions with the public function keywords. Could

[flexcoders] Re: Flex Data Services consumes messages, but no delivery to Consumer in application

2007-06-07 Thread Manohar Madhusudan Joshi
Have you tried changing network properties like throttle-inbound and throttle-outbound ? --- In flexcoders@yahoogroups.com, klumikaze [EMAIL PROTECTED] wrote: Our backend application is pumping a large number of messages through an ActiveMQ queue (upwards of 6,000 typically) to our frontend

[flexcoders] Re: fullscreen question

2007-06-07 Thread arpitmathur_80
I think there may not be an option to alter that behavior since adobe is worried that people may use the feature to take away the user's navigation and ability to move out of the experience. So the esc key is permanently tied to escaping the fullscreen experience, as far as I know. --- In

Re: [flexcoders] Re: Content overflow problem in a Box

2007-06-07 Thread Manish Jethani
On 6/6/07, de.newsight [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: What happens when you set minWidth and minHeight to 0 on the Canvas? When I set minWidth/minHeight to the Canvas I get the same behavior. The VBox is sized to the

Re: [flexcoders] Re: repeater child click event

2007-06-07 Thread Tom Chiverton
On Thursday 07 Jun 2007, nhp_ny wrote: this is my OnClick function: This has an xmlFile argument that isn't set in the inital code you posted, I'll assume it's a page variable. private function onClickCanali(obj:Object, xmlFile:String):void { var lb:LinkButton; for each (lb in

Re: [flexcoders] Re: ArrayCollection not working? Pulling out my HAIR!!!

2007-06-07 Thread Arpit Mathur
Would using an XMLListCollection help? http://livedocs.adobe.com/flex/201/langref/mx/collections/XMLListCollection.html On 6/7/07, Jason Ervin [EMAIL PROTECTED] wrote: If I can just get my xml into an array that would be great. I guess I am going to have to skip ArrayUtil and hand code this

[flexcoders] Re: repeater child click event

2007-06-07 Thread nhp_ny
mx:Repeater id=rCanali dataProvider={xmlCanali.canale} mx:LinkButton id=lbCanali label={rCanali.currentItem.title} width=100% textAlign=left click=onClickCanali (event.currentTarget, event.currentTarget.getRepeaterItem ().xmlfile);/ /mx:Repeater the xml file is there.

[flexcoders] Re: repeater child click event

2007-06-07 Thread nhp_ny
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 07 Jun 2007, nhp_ny wrote: this is my OnClick function: This has an xmlFile argument that isn't set in the inital code you posted, I'll assume it's a page variable. private function

[flexcoders] Re: ASDoc on a Mac

2007-06-07 Thread joshbuhler
I know it's a belated answer, but I was having the same problem until about 10 minutes ago on my MacBook Pro. However, ASDoc was working fine on my PowerMac. Until recently, I've been using Xcode the Flex SDK on the PowerMac - so I had the SDK installed at: /Developer/SDKs/Flex I also have

[flexcoders] Re: Landscape printing in Flex

2007-06-07 Thread archtechcomputers
How did you get the reading of the orientation to work? print orientation is a property of PrintJob, and not FlexPrintJob. I have a page designed in a vbox component, which contains my form to be printed. PrintJob uses a sprite. The LiveDocs show to do something like: var pj:PrintJob = new

RE: [flexcoders]Faking an XMLRPC call

2007-06-07 Thread Peter Farland
I'd check with an HTTP sniffer to see just what exactly is being sent on the wire for the body of the request. There are two known issues with the Flash Player XML type that HTTPService does not work around correctly in 2.0. The scenario is that if an XML value is provided as the body of a POST

[flexcoders] Re: Parameter passing !! I am shocked

2007-06-07 Thread wpfeiffe
When it is said that the object is passed by reference versus passed by value, what is being implied is that a copy of the object is NOT being sent, but a reference instead is sent. The reference itself is STILL contained within a variable scoped to the method (the parameter). Therefore, nulling

[flexcoders] Re: repeater child click event

2007-06-07 Thread nhp_ny
and also ... another thig that i just saw.. ... selectOnly(someLabel); can't do that because i don't know the name of the linkbutton label. the linkbuttons get their labels from a xml file. thats why i was passing all those objects to the onClickCanali function.

[flexcoders] Re: fullscreen question

2007-06-07 Thread Bogdan BALAJ
Yes, you're right. The ESC key will switch FS off. The idea is to switch back on if I detect that the application is not in fullscreen. This is something I can't manage to solve in Flex. B. --- In flexcoders@yahoogroups.com, arpitmathur_80 [EMAIL PROTECTED] wrote: I think there may not be

Re: [flexcoders] Re: Mixing styles in a single component

2007-06-07 Thread Guido
Thank you! It really helped n_n On 6/6/07, candysmate [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Guido [EMAIL PROTECTED] wrote: Hi, my question is a simple one, yet I can't seem to fancy a way of doing this. Basically, I want to know how

[flexcoders] Caching issue in HTTPService

2007-06-07 Thread Christopher Olsen
Anyone ever have an issue where an HTTPService result gets cached? I'm use an httpservice to call a script which generates html however after the time run it's always returning the same results the *data* appears to be cached -Christopher

[flexcoders] Re: Nested classes picking up CSS

2007-06-07 Thread Geoffrey
I guess it's imposibble Is there a good CSS reference in the Flex docs somewhere? I can't seem to find it. --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: Here's the basic setup. On display 1 there is Panel A, on display 2 there is Panel B. Both Panels contain

Re: [flexcoders] RichTextEditor problem

2007-06-07 Thread Tom Chiverton
On Thursday 07 Jun 2007, Robs wrote: What could be the reason for the text to get truncated? Broken HTML ? -- Tom Chiverton Helping to challengingly cluster dot-com data on: http://thefalken.livejournal.com This email is sent for and on

Re: [flexcoders] Modify plain text without losing html

2007-06-07 Thread Daniel Freiman
I wouldn't parse the html, but instead I'd let the TextField handle it: First, if you don't know how to access the TextField of a text control, you can read up on it here http://nondocs.blogspot.com/2007/05/faqtext.html. Second, use TextField.replaceText() to alter the text property. This will

Re: [flexcoders] Unable to disable to vbox - Potential Bug?

2007-06-07 Thread Daniel Freiman
Sounds like like validateDisplayList() or validateNow() needs to be called manually on the form, although I don't understand why these (or an equivalent) wouldn't be called automatically. Is this a Form, or a class that extends Form? Dan Freiman nondocs http://nondocs.blogspot.com On 6/6/07,

[flexcoders] Re: Caching issue in HTTPService

2007-06-07 Thread nhp_ny
--- In flexcoders@yahoogroups.com, Christopher Olsen [EMAIL PROTECTED] wrote: Anyone ever have an issue where an HTTPService result gets cached? I'm use an httpservice to call a script which generates html however after the time run it's always returning the same results the *data*

RE: [flexcoders] PDF in Flex

2007-06-07 Thread Harald Dehn
Not all of our clients want to install the Apollo runtime. For the adobe folks, it would be fantastic , when a future version of the flash-player could directly render (with the help of an installed acrobat reader on the client maschine) pdf-inside a flash movie… Harald From:

Re: [flexcoders] Caching issue in HTTPService

2007-06-07 Thread Guido
I've had the same issue and I wasn't able to bypass it. In my case, I access an XML file throug HTTPService, and I always get the same XML even if I modify (or even delete!) the file from the server On 6/7/07, Christopher Olsen [EMAIL PROTECTED] wrote: Anyone ever have an issue where an

Re: [flexcoders] Parameter passing !! I am shocked

2007-06-07 Thread Erik Price
On 6/7/07, Guido [EMAIL PROTECTED] wrote: I'm not really familiar with technical specifications on how AS manages argument references. However, I believe this has more to do with OO Paradigm than with AS. This is unrelated to the issue at hand. On 6/7/07, Jeffry Houser [EMAIL PROTECTED]

Re: [flexcoders] Parameter passing !! I am shocked

2007-06-07 Thread Guido
I'm not really familiar with technical specifications on how AS manages argument references. However, I believe this has more to do with OO Paradigm than with AS. Let's say this code is in a myClass Class. This makes 'obj' a myClass instance variable. This makes the object referenced by 'obj'

[flexcoders] Flex Component Kit Issue: mx.core.IFlexDisplayObject marked as extern

2007-06-07 Thread Jurgen Beck
I am getting an error in a large Flex project when trying to use a SWC that was produced with the Flex Component Kit in Flash CS3: Inconsistant linkage in DownloadProgress.swc(mx/core/IFlexDisplayObject) - 'mx.core:IFlexDisplayObject' is marked as extern, but 'mx.core.IFlexDisplayObject' is

RE: [flexcoders] Caching issue in HTTPService

2007-06-07 Thread Peter Farland
Can your script also set HTTP response no-cache and expires headers? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Guido Sent: Thursday, June 07, 2007 10:22 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Caching issue in

Re: [flexcoders] Caching issue in HTTPService

2007-06-07 Thread Christopher Olsen
Yeah from my experiences with the flash player it appears that it uses the browser for network connections to fetch files... and the browser does the caching I have a poor workaround i modify the httpservice url and keep appending a timestamp to the url but there must be a better way?

Re: [flexcoders] Parameter passing !! I am shocked

2007-06-07 Thread Guido
that's what I meant n_n On 6/7/07, Erik Price [EMAIL PROTECTED] wrote: On 6/7/07, Guido [EMAIL PROTECTED] ptevan%40gmail.com wrote: I'm not really familiar with technical specifications on how AS manages argument references. However, I believe this has more to do with OO Paradigm than with

Re: [flexcoders] Re: repeater child click event

2007-06-07 Thread Tom Chiverton
On Thursday 07 Jun 2007, nhp_ny wrote: selectOnly(someLabel); can't do that because i don't know the name of the linkbutton label. the linkbuttons get their labels from a xml file. thats why i was passing all those objects to the onClickCanali function. Go via lbCanali.dataProvider[0] then.

Re: [flexcoders] Parameter passing !! I am shocked

2007-06-07 Thread Alias™
No, because the parameter reference should be a local variable and hence a different reference to the same object, no? Alias On 07/06/07, Jeffry Houser [EMAIL PROTECTED] wrote: I think you missed his point. He sent in obj as a parameter to a function. So objParam should be a reference to

[flexcoders] ASDoc for MXML components?

2007-06-07 Thread borekbe
Hi all Is there a way to generate API documentation from MXML components? So far, I thought that MXML and ActionScript are just different ways to express the same things but if I can't generate documentation, this practically means that I can't use MXML for component development at all. I hope

Re: [flexcoders] Caching issue in HTTPService

2007-06-07 Thread Christopher Olsen
Peter, Thanks for the thought I didn't think about that... But it's tested and it worked... -Christopher Peter Farland wrote: Can your script also set HTTP response no-cache and expires headers? *From:*

Re: [flexcoders] Modify plain text without losing html

2007-06-07 Thread Hrundik
Thank you! It did the trick! On 6/7/07, Daniel Freiman [EMAIL PROTECTED] wrote: I wouldn't parse the html, but instead I'd let the TextField handle it: First, if you don't know how to access the TextField of a text control, you can read up on it

[flexcoders] Re: JavaFX

2007-06-07 Thread Rohan Pinto
since you mentioned Java, have u looked at JavaFX ? http://www.sun.com/software/javafx/index.jsp Rohan http://opentube.info --- In flexcoders@yahoogroups.com, simonjpalmer [EMAIL PROTECTED] wrote: Sun has a very comprehensive online documentation of the Java language. This is a good book

Re: [flexcoders] Caching issue in HTTPService

2007-06-07 Thread Guido
Is there a way to specify the HTTPService to no-cache mode? If I access the URL with a browser I can get the *real* destination with CTRL+F5... I don't know how to make an HTTPService use this kind of request; I don't even know if it is possible. Anyone? On 6/7/07, Christopher Olsen [EMAIL

Re: [flexcoders] Re: ArrayCollection not working? Pulling out my HAIR!!!

2007-06-07 Thread Guido
We are all hoping for a flex equivalent to the commons.collections for java n_n On 6/7/07, Alex Harui [EMAIL PROTECTED] wrote: I don't think ArrayUtil is as smart as you wish it was. You may have to write your own conversion. -- *From:*

[flexcoders] Re: Visible Buttons

2007-06-07 Thread Tim Hoff
That error usually means that you have two objects with the same name. -TH --- In flexcoders@yahoogroups.com, David [EMAIL PROTECTED] wrote: Tim, Wow! Thanks a bunch! I got pretty close but i got this one error: 1151: A conflict exists with definition linkedFormButton in namespace

Re: [flexcoders] PDF in Flex

2007-06-07 Thread Tom Chiverton
On Thursday 07 Jun 2007, Ben Marchbanks wrote: I would be shocked if the next release of Flex did not include support of PDF rendering as has been announced for production release of Apollo. It just makes too much sense to add it to the sister product as well. What, add 10meg of bloat to the

[flexcoders] String.Format???

2007-06-07 Thread gary_mangum
I'm sure I have just missed it, but I am looking for the string function that handles formatting with parameters: var pageNumber:int = 5; String.Format(Are you sure you want to delete page {0}?, pageNumber); How do you do this in Action Script? Thanks!

Re: [flexcoders] PDF in Flex

2007-06-07 Thread Tom Chiverton
On Thursday 07 Jun 2007, Harald Dehn wrote: Not all of our clients want to install the Apollo runtime. For the adobe folks, it would be fantastic , when a future version of the flash-player could directly render (with the help of an installed acrobat reader on the client maschine) pdf-inside

Re: [flexcoders] Re: Landscape printing in Flex

2007-06-07 Thread Tom Chiverton
On Thursday 07 Jun 2007, archtechcomputers wrote: How did you get the reading of the orientation to work? I didn't. -- Tom Chiverton Helping to interactively differentiate user-centric platforms on: http://thefalken.livejournal.com This

Re: [flexcoders] Caching issue in HTTPService

2007-06-07 Thread Christopher Olsen
Guido, I did it on the server side with my php script that generates the XML but I see HTTPService has a .headers That's a good place to look to see if you can specify it there. -Christopher Guido wrote: Is there a way to specify the HTTPService to no-cache mode? If I access the URL with

Re: [flexcoders] PDF in Flex

2007-06-07 Thread Ben Marchbanks
I would be shocked if the next release of Flex did not include support of PDF rendering as has been announced for production release of Apollo. It just makes too much sense to add it to the sister product as well. Harald Dehn wrote: Not all of our clients want to install the Apollo runtime.

[flexcoders] Re: still having trouble with breakpoints

2007-06-07 Thread Pan Troglodytes
Realized some info that might be relevant. This seems to happen in a .as file included by a Script tag. Not sure if I've run into it in a regular AS class file. On 5/9/07, Pan Troglodytes [EMAIL PROTECTED] wrote: So I have version 2.0.155577 now and it solved a lot of my problems with

[flexcoders] Handling Special Characters in XML

2007-06-07 Thread Daniel Freiman
How do I handle whitespace (or other special characters) in the name of an XML tag. For example: my name/. It seems that the XML spec suggests inserting hex symbols into the tag name. Is there any functionality in Flex that does this automatically? Daniel Freiman

RE: [flexcoders] ASDoc for MXML components?

2007-06-07 Thread Stephen Gilson
There is only limited support in ASDoc for MXML files. - All ActionScript entities defined in an mx:Script block, such as properties and methods, appear in the output. Items defined in MXML tags do not appear in the ASDoc output. - You can only insert an ASDoc comment in an mx:Script block of

Re: [flexcoders] String.Format???

2007-06-07 Thread Tom Chiverton
On Thursday 07 Jun 2007, gary_mangum wrote: I'm sure I have just missed it, but I am looking for the string function that handles formatting with parameters: var pageNumber:int = 5; String.Format(Are you sure you want to delete page {0}?, pageNumber); Are you sure you want to delete page {

[flexcoders] Re: repeater child click event

2007-06-07 Thread nhp_ny
thanks, thanks and thanks.

[flexcoders] Re: Flex Java, Where to Start?

2007-06-07 Thread aaronvm707
Thank you very much for all the info. I think the key word I was looking for was EJB. Is this what I will develop in order to start using Flex Data Services? Any suggestions on the server software needed to run EJB J2EE? Again I am moving from a Microsoft, .net, IIS environment so I am completly

Re: [flexcoders] Re: still having trouble with breakpoints

2007-06-07 Thread Tom Chiverton
On Thursday 07 Jun 2007, Pan Troglodytes wrote: Realized some info that might be relevant. This seems to happen in a .as file included by a Script tag. Not sure if I've run into it in a regular AS class file. I certainly recall other people having the same problem, but not a solution. --

[flexcoders] Como pasar parametro XMLListCollection por HTTPService ?

2007-06-07 Thread [EMAIL PROTECTED]
Sorry, but I can't speak English a little., and I have a problem with HTTPService and XMLListCollection. Estimados Listeros: Necesito pasar un parámetro XMLListCollection por HTTPService a una JSP o Servlet. He utilizado un DataGrid, para el manejo de la información, y luego necesito pasar

Re: [flexcoders] PDF in Flex

2007-06-07 Thread Paul deCoursey
Tom Chiverton wrote: On Thursday 07 Jun 2007, Ben Marchbanks wrote: I would be shocked if the next release of Flex did not include support of PDF rendering as has been announced for production release of Apollo. It just makes too much sense to add it to the sister product as well.

Re: [flexcoders] ASDoc for MXML components?

2007-06-07 Thread Daniel Freiman
It looks like the mx:Metadata tag might also allows for comments, but i haven't personally confirmed that. See RichTextEditor.mxml for what I'm talking about. Daniel Freiman nondocs http://nondocs.blogspot.com On 6/7/07, Stephen Gilson [EMAIL PROTECTED] wrote: There is only limited

Re: [flexcoders] PDF in Flex

2007-06-07 Thread Christopher Olsen
Well if we want to add bloat an html render would be nice since the IFRAME hack is above the player itself Tom Chiverton wrote: On Thursday 07 Jun 2007, Ben Marchbanks wrote: I would be shocked if the next release of Flex did not include support of PDF rendering as has been announced for

Re: [flexcoders] Re: repeater child click event

2007-06-07 Thread Tom Chiverton
On Thursday 07 Jun 2007, nhp_ny wrote: thanks, thanks and thanks. tom:Bow / :-) -- Tom Chiverton Helping to dynamically expedite out-of-the-box e-services on: http://thefalken.livejournal.com This email is sent for and on behalf of

Re: [flexcoders] PDF in Flex

2007-06-07 Thread Ben Marchbanks
I doubt that adding PDF support to Flex would come at such an expense. Apollo requires Adobe Reader for PDF rendering which does all the heavy lifting. Ben Marchbanks ::: alQemy ::: transforming information into intelligence http://www.alQemy.com ::: magazooms ::: digital magazines

Re: [flexcoders] PDF in Flex

2007-06-07 Thread Tom Chiverton
On Thursday 07 Jun 2007, Paul deCoursey wrote: easily be less that 100k. If I had the time I would attempt it myself, I'm mostly afraid that Adobe would just go ahead and do it before I could display my success. Well, libpoppler and libpoppler-qt (PDF rendering library's for 'nix) come in at

[flexcoders] Re: still having trouble with breakpoints

2007-06-07 Thread beecee1977
I'll just echo that I see the same thing (again only in .as files included by script tags). For me it's usually after line 500 or so, but no amount of cleaning the project or closing reopening Flex fixes it for me. So I do lots of moving functions to where I can debug them! :-) --- In

Re: [flexcoders] PDF in Flex

2007-06-07 Thread Tom Chiverton
On Thursday 07 Jun 2007, Christopher Olsen wrote: Well if we want to add bloat an html render would be nice since the IFRAME hack is above the player itself Why does the Flash player (that runs in a browser) need a HTML renderer ? OK, so RichTextEditor has issues, but no one is seriously that

Re: [flexcoders] PDF in Flex

2007-06-07 Thread Christopher Olsen
Tom Chiverton wrote: On Thursday 07 Jun 2007, Christopher Olsen wrote: Well if we want to add bloat an html render would be nice since the IFRAME hack is above the player itself Why does the Flash player (that runs in a browser) need a HTML renderer ? OK, so RichTextEditor has issues,

Re: [flexcoders] Re: Flex Java, Where to Start?

2007-06-07 Thread Robert Cadena
Hi Aaron, You don't need EJB or J2EE to start with FDS. In fact, I would recommend trying familiarize yourself with plain FDS before attempting to integrate with enterprise java. What you do need is a servlet container. Typically tomcat. FDS comes with a lite version of another servlet

Re: [flexcoders] PDF in Flex

2007-06-07 Thread Paul deCoursey
Tom Chiverton wrote: On Thursday 07 Jun 2007, Christopher Olsen wrote: Well if we want to add bloat an html render would be nice since the IFRAME hack is above the player itself Why does the Flash player (that runs in a browser) need a HTML renderer ? OK, so RichTextEditor has

RE: [flexcoders] Re: Flex Java, Where to Start?

2007-06-07 Thread Peter Farland
I would skip EJB for now. You don't need to know about EJB to use FDS (note FDS was recently re-branded as LiveCycle Data Services ES 2.5 which is the latest release available). The concepts behind web apps in .NET are very close to the concepts of J2EE. There should be tons of web postings

Re: [flexcoders] PDF in Flex

2007-06-07 Thread Christopher Olsen
Paul, Well what I'm working on is a little more involved then a single flex app running inside a website... It's more of a flex/flash app player/environment... It allows for you to find flex apps run them build your own custom tailored environments with apps you like and switch between

[flexcoders] Re: PDF in Flex

2007-06-07 Thread James
Fine isn't good enough for me. I'd like to jump on the bandwagon, too. Surely Adobe could make a fake html component that actually implements a floating div or iframe or something? And then you could fluidly use htmlObject.url = http://www.example.com;, etc.

  1   2   >