Re: [flexcoders] Pass parameters to module

2008-07-11 Thread Oleg Filipchuk
Hi Giro,
I'd recommend to use ModuleManager - it gives you much more control over
workflow. And in that case you may use interfaces:

protected var info: IModuleInfo;
>
> protected function loadModule ( moduleUrl: String ): void
> {
>   info = ModuleManager.getModule ( moduleUrl );
>   info.addEventListener ( ModuleEvent.READY, moduleReadyHandler );
>   info.addEventListener( ModuleEvent.ERROR, errorHandler );
> }
> protected function moduleReadyHandler ( event: ModuleEvent ): void
>  {
>   var module: IMySuperCustomModule = info.factory.create() as
> IMySuperCustomModule;
>   module.dataProvider = someSuperImportantData;
>   addChild ( module as DisplayObject );
>  }
>

Cheers,
Oleg

2008/7/11 David Gironella <[EMAIL PROTECTED]>:

>I use a moduleloader and need to pass parameters to module. How can I
> do it?
>
>
>
> Thanks
>
> Giro.
>  
>



-- 
Best regards,
Oleg Filipchuk


Re: [flexcoders] SWFObject example

2008-07-08 Thread Oleg Filipchuk
Hi Richard, it is in style tag:


html, body, #DIV_ID_THAT_HOLDS_YOUR_FLEX_APP{ height:100%; }
body{ margin:0; padding:0; overflow:hidden;
}



On Tue, Jul 8, 2008 at 5:13 PM, Richard Rodseth <[EMAIL PROTECTED]> wrote:

>   Hi Oleg
>
> I see that your template address history/deep linking issues, but I
> don't see how it addresses my question (a header, a footer, a
> resizable content area for the Flex app, no browser scrollbars).
>
> I have two solutions I'm looking at. One uses a resize handler to
> resize the div referenced by SWFObject. The other uses a frameset.
>
> Thanks,
> Richard
>
>
> On Tue, Jul 8, 2008 at 2:18 AM, Oleg Filipchuk <[EMAIL 
> PROTECTED]>
> wrote:
> > Hi, there is ready to use template of SWFObject 2.1 for Flex Builder that
> > solve this problem as well:
> > http://olegflex.blogspot.com/2008/06/swfobject-2-flex-template.html
> >
> > Cheers,
> > Oleg
> >
> >
> >
> > On Mon, Jul 7, 2008 at 6:07 PM, Richard Rodseth <[EMAIL 
> > PROTECTED]>
> wrote:
> >>
> >> Hi Tom
> >>
> >> None that I've found, that include a header and footer area outside of
> >> the 100% SWF. I guess this is somewhat off-topic, and I've joined the
> >> SWFObject mailing list, where I got the following advice:
> >>
> >> >>>
> >> - when your top header and footer do need to be in HTML, you should
> >> use JavaScript (fixed positioning doesn't work in IE 6 and lower, I
> >> believe) to determine your available Flash viewport height, and scale
> >> the div that a 100%-100% embedded Flash movie is in accordingly, using
> >> the same principles as: http://hossgifford.com/resizer/
> >> <<<
> >>
> >> But I thought this must be a pretty common scenario for Flex
> >> developers who would understand why I want to get the hell back to my
> >> happy Flex world and away from browser incompatibility hell :)
> >>
> >> - Richard
> >>
> >> On Mon, Jul 7, 2008 at 7:19 AM, Tom Chiverton
> >> <[EMAIL PROTECTED] > wrote:
> >> > On Thursday 03 Jul 2008, Richard Rodseth wrote:
> >> >> Can anyone please point me at a SWFObject 2 example wrapper with a
> >> >> header, footer, and Flex app that resizes to fill the browser window
> >> >> (except for the header/footer of course). No browser scrollbars.
> >> >
> >> > They've got many on their site, alone with an AIR application to
> >> > generate the
> >> > wrapper for you.
> >> >
> >> > --
> >> > Tom Chiverton
> >> >
> >> > 
> >> >
> >> > This email is sent for and on behalf of Halliwells LLP.
> >> >
> >> > Halliwells LLP is a limited liability partnership registered in
> England
> >> > and Wales under registered number OC307980 whose registered office
> address
> >> > is at Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3
> 3EB.
> >> > A list of members is available for inspection at the registered
> office. Any
> >> > reference to a partner in relation to Halliwells LLP means a member of
> >> > Halliwells LLP. Regulated by The Solicitors Regulation Authority.
> >> >
> >> > CONFIDENTIALITY
> >> >
> >> > This email is intended only for the use of the addressee named above
> and
> >> > may be confidential or legally privileged. If you are not the
> addressee you
> >> > must not read it and must not use any information contained in nor
> copy it
> >> > nor inform any person other than Halliwells LLP or the addressee of
> its
> >> > existence or contents. If you have received this email in error please
> >> > delete it and notify Halliwells LLP IT Department on 0870 365 2500.
> >> >
> >> > For more information about Halliwells LLP visit www.halliwells.com.
> >> >
> >> > 
> >> >
> >> > --
> >> > Flexcoders Mailing List
> >> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> >> > Search Archives:
> >> > http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups
> Links
> >> >
> >> >
> >> >
> >> >
> >
> >
> >
> > --
> > Best regards,
> > Oleg Filipchuk
> >
>  
>



-- 
Best regards,
Oleg Filipchuk


Re: [flexcoders] SWFObject example

2008-07-08 Thread Oleg Filipchuk
Hi, there is ready to use template of SWFObject 2.1 for Flex Builder that
solve this problem as well:
http://olegflex.blogspot.com/2008/06/swfobject-2-flex-template.html

Cheers,
Oleg



On Mon, Jul 7, 2008 at 6:07 PM, Richard Rodseth <[EMAIL PROTECTED]> wrote:

>   Hi Tom
>
> None that I've found, that include a header and footer area outside of
> the 100% SWF. I guess this is somewhat off-topic, and I've joined the
> SWFObject mailing list, where I got the following advice:
>
> >>>
> - when your top header and footer do need to be in HTML, you should
> use JavaScript (fixed positioning doesn't work in IE 6 and lower, I
> believe) to determine your available Flash viewport height, and scale
> the div that a 100%-100% embedded Flash movie is in accordingly, using
> the same principles as: http://hossgifford.com/resizer/
> <<<
>
> But I thought this must be a pretty common scenario for Flex
> developers who would understand why I want to get the hell back to my
> happy Flex world and away from browser incompatibility hell :)
>
> - Richard
>
>
> On Mon, Jul 7, 2008 at 7:19 AM, Tom Chiverton
> <[EMAIL PROTECTED] > wrote:
> > On Thursday 03 Jul 2008, Richard Rodseth wrote:
> >> Can anyone please point me at a SWFObject 2 example wrapper with a
> >> header, footer, and Flex app that resizes to fill the browser window
> >> (except for the header/footer of course). No browser scrollbars.
> >
> > They've got many on their site, alone with an AIR application to generate
> the
> > wrapper for you.
> >
> > --
> > Tom Chiverton
> >
> > 
> >
> > This email is sent for and on behalf of Halliwells LLP.
> >
> > Halliwells LLP is a limited liability partnership registered in England
> and Wales under registered number OC307980 whose registered office address
> is at Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.
> A list of members is available for inspection at the registered office. Any
> reference to a partner in relation to Halliwells LLP means a member of
> Halliwells LLP. Regulated by The Solicitors Regulation Authority.
> >
> > CONFIDENTIALITY
> >
> > This email is intended only for the use of the addressee named above and
> may be confidential or legally privileged. If you are not the addressee you
> must not read it and must not use any information contained in nor copy it
> nor inform any person other than Halliwells LLP or the addressee of its
> existence or contents. If you have received this email in error please
> delete it and notify Halliwells LLP IT Department on 0870 365 2500.
> >
> > For more information about Halliwells LLP visit www.halliwells.com.
> >
> > ----
> >
> > --
> > Flexcoders Mailing List
> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups
> Links
> >
> >
> >
> >
>  
>



-- 
Best regards,
Oleg Filipchuk


Re: [flexcoders] Re: Flex Builder 3.0 Serial No. Need

2008-03-03 Thread Oleg Filipchuk
Guyz,
there are still holes in licence.jar in particular sdks -
sdks\3.0.0\lib\license.jar and sdks\2.0.1\lib\license.jar.
I guess that Adobe Flex engineers could implement better way to secure their
work.


-- 
Best regards,
Oleg Filipchuk


Re: [flexcoders] Re: Debug version of new Flash Player

2007-08-30 Thread Oleg Filipchuk
Thanks Matt.
And as I see it should somewhere in October as I can see at Flex 3
Planning<http://flexwiki.adobe.com/confluence/display/ADOBE/Flex+3+Planning>,
right?
But as I remember earlier it was mentioned that Beta should be at the end of
July/beginning of August and one day it was just changed to October.


On 29/08/2007, Matt Chotin <[EMAIL PROTECTED]> wrote:
>
>   Hi,
>
> Unfortunately the Debugger version of that Player was not tested so the
> Player team does not feel comfortable releasing it. We'll have one in
> the next public Flex beta, but that's still a little ways away.
>
> Sorry!
> Matt
>
> -Original Message-
> From: flexcoders@yahoogroups.com  [mailto:
> flexcoders@yahoogroups.com ] On
> Behalf Of Tom Chiverton
> Sent: Wednesday, August 29, 2007 1:35 AM
> To: flexcoders@yahoogroups.com 
> Subject: Re: [flexcoders] Re: Debug version of new Flash Player
>
> On Wednesday 29 Aug 2007, [EMAIL PROTECTED]  wrote:
> > I'm looking into making one available,
>
> That would be good.
> As I said on the Penguin.SWF blog - it's hard to give the new player the
> day
> to day testing we'd like to if it has no debug support.
>
> --
> Tom Chiverton
>
> 
>
> This email is sent for and on behalf of Halliwells LLP.
>
> Halliwells LLP is a limited liability partnership registered in England
> and Wales under registered number OC307980 whose registered office
> address is at St James's Court Brown Street Manchester M2 2JF. A list
> of members is available for inspection at the registered office. Any
> reference to a partner in relation to Halliwells LLP means a member of
> Halliwells LLP. Regulated by the Law Society.
>
> CONFIDENTIALITY
>
> This email is intended only for the use of the addressee named above and
> may be confidential or legally privileged. If you are not the addressee
> you must not read it and must not use any information contained in nor
> copy it nor inform any person other than Halliwells LLP or the addressee
> of its existence or contents. If you have received this email in error
> please delete it and notify Halliwells LLP IT Department on 0870 365
> 8008.
>
> For more information about Halliwells LLP visit www.halliwells.com.
>
> --
> 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
>
>  
>



-- 
Best regards,
Oleg Filipchuk


Re: [flexcoders] Re: Debug version of new Flash Player

2007-08-29 Thread Oleg Filipchuk
Thanks Matt.

On 29/08/2007, Matt Chotin <[EMAIL PROTECTED]> wrote:
>
>I'm looking into making one available, but we may not have a tested
> version that we can make officially available off of Labs.  Sorry for the
> uncertainty…
>
>
>
> Matt
>
>
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Oleg Filipchuk
> *Sent:* Tuesday, August 28, 2007 7:24 AM
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] Re: Debug version of new Flash Player
>
>
>
> Guyz,
> I mean version  9.0.60.184
> Does anybody from Adobe can confirm if there is any debug player
> supporting H.264 exist?
>
> On 28/08/07, *moonusamy* <[EMAIL PROTECTED]> wrote:
>
>
> This does not have 9.0.60 version.
>
> "7/10/2007 Updated debugger versions of Flash Player 9 (aka debug
> players or content debuggers) are available for Flex Builder 2 users
> and Flash CS3 Professional users. These new players are version
> 9.0.r47 and 9.0.r48 (Linux)."
>
> Vijay
>
> --- In flexcoders@yahoogroups.com , "Muzak"
> <[EMAIL PROTECTED]> wrote:
> >
> > http://www.adobe.com/support/flashplayer/downloads.html
> >
> > - Original Message -
> > From: "Oleg Filipchuk" <[EMAIL PROTECTED]>
> > To: >
> > Sent: Tuesday, August 28, 2007 12:07 PM
> > Subject: [flexcoders] Re: Debug version of new Flash Player
> >
> >
> > > Hmm, so nobody still needs debug version of new player or doesn't care
> > > about?
> >
>
>
>
>
> --
> Best regards,
> Oleg Filipchuk
>
>   
>



-- 
Best regards,
Oleg Filipchuk


Re: [flexcoders] Re: Debug version of new Flash Player

2007-08-28 Thread Oleg Filipchuk
Guyz,
I mean version  9.0.60.184
Does anybody from Adobe can confirm if there is any debug player supporting
H.264 exist?

On 28/08/07, moonusamy <[EMAIL PROTECTED]> wrote:
>
>
> This does not have 9.0.60 version.
>
> "7/10/2007 Updated debugger versions of Flash Player 9 (aka debug
> players or content debuggers) are available for Flex Builder 2 users
> and Flash CS3 Professional users. These new players are version
> 9.0.r47 and 9.0.r48 (Linux)."
>
> Vijay
>
> --- In flexcoders@yahoogroups.com , "Muzak"
> <[EMAIL PROTECTED]> wrote:
> >
> > http://www.adobe.com/support/flashplayer/downloads.html
> >
> > - Original Message -
> > From: "Oleg Filipchuk" <[EMAIL PROTECTED]>
> > To: >
> > Sent: Tuesday, August 28, 2007 12:07 PM
> > Subject: [flexcoders] Re: Debug version of new Flash Player
> >
> >
> > > Hmm, so nobody still needs debug version of new player or doesn't care
> > > about?
> >
>
>  
>



-- 
Best regards,
Oleg Filipchuk


[flexcoders] Re: Debug version of new Flash Player

2007-08-28 Thread Oleg Filipchuk
Hmm, so nobody still needs debug version of new player or doesn't care
about?


-- 
Best regards,
Oleg Filipchuk


[flexcoders] Debug version of new Flash Player

2007-08-27 Thread Oleg Filipchuk
Hi list,
does anybody know where Debug version of new player 9.0.60.184.
The is no word about it at labs.adobe.com and no answers on the
comments at Emmy
Huang  blog <http://weblogs.macromedia.com/emmy/>

-- 
Best regards,
Oleg Filipchuk


Re: [flexcoders] SWFLoader weirdness when using separated applicationDomain

2007-06-15 Thread Oleg Filipchuk

If I understand this problem... for example when loading Moxie app into an
Flex2 app (using the same or child app domain, as nothing else is possible),
we can expect unpredictable problems, right?
IMHO the whole idea of separated ADs has very limited use now (or the
question if it has it at all...).

Adobe could solve this problem very easy - to enable something like
completely separated Flash Player instance inside another FP instance - with
its own Stage, etc. Of course, we would have to use local connection for
interoperability... but it would be OK.

Summary: The only solution in the presence is to use AJAX as a wrapper for
the modules, and LC or FABridge for interoperability, right?

P.S. So as for me it looks like another attempt to hurry up another release
to check item in glance press release. I do not want to be rude, I really
appreciate the great work all of you've done at adobe, but sometimes it is
very frustrating when you find out that another important feature is missing
- like  rendering inline images with html thath can't be fixed since FP v6
(correct me if I'm wrong)... Guys, doing great product isn't only presenting
new and new features but sometimes it means fixing bugs that exists for ages
...

On 15/06/07, Alex Harui <[EMAIL PROTECTED]> wrote:


   Planned, but not for 3.0.  There are known infrastructure issue in
getting popups, layout, focus and other things to interoperate when classes
are not shared due to AD boundaries.  For example, FocusManager expects
clients to be IFocusManagerComponent, but UIComponents in another AD are not
IFocusManagerComponent, they are [EMAIL PROTECTED] and thus
the main FocusManager won't work with them.



We want some player changes to make working with separate ADs easier, but
we can't do them in the 3.0 timeframe.


 --

*From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
Behalf Of *Oleg Filipchuk
*Sent:* Thursday, June 14, 2007 2:56 PM
*To:* flexcoders@yahoogroups.com
*Subject:* Re: [flexcoders] SWFLoader weirdness when using separated
applicationDomain



Thanks Alex.
May you explain reasons why this isn't possible?
Are there any plans of implementing such a behavior?


--
Best regards,
Oleg Filipchuk

   





--
Best regards,
Oleg Filipchuk


Re: [flexcoders] SWFLoader weirdness when using separated applicationDomain

2007-06-14 Thread Oleg Filipchuk

Thanks Alex.
May you explain reasons why this isn't possible?
Are there any plans of implementing such a behavior?


--
Best regards,
Oleg Filipchuk


[flexcoders] SWFLoader weirdness when using separated applicationDomain

2007-06-14 Thread Oleg Filipchuk

Hi there.

I ran into weird issue with swfloader component.
I need to load into host flex application different swf (flex, flash etc)
from external developers. So the choice was to use separated
ApplicationDomain for swfloader, like:

var appDomain = new ApplicationDomain();
swfLoader.loaderContext = new LoaderContext(false, new ApplicationDomain());
swfLoader.load("someFlexFile.swf")

It actually loads specified swf but the loaded content behaves weird -
Mostly it throws such errors:
at Object$/Object::_hasOwnProperty()
   at Object/http://adobe.com/AS3/2006/builtin::hasOwnProperty()

And it absolutely doesn't following layout rules of parent container.

When I use same application domain as host or child application domain all
works nice and smooth.
But that's not the solution as
1. we need it to have in different applicationdomain as sometimes there
could be used same classes but different version of it.
2. loaded swf's have their individual styles and while loading with same or
child applicationdomain - the host application domain style is replaced with
loaded one....




--
Best regards,
Oleg Filipchuk


Re: [flexcoders] Flex emoticon

2007-05-17 Thread Oleg Filipchuk

Ok, I've solved it getCharBoundaries method and overlaying container with
images.


--
Best regards,
Oleg Filipchuk


Re: [flexcoders] Flex emoticon

2007-05-17 Thread Oleg Filipchuk

Thanks Kenneth,
but this code will result in the positioning of the image to next line after
text. It is the thing that I'm trying to solve...

On 17/05/07, Kenneth Sutherland <[EMAIL PROTECTED]> wrote:


   You could try





 







I did this just to see what would happen, and there may be some positional
issues with the text, but I'm sure that can be sorted out with the
appropriate html text.

Worth a shot and somewhere to start for more info on htmlText see below
link.




http://livedocs.adobe.com/flex/2/langref/flash/text/TextField.html#htmlText



Kenneth.


 --

*From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
Behalf Of *Oleg Filipchuk
*Sent:* 16 May 2007 14:37
*To:* flexcoders@yahoogroups.com
*Subject:* [flexcoders] Flex emoticon



Hello,
I'm developing Flex chat and face the problems to display emoticons in
TextArea. After some googling I've found this one
http://labs.flexcoders.nl/?p=52
Do you have any idea how did they handle to display inline images in that
TextArea?
Thanks

--
Best regards,
Oleg Filipchuk

 





--
Best regards,
Oleg Filipchuk


[flexcoders] Flex emoticon

2007-05-16 Thread Oleg Filipchuk

Hello,
I'm developing Flex chat and face the problems to display emoticons in
TextArea. After some googling I've found this one
http://labs.flexcoders.nl/?p=52
Do you have any idea how did they handle to display inline images in that
TextArea?
Thanks

--
Best regards,
Oleg Filipchuk


Re: [flexcoders] Adobe site

2007-02-21 Thread Oleg Filipchuk

I was trying to redownload my flex builder, cos i was reinstalling my pc,
and tehre were no chance to download it.

On 20/02/07, Brendan Meutzner <[EMAIL PROTECTED]> wrote:


  I was having issues with the exchange this morning... CF scripts were
timing out when I was updating components as well as personal info...

Brendan

On 2/20/07, Matt Chotin <[EMAIL PROTECTED]> wrote:
>
>Which pages were you guys trying to hit.  One of our apps apparently
> hiccupped this morning, though the main website we thought was OK.
>
>
>
> Matt
>
>
>  --
>
> *From:* [EMAIL PROTECTED] ups.com [mailto:[EMAIL PROTECTED] ups.com]
> *On Behalf Of *Paul J DeCoursey
> *Sent:* Tuesday, February 20, 2007 9:26 AM
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] Adobe site
>
>
>
> I think there is something else going on. I'm also experiencing issues
> accessing the site.
>
> Clint Modien wrote:
> >
> > Hi... it's probably just a bad route...
> >
> > Try running a tracert. It'll show you the bad node between you and
> adobe.
> >
> > http://en.wikipedia.org/wiki/Tracert
> > <http://en.wikipedia.org/wiki/Tracert>
> >
> >
>
>


--
Brendan Meutzner
Stretch Media - RIA Adobe Flex Development
[EMAIL PROTECTED]
http://www.stretchmedia.ca

 





--
Best regards,
Oleg Filipchuk


[flexcoders] Re: Adobe site

2007-02-20 Thread Oleg Filipchuk

and the error I've got trying to download product:

JRun Servlet Error500 
The ClientScope service is not available.
coldfusion.server.ServiceFactory$ServiceNotAvailableException: The
ClientScope service is not available.
at 
coldfusion.server.ServiceFactory.getClientScopeService(ServiceFactory.java:128)
at 
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:32)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at 
coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
at coldfusion.CfmServlet.service(CfmServlet.java:107)
at 
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at 
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:259)
at 
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
at jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
at 
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
at 
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
at 
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)


--
Best regards,
Oleg Filipchuk


[flexcoders] Adobe site

2007-02-20 Thread Oleg Filipchuk

Hi, do you know what is going on with Adobe site,
it's so slow and a lot of site's areas are temporary unavailable -
communities, downloads It takes 10 to 30 sec to show index page, and I'm
on 8Mbps connection...
I'm in Prague, Czech republic, Europe.
And it is the same situation as yesterday... What is going on with it?

--
Best regards,
Oleg Filipchuk


Re: [flexcoders] Full Application Reset?

2007-01-30 Thread Oleg Filipchuk

Why don't you just refresh the page where your application is embedded?

On 30/01/07, Brent Dearth <[EMAIL PROTECTED]> wrote:


  This has got to be an obvious implementation, but it's left me
scratching my head. Here's my scenario:

When user performs a logout in an authenticated flex application, I would
like to fully re-initialize the application back to it's initial load state
(as if the SWF was being accessed anew). All children components are reset,
or ideally destroyed and re-created. There are portions of this application
that may contain sensitive data, and thus, I'm not willing to leave it to
chance by manually calling custom initialization functions on each component
/ sub-component / etc.

I've thought about recursively iterating through the Application's
children, looking for these custom methods and executing them when
encountered, but there has got to be a cleaner, simpler way that I am
missing. I didn't see much on the mx.core.Application documentation that
was relevant, beyond accessing children properties manually.

Ideas?
 





--
Best regards,
Oleg Filipchuk


Re: [flexcoders] Re: Localizing "Press Esc to exit full screen mode"?

2007-01-23 Thread Oleg Filipchuk

Hi Matt,
any of supported languages - you mean English, French, German and Chinese?
The are a plenty of other languages. I've been testing it on machines, with
Russian, Czech, Polish, Slovakian, Ukrainian etc and everywhere it is the
same "Press Esc to exit full screen"... Is it so hard for such a big company
to make translation of one simple sentence to at least 50-70 languages?
There is the same issue  with settings panel, express install etc.

--
Best regards,
Oleg Filipchuk


Re: [flexcoders] Localizing "Press Esc to exit full screen mode"?

2007-01-22 Thread Oleg Filipchuk

I hope so, but usually they are answering faster... ;)
i do not know, but this is older issue, that is all about Flash Player
dialogs localization. Other issue that it isn't possible to localize any
text in settings or express install dialog windows. I understand that
English is leading language in the world but is it so hard for Adobe as huge
company to make translations to world languages...

On 22/01/07, Abdul Qabiz <[EMAIL PROTECTED]> wrote:


  I hope someone from Flash Player team is listening to us...

On 1/22/07, Oleg Filipchuk <[EMAIL PROTECTED] > wrote:
>
>   I didn't find any docs about this issue.
> Our client is really disapointed in that, and why it just couldn't be
> modified
>
> --
> Best regards,
> Oleg Filipchuk
>

 





--
Best regards,
Oleg Filipchuk


Re: [flexcoders] Localizing "Press Esc to exit full screen mode"?

2007-01-22 Thread Oleg Filipchuk

I didn't find any docs about this issue.
Our client is really disapointed in that, and why it just couldn't be
modified

--
Best regards,
Oleg Filipchuk


[flexcoders] Localizing "Press Esc to exit full screen mode"?

2007-01-22 Thread Oleg Filipchuk

Hi guyz and girlz,
is it possible to localize the label "Press Esc to exit full screen mode"
when movie is going to full screen?


--
Best regards,
Oleg Filipchuk


Re: [flexcoders] flash.net.FileReference dynamic download

2007-01-10 Thread Oleg Filipchuk

I guess that no.
You have firstly save it to the server and after call the file saving using
FileReference or directly calling link to file in new window.


On 10/01/07, graysonpierce <[EMAIL PROTECTED]> wrote:


  Hello,

Is there a way to use flash.net.FileReference to download a
dynamically created XMLDocument? In other words have the Flex
application put together an XML document and offer it up for saving
(or execution)

 





--
Best regards,
Oleg Filipchuk


Re: [flexcoders] Re: Compiling modules

2007-01-08 Thread Oleg Filipchuk

Matt,
thank you for clearing this issue.
The Multiple-project model looks more convenient for me.
But there is a question about One-project model - it looks like we can't
have modules files in the folders as for Flex Builder it isn't possible to
treat any mxml file placed anywhere except the root as an application (at
least I do not know how).
So, thinking logically, for huge application every module should be the
separate project. It looks effective for medium size project, but is it so
convenient to have hundreds of projects for huge size projects...?
Is Flex Builder team planning to make this issue more clear? For example add
new button next to debug where will be options to compile modules (if any is
open in workspace) that would be very handy for people not preferring to
work with command line.




--
Best regards,
Oleg Filipchuk
euroPIN group j.s.c.


Re: [flexcoders] Re: Compiling modules

2007-01-08 Thread Oleg Filipchuk

Exactly,
it isn't so hard to compile modules with command line, but it's all about
the general usability of Flex Builder.
Why it isn't properly documented? Or they think that one page about
compiling modules using mxmlc is enough? There is no mention about compiling
modules just inside of FB without using compiler by itself. Why usual
developers should spent hours to figure out such a simple issue.. I just
can't understand why Adobe is announcing great plans about having a pile of
Flex developers and at the same time can't handle simple documentation and
usability issue.
I really appreciate the work that has been done by Adobe engineers to
brought such a great product, but I just compare the level of documenting in
MSDN (M$)...



--
Best regards,
Oleg Filipchuk


[flexcoders] Compiling modules

2007-01-08 Thread Oleg Filipchuk

Hi,
I have problem to compile module components. Maybe that's a trivial
procedure but I do not know how to compile a particular module.
I've made new project ModuleTest. There is moduletest.mxml application. And
after I've create 2 modules components in the folder "modules". After that I
have tried to use ModuleLoader component as how it is described in help
docs. All seems work fine except the thing that modules haven't been
compiled.
There is written in help docs:
"You compile the module as you would compile any Flex application using the
mxmlc command-line compiler or the Flex Builder compiler. The following
command is the simplest mxmlc command:
mxmlc MyModule.mxml
"
I'm not command line guru or something like that. So is there any way to
compile modules when I hit debug button in the flex builder or any other way
to at least make it simpler? It seems to me strange to compile every module
in command line... What if I have hundreds of modules?

--
Best regards,
Oleg Filipchuk


[flexcoders] Your trial of Flex Builder 2.0 has expired... wtf...

2006-05-30 Thread Oleg Filipchuk



Hi list,I've occasionally changed date at my PC to July and after that Flex Builder 2 b3 stooped to work. I can see only the message that Flex Builder has expired. I've tried to change date back to May, reinstalling it but nothing can help...
What I have to do to bring it back to life? ThxOleg FilipchukRIA developer euroPIN group a.s.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] framework_rb.swc error...

2006-03-21 Thread Oleg Filipchuk



the same for cs_cz. And copying us_US to cs_cz had solved problem.Cheers, OlegOn 3/21/06, Benoit Hediard <
[EMAIL PROTECTED]> wrote:






Yes, I've also faced this problem (but for the fr_FR 
locale).
Apparently, the only resource bundle currently available in 
the Beta2 is en_US.
 
So for the moment, you need to copy the folder 'C:\Arquivos de 
programas\Adobe\Flex Builder 2 Beta 2\Flex Framework 2\frameworks\locale\us_US' 
and name it 'pt_br'.
 
Benoit Hediard


De : flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] De la part de Bruno 
MartinsEnvoyé : mardi 21 mars 2006 05:53À : 
flexcoders@yahoogroups.comObjet : [flexcoders] framework_rb.swc 
error...

In Beta 2 I have this problem:
 
Severity Description Resource In 
Folder Location Creation Time Id2 unable to open 
'C:\Arquivos de programas\Adobe\Flex Builder 2 Beta 2\Flex Framework 
2\frameworks\locale\pt_br\framework_rb.swc' merc   21 de 
Março de 2006 01:26:47 2  
How to solve it?
 
Tks...





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com









  
  
SPONSORED LINKS
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 

   To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
.



  















--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] OT: What's going on with FlashCoderz

2005-10-14 Thread Oleg Filipchuk



Hi list,sorry for off-topic but I do not know other place where to ask. Are there any people from FlashCoderz? It had not worked since 10th october, and I've got 'undeliverable mail' error when attempt to send subscribe/unsubscribe mail.
Thanx,Oleg






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.