[flexcoders] Re: Use my ou namespace with manifest without swc?

2008-05-28 Thread danielvlopes
Help? --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: Hello, I have a question about usage of manifest.xml and flex-config.xml. I want create my own namespace for all my folders and componnents but i don't want create a swc for those comps. I just want use

[flexcoders] Re: Use my ou namespace with manifest without swc?

2008-05-28 Thread danielvlopes
Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Wednesday, May 28, 2008 1:27 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Use my ou namespace with manifest without swc? Help

[flexcoders] Use my ou namespace with manifest without swc?

2008-05-25 Thread danielvlopes
Hello, I have a question about usage of manifest.xml and flex-config.xml. I want create my own namespace for all my folders and componnents but i don't want create a swc for those comps. I just want use the namespace referenced to my own manifest. I found some ways to do this creating the

[flexcoders] Re: Adobe SDK, why flex comps accept bind in properties and custom comps dont?

2008-02-19 Thread danielvlopes
that is. For instance, pass a reference to the controlling component into the custom component, and then read and set maxChars in creationComplete. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent

[flexcoders] Re: Adobe SDK, why flex comps accept bind in properties and custom comps dont?

2008-02-15 Thread danielvlopes
Sorry Tracy, i don't know what talking about with Perhaps an invalidate of some kind? can you explain more? Thanks. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: The OP is using a public setter function to implement his public property, instead of a public

[flexcoders] Re: Adobe SDK, why flex comps accept bind in properties and custom comps dont?

2008-02-13 Thread danielvlopes
to be consistent with the actual component and having different types for the setter and getter is just bad practice.. Paul - Original Message - From: danielvlopes [EMAIL PROTECTED] mailto:danielvlopes%40yahoo.com To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com

[flexcoders] Re: Adobe SDK, why flex comps accept bind in properties and custom comps dont?

2008-02-10 Thread danielvlopes
PROTECTED] wrote: You have some other problem. Custom components work fine doing this. How have you implemented the max property in the component? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes

[flexcoders] Re: Adobe SDK, why flex comps accept bind in properties and custom comps dont?

2008-02-08 Thread danielvlopes
Ops, sorry... The working example is this: com:MyLabel id=myLabel max=300 / and adobe comps accept something like this (justa example): mx:TextArea width={myLabel.height} --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 07 Feb 2008, danielvlopes wrote

[flexcoders] Adobe SDK, why flex comps accept bind in properties and custom comps dont?

2008-02-07 Thread danielvlopes
Hello, i observe a strange behavior when i try extend label component to do a character counter. I try pass to my comp something like this: com:MyLabel max={myTextArea.lenght} / max is a custom property, i create getter and setter for this. But if i use direct value, without bind everything

[flexcoders] Sugestion for ComboBox component

2007-12-28 Thread danielvlopes
Hello everybody, i want make a sugestion for Adobe Flex Team, and i know some members of Flex team participate here, in my projects when i use combobox to recover data from database and selected item of this combo must be set to the data recorded in database i do loops in entire dataprovider to

[flexcoders] Re: Sugestion for ComboBox component

2007-12-28 Thread danielvlopes
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Friday, December 28, 2007 1:32 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Sugestion for ComboBox component Hello everybody, i want make a sugestion for Adobe Flex Team

[flexcoders] Re: Sugestion for ComboBox component

2007-12-28 Thread danielvlopes
not the case. Also, break; the loop inside the if(). No point in continuing the loop once the match is found. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Friday, December 28, 2007 2:30 PM

[flexcoders] Re: Sugestion for ComboBox component

2007-12-28 Thread danielvlopes
in continuing the loop once the match is found. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Friday, December 28, 2007 2:30 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Sugestion

[flexcoders] Re: SWF File Size

2007-12-21 Thread danielvlopes
In my opnion best way to reduce file size is frameworkcaching (now the flash player release work and you can make update automatically from your html wrapper), using modules when you get big app, try not embed anything... --- In flexcoders@yahoogroups.com, Samuel R. Neff [EMAIL PROTECTED] wrote:

[flexcoders] Question about flash.event ... someone can help?

2007-12-18 Thread danielvlopes
Hello, I had public function inside component and this function receive as argument event, like this: public function onUploadCanceled(event:Event):void { And now i want call this function outside of component, but i don't know how i will pass an event as argument for this function, i try this

[flexcoders] NameSpace problem in ViewStack

2007-12-12 Thread danielvlopes
Hello, i had some problem in viewstack. We had admin area made in flex, and in this place i had viewstack that control views of my app, like this: mx:Module xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute percentWidth=100 percentHeight=100

[flexcoders] Re: Richtexteditor, html text generate really bad html !!!

2007-11-29 Thread danielvlopes
sugestions for the team flex to help improve? I think some improvements in that component would be simple enough to let it useful. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 28 Nov 2007, danielvlopes wrote: you try put your =HTML=text in one HTML page

[flexcoders] Re: Richtexteditor, html text generate really bad html !!!

2007-11-29 Thread danielvlopes
richtexteditor to fix this problems but this will fix only my problem and not for comunity. Thanks --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 29 Nov 2007, danielvlopes wrote: I already do substitutions with regular expression to clean up the giant size

[flexcoders] Re: Shouldn't we use Flex to built website

2007-11-28 Thread danielvlopes
Sure you can use flex for frontoffice of your e-commerce website, sometimes those flex files, if using module and frameworkcaching, will be smaller than ajax and html files. And for change layout you can use CSS, go adobe site and search for flex store sample... this sample do this layout changing

[flexcoders] Richtexteditor, html text generate really bad html !!!

2007-11-27 Thread danielvlopes
I first impression about richtexteditor everything is good, but when you try put your =HTML=text in one HTML page, everything is really bad. First problem with size, all text will be HUGE. Second problem, the HTML is not w3c valid. Third problem, if you hit enter to breakline, this component

[flexcoders] Bug in rich text editor invalidate the html text

2007-11-22 Thread danielvlopes
This problem is not really bug, but semantic problem i html text generated by this comp. The font size html tag generated by rte use 10 and in flex its ok but in html text go huge, why adobe don't change to style:font-size or use size in pixel? This problem invalidate this comp to use in

[flexcoders] Re: Block entire application while in transaction

2007-11-20 Thread danielvlopes
, danielvlopes [EMAIL PROTECTED] wrote: Hello, i had application with stacks, buttons, inputs and etc... when user click in insert button it start upload and database insert, but while those operations happening user can click in other parts of application, exist some way to set enabled to false

[flexcoders] Re: AMFPHP 1.9 security problem

2007-11-19 Thread danielvlopes
, danielvlopes [EMAIL PROTECTED] wrote: Now i understando how use beforefilter, but my question is: I had a little big app in flex using amfphp, i had 11 classes inside services folder, but the problem is if any user create a flex app and point the path to my gateway (using absolute path

[flexcoders] Re: AMFPHP 1.9 security problem

2007-11-18 Thread danielvlopes
login, logout methods in all my classes? Exist some way to create those authencation methods in one place and use this for all amfphp requests? Thanks for attention and thanks for the link. --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: Thanks Muzak, i will try use

[flexcoders] Block entire application while in transaction

2007-11-18 Thread danielvlopes
Hello, i had application with stacks, buttons, inputs and etc... when user click in insert button it start upload and database insert, but while those operations happening user can click in other parts of application, exist some way to set enabled to false for entire application while transactions

[flexcoders] Re: Problem with keyboard - IE7 + Vista

2007-11-17 Thread danielvlopes
Opa, e ai Ved blz? The Alex tips works? I had windows vista and many flex apps and works fine, but i have problems in FF when use wmode transparent in html wrapper. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Uninstall your current flash player, and get one version

[flexcoders] Re: AMFPHP 1.9 security problem

2007-11-16 Thread danielvlopes
- From: danielvlopes [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, November 16, 2007 5:21 AM Subject: [flexcoders] Re: AMFPHP 1.9 security problem I found this topic in sephirot forum, http://www.sephiroth.it/phpBB/showthread.php?t=7966, they said use authenticate class

[flexcoders] Re: Adobe Share and PDF inside Flex

2007-11-16 Thread danielvlopes
I'm not sure but i think in case of Adobe Share the pdf area converted to flash document... i try find some components to visualize pdf inside flex but i only found adobe tool can convert pdf to flash document. --- In flexcoders@yahoogroups.com, frank_sommers [EMAIL PROTECTED] wrote: Hi, I

[flexcoders] Re: AMFPHP 1.9 security problem

2007-11-15 Thread danielvlopes
I think this is huge problem, anyone had any idea to fix this or best way to don't let bad users access the methods? --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: Understand, i thinking create session in PHP and when flex comunicate to php send the session to check

[flexcoders] Re: AMFPHP 1.9 security problem

2007-11-15 Thread danielvlopes
1.2 and i using 1.9beta 2 . Anyone can help? --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: I think this is huge problem, anyone had any idea to fix this or best way to don't let bad users access the methods? --- In flexcoders@yahoogroups.com, danielvlopes

[flexcoders] Re: AMFPHP 1.9 security problem

2007-11-14 Thread danielvlopes
password for access methods, it's not possible to make in 1.9? --- In flexcoders@yahoogroups.com, Adnan Doric [EMAIL PROTECTED] wrote: danielvlopes wrote: Hello, i'm using amfphp 1.9 beta2 to make comunication between php and flex, but i had some question about security when use amfphp

[flexcoders] Re: Problem with events, how event dispatched when state change?

2007-11-12 Thread danielvlopes
Hello Ralf, i'm using a binding but the problem is my combo had array collection and labelfield of combo is nome, for that reason i must loop over my dataprovider of combobox to find the nome saved in database and select that nome in combo... i had 5 combobox and i not sure create 5 public var for

[flexcoders] How set combobox item saved in database

2007-11-11 Thread danielvlopes
Hello, i had dataprovider loaded from database, and this selected label is saved on database in other table. But when user must edit your data how i initialize the combobox on edit form with selected item in you previous selected item? I try this, but i don't know it is the best way:

[flexcoders] Problem with events, how event dispatched when state change?

2007-11-11 Thread danielvlopes
Hello, I had problem, i had one viewstack this viewstack had a stack for add, one for show and other for edit content received from database. In my edit screen i need some content of fields need to be updated after saver first time, i had a method to do this, but i don't know when this metod

[flexcoders] Re: Background pattern in Flex like in CSS

2007-11-10 Thread danielvlopes
); addChild (container); } ]] /mx:Script mx:Image id=imgBg visible=false source=../imagens/comum/bg.jpg / /mx:Application --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED

[flexcoders] Re: Background pattern in Flex like in CSS

2007-11-10 Thread danielvlopes
Ok, thanks Muzak. --- In flexcoders@yahoogroups.com, Muzak [EMAIL PROTECTED] wrote: You have to wait for the image to load (or embed the jpg). Listen for the complete event on the Image component instance. - Original Message - From: danielvlopes [EMAIL PROTECTED] To: flexcoders

[flexcoders] Re: Resize Flex application acording of content

2007-11-09 Thread danielvlopes
%5BFK_PERFECT_PIXEL_HD_ENGINE%3Bfalse%5D%5BFK_PIXEL_PLUS_HD%3Bfalse%5D%5BFK_PIXEL_PLUS%3Bfalse%5D%5BFK_CRYSTAL_CLEAR%3Bfalse%5D%5BFK_FULL_HD_1080P%3Bfalse%5D%5BFK_HD_READY%3Bfalse%5D%5BFK_HDMI_OR_DVI%3Bfalse%5D%5BFK_DIGITAL_MEDIA_READER%3Bfalse%5D%5Bcompare%3Bfalse%5D --- In flexcoders@yahoogroups.com, danielvlopes

[flexcoders] Resize Flex application acording of content

2007-11-09 Thread danielvlopes
Hello, i someone can help with this question? How can i resize flex application acording with the content? Like this site http://www.consumer.philips.com/consumer/pt/br/consumer/ce/p/consumer/consumer_landing_page Thanks.

[flexcoders] Re: Resize Flex application acording of content

2007-11-09 Thread danielvlopes
I think the guys of philios use this http://jquery.com/plugins/project/dimensions --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: Opps i post the wrong link, the right is this: http://www.consumer.philips.com/consumer/pt/br/consumer/cc/_categoryid_TV_CA_BR_CONSUMER

[flexcoders] Re: Resize Flex application acording of content

2007-11-09 Thread danielvlopes
if js don't had event for this? --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: You can try calling javascript to resize From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Friday, November

[flexcoders] Re: Resize Flex application acording of content

2007-11-09 Thread danielvlopes
] On Behalf Of danielvlopes Sent: Friday, November 09, 2007 10:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Resize Flex application acording of content Hello, my application in flex had 1200 pixels of height, if i not specify height it can resize to content automatically

[flexcoders] Background pattern in Flex like in CSS

2007-11-09 Thread danielvlopes
Hello, how can i do backgrounds with pattern in flex, exactly like we can do in HTML when use background-image and small picture repeat in entire website background? I try use background image but my picture be streched, and i try use beginfillbitmap but din't work to. Anyone can help? Thanks.

[flexcoders] Re: flash player 9.0.60

2007-10-28 Thread danielvlopes
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Saturday, October 27, 2007 2:47 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] flash player 9.0.60 Hello, Anyone know when adobe will release flash player 9.0.60 for every user

[flexcoders] Re: Foreign Language Characters

2007-10-27 Thread danielvlopes
Hello Shaun, what happen when your user post special text? You flex comp show error imediately on only save wrong in database? If your comps showing error when user typing problem is wmode of your html wrapper, in firefox flashplayer had a bug... If is in database and you using amfphp, you can

[flexcoders] flash player 9.0.60

2007-10-27 Thread danielvlopes
Hello, Anyone know when adobe will release flash player 9.0.60 for every user? If i'm not wrong, i think flash player 9.0.60 only can be downloaded from labs and in adobe site the final release is 9.0.47 I don't know if im right, but html wrapper generated by flex builder template only can

[flexcoders] flash player 9.0.60

2007-10-25 Thread danielvlopes
Hello, Anyone know when adobe will release flash player 9.0.60 for every user? If i'm not wrong, i think flash player 9.0.60 only can be downloaded from labs and in adobe site the final release is 9.0.47 I don't know if im right, but html wrapper generated by flex builder template only can

[flexcoders] Re: Flex is becoming unviable

2007-10-23 Thread danielvlopes
I'm absulutely sure flex had brilhant future... It's really amazing plataform and the comunnity is really good and everyone help everyone especially members of flex team inside adobe. Even the software is not open source (Flex Builder and Flash) the professional inside adobe allway listening us

[flexcoders] Re: Flex is becoming unviable

2007-10-21 Thread danielvlopes
I think the framework caching is right way to make swf files smaller. But even i know not all apps for flash player not use flex framework i think this 500kb framework file must be loaded not when user try use some flex app, but in stealth like flash player update (i don't know it is possible) but

[flexcoders] Re: Flex is becoming unviable

2007-10-19 Thread danielvlopes
500kb is nothing when use fast connections but in dial-up is huge problem and my app if for brazillian public, here only 70% of users had fast connections. But i think this is good price to pay. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 18 Oct 2007,

[flexcoders] Re: Framework Caching not working

2007-10-19 Thread danielvlopes
. --- In flexcoders@yahoogroups.com, danielvlopes danielvlopes@ wrote: Many thanks Darrell, now i uderstand why getting error. And -static-rsls=false keep my build.xml much more clean and easy to read, and avoid configuration problems. Thanks again. Just one more question about

[flexcoders] Re: Framework Caching not working

2007-10-18 Thread danielvlopes
your sdk's framework RSLs directory to the same directory where your application is deployed. -Darrell --- In flexcoders@yahoogroups.com, danielvlopes danielvlopes@ wrote: Hello Darrell, i trying to do this: -runtime-shared-library-path=C:\3.0.0 \frameworks\rsls

[flexcoders] Re: Problems do make framework caching work

2007-10-18 Thread danielvlopes
I fix this with Darrell Loverin and Alex Harui help in this link http://tech.groups.yahoo.com/group/flexcoders/message/91096 --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: Hello Alex, i try upload the swf's files generated and everything still white and nothing

[flexcoders] Re: Flex is becoming unviable

2007-10-18 Thread danielvlopes
I'm sure i will note rebuild the project, i'm realy like flex and adobe products, but i will waiting some months and the final release to use flex in small websites and app.(When more user has dowloaded framework :-)) Only reason i prefer rsl inside player is minimize initial dowloadn time. But

[flexcoders] Re: Problems do make framework caching work

2007-10-17 Thread danielvlopes
Hello Alex, i try upload the swf's files generated and everything still white and nothing happen, when i compile em builder em export release everything work fine and framework caching to. This is the content of file you ask in last email: package { import flash.text.Font; import

[flexcoders] Problems do make framework caching work

2007-10-16 Thread danielvlopes
Hello, i had a question about Framework caching on Flex 3 beta 2. I had project, and i use ANT for compile... And i using rsl for let swf smaller and separte framework file, naturaly this framework file should be loaded one time and never quicked out of cache. But not is this what happening, i

[flexcoders] Re: Problems do make framework caching work

2007-10-16 Thread danielvlopes
.swf will be loaded the very first time you run the app, then it should never get loaded again. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Tuesday, October 16, 2007 7:50 AM To: flexcoders@yahoogroups.com

[flexcoders] Re: Problems do make framework caching work

2007-10-16 Thread danielvlopes
-generated to your mxml commands? It will create a folder called generated. I want to see the file whose name ends with _mx_managers_SystemManager-generated.as: From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent

[flexcoders] Re: Problems do make framework caching work

2007-10-16 Thread danielvlopes
. --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: Hello alex... I think the reason is a change the beta1 to beta2 and some configurations in Flex Build Path still like in beta1, using .sgn file and not .swz file. I clean all configurations and remake like showed in video

[flexcoders] Re: Problems do make framework caching work

2007-10-16 Thread danielvlopes
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Tuesday, October 16, 2007 12:44 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Problems do make framework caching work Hello alex... I think

[flexcoders] Flex is becoming unviable

2007-10-15 Thread danielvlopes
Hello, i create a big project in flex using modules, RSLs and etc... This project is real client, and he accept test flex in you website. Everything works fine (ignoring the 500kb framework file it is necessary for users to access the site.) Now i thinking use flex in small projects like simple

[flexcoders] Re: Flex is becoming unviable

2007-10-15 Thread danielvlopes
notes for FB3 Beta 2 and be sure you are looking at the released version of your SWFs, not the debug versions that are generated by default only now. DK On 10/15/07, danielvlopes [EMAIL PROTECTED] wrote: Hello, i create a big project in flex using modules, RSLs and etc

[flexcoders] Re: Flex is becoming unviable

2007-10-15 Thread danielvlopes
to optimize swfs without framework caching? --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: The terminology is framework caching and this generate a huge file with 500kb and all this giant file must be load before your swf. --- In flexcoders@yahoogroups.com, Brendan Meutzner

[flexcoders] Re: Framework Caching not working

2007-10-15 Thread danielvlopes
html wrapper. This will stop the compiler from complaining if you specify a swz RSL without a swf RSL as a failover. -Darrell --- In flexcoders@yahoogroups.com, danielvlopes danielvlopes@ wrote: Hello Alex, Let me understand... the right way is using swz? Like

[flexcoders] Re: Flex is becoming unviable

2007-10-15 Thread danielvlopes
--- In flexcoders@yahoogroups.com, danielvlopes danielvlopes@ wrote: The terminology is framework caching and this generate a huge file with 500kb and all this giant file must be load before your swf. --- In flexcoders@yahoogroups.com, Brendan Meutzner bmeutzner@ wrote: I can't remember

[flexcoders] Re: Framework Caching not working

2007-10-15 Thread danielvlopes
The correct way is this: -runtime-shared-library-path=C:\3.0.0\frameworks\libs\framework.swc,C:\3.0.0\frameworks\rsls\framework_3.0.183453.swz,,framework_3.0.183453.swf -target-player=9.0.60 ? --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: Hello Darrell, i trying

[flexcoders] Re: Framework Caching not working

2007-10-07 Thread danielvlopes
[mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Saturday, October 06, 2007 4:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Framework Caching not working Thanks again alex. :-) --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Alex Harui

[flexcoders] Re: Framework Caching not working

2007-10-06 Thread danielvlopes
Some one can help?? --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: My flash player is 9,0,60,235 Even i use Beta 2, caching still not working. I don't know why, some one can help? Something wrong with my buil.xml? --- In flexcoders@yahoogroups.com, Tom

[flexcoders] BUG IN Flex Builder 3 Beta 2

2007-10-06 Thread danielvlopes
Hello, flexbuilder 3 beta 2 had a bug in forms. This error arruined layout of forms when happen. In my case i had a component based in form and in this form i dont specify the height because inside this form some formitem will be create in repeart dinamically. If i not specify height all form

[flexcoders] Re: Framework Caching not working

2007-10-06 Thread danielvlopes
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Saturday, October 06, 2007 1:23 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Framework Caching not working Some one can help?? --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com

[flexcoders] Re: Framework Caching not working

2007-10-03 Thread danielvlopes
[mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Tuesday, October 02, 2007 11:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Framework Caching not working Hello, i having problems when i try use framework caching on moxie. I compile my project using this build.xml

[flexcoders] formItem label don't appear em FlexBuilder 3 beta 2

2007-10-03 Thread danielvlopes
I had a project maded in flexbuilder3 beta1, and almost everything works fine but after install flexbuilder3 beta2 all of my formItem labels disappear. Some one can help?

[flexcoders] Re: Framework Caching not working

2007-10-03 Thread danielvlopes
My flash player is 9,0,60,235 Even i use Beta 2, caching still not working. I don't know why, some one can help? Something wrong with my buil.xml? --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 03 Oct 2007, [EMAIL PROTECTED] wrote: I don't uderstand

[flexcoders] Re: formItem label don't appear em FlexBuilder 3 beta 2

2007-10-03 Thread danielvlopes
I fix this problem specifying height and width of form parent container. --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: I had a project maded in flexbuilder3 beta1, and almost everything works fine but after install flexbuilder3 beta2 all of my formItem labels

[flexcoders] Framework Caching not working

2007-10-02 Thread danielvlopes
Hello, i having problems when i try use framework caching on moxie. I compile my project using this build.xml trouhg Apache Ant: ?xml version=1.0 encoding=UTF-8? project name=PainelAdmApp default=compile property name=flex.mxmlc location=C:\Program Files\Adobe\Flex Builder

[flexcoders] Re: Sort string like number in datagrid

2007-10-02 Thread danielvlopes
Some one? --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: Ola, I am with the following problem… I have the field value in some tables of my DB, in flex I store values in format ,00 (money) but when I return the stored items for my datagrid and click header

[flexcoders] Sort string like number in datagrid

2007-09-26 Thread danielvlopes
Ola, I am with the following problem… I have the field value in some tables of my DB, in flex I store values in format ,00 (money) but when I return the stored items for my datagrid and click header to sort it no right sorted because is string. I'm using amfphp to get values from PHP. If i

[flexcoders] Re: Re

2007-09-26 Thread danielvlopes
] On Behalf Of danielvlopes Sent: Tuesday, September 25, 2007 6:33 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re Hello Alex... I try to do this: Alert.show(AAA).move(0,0); and this: a:Alert = Alert.show(AAA); a.move(0,0); But doesn't work. --- In flexcoders@yahoogroups.com

[flexcoders] Alert not in middle of screen

2007-09-25 Thread danielvlopes
It is possible put Alert not in middle of screen?

[flexcoders] Re

2007-09-25 Thread danielvlopes
() on it. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Tuesday, September 25, 2007 11:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Alert not in middle of screen It is possible put Alert not in middle of screen?

[flexcoders] Problem in textinput and wmode transparent

2007-09-21 Thread danielvlopes
Hello, in my app i had a popup menu and this menu go over swf file, and for this work fine i need put wmode=transparent but when i use this all my textfields and textarea not work for special caracters (á, â, etc). I try find way to fix this problem on net and i found this

[flexcoders] Re: Problem in textinput and wmode transparent

2007-09-21 Thread danielvlopes
limitations of what you can do with wmode-transparent. Why do you need to put swfs over other swfs? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Friday, September 21, 2007 7:21 AM To: flexcoders

[flexcoders] Re: Problem in textinput and wmode transparent

2007-09-21 Thread danielvlopes
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Friday, September 21, 2007 10:06 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Problem in textinput and wmode transparent Hum, the problem

[flexcoders] Re: Problem in textinput and wmode transparent

2007-09-21 Thread danielvlopes
? Then yes, you'll have to see if the player makes any improvements in that area. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Friday, September 21, 2007 10:06 AM To: flexcoders@yahoogroups.com Subject: [flexcoders

[flexcoders] Re: Reduce size of my module! Really boring....

2007-09-20 Thread danielvlopes
Just one more thing, when i compile using RSL, my framework file had 400kb, all when user access my website all framework file will be loaded? or parts of this file will be loaded on demand? Thanks. --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: Thanks again Alex, one

[flexcoders] Re: Reduce size of my module! Really boring....

2007-09-18 Thread danielvlopes
that share code among themselves. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Monday, September 17, 2007 1:28 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Reduce size of my module! Really boring

[flexcoders] Re: Reduce size of my module! Really boring....

2007-09-18 Thread danielvlopes
dataGrid:DataGrid; private var panel:Panel; private var button:Button; private var resultEvent:ResultEvent; private var faultEvent:FaultEvent; } } --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: Hello Alex, i read your presentation and try find ant

[flexcoders] Re: Reduce size of my module! Really boring....

2007-09-18 Thread danielvlopes
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Tuesday, September 18, 2007 9:49 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Reduce size of my module! Really boring Ola Alex, I obtained to compile using ant with using link-report and load

[flexcoders] Re: Reduce size of my module! Really boring....

2007-09-17 Thread danielvlopes
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Sunday, September 16, 2007 12:28 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Reduce size of my module! Really boring Hello, Now in Brasil is sunday, and i waste all my day

[flexcoders] Re: Problem with repeater and image ???

2007-09-17 Thread danielvlopes
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Sunday, September 16, 2007 4:36 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Problem with repeater and image ??? What will be diferent when i repeat custom comps

[flexcoders] Re: Reduce size of my module! Really boring....

2007-09-17 Thread danielvlopes
. The goal is to use load-extern enough times with enough stuff in it that everything in the main app and the framework RSL is not in the module. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Monday

[flexcoders] Re: Problem with repeater and image ???

2007-09-16 Thread danielvlopes
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Saturday, September 15, 2007 8:57 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Problem with repeater and image ??? Helo everybody... I having problems

[flexcoders] Reduce size of my module! Really boring....

2007-09-16 Thread danielvlopes
Hello, Now in Brasil is sunday, and i waste all my day trying reduce swf size of my modules... I had project with 11 modules... each module had approximately 90kb, because in my project i'm using framework caching teached in this video

[flexcoders] Re: Problem with repeater and image ???

2007-09-16 Thread danielvlopes
rptFoto.getRepeaterItem From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Saturday, September 15, 2007 8:57 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Problem with repeater and image ??? Helo everybody... I

[flexcoders] Re: Timeout problem with upload files

2007-09-15 Thread danielvlopes
I found the problem,and not in flex, is php, even set the timout to 0 in php the file size no be bigger than upload_max_filesize. --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: Hello every body... I'm using a script that i made to make upload from flex to php

[flexcoders] Re: FileReferenceList disabled multiselection

2007-09-15 Thread danielvlopes
Some one? --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: Hello, I have a uploadcomponent using FileReferenceList to browse file in user pc, i'm using this code to do: refAddFiles = new FileReferenceList();r efAddFiles.addEventListener(Event.SELECT, onSelectFile

[flexcoders] Problem with repeater and image ???

2007-09-15 Thread danielvlopes
Helo everybody... I having problems to try get repearter item when user click on image. This is my code for repeater: mx:Repeater id=rptFoto dataProvider={objSelectedEquip.thumbs} mx:HBox mx:Image

[flexcoders] Re: Icon in button without embed

2007-09-14 Thread danielvlopes
--- We're Hiring! Seeking a passionate developer to join our team building Flex based products. Position is in the Washington D.C. metro area. If interested contact [EMAIL PROTECTED] _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent

[flexcoders] Timeout problem with upload files

2007-09-14 Thread danielvlopes
Hello every body... I'm using a script that i made to make upload from flex to php... Everything work fine... but when i try use this in low connections like dialup nothing happen, the upload progress is initiate but when my progressbar reach the 100% nothing more happen, i think is a problem with

[flexcoders] Icon in button without embed

2007-09-13 Thread danielvlopes
Hello, someone know if is possible to use icons in buttons without use Embed? I had big application and this icons embeded in my swf file increase file size in more than 30kb. Thanks

[flexcoders] Re: Icon in button without embed

2007-09-13 Thread danielvlopes
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Thursday, September 13, 2007 9:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Icon in button without embed Hello, someone know if is possible to use icons in buttons without use Embed? I had big application

  1   2   >