[flexcoders] how to detect that flash is visible

2009-03-13 Thread v.cekvenich
Some of the flash ads detect when ad is seen. Like when I scroll down bellow 
the fold, it start animation once it's shown.

How? What is the event generated?

tia,
.V




[flexcoders] how to receive params from html .... in flash

2009-01-02 Thread v.cekvenich
http://yakovfain.javadevelopersjournal.com/passing_parameters_to_flex_that_works.htm

I can do this an flex.

But... what if I am doing .as project, not flex.
How do I receive an argument?

tia,
.V



[flexcoders] [

2008-11-22 Thread v.cekvenich
I would like to inform you of an online (world wide) class on 3D
Flex/Flash w/ Proj.com engine, using PaperVision:
 • Event details and to register:
http://proj.com/Default.aspx?pageId=212996eventId=32084EventViewMode=EventDetails
 • 1 class composed of 2 sessions: on mornings of December 13 and 20
 • 3D gaming and Rich UI included
 • Early registration discount available now, reg will close when
filled up.
Website: http://proj.com 

.V
proj.com



[flexcoders] Ann: Flex 3D class in SF on Nov after Adobe Conference

2008-11-02 Thread v.cekvenich
Another quick note on live hands on Flex + PaperVision + Collada
training in SF after Adobe conference Max on Nov 20th – 1 day, 10
hours – we will try to cover 2 day's worth of materials in 1 day. 
We will be using the astroredner engine / Flash 10, and we won't be
using Flash CS at all, just Flex :-).

Register here:
http://papervision.proj.com
Also, please note that price goes up $100 in 24 hours :-( so register
now, the class is almost full.

Hope to see you,
.V




[flexcoders] [ANN Class] 3D Interactive UI, Papervision w/ Flex for Games and more

2008-10-17 Thread v.cekvenich
A 10 hour bootcamp in Flex to learn 3D using Papervision. Taught by
professional trainer Vic Cekvenich. In SF on 11/20 after Max,more info
at: http://papervision.proj.com $200-400.

We will cover hands on labs from scratch:

* Setting up the SDK
* Warm up: 2D Motion
* 3D Primitives
* 3D Math
* Materials
* Make a complex objects (Collada)
* Interactions
* Shadows/Reflection
* Flash 10
* Calling a remote (web java/data ) service
* and more.


This is an intensive all day class stressing techniques useful for
gaming and traditional 3D. You will walk out comfortable creating
simple 3D games or a Rich UI Web site.

You must provide your own laptop, over 1 GB ram recommended. Power
will be provided for each laptop. We will mail you class prep
materials on a usb stick 10 days before the class. You will also have
support after the class.

.V




[flexcoders] reflection of proerties in an object

2008-07-23 Thread v.cekvenich
if I get an object, I want to enumerate the properties.

Ex:
var object:Object = someClass.someFunc();

var val1:String = object[key1];

How do I list all the keys in an object?

.V





[flexcoders] Re: reflection of proerties in an object

2008-07-23 Thread v.cekvenich
Thank you both, works!!!

What is a sealed object?

.V

 
  
 
 for (var p:String in object)
 
 trace(p, object[p])
 
  
 
 For sealed objects, use getClassInfo
 
  
 
 
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of v.cekvenich
 Sent: Wednesday, July 23, 2008 8:08 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] reflection of proerties in an object
 
  
 
 if I get an object, I want to enumerate the properties.
 
 Ex:
 var object:Object = someClass.someFunc();
 
 var val1:String = object[key1];
 
 How do I list all the keys in an object?
 
 .V





[flexcoders] Re: reflection of proerties in an object

2008-07-23 Thread v.cekvenich
thx.

.V

--- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote:

 A sealed object is an instance of any class that wasn't declared with
 the 'dynamic' attribute. Most classes, such as Button, are non-dynamic.
 This means that if you try to access a property that wasn't declared at
 compile time, you'll get a runtime error. For example, if you do
 
  
 
 var b:Button = new Button();
 
 b[foo] = 1;
 
  
 
 you'll get an RTE because the Button class didn't declare a property
 named 'foo' at compile time and wasn't declared to be dynamic.
 
  
 
 But if you do
 
  
 
 var o:Object = new Object();
 
 o[foo] = 1;
 
  
 
 you'll create a new 'foo' property on o. This is allowed because the
 Object class was declared to be dynamic.
 
  
 
 You declare a class to be dynamic like this:
 
  
 
 public dynamic class MyClass extends SomeOtherClass
 
 {
 
  
 
 }
 
  
 
 Gordon Smith
 
 Adobe Flex SDK Team
 
  
 
 
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of v.cekvenich
 Sent: Wednesday, July 23, 2008 10:44 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: reflection of proerties in an object
 
  
 
 Thank you both, works!!!
 
 What is a sealed object?
 
 .V
 
  
  
  
  for (var p:String in object)
  
  trace(p, object[p])
  
  
  
  For sealed objects, use getClassInfo
  
  
  
  
  
  From: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
 [mailto:flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
 ] On
  Behalf Of v.cekvenich
  Sent: Wednesday, July 23, 2008 8:08 AM
  To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com 
  Subject: [flexcoders] reflection of proerties in an object
  
  
  
  if I get an object, I want to enumerate the properties.
  
  Ex:
  var object:Object = someClass.someFunc();
  
  var val1:String = object[key1];
  
  How do I list all the keys in an object?
  
  .V
 





[flexcoders] Flex 3 SWF files runtime is NOT smaller

2008-03-05 Thread v.cekvenich
When I set the flex library to be a runtime swc, it produces the
flex.swc but my files are not any smaller?

I just went to libs and said make it runtime, not merged.

What else do I need to do?

.V



[flexcoders] Re: Flex 3 SWF files runtime is NOT smaller

2008-03-05 Thread v.cekvenich
Of course I make a release version. And not build error.
It just seems to ignore that I flagged it as shared.

There are not even any blog posts or docs on this, just marketing says
that your swf will be smaller if you mark flex as swc shared.

I can't get it to work. Anyone else?

.V


--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED]
wrote:

 On Wednesday 05 Mar 2008, v.cekvenich wrote:
  What else do I need to do?
 
 Build a non-debug version - Builder 3 requires you to go through the
'make 
 release version' process to do this will make it even smaller, if
you hadn't 
 realised.
 
 But are you sure there isn't a build error ?
 
 -- 
 Tom Chiverton
 Helping to elementarily create frictionless experiences
 on: http://thefalken.livejournal.com
 
 
 
 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] Stream any readio station (like Winamp and iTunes)

2008-02-13 Thread v.cekvenich
I do not mean a list of mp3 files or Red 5, that I know how to do.

How do I stream any internet radio stations like iTunes and Winamp?

Or is there a subset of radio stations that would work?

.V



[flexcoders] how to get image real/natural size?

2008-01-19 Thread v.cekvenich
I am making an image from string url of the image name.
How would I find it's real/natural image size?

.V



[flexcoders] How to expand swf height over html?

2007-12-19 Thread v.cekvenich
If I click on a link in my flash widget (that is on a html/jsp page) I
want to move down then html bellow and have my flash widget get a
bit larger.

Any clue on how to do some similar ways to doing this?

It's almost a menu, information panel, when I click more it would
expand to show about 1/4 to show a bit more text - but there is html
bellow, so it would need to show more then swf dimentions.

tia,
.V








[flexcoders] How to force swf reload?

2007-11-27 Thread v.cekvenich
What (java)script do people us to deploy swf files?

We are using adobes .js script, but this does not reload the new swf 
files when we release a new version. 
So our users see the old swf version of our app.

At the moment the only thing we tested that works is to rename the swf 
file each time.

What do other do as a good practice?
Some ant script + some javascript that loads?

tia,
.V



[flexcoders] generated html wraper to pass args to swf?

2007-03-18 Thread v.cekvenich
I can pass pam to swt using some.swf?arg=23?arg2=3 and that works.

but if some.swf is wraped in html (and it has to be in my case), how 
do i edit the generated html to pass that arg?
ex some.html?arg=23?arg2=3 passed to the swf?

tia,
.V



[flexcoders] Re: HTML in Flex

2007-03-16 Thread v.cekvenich
take a look at pointcast.com for example.



[flexcoders] Re: netstream mp3 access to SoundMixer.computeSpectrum in sandbox not allowed

2007-03-16 Thread v.cekvenich
Any idea how to make a sound class out of a netstream?

?

tia,
.V

--- In flexcoders@yahoogroups.com, v.cekvenich [EMAIL PROTECTED] 
wrote:

 How do I get something similar so that I can draw a 
 spectrum(vibrating lines) of the music streaming on netstream in 
 flash 2.01?
 
 tia,
 .V