[Flashcoders] swf preview in mac oox finder

2008-02-14 Thread Robin Burrer

Hi All,

does anybody know if there a way to preview swf file in the finder?

I found this tool:
http://www.eltima.com/products/swf-live-preview/

I need something for the mac though.


Thanks


Robin

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] static vars / constatnts in Movie Clips - Flash CS3

2008-02-01 Thread Robin Burrer

Hi All,

I want do declare a constant in a class that extends the Movieclip  
class.

That all works fine in Flexbuilder:


public class SectionButton extends MovieClip
{
// events   
public static const ON_PRESS:String = onPress;
}


Referring to this constant from another class  seems o be fine as well  
(Felxbuilder does not give me a syntax error.):


import SectionButton;

public class SomeClass
{

public function SomeClass()
{
trace (SectionButton.ON_PRESS)
}


}


But if I try to compile my fla file in Flash CS 3 I get the following  
error Message:


1119: Access of possibly undefined property ON_PRESS through a  
reference with static type Class.


Any Ideas?


Robin





___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] static vars / constatnts in Movie Clips - Flash CS3

2008-02-01 Thread Robin Burrer

 Works fine for me... How are you creating SomeClass instance?

like this - it's all really basic 

package
{
import flash.display.MovieClip;
import de.formDivision.fdCD.view.slidePlayer.SectionButton;

public class Test extends MovieClip
{
public function Test()
{



var mySectionButton:SectionButton = new SectionButton();
this.addChild(mySectionButton);

// here I get the compiler error
trace (SectionButton.ON_PRESS);


			// The foo class does not extend the Movie Clip class - no coplier  
errors here...

var myFoo:Foo = new Foo();
trace (Foo.VALUE);

}



}



}

/ and here is the SectionButton Class - I deleted  
everything but the static variable declaration

package de.formDivision.fdCD.view.slidePlayer
{
import flash.display.MovieClip;
import de.formDivision.fdCD.vo.SectionVO;
import flash.events.MouseEvent;
import flash.events.Event;

public class SectionButton extends MovieClip
{
// events

public static const ON_PRESS:String = onPress;

}

}



On 01/02/2008, at 3:47 PM, Kenneth Kawamoto wrote:


Works fine for me... How are you creating SomeClass instance?

Kenneth Kawamoto
http://www.materiaprima.co.uk/

Robin Burrer wrote:

Hi All,

I want do declare a constant in a class that extends the Movieclip  
class.

That all works fine in Flexbuilder:


public class SectionButton extends MovieClip
   {
   // events   public static const ON_PRESS:String  
= onPress;

   }


Referring to this constant from another class  seems o be fine as  
well (Felxbuilder does not give me a syntax error.):


import SectionButton;

public class SomeClass
{

   public function SomeClass()
   {
   trace (SectionButton.ON_PRESS)
   }


}


But if I try to compile my fla file in Flash CS 3 I get the  
following error Message:


1119: Access of possibly undefined property ON_PRESS through a  
reference with static type Class.


Any Ideas?


Robin


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] static vars / constatnts in Movie Clips - Flash CS3

2008-02-01 Thread Robin Burrer
I found the mistake. I set the id in linkage properties  to  
SectionButton  and the base class to  
de.formDivision.fdCD.view.slidePlayer.SectionButton as well. If I  
change the id to SectionButton1 it compiles fine.


Thanks for your help everybody!

Robin







On 01/02/2008, at 3:41 PM, Juan Pablo Califano wrote:


the code works fine for me...

I just added the package declaration


package {
import SectionButton;

public class SomeClass
{

public function SomeClass()
{
  trace (SectionButton.ON_PRESS)
}


}
}

package {
import flash.display.MovieClip;

public class SectionButton extends MovieClip
  {
  // events
  public static const ON_PRESS:String = onPress;
  }

}
It compiles without errors and traces onPress.


Cheers
Juan Pablo Califano


2008/2/1, Robin Burrer [EMAIL PROTECTED]:


Hi All,

I want do declare a constant in a class that extends the Movieclip
class.
That all works fine in Flexbuilder:


public class SectionButton extends MovieClip
  {
  // events
  public static const ON_PRESS:String = onPress;
  }


Referring to this constant from another class  seems o be fine as  
well

(Felxbuilder does not give me a syntax error.):

import SectionButton;

public class SomeClass
{

  public function SomeClass()
  {
  trace (SectionButton.ON_PRESS)
  }


}


But if I try to compile my fla file in Flash CS 3 I get the following
error Message:

1119: Access of possibly undefined property ON_PRESS through a
reference with static type Class.

Any Ideas?


Robin





___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] search engine optimization for flash sites

2007-09-06 Thread Robin Burrer
Hi there,

My client wants to have  his website optimized for search engines.
I don't know much about this topic. The binary data of a flash file can't
obviously be read by
a search engine though.

I have this idea to create a html site map for my flash page. Basically this
site map would have
short summaries of all flash pages and links to these pages (e.g.
http://myDomain.com/myflashPgae.htm?page =home).
The search engines should then be able to find the site map page.

Ideally this site page would be generated  dynamically. But for now a static
page will do.

Does anybody have experience with such an approach?

Any thoughts?

Cheers

Robin
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] search engine optimization for flash sites

2007-09-06 Thread Robin Burrer
Thanks Jiri,

this however only let's you control the flash movie with the back and
forward buttons of the browser.
I'm looking for a solution that published the content (text) of flash pages
as html.

Cheers

Robin

On 9/6/07, Jiri Heitlager | dadata.org [EMAIL PROTECTED] wrote:


 Robin,

 maybe this will help. It wont solve all your problems, but could make a
 solution a bit easier.

 http://www.asual.com/swfaddress/

 Jiri

 Robin Burrer wrote:
  Hi there,
 
  My client wants to have  his website optimized for search engines.
  I don't know much about this topic. The binary data of a flash file
 can't
  obviously be read by
  a search engine though.
 
  I have this idea to create a html site map for my flash page.
 Basically this
  site map would have
  short summaries of all flash pages and links to these pages (e.g.
  http://myDomain.com/myflashPgae.htm?page =home).
  The search engines should then be able to find the site map page.
 
  Ideally this site page would be generated  dynamically. But for now a
 static
  page will do.
 
  Does anybody have experience with such an approach?
 
  Any thoughts?
 
  Cheers
 
  Robin
  ___
  Flashcoders@chattyfig.figleaf.com
  To change your subscription options or search the archive:
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
  Brought to you by Fig Leaf Software
  Premier Authorized Adobe Consulting and Training
  http://www.figleaf.com
  http://training.figleaf.com
 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] ArgumentError: Error #2126: NetConnection object must be connected - this is killing me

2007-04-17 Thread Robin Burrer

Hi there,

I want to build a flv player in AS3. 

However once I try the net connection object Flex Builder decides to
screw up my entire project and refuses to compile it again regardless
what I do.

Even if I delete all the code in my base class Flex builder still gives
me that error message:

ArgumentError: Error #2126: NetConnection object must be connected.
at flash.net::NetStream/flash.net:NetStream::construct()
at flash.net::NetStream$iinit()
at
VideoPlayer/VideoPlayer::initVideoConnnect()[E:\vss_data\HUBB\HUBB
Investor\videoPlayer2\VideoPlayer.as:54]
at VideoPlayer$iinit()[E:\vss_data\HUBB\HUBB
Investor\videoPlayer2\VideoPlayer.as:35]

 
I physically have to delete my project and create it again to compile
it.

Any ideas?


Robin

// init video connection
private function initVideoConnnect():void
{
// create netStream 

var myConnection:NetConnection  =  new
NetConnection();

// these two lines kill my project 
myConnection.connect(null);
myStream = new NetStream(myConnection);
myStream.play(temp/video.flv);

// add listener

//myConnection.addEventListener(NetStatusEvent.NET_STATUS,onNetStaus);





}



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] coverting video to flv on the server

2007-04-17 Thread Robin Burrer
Thanks Ian!

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ian
Thomas
Sent: Monday, 26 March 2007 5:35 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] coverting video to flv on the server

Hi Robin,
  Take a look at ffmpeg.

http://ffmpeg.mplayerhq.hu/

HTH,
   Ian

On 3/26/07, Robin Burrer [EMAIL PROTECTED] wrote:
 Hi there,

 Somebody told me the other day there are tools that can convert the
most
 common video formats to flvs. Unfortunately I can't remeber the names
of
 these products.

 My company wants to create a youTube like web application where the
user
 can upload a video which then gets converted to an flv.

 Any recommendations and/or thoughts?

 Cheers

 Robin
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] ArgumentError: Error #2126: NetConnection object mustbe connected - this is killing me

2007-04-17 Thread Robin Burrer
I restarted my computer twice now it seems to work fine...

Robin

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Robin
Burrer
Sent: Wednesday, 18 April 2007 12:47 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] ArgumentError: Error #2126: NetConnection object
mustbe connected - this is killing me


Hi there,

I want to build a flv player in AS3. 

However once I try the net connection object Flex Builder decides to
screw up my entire project and refuses to compile it again regardless
what I do.

Even if I delete all the code in my base class Flex builder still gives
me that error message:

ArgumentError: Error #2126: NetConnection object must be connected.
at flash.net::NetStream/flash.net:NetStream::construct()
at flash.net::NetStream$iinit()
at
VideoPlayer/VideoPlayer::initVideoConnnect()[E:\vss_data\HUBB\HUBB
Investor\videoPlayer2\VideoPlayer.as:54]
at VideoPlayer$iinit()[E:\vss_data\HUBB\HUBB
Investor\videoPlayer2\VideoPlayer.as:35]

 
I physically have to delete my project and create it again to compile
it.

Any ideas?


Robin

// init video connection
private function initVideoConnnect():void
{
// create netStream 

var myConnection:NetConnection  =  new
NetConnection();

// these two lines kill my project 
myConnection.connect(null);
myStream = new NetStream(myConnection);
myStream.play(temp/video.flv);

// add listener

//myConnection.addEventListener(NetStatusEvent.NET_STATUS,onNetStaus);





}



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] OT: Happy Easter

2007-04-10 Thread Robin Burrer
You guys must be seriously bored ...

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Nick
Weekes
Sent: Tuesday, 10 April 2007 5:04 PM
To: flashcoders@chattyfig.figleaf.com
Subject: RE: [Flashcoders] OT: Happy Easter

This is beyond OT its not even funny.   Im sure the OP didn't mean to
cause
offence, but that's exactly what he's done.  Think about it next time
dude...

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Paul V.
Sent: 10 April 2007 04:15
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] OT: Happy Easter

I probably shouldn't but. .. Easter...named after the goddess of
fertility,
is about new creations (your choice), so I don't know what you guys
generally know about paganism and the gods, but, well more than half of
the
world still celebrates, 'easter' or 'passover' at the first moon after
the
vernal (spring) equinox.  I appreciate the point made originally that
maybe
saying God bless you, and not understanding that it would offend some is
a
just bit presumptuous, considering the history (and not the history
mentioned above).  Anyway...I would have to say that, as Arse mentioned
this
all doesn't have anything to do with Flash.  Where logic prevails ;)
Nice
to have a long relaxing weekend though.

Peace  Vm

Paul Vdst.

- Original Message -
From: eric e. dolecki [EMAIL PROTECTED]
To: flashcoders@chattyfig.figleaf.com
Sent: Monday, April 09, 2007 7:27 PM
Subject: Re: [Flashcoders] OT: Happy Easter


 When someone sneezes, I say, God bless you. They don't have to
believe
in
 God. No one has ever told me to keep God to myself. If they did, I
wouldn't
 change the way I live. Just my 2 cents.

 - e



 On 4/9/07, Snepo - Arse [EMAIL PROTECTED] wrote:
 
 
  On 10/04/2007, at 8:10 AM, Gustavo Duenas wrote:
 
   at least he BELIEVES IN YOU.
 
  As does Satan, Zeus, Quetzalcoatl, Ganesha, Cthulhu and L Ron
Hubbard.
 
  Though I'm not sure what that has to do with Flash.
  ___
  Flashcoders@chattyfig.figleaf.com
  To change your subscription options or search the archive:
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
  Brought to you by Fig Leaf Software
  Premier Authorized Adobe Consulting and Training
  http://www.figleaf.com
  http://training.figleaf.com
 



 -- 
 eric e. dolecki
 senior interactive engineer
 http://www.ericd.net
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] coverting video to flv on the server

2007-03-25 Thread Robin Burrer
Hi there,

Somebody told me the other day there are tools that can convert the most
common video formats to flvs. Unfortunately I can't remeber the names of
these products.

My company wants to create a youTube like web application where the user
can upload a video which then gets converted to an flv.

Any recommendations and/or thoughts?

Cheers

Robin


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Shahid
Kanwal
Sent: Saturday, 24 March 2007 11:39 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] setting a timer in flash 8

hi,

i think this might help with the flash timer 

stop();
pausedAt = getTimer();
this.createEmptyMovieClip(frameLoop, 1);
frameLoop.onEnterFrame = function() {
if ((getTimer()-pausedAt)/500=6) {
play();
this.removeMovieClip();
}
// end if  
};

I have used this many times.


Shahid


 
-
Now that's room service! Choose from over 150,000 hotels 
in 45,000 destinations on Yahoo! Travel to find your fit.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Flash exe and Vista

2007-02-25 Thread Robin Burrer
Hi there,

I'm using swf studio as a swf wrapper. Unfortunately swf studio has not
been updated for vista yet. As a result you have to have administrator
rights to run the flash app. 

Even more annoying is the fact that if you just run the application by
double-clicking the exe (or through an autorun file on a CD-ROM) the exe
won't start but will still be listed in the task manager. This means
that you manually have to quit the application in the task manager
before you can start the exe as an administrator. 

The worst thing about this whole issue is that Microsoft didn't think it
was necessary to inform the user in any way when he tries to run a
legacy exe.
No error message - nothing. The app just won't start.

So my question is: Are there any workarounds yet? Do other swf wrapper
tools already work with vista? 

I came up with this idea of creating a vista compatible windows form
application. This application would then open an alert popup window,
which informs the user that the application which is about to be
launched (my flash exe) requires administrator rights. It would then
prompt the user to 
Run the application as an administrator, start the flash exe and quit.

Not sure if this is possible though ...


Any thoughts?


Robin

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Flash exe and Vista

2007-02-25 Thread Robin Burrer
I already sent them an email to them. Let's see what they come back
with.
I start to wonder if they planning to release a new version at all...
There's still no flash 9 support + the website has not been updated for
ages.

Robin




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Muzak
Sent: Monday, 26 February 2007 12:45 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] Flash exe and Vista

Get in touch with northcode:
http://www.northcode.com/support.php
http://www.northcode.com/forums/index.php
http://www.northcode.com/forums/showthread.php?t=7852highlight=vista

MDM Zinc is supposed to work on Vista, but I haven't been able to test
it yet.
http://www.multidmedia.com/support/developers/technotes/?action=showid=
58

regards,
Muzak


- Original Message - 
From: Robin Burrer [EMAIL PROTECTED]
To: flashcoders@chattyfig.figleaf.com
Sent: Monday, February 26, 2007 1:54 AM
Subject: [Flashcoders] Flash exe and Vista


Hi there,

I'm using swf studio as a swf wrapper. Unfortunately swf studio has not
been updated for vista yet. As a result you have to have administrator
rights to run the flash app.

Even more annoying is the fact that if you just run the application by
double-clicking the exe (or through an autorun file on a CD-ROM) the exe
won't start but will still be listed in the task manager. This means
that you manually have to quit the application in the task manager
before you can start the exe as an administrator.

The worst thing about this whole issue is that Microsoft didn't think it
was necessary to inform the user in any way when he tries to run a
legacy exe.
No error message - nothing. The app just won't start.

So my question is: Are there any workarounds yet? Do other swf wrapper
tools already work with vista?

I came up with this idea of creating a vista compatible windows form
application. This application would then open an alert popup window,
which informs the user that the application which is about to be
launched (my flash exe) requires administrator rights. It would then
prompt the user to
Run the application as an administrator, start the flash exe and quit.

Not sure if this is possible though ...


Any thoughts?


Robin


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] v2 text area htmlText and embedFonts

2007-01-01 Thread Robin Burrer
Hi there,

I'm having trouble with the v2 text area component.
The problem is I want to display html text in the component + I want to
use an embedded font. Using embedded fonts with normal text works fine
and html text with device font's works fine as well. But using both at
the same time just doesn't work :-( 

Here's the code 

// if I set the html property to true the text is not displayed unless I

// change the embedFonts property to false ..
//myTa.html = true;

myTa.setStyle(fontSize, 12);
myTa.setStyle(fontFamily, cg);
myTa.setStyle(color, 0xff2366);
myTa.embedFonts = true;

this.myTa.text = Test br testbr test;

Any ideas? 


Cheers 


Robin


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] v2 text area htmlText and embedFonts

2007-01-01 Thread Robin Burrer
Silly me - I found the answer myself. The font face has to be specified
in the html font tag not with the setStyle() method. 

Happy new year everybody!

R

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Robin
Burrer
Sent: Tuesday, 2 January 2007 9:31 AM
To: Flashcoders mailing list
Subject: [Flashcoders] v2 text area htmlText and embedFonts 

Hi there,

I'm having trouble with the v2 text area component.
The problem is I want to display html text in the component + I want to
use an embedded font. Using embedded fonts with normal text works fine
and html text with device font's works fine as well. But using both at
the same time just doesn't work :-( 

Here's the code 

// if I set the html property to true the text is not displayed unless I

// change the embedFonts property to false ..
//myTa.html = true;

myTa.setStyle(fontSize, 12);
myTa.setStyle(fontFamily, cg);
myTa.setStyle(color, 0xff2366);
myTa.embedFonts = true;

this.myTa.text = Test br testbr test;

Any ideas? 


Cheers 


Robin


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Cairngorm

2006-12-18 Thread Robin Burrer
Hi Greg,

Thanks for your reply from a few weeks ago. I just found your message
today by accident...:-)
I ended up creating my own framework which is basically a simplified
version of cairngorm for AS2. I didn't use all of the underlying design
patterns but most of them. I found that you can easily replace the
data-binding with setter methods in the model though. 

For each property in my model I also have a setter method.
Commands that want to update a property in the model will call a setter
method. 
The model then not only updates its property but also dispatches an
event to all its listeners/views. - This works perfectly.

Robin





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of greg h
Sent: Tuesday, 19 December 2006 9:09 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Cairngorm

Bram,

Cairngorm has been used on Flash only projects (although not by me ;-).
Following are 3 links related to 2 occasions that this question came up
last
month here on this list.

http://chattyfig.figleaf.com/pipermail/flashcoders/2006-November/175801.
html

http://tech.groups.yahoo.com/group/cairngorm-documentation/message/156

http://chattyfig.figleaf.com/pipermail/flashcoders/2006-November/176244.
html

Yours is the first mention I have seen of a Cairngorm AS3 project not
related to Flex.  Please do post back and give us an update on your
experience if you do move ahead using Cairngorm on an AS3 Flash only
project.

If you have follow on questions, you might also try posting on either or
both of the following lists:
cairngorm-documentationhttp://tech.groups.yahoo.com/group/cairngorm-doc
umentation/and
cairngorm-devel http://tech.groups.yahoo.com/group/cairngorm-devel/

hth,

g


On 12/18/06, Webdevotion [EMAIL PROTECTED] wrote:

 Hello Flashcoders,

 Is it allright to use Cairngorm for AS 3 projects?
 I'm getting up to speed with Flex and AS 3.0 and
 want to start learning some relevant frameworks.

 Which ones are among the best choices for
 strictly AS 3 projects ?
 Any articles concerning those choices ?

 Bram

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Flv's playing in a projector from usb drive

2006-09-06 Thread Robin Burrer
What kind of projector is it? Are you using the Adobe projector or a
wrapper application? 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kent
Haynes
Sent: Thursday, 7 September 2006 8:21 AM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Flv's playing in a projector from usb drive

It's not huge  3.9 MB.

But we've just discovered some more info.  It's definitely related to
the FAT32 file system.  We formatted two partitions on the drive one
NTFS and another FAT32 and sure enough the NTFS plays fine FAT32 doesn't
play.  So I was looking for weird characters in the path.  Nothing out
of the ordinary. Path + name = english/flv/Classroom.flv  I also tried
english\flv\Classroom.flv to no avail.

None of our package structures are deep at all.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Josh
Santangelo
Sent: Wednesday, September 06, 2006 4:06 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Flv's playing in a projector from usb drive

Is your FLV extremely large, or named with a very weird filename?

On Sep 6, 2006, at 1:20p, Kent Haynes wrote:

 Found out some more on this maybe.  It appears that the issue might be

 related to the usb drive being formatted FAT32 instead of NTFS.  We 
 tried a local partition formatted in FAT32 and got the same results.
 Any known issues of this kind?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com

--
This message has been scanned for viruses and dangerous content by
MailScanner, and is believed to be clean.

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] HTML formated text in Flash 8 SWF

2006-08-29 Thread Robin Burrer
Hi all,

This is wired. It seems html text in a flash 7 swf behaves differently
than html text in a flash 8 swf. 

var myText =pbHeadline/b/p  pSome
text/p;
this.myTextField.html = true;
this.myTextField.htmlText = myText;

the swf 7 text filed displays:
HeadlineSome text // the whitespace between the p tags is ignored. 

the  swf 8 text filed displays:
Headline Some text 


Note that I use the flash 8 player to view both swf files.

I have a few xml documents which have a lot of html formatted text in an
CD-DATA tag. Getting rid of the whitespace between the html tags would
be a bit of a nightmare + the XML document would not be
readable/editable anymore. Any ideas how to get around this problem?


Cheers


Robin
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] HTML formated text in Flash 8 SWF

2006-08-29 Thread Robin Burrer

Hi EKA,

Too easy. For this application I'm using the v2 text area component.
condenseWhite is not listed as a property. I realized that the text
area component doesn't inherit properties from the flash text field.

myTextArea.label.condenseWhite=true works fine though. Thanks for the
tip!

It's a bit strange that the default value for this property changes
depending on the version of the swf file.

Cheers

Robin



 where I should have looked up the text filed properties. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of eka
Sent: Wednesday, 30 August 2006 1:43 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] HTML formated text in Flash 8 SWF

Hello :)

try to use TextField.condenseWhite property :)

http://livedocs.macromedia.com/flashlite/2/main/0816.html

EKA + :)


2006/8/29, Robin Burrer [EMAIL PROTECTED]:

 Hi all,

 This is wired. It seems html text in a flash 7 swf behaves differently
 than html text in a flash 8 swf.

 var myText =pbHeadline/b/p  pSome
 text/p;
 this.myTextField.html = true;
 this.myTextField.htmlText = myText;

 the swf 7 text filed displays:
 HeadlineSome text // the whitespace between the p tags is ignored.

 the  swf 8 text filed displays:
 Headline Some text


 Note that I use the flash 8 player to view both swf files.

 I have a few xml documents which have a lot of html formatted text in
an
 CD-DATA tag. Getting rid of the whitespace between the html tags would
 be a bit of a nightmare + the XML document would not be
 readable/editable anymore. Any ideas how to get around this problem?


 Cheers


 Robin
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] RE: weather web service

2006-08-21 Thread Robin Burrer
Yes there definitely must be more. Even the yahoo weather widget shows
the forecast for the next four days.  So it must be using a different
feed too (the yahoo feed just gives you the forecast for the next day).

Robin



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bjorn
Schultheiss
Sent: Monday, 21 August 2006 3:59 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] RE: weather web service

I'm sure there are more.
In firefox I use the accuweather extension that must be pulling its data
from a feed also.
What about those weather widgets on MAC, they'd be using another feed I
guess. 


Regards,
 
Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Robin
Burrer
Sent: Monday, 21 August 2006 3:27 PM
To: Flashcoders mailing list
Subject: [Flashcoders] RE: weather web service


Thanks Bjorn,

This one seems to be a bit better than the Yahoo feed. What I like about
the
yahoo feed though is that it returns you a weather code for each
weather
condition (e.g. 29 for cloudy). This is really handy if you want
visualize
the current weather condition.
Well I guess you can't have it all...

Cheers

Robin


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bjorn
Schultheiss
Sent: Monday, 21 August 2006 2:53 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] htacess and loaded SWFs

Hey Robin,

Try http://www.webservicex.net/WS/WSDetails.aspx?CATID=12WSID=56
I used ServiceCapture on Eric Dolecki's blog www.ericd.net and found it
in
the traffic logs


Regards,
 
Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Robin
Burrer
Sent: Monday, 21 August 2006 2:37 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] htacess and loaded SWFs

Hi there,

Does anybody know if there is free weather forecast web-service?
I went to the yahoo website but all I could find is an RSS feed, which
seems
to be a bit buggy. Plus it only gives you the forecast the next day. 

Thanks

Robin

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Haikal
Saadh
Sent: Monday, 21 August 2006 1:51 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] htacess and loaded SWFs

This would be why: 
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=b06f1712

 Currently the SWF format does not include HTTP referrer information 
 when sending http requests. Macromedia is aware of this issue and is 
 considering possible future solutions.


Jay Bibby wrote:
 Hi folks,

 I've spent all evening trying to find an answer to this question, and 
 I've just recently subscribed to this list, so I apologize in advance 
 if this has already been covered.

 I have set up a directory to serve up SWFs from with an htaccess file 
 that prevents direct access to the SWFs or from domains other than my 
 own. This is working fine... when an HTML or PHP file on my domain is 
 the file that is loading the SWF.

 However, when the same HTML or PHP file loads a SWF that then tries to

 load another SWF from the same directory, htaccess prevents it. I am 
 using a MovieClipLoader to load the external SWF.

 How is loading a SWF from within a SWF different to Apache than 
 loading the same SWF from an HTML or PHP file?

 I'm pulling my hair out here. Thanks in advance.

 Jay
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training 
 http://www.figleaf.com http://training.figleaf.com

--
Haikal Saadh
Applications Programmer
ICT Resources, TALSS
QUT Kelvin Grove

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com

RE: [Flashcoders] htacess and loaded SWFs

2006-08-20 Thread Robin Burrer
Hi there,

Does anybody know if there is free weather forecast web-service?
I went to the yahoo website but all I could find is an RSS feed, which
seems to be a bit buggy. Plus it only gives you the forecast the next
day. 

Thanks

Robin

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Haikal
Saadh
Sent: Monday, 21 August 2006 1:51 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] htacess and loaded SWFs

This would be why: 
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=b06f1712

 Currently the SWF format does not include HTTP referrer information 
 when sending http requests. Macromedia is aware of this issue and is 
 considering possible future solutions.


Jay Bibby wrote:
 Hi folks,

 I've spent all evening trying to find an answer to this question, and
 I've just recently subscribed to this list, so I apologize in advance
 if this has already been covered.

 I have set up a directory to serve up SWFs from with an htaccess file
 that prevents direct access to the SWFs or from domains other than my
 own. This is working fine... when an HTML or PHP file on my domain is
 the file that is loading the SWF.

 However, when the same HTML or PHP file loads a SWF that then tries to
 load another SWF from the same directory, htaccess prevents it. I am
 using a MovieClipLoader to load the external SWF.

 How is loading a SWF from within a SWF different to Apache than
 loading the same SWF from an HTML or PHP file?

 I'm pulling my hair out here. Thanks in advance.

 Jay
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

-- 
Haikal Saadh
Applications Programmer
ICT Resources, TALSS
QUT Kelvin Grove

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] RE: weather web service

2006-08-20 Thread Robin Burrer

Thanks Bjorn,

This one seems to be a bit better than the Yahoo feed. What I like about
the yahoo feed though is that it returns you a weather code for each
weather condition (e.g. 29 for cloudy). This is really handy if you want
visualize the current weather condition.
Well I guess you can't have it all...

Cheers

Robin


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bjorn
Schultheiss
Sent: Monday, 21 August 2006 2:53 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] htacess and loaded SWFs

Hey Robin,

Try http://www.webservicex.net/WS/WSDetails.aspx?CATID=12WSID=56
I used ServiceCapture on Eric Dolecki's blog www.ericd.net and found it
in
the traffic logs


Regards,
 
Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Robin
Burrer
Sent: Monday, 21 August 2006 2:37 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] htacess and loaded SWFs

Hi there,

Does anybody know if there is free weather forecast web-service?
I went to the yahoo website but all I could find is an RSS feed, which
seems
to be a bit buggy. Plus it only gives you the forecast the next day. 

Thanks

Robin

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Haikal
Saadh
Sent: Monday, 21 August 2006 1:51 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] htacess and loaded SWFs

This would be why: 
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=b06f1712

 Currently the SWF format does not include HTTP referrer information 
 when sending http requests. Macromedia is aware of this issue and is 
 considering possible future solutions.


Jay Bibby wrote:
 Hi folks,

 I've spent all evening trying to find an answer to this question, and 
 I've just recently subscribed to this list, so I apologize in advance 
 if this has already been covered.

 I have set up a directory to serve up SWFs from with an htaccess file 
 that prevents direct access to the SWFs or from domains other than my 
 own. This is working fine... when an HTML or PHP file on my domain is 
 the file that is loading the SWF.

 However, when the same HTML or PHP file loads a SWF that then tries to

 load another SWF from the same directory, htaccess prevents it. I am 
 using a MovieClipLoader to load the external SWF.

 How is loading a SWF from within a SWF different to Apache than 
 loading the same SWF from an HTML or PHP file?

 I'm pulling my hair out here. Thanks in advance.

 Jay
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training 
 http://www.figleaf.com http://training.figleaf.com

--
Haikal Saadh
Applications Programmer
ICT Resources, TALSS
QUT Kelvin Grove

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] flash widgets

2006-08-16 Thread Robin Burrer
Hi there,

Is there any way to create flash widgets other than using swf wrappers?
It would be cool if could use flash to create apple or yahoo widgets. 

I reckon for a c++ programmer it should not be too hard to create widget
runtime that uses the flash player. Can someone please do this? :-)


Robin
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] flash widgets

2006-08-16 Thread Robin Burrer
Yes I know. I think dashboard will just crop the browser window though.
I was thinking more of a cross platform application, which supports the
swf format. 

Features of such an application would be:

- Starts in the background when you boot the computer
- You could assign a keyboard shortcut to show/hide widgets
- You can easly install widgets by adding swf files to a particular
folder 
- you would have access to some of the operating system APIs (e.g. show
battery level)

Basically all features of the yahoo widget application + swf support.
Maybe Yahoo could just add swf support. Or Adobe could add a widget
mode in Apollo...


Robin 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Haikal
Saadh
Sent: Thursday, 17 August 2006 3:00 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] flash widgets

Flash dashboard widgets for OSX will be easy enough once Leopard comes 
out, thanks to it's clip to widget feature, which basically lets you 
make a widget from a section of a webpage.

The way I understood it, dashboard widgets atm are just mostly html and 
javascript? This would imply that you can use swfs in your widgets 
now... (I could be wrong, havent done extensive research).


Robin Burrer wrote:
 Hi there,

 Is there any way to create flash widgets other than using swf
wrappers?
 It would be cool if could use flash to create apple or yahoo widgets. 

 I reckon for a c++ programmer it should not be too hard to create
widget
 runtime that uses the flash player. Can someone please do this? :-)


 Robin
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

   


-- 
Haikal Saadh
Applications Programmer
ICT Resources, TALSS
QUT Kelvin Grove

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] |:::| can you write dynamic meathods in a class?

2006-08-14 Thread Robin Burrer

If I want to change the behavior of an object dynamically I rather
create a new class to encapsulate the functionality. I might have to
write more code but I think it this is a very clean approach. 


class CustomClickBehavior implements Clickable 
{



public function click():Void
{
trace (hello world!);
}
}



// class  
class Foo
{
var myClickBehavior: Clickable;

// here I can change the behavior to what ever I want
public function setClickBehavior (myClickBehavior:
Clickable):Void
{
this. myClickBehavior = myClickBehavior;
}


public function onClick():Void

{
myClickBehavior.click();
}

}


// Interface

Interface Clickable
{
public function click():void;
}


// code

var myFoo = new Foo();
var myCustomClickBehavior  = new CustomClickBehavior();

myFoo.setClickBehavior(myCustomClickBehavior);





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of dnk
Sent: Monday, 14 August 2006 1:47 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] |:::| can you write dynamic meathods in a
class?

Bjorn Schultheiss wrote:
 Hey Guys, check this out


 Var clickHandler:Function = MyClass.staticMethod;
 var args:Array = ['Can', 'pass', 'in', 'any', 'amount'];
 newBtn.addEventListener(click, Delegate.create(this,
function(evt:Object,
 meth:Function, args:Array) { meth.apply(null, args) }, clickHandler,
args )
 ); 
That is a good idea! I just tried one of simpler layout (at least to me 
in terms of what I understand in AS)  works like a charm:

import utils.Delegate;
//Create array to pass multiple args in - both string and number for
testing
var aMyArgs:Array = [1, 2, 'three', 4];
//use the delegate
this.menuBtn.addEventListener(click, Delegate.create(this, onHit1, 
aMyArgs));
//create the btn event to handle the click
function onHit1(o:Object, n:Array)
{
for (i = 0; i  n.length; i++)
{
trace(it was hit with the arg:  + n[i]);
}
}

This is VERY handy (well to me anyways) to be able to pass in what ever 
args I need to.

d


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Cairngorm 2.0 tutorials

2006-08-08 Thread Robin Burrer
As Bjorn suggested:

http://labs.adobe.com/wiki/index.php/Cairngorm (how come Adobe is using
PHP btw)

Have a read through this very good article. After I studied the article
I had a look at Jesse Warden's Cairngorm 2 web service example.

http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html


Then I created a couple of Cairngorm sample applications. Once you got
the hang of it you don't want to go back... 


Robin




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matti
Bar-Zeev
Sent: Tuesday, 8 August 2006 4:14 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

Give us some credit, mate :) been there before.
Did you see any step by step tutorial there?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bjorn
Schultheiss
Sent: Tuesday, August 08, 2006 9:10 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

http://labs.adobe.com/wiki/index.php/Cairngorm


Regards,

Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matti
Bar-Zeev
Sent: Tuesday, 8 August 2006 3:56 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Cairngorm 2.0 tutorials

Hi All,

Can someone please direct me to a tutorial on Cairngorm 2.0 with Flex
2.0
Builder? I looked and googled but came with nothing.

I'm talking about a step to step kinda thing.












__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Flash Lite - what's happening

2006-08-07 Thread Robin Burrer
Well that might be case for Japan but I haven't seen a flash lite
enabled mobile here in Australia. I just went to Europe a couple of
weeks ago and Flash Lite dose not seem to be a big thing there either.
Furthermore, I really can't be bothered developing Flash lite v.1.1. 

 If Flash Lite were on every handset in the world and had full
projector
capability ( integration with hardware and OS ) - what would you do with
it?


Well - you could for example create widgets for mobile phones or games.
Or you could use it as marketing tool, similar to a CD-ROM. However you
would download the application via Bluetooth for a Flash lite terminal
...

I think what we need is something like the Frog in the Blender
application. I can remember that after this silly flash movie was sent
around as an email attachment people suddenly knew what Flash was.
Obviously we would need something more mature now. My point is Flash
became successful because people can easily create Flash content and it
can be played on almost any computer. But it's pointless to create
content for something, which only exists on the Adobe site or in Japan
(unless you happen to live in Japan)


   

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Keldon
Rush
Sent: Monday, 7 August 2006 3:40 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Flash Lite - what's happening

http://www.google.com/search?hl=enq=vzw+flash+lite 

You literally can't buy a new handset in Japan that doesn't support
Flash
Lite.

You can buy an LG 8300 today in a Verizon Wireless store that supports
Flash
animated wallpapers, not the same thing as the BREW Flash Lite
extension,
but it is Flash on a phone in N. America.

My question is:

If Flash Lite were on every handset in the world and had full projector
capability ( integration with hardware and OS ) - what would you do with
it?

Keldon

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Flash Lite - what's happening

2006-08-06 Thread Robin Burrer
Hi there,

I think I don't really understand Adobe's policy regarding flash Lite.

First of all how come they talking about flash Lite for ages and I have
not met anybody (besides other flash developers) with flash enabled
mobile yet?

Secondly, why is the player not for free? I mean fair enough Adobe tries
to make money by selling the player to mobile phone manufacturers, but
somehow I think it would be more beneficial for flash platform and Adobe
if the player was for free. 

When you go to Adobe Flash Lite page and click on supported devices it
shows you a number of different mobile phones and 95% of them only
support v 1.1. My Nokia 6670 plays flash Lite 2.0 content just fine btw.


I mean what's the point in going six years back to Flash 4 and use this
technology for the latest handsets? I rather wait another ten years than
go back and write Flash 4 code again...

Why can't they provide a flash projector provider for mobile phones?
All flash lite applications I have seen so far were standalone
applications anyway. This way people could actually start developing
applications without having to worry if the user has the plug-in
installed.

Don't get me wrong I'm really impressed with the performance of Flash
Lite 2.0 player and its capabilities. Maybe that's why frustrated...

 
Robin

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] just a test

2006-07-31 Thread Robin Burrer

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] [Ann] Flex 2 Training in Sydney - Registration ofInterest

2006-07-12 Thread Robin Burrer
I'm interested.

Robin

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Chris
Velevitch
Sent: Thursday, 13 July 2006 10:33 AM
To: Flash Developers List; cfaussie@googlegroups.com; CFUG WA;
flexcoders@yahoogroups.com; Flashcoders mailing list
Subject: [Flashcoders] [Ann] Flex 2 Training in Sydney - Registration
ofInterest

I'm happy to announce the Sydney Flash Platform Developers Group is
planning to run a once off 3 day training course on Flex 2. The
initial details is the course will be held towards the end of August,
you must bring your own laptop with Flex 2 trial version pre-installed
(windows only), you must provide your own lunch, it'll mostly likely
be run on W-F, accepting 20-30 people and the cost is approximately
$500. If you're from outside Sydney, you must arrange your own
accommodation. The course instructor will be Robin Hilliard. Complete
details will be finalised in early August.

Please express your interest directly to me and if there's sufficient
interest the course will go ahead. People from outside Sydney are
welcome.


Chris
-- 
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
www.flashdev.org.au
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Flash 9 Professional AS 3 Preview on labs

2006-06-28 Thread Robin Burrer
I had the same problem - try using IE instead of FF. This worked for
me...

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Zeh
Fernando
Sent: Thursday, 29 June 2006 10:37 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Flash 9 Professional AS 3 Preview on labs

 Well, I am unable to download it... the download isn't available on:
 http://www.adobe.com/products/flex/?e=labs_flpro9_as3
 
 Maybe I am blind? The link above is what I get when I press on the 
 download-button at fl9 labspage.

Try this link:

http://labs.adobe.com/technologies/flash9as3preview/

It has the link to download FL9:

http://www.adobe.com/go/labs_flash9as3preview_downloads

And also links to introductory articles and samples sources.


- Zeh
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] where to put AS 3 classes

2006-06-27 Thread Robin Burrer
Hi there,

I'm playing around with AS 3 and Flex 2 at the moment. With AS 2 I used
to organize my classes in subdirectories e.g.
com.domain.utilities.SomeClass.

I found that especially helpful when using classes in different
projects. I can't really figure out how to do this with flexbuilder 2.0.

Whenever I want to create a new AS class FlexBuilder asks me for the
parent folder which has to be either flex- or an action script project
folder. 

But that's not what I want. I just want to specify a directory on my
hard drive where I put all my classes. I'm looking for something similar
to the classpath settings in the Flash IDE. 

How would you do this with Flexbuilder 2?

Cheers

Robin



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] where to put AS 3 classes

2006-06-27 Thread Robin Burrer
That's it - thanks a lot!

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Wednesday, 28 June 2006 10:48 AM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] where to put AS 3 classes

right click on project
properties
Flex build path  i believe.

 Hi there,

 I'm playing around with AS 3 and Flex 2 at the moment. With AS 2 I
used
 to organize my classes in subdirectories e.g.
 com.domain.utilities.SomeClass.

 I found that especially helpful when using classes in different
 projects. I can't really figure out how to do this with flexbuilder
2.0.

 Whenever I want to create a new AS class FlexBuilder asks me for the
 parent folder which has to be either flex- or an action script project
 folder.

 But that's not what I want. I just want to specify a directory on my
 hard drive where I put all my classes. I'm looking for something
similar
 to the classpath settings in the Flash IDE.

 How would you do this with Flexbuilder 2?

 Cheers

 Robin



 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] another AS 3 question

2006-06-27 Thread Robin Burrer
Hi 

How do I control the timeline of a loaded swf file (created with the
Flash 8 IDE) with AS 3? My problem is that the content property of a
Loader object returns me a display object but not a movieclip. 

I tried casting but my application crashes when I try to run it.

Any ideas?

Robin



// here's my callback function, which is executed once the external swf
is // loaded
private function onLoadComplete(event:Event):void
{

 
var myDisplayObject:DisplayObject =
myLoader.content;


// this creates an run time error
loadedSWF = myDisplayObject as MovieClip;
loadedSWF.play();

}

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Test CPU/performance/rendering

2006-05-24 Thread Robin Burrer
Hey Mick,

Maybe it is better to give the user the option to select the processor
speed rather than detecting it automatically. (that would be similar to
picking your connection speed for a QuickTime movie). Some users may
want to see all the effects even though they have a slow computer.

If you want to determine the performance you could just measure the time
it takes to perform some task. 

e.g.

var t1:Number = getTimer();

for (var i = 0 ; i  10; i ++)
{

}

var t2:Number = getTimer();

var timeToDoThis = (t2 -t1);
trace (timeToDoThis)



Don't know how accurate this is though :-)


Robin



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mick G
Sent: Thursday, 25 May 2006 9:27 AM
To: Flashcoders mailing list
Subject: [Flashcoders] Test CPU/performance/rendering

I'm building a fairly demanding site that has a fair bit of animation
and
rather than aiming for an average performance level of animation for my
users, I'd like to turn off/on some features of the site depending on
rendering capabilities of the users computer.

Does anyone have any recommendations on the best way to achieve this?
Off
the top of my head I guess finding out the highest FPS the current
viewer
can achieve and flagging them as high or low performance depending
on
the results. Any other suggestions?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] CD ROM dimensions?

2006-05-18 Thread Robin Burrer
I'd say pretty much everybody runs at least a 1024 X 768 resolution
these days. Most of the times I use 800x600 though, because of
performance issues. 
It all depends on the kind of application you want to build.
 
Also keep in mind that your performance can decrease up to 20% if you
use a wrapper such as SWF studio or zinc (compared to the adobe
projector). 

Robin


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Fernando
Castillo
Sent: Friday, 19 May 2006 5:18 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] CD ROM dimensions?

Sure and 800x600 in some cases yet, all depends on the target users.

-Mensaje original-


Anyone building interactive cd roms at 1024 x 768 yet?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] CD ROM dimensions?

2006-05-18 Thread Robin Burrer
Changing the resolution is an excellent way to make your application run
full screen - it dose not increase the performance though. And if need a
higher screen resolution (e.g. to show large screenshots) such as 1024 *
768, it's not a solution either.

Robin

 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Derek
Vadneau
Sent: Friday, 19 May 2006 12:48 PM
To: flashcoders@chattyfig.figleaf.com
Subject: RE: [Flashcoders] CD ROM dimensions?

Just to clarify the performance hit with 3rd party projectors compared
to 
the Adobe standalone player. It's due to the fact that the 3rd party
tools 
use the ActiveX player, which as we know does not run as high as the
other 
players with regards to framerate. Of course nothing stops you from 
changing the framerate to compensate.

With a tool like SWF Studio you can actually increase the performance by

using it's ability to change the screen resolution using DirectDraw to
run 
your app at an even lower resolution while keeping the app fullscreen.


Derek Vadneau

-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Robin 
Burrer
Sent: Thursday, May 18, 2006 7:19 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] CD ROM dimensions?


I'd say pretty much everybody runs at least a 1024 X 768 resolution
these days. Most of the times I use 800x600 though, because of
performance issues.
It all depends on the kind of application you want to build.

Also keep in mind that your performance can decrease up to 20% if you
use a wrapper such as SWF studio or zinc (compared to the adobe
projector).

Robin


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] CD ROM dimensions?

2006-05-18 Thread Robin Burrer
 Changing a user's resolution without asking them first is a HUGE
no-no.

Who was talking about this? There are defiantly scenarios (Such as
presentations for exhibitions or flash games provided on CD) where it
makes sense to change the screen resolution. I would not use this
feature for a desktop application. But I agree you should not do this
automatically..

Robin 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steven
Sacks
Sent: Friday, 19 May 2006 3:11 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] CD ROM dimensions?

As a former Director programmer and desktop application developer, with
10
years experience in the industry, I have one thing to say to Flash
developers who have little to no experience developing desktop
applications.

Changing a user's resolution without asking them first is a HUGE no-no.

Don't do it.

Why shouldn't I change their resolution automatically? I hear from the
desktop application development neophytes.  Such sweet innocence.  Your
incredulous cries shall be answered forthwith.

First, many displays, laptop displays (read: flatscreens) in particular,
only like to display at a specific resolution.  Changing the resolution
on
these displays can result in unintended side effects.  On some,
everything
gets extremely jagged, pixelated, blocky (i.e. crappy).  On others, it
simply puts deadspace around the sides whilst making the visual area
smaller
(oh the irony).  Either way, your goal of making things look bigger and
better for the user just got Punk'd (Punk'd used with express
permission
from Ashton Kutcher and MTV/Viacom, all rights reserved).

Second, if the display in question (laptops and desktops) cannot display
at
the resolution you switch it to, a possible side effect is no display
whatsoever.  And since it wasn't done by the resolution control panel in
Windows, there is no 15 second timeout if you can't see it anymore.
This
might not be an issue on braille monitors, but those account for 0% of
your
target audience (ed: and they don't exist).  Your application just
broke my
computer! exclaims Irate User.  Which segues nicely to the next point.

Third, when you decrease a monitor's resolution, you completely screw up
any
icon arrangement on the desktop.  If you're looking to completely
irritate
your userbase, congratulations you win!  You've just caused the user to
associate negative emotions to whatever you were trying to convey.

Fourth, don't poop where you eat.  People have their computers set up
the
way they like them.  They like their resolution just how it is, thank
you.
Many users have flatscreen displays nowadays, which you can't or don't
want
to change resolutions on anyway.

Fifth, even if you ask permission, many users don't know that any of the
things I've mentioned will befall them should they agree to your
request,
and some users automatically click No to such things anyway.

Lucky for you, Flash can stretch to fill the screen.  You just need to
design for that by using vector art for the UI, although raster images
look
fine up to a point.  Stretching Flash may cause a slight performance
hit,
but you can also code your application to dynamically resize itself
based on
the user's current resolution, which takes more finesse and planning.

The only time you should change the resolution without asking is in a
kiosk
enviroment where you control the machine and you're not going to piss
anyone
off or break something by doing so.

800x600 is only 224x168 smaller than the average resolution these days.
Try
a nice border around the edge, black or a dark grey usually works best
and
after a few minutes most users won't even notice it anymore (much like
the
black bars at the top and bottom of widescreen movies).

Make a friend of your users, not an enemy.  Just say no to resolution
changes.

This message paid for by the Special Treatment For Users group.

;)

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] loader component - scaleContent does not always work

2006-04-20 Thread Robin Burrer
Hi there,

I'm having trouble with the v2 Loader component. The scaleContent does
not always work. Every 20th time or so the loaded jpeg image is not
scaled.

This happens rather randomly which is a bit of a pain. 

Here's a code that I'm using to initialize a loader component. Note that
I'm creating up to twenty loader components at the same time. The idea
is that when the first loader has finished loading it is set to visible
and the next loader starts loading ...

   private function iniLoader(loaderRef:Loader,myURL:String)
{
   loaderRef.autoLoad = false;
   loaderRef.contentPath =  myURL;
   loaderRef.scaleContent = true; 
   loaderRef.load(); 
   
   loaderRef.addEventListener(complete, this); 

}

I played around with order of the setting the properties but it didn't
help either.

Any ideas?


Robin
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] loader component - scaleContent does not always work

2006-04-20 Thread Robin Burrer
I'll give that a try thanks. Each of these Loader components is embedded
in a movie clip which is invisible by default. Setting the scaleContent
property after it finished loading could do the trick though.

Cheers

Robin



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of JesterXL
Sent: Friday, 21 April 2006 1:08 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] loader component - scaleContent does not
always work

Turn it invisible while it's loading:

loaderRef.visible = false;
loaderRef.load();

When your complete event fires, try:

doLater ( this, laterStuff );
function laterStuff()
{
loaderRef.scaleContent = true;
loaderRef.visible = true;
}



- Original Message - 
From: Robin Burrer [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Thursday, April 20, 2006 9:43 PM
Subject: [Flashcoders] loader component - scaleContent does not always
work


Hi there,

I'm having trouble with the v2 Loader component. The scaleContent does
not always work. Every 20th time or so the loaded jpeg image is not
scaled.

This happens rather randomly which is a bit of a pain. 

Here's a code that I'm using to initialize a loader component. Note that
I'm creating up to twenty loader components at the same time. The idea
is that when the first loader has finished loading it is set to visible
and the next loader starts loading ...

   private function iniLoader(loaderRef:Loader,myURL:String)
{
   loaderRef.autoLoad = false;
   loaderRef.contentPath =  myURL;
   loaderRef.scaleContent = true; 
   loaderRef.load(); 
   
   loaderRef.addEventListener(complete, this); 

}

I played around with order of the setting the properties but it didn't
help either.

Any ideas?


Robin
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] loader component - scaleContent does not always work

2006-04-20 Thread Robin Burrer
That's it! No with the IELoader everything works fine :-)
Great stuff!

Cheers

Robin

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rajat
Paharia
Sent: Friday, 21 April 2006 2:24 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] loader component - scaleContent does not
always work

It might also have something to do with the problem detailed here:
http://jeff.mxdj.com/loader_component_and_internet_explorer.htm
I use IELoader all the time now instead of the v2 Loader.

best, - rajat
--
Rajat Paharia
[EMAIL PROTECTED]
http://www.bunchball.com
http://www.rootburn.com

On 4/20/06, Robin Burrer [EMAIL PROTECTED] wrote:

 I'll give that a try thanks. Each of these Loader components is
embedded
 in a movie clip which is invisible by default. Setting the
scaleContent
 property after it finished loading could do the trick though.

 Cheers

 Robin



 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
JesterXL
 Sent: Friday, 21 April 2006 1:08 PM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] loader component - scaleContent does not
 always work

 Turn it invisible while it's loading:

 loaderRef.visible = false;
 loaderRef.load();

 When your complete event fires, try:

 doLater ( this, laterStuff );
 function laterStuff()
 {
 loaderRef.scaleContent = true;
 loaderRef.visible = true;
 }



 - Original Message -
 From: Robin Burrer [EMAIL PROTECTED]
 To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
 Sent: Thursday, April 20, 2006 9:43 PM
 Subject: [Flashcoders] loader component - scaleContent does not always
 work


 Hi there,

 I'm having trouble with the v2 Loader component. The scaleContent does
 not always work. Every 20th time or so the loaded jpeg image is not
 scaled.

 This happens rather randomly which is a bit of a pain.

 Here's a code that I'm using to initialize a loader component. Note
that
 I'm creating up to twenty loader components at the same time. The idea
 is that when the first loader has finished loading it is set to
visible
 and the next loader starts loading ...

private function iniLoader(loaderRef:Loader,myURL:String)
 {
loaderRef.autoLoad = false;
loaderRef.contentPath =  myURL;
loaderRef.scaleContent = true;
loaderRef.load();

loaderRef.addEventListener(complete, this);

 }

 I played around with order of the setting the properties but it didn't
 help either.

 Any ideas?


 Robin
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] loader component - scaleContent does not always work

2006-04-20 Thread Robin Burrer
Actually it just happened again - I hate v2 components (and components
which are based on them) :-). I'm going to write my own Loader now - all
I need is movie clip that scales a loaded jpeg and dispatches an event
when the loading process is finished...


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Robin
Burrer
Sent: Friday, 21 April 2006 3:23 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] loader component - scaleContent does not
always work

That's it! No with the IELoader everything works fine :-)
Great stuff!

Cheers

Robin

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rajat
Paharia
Sent: Friday, 21 April 2006 2:24 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] loader component - scaleContent does not
always work

It might also have something to do with the problem detailed here:
http://jeff.mxdj.com/loader_component_and_internet_explorer.htm
I use IELoader all the time now instead of the v2 Loader.

best, - rajat
--
Rajat Paharia
[EMAIL PROTECTED]
http://www.bunchball.com
http://www.rootburn.com

On 4/20/06, Robin Burrer [EMAIL PROTECTED] wrote:

 I'll give that a try thanks. Each of these Loader components is
embedded
 in a movie clip which is invisible by default. Setting the
scaleContent
 property after it finished loading could do the trick though.

 Cheers

 Robin



 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
JesterXL
 Sent: Friday, 21 April 2006 1:08 PM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] loader component - scaleContent does not
 always work

 Turn it invisible while it's loading:

 loaderRef.visible = false;
 loaderRef.load();

 When your complete event fires, try:

 doLater ( this, laterStuff );
 function laterStuff()
 {
 loaderRef.scaleContent = true;
 loaderRef.visible = true;
 }



 - Original Message -
 From: Robin Burrer [EMAIL PROTECTED]
 To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
 Sent: Thursday, April 20, 2006 9:43 PM
 Subject: [Flashcoders] loader component - scaleContent does not always
 work


 Hi there,

 I'm having trouble with the v2 Loader component. The scaleContent does
 not always work. Every 20th time or so the loaded jpeg image is not
 scaled.

 This happens rather randomly which is a bit of a pain.

 Here's a code that I'm using to initialize a loader component. Note
that
 I'm creating up to twenty loader components at the same time. The idea
 is that when the first loader has finished loading it is set to
visible
 and the next loader starts loading ...

private function iniLoader(loaderRef:Loader,myURL:String)
 {
loaderRef.autoLoad = false;
loaderRef.contentPath =  myURL;
loaderRef.scaleContent = true;
loaderRef.load();

loaderRef.addEventListener(complete, this);

 }

 I played around with order of the setting the properties but it didn't
 help either.

 Any ideas?


 Robin
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software

RE: [Flashcoders] If not Zinc, then what?

2006-03-28 Thread Robin Burrer
I agree, the swf studio support is just phenomenal. I have been using
swf studio for over two years now and I never had any issues. It's just
a great wrapper, which offers a lot of features. The pricing is very
reasonable as well. It's not cross platform though. 

Robin


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Wednesday, 29 March 2006 3:10 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] If not Zinc, then what?

SWF Studio all the way. The customer support is amazing and the people
who
work there are both knowledgable and helpful- rare indeed.

 On 3/29/06, Gene Jannece [EMAIL PROTECTED] wrote:
 I've been reading pros and cons of using Zinc, I started to wonder
 what are the pros and cons of other projectors?

 Flash Magazine did a comparison of projectors.

 http://www.flashmagazine.com/1095
 http://www.flashmagazine.com/1097

 It's a little old now, but is a good starting point.


 Chris
 --
 Chris Velevitch
 Manager - Sydney Flash Platform Developers Group
 www.flashdev.org.au
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] trouble with alert component

2006-03-27 Thread Robin Burrer

Thanks this works!

Robin


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matthew
Simpson
Sent: Monday, 27 March 2006 11:17 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] trouble with alert component

We run into that problem here too and eliminate it by adding \n to our
messages...

HTH

Matthew

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Robin
Burrer
Sent: Monday, March 27, 2006 12:52 AM
To: Flashcoders mailing list
Subject: [Flashcoders] trouble with alert component

Hi there,

When I send a alert message to the v2 alert component it dose not show
the last couple of lines of the message. The wired thing is that on some
computers all characters of the message are displayed. It length of the
message dose not really make a difference though. Regardless if I want
to display two or twenty lines the last line is always missing.

This is driving me mad - any ideas?

Cheers

Robin
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] trouble with alert component

2006-03-26 Thread Robin Burrer
Hi there,

When I send a alert message to the v2 alert component it dose not show
the last couple of lines of the message. The wired thing is that on some
computers all characters of the message are displayed. It length of the
message dose not really make a difference though. Regardless if I want
to display two or twenty lines the last line is always missing.

This is driving me mad - any ideas?

Cheers

Robin
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Flash 6

2006-03-23 Thread Robin Burrer
No idea but flash 6 and mx are actually the same :-)
MX 2004 came out in 2003 as far as I can remember ...

Robin

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dave
Wood
Sent: Friday, 24 March 2006 8:28 AM
To: Flashcoders mailing list
Subject: [Flashcoders] Flash 6

Hi

Flash history question.
Can anyone tell me when Flash 6 came out? I think it was some time in  
2001 because mx came out in 2002.

Thanks

David
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Flash and Poerpoint

2006-03-14 Thread Robin Burrer
Hi there,

I need to embed a flash animation in a PowerPoint file. I want to make
sure that the flash file starts playing from the beginning every time I
enter the slide that holds the Flash file.(by default the flash file
just continues playing from where it last stopped) 

I found a vb macro which should do this. However I can't get it to work.
I'm using Pore point 2003 and a flash player 6 swf.

Any ideas?

Cheers


Robin



' vb script 
Private Sub ShockwaveFlash1_OnReadyStateChange(ByVal newState As Long)

Dim swf As ShockwaveFlash
Dim FrameNum As Long

' Define the slide and the Flash object to whom you'd like to speak
Set swf = Slide1.ShockwaveFlash1

' Tell it to stop playing.
swf.Playing = False

' Tell it to return to the first frame (swf.Rewind)
 swf.GotoFrame (1)

' Tell it to start playing again
swf.Play
 

End Sub




___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] AS 3.0 tutorials

2006-02-13 Thread Robin Burrer
Hi there,

Do you guys know of any tutorials how to set up an action script project
with flex builder 2.0 beta? It all is somehow a bit confusing I think.
Especially I don't really understand the concept and purpose of
packages.

Btw what was wrong about using class paths? Wasn't that good and simple
way to avoid naming conflicts? 

Robin


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Flash lite 2.0 download

2006-01-12 Thread Robin Burrer
I just called Adobe Australia Customer support. Apparently it is not
possible to purchase the Flash Lite Player outside of the US.

Maybe it would be a good idea to a make a product accessible worldwide
before advertising it on the website ...

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Robin
Burrer
Sent: Thursday, 12 January 2006 9:33 AM
To: Flashcoders mailing list
Subject: [Flashcoders] Flash lite 2.0 download

Hi there,

I was trying to download the flash new flash lite player for my Nokia
6670 yesterday. However adobe/macromedia website always linked me to the
American products store. Even though I have a Macromedia account the
order form would not accept my Australian address. 

I could not find the flash Lite player on the Asia Pacific website
either. 

How annoying is that? Anybody found a way to download the player outside
the US? Can you at least purchase it over the phone?

Robin



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] build text one char at a time with random

2005-12-11 Thread Robin Burrer
Hey Mick,

I'm sure you can this yourself - that's not rocket science :-) Check out
the string class - the rest is just a bit of fiddling around. 

Cheers

Robin 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mick G
Sent: Monday, 12 December 2005 2:26 PM
To: Flashcoders mailing list
Subject: [Flashcoders] build text one char at a time with random

I'm looking for a proto or function to display a string of text one
character at a time, cycling through random characters one at a time
until
the string is built.

I've had a look in the usual places and can only find inefficient ways
it's
been done by attaching some movieclips one letter at a time. I'm sure it
can
be done with an interval and single textfield.

Any help appreciated.

Thanks
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] simulating narrowband connection

2005-12-08 Thread Robin Burrer
Hi there,

Are there any tools out there that enable you to simulate a low
bandwidth connection (e.g. modem or slow broadband connection)

I'm currently working on a project which uses flv files that interact
with my flash movie. In the past I always used the simulate download
option in flash but this obviously doesn't work for flvs.

Robin


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] simulating narrowband connection

2005-12-08 Thread Robin Burrer
Thanks everybody!

Just tried sloppy and it works perfect!!
I'm gonna check out the other ones as well.

Cheers

Robin

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Campbell
Anderson
Sent: Friday, 9 December 2005 9:42 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] simulating narrowband connection

I made a .net one really simple then someone sudgested :

http://xk72.com/charles/   its java based :o)

Campbell

 Hi there,
 
 Are there any tools out there that enable you to simulate a low
 bandwidth connection (e.g. modem or slow broadband connection)
 
 I'm currently working on a project which uses flv files that interact
 with my flash movie. In the past I always used the simulate download
 option in flash but this obviously doesn't work for flvs.
 
 Robin
 
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 

-- 

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] strange compiler error

2005-12-08 Thread Robin Burrer
Hi there, 

I try compile a fla file with the flash 8 IDE. It always gives me this
pointless error message.

**Error**
E:\vss_data\ActionScriptClasses\org\hubb\flashBrowser\UserVO.as: Line 2:
The name of this class, 'org.hubb.flashBrowser.UserVO', conflicts with
the name of another class that was loaded,
'org.hubb.flashBrowser.UserVO'.

Where's the conflict here? That's the same class?

All my project classes are in the same directory
org.hubb.flashBrowser;
My main class imports all required classes.
e.g. import org.hubb.flashBrowser.UserVO'


And here's the wired thing:
When I try to compile this fla at home it works just fine. Also if I do
a syntax check with MTASC it's not giving me an error.

Any ideas?


Robin
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] strange compiler error

2005-12-08 Thread Robin Burrer
I tried deleting the aso files and restarted my computer 
- nothing helped :-(


---Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Andy
Johnston
Sent: Friday, 9 December 2005 2:25 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] strange compiler error

Are your classes on a network drive?

This usually is a time stamp syncing error

Try restarting your machine or deleting the aso files

Hi there, 

I try compile a fla file with the flash 8 IDE. It always gives me this
pointless error message.

**Error**
E:\vss_data\ActionScriptClasses\org\hubb\flashBrowser\UserVO.as: Line
2:
The name of this class, 'org.hubb.flashBrowser.UserVO', conflicts with
the name of another class that was loaded,
'org.hubb.flashBrowser.UserVO'.

Where's the conflict here? That's the same class?

All my project classes are in the same directory
org.hubb.flashBrowser;
My main class imports all required classes.
e.g. import org.hubb.flashBrowser.UserVO'


And here's the wired thing:
When I try to compile this fla at home it works just fine. Also if I do
a syntax check with MTASC it's not giving me an error.

Any ideas?


Robin
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


  


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] strange compiler error

2005-12-08 Thread Robin Burrer
I set my system clock two years back (even though I'm pretty sure the
system clock of the computer I created the file originally is set
correctly) -didn't help either. 

I had similar problem a couple of moth ago. I had two classes which both
had a variable of the data type of the other class. 

The flash complier (back then it used flash 7) gave me the same error
message.

I found a workaround by declaring one of the variables as an object
datatype so I didn't have to import the class. 

In this application this is however not the case. I hope all these
issues will be solved in AS3.

Robin 



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Andy
Johnston
Sent: Friday, 9 December 2005 3:15 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] strange compiler error

*Shrug*

http://www.epresenterplus.com/blog/archives/30.html

I tried deleting the aso files and restarted my computer 
- nothing helped :-(


---Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Andy
Johnston
Sent: Friday, 9 December 2005 2:25 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] strange compiler error

Are your classes on a network drive?

This usually is a time stamp syncing error

Try restarting your machine or deleting the aso files

  

Hi there, 

I try compile a fla file with the flash 8 IDE. It always gives me this
pointless error message.

**Error**
E:\vss_data\ActionScriptClasses\org\hubb\flashBrowser\UserVO.as: Line


2:
  

The name of this class, 'org.hubb.flashBrowser.UserVO', conflicts with
the name of another class that was loaded,
'org.hubb.flashBrowser.UserVO'.

Where's the conflict here? That's the same class?

All my project classes are in the same directory
org.hubb.flashBrowser;
My main class imports all required classes.
e.g. import org.hubb.flashBrowser.UserVO'


And here's the wired thing:
When I try to compile this fla at home it works just fine. Also if I
do
a syntax check with MTASC it's not giving me an error.

Any ideas?


Robin
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


 




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


  


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] OOP newbie question

2005-11-24 Thread Robin Burrer
Just create reference to your class. You will need that a lot ...


function connect ()

{

mySocket = new XMLSocket ();
var _obj = this;

  mySocket.onXML = function ()
{
_obj.handleIncoming();
  }
}




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jim
Phelan
Sent: Friday, 25 November 2005 2:27 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] OOP newbie question

Hi,

The problem here is scope. When you call parseMessages, you doing it in
the
scope of the mySocket object (where the method doesn't exist.) 

There's a pretty simple workaround for this using the Delegate utility
that
comes with Flash.

At the top of your class file, do this : import mx.utils.Delegate;

Change this line: mySocket.onXML = handleIncoming;
To this: mySocket.onXML = Delegate.create(this,handleIncoming);

And that should solve your problem. Basically you're creating a proxy
function on the XMLSocket object that then invokes the handleIncoming
function on your OSC object. There are other ways to do this, but I
think
the Delegate method is generally considered the best practice.

Hope that helps,

Jim

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of hbruyere
Sent: Thursday, November 24, 2005 10:19 PM
To: Flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] OOP newbie question

Hi,

 

Here is a OOP newbie question.

 

I have a class (see below)..

 

Everything works fine. but the method handleIncoming can not access ()
or
maybe even find) the method parseMessages.

If I give the complete path to the instance of the OSC class (made in my
fla
- for example _root.OSC_Obj.parseMessages (xmlIn); ) it works.

 

How should I code this to make it works ?

 

 

class OSC

{

 

var mySocket : XMLSocket;

//

//

public function OSC ()

{

connect ();

}

//

//

function connect ()

{

mySocket = new XMLSocket ();

mySocket.onXML = handleIncoming;

}

//

//

function handleIncoming (xmlIn)

{

parseMessages (xmlIn);

 

}

//

function parseMessages (node)

{

actions..

}

}

 

Thanks for your attention,

 

//h

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Xml editor

2005-11-22 Thread Robin Burrer
I use Notepad in combination with Internet explorer :-).
I used to use XMLSpy but after the trial expired I switched to Notepad
again. 

Robin


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Patrick
Matte
Sent: Wednesday, 23 November 2005 7:46 AM
To: Flashcoders mailing list
Subject: [Flashcoders] Xml editor

What software do you people use for editing xml for your flash projects ? 


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Flex Style Flash MX2004 Components

2005-11-14 Thread Robin Burrer
Whenever I want to build a cool flash application and I have enough time and
resources I don't use flash components. 

Don't get me wrong I really like the idea of flash (v2) component
architecture. I wouldn't mind spending hours (as I did in the past) skinning
and formatting them. The only thing I ask for is a component set, that dose
not decrease the performance of my application. 

I created my own UI components for my applications. Ok they are not skinable
but they do their job just fine and my application runs smoothly. And it
certainly takes me less time to modify their graphics than it takes me to
figure out why my v2 application temporally freezes or why it takes a second
for a label in radio button to appear.

I mean that's what's flash all about - good looking and smoothly running
applications. 


Robin



-Original Message-
From: Nick Weekes [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 15 November 2005 8:13 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Flex Style Flash MX2004 Components

I disagree...users don't give a damn whether a component is skinned or not,
but whether it works as a piece of UI.  How many different comboboxes do we
need in the world??

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of JesterXL
Sent: 14 November 2005 21:06
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Flex Style Flash MX2004 Components

I find just the opposite; I think it's easier in Flex.

I'm with you, though.  The pendulum has swung too far to the other side. 
Pre-Flash MX, it was no Flash UI assets look the same.  Now, post Flex 1.5
it's all Flex apps look the same.

Mars needs women.  Flex needs UI designers.

- Original Message -
From: Johannes Nel [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Monday, November 14, 2005 4:01 PM
Subject: Re: [Flashcoders] Flex Style Flash MX2004 Components


yeah, they do look better than the IDE ones, but its easier to skin stuff in
flash than flex from my experience thus far. due to this we are seeing more
and more apps looking very similiar, which as a non-designer i think sucks.

On 11/14/05, JesterXL [EMAIL PROTECTED] wrote:

 The Flex ones look better. Before people realized they were coded better,
 a
 few wanted the look and feel since it was refined.

 - Original Message -
 From: Dustin Krysak [EMAIL PROTECTED]
 To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
 Sent: Monday, November 14, 2005 3:48 PM
 Subject: Re: [Flashcoders] Flex Style Flash MX2004 Components


 Maybe in case there are aspects of a project developed in both flash
 and flex?

 Not sure otherwise.



 On 14-Nov-05, at 12:45 PM, Johannes Nel wrote:

  why
 
  On 11/14/05, Hindman, Jeff [EMAIL PROTECTED] wrote:
 
  Nope ...
 
  http://www.dwuser.com/flexcomponents/
 
  -- Jeff Hindman
 
  -Original Message-
  From: Pete Hotchkiss [mailto:[EMAIL PROTECTED]
  Sent: Monday, November 14, 2005 10:43 AM
  To: 'Flashcoders mailing list'
  Subject: [Flashcoders] Flex Style Flash MX2004 Components
 
 
  I have a very vague recollection of somebody somewhere creating a
  set of
  Flex Styled components for Flash MX2004 - was I dreaming ?
 
 
 
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 
 
 
  --
  j:pn
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




--
j:pn
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders 

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] poor preformance of the flash data grid

2005-11-09 Thread Robin Burrer

Hi there, 

Whenever I try to format the text in a v2 datagrid component the performance
of my flash application dramatically goes down.

The flash application freezes for one to two seconds (depending
On the processor speed) before the data grid is displayed. 

If I don't call the formatDataGrid method (see below) my applications runs
smoothly. 

Any ideas?

Cheers

Robin


// formatDataGrid
private function formatDataGrid():Void
{
myGrid.rowHeight = 30;

// first column
var locationColum = myGrid.getColumnAt(0);
locationColum.setStyle(fontWeight, bold);
locationColum.setStyle(color, 0x00538D);
locationColum.setStyle(fontSize, 15);
locationColum.setStyle(fontStyle, italic);
locationColum.width = 145;
locationColum.embedFonts = true;
locationColum.fontFamily  =myFont

// second column 
var datesColum= myGrid.getColumnAt(1);
datesColum.setStyle(color, 0x00538D);
datesColum.width = 260;
datesColum.embedFonts = true;
datesColum.fontFamily  =myFont;

// third column
var registerColum = myGrid.getColumnAt(2);
registerColum.setStyle(color, 0x00538D);
registerColum.setStyle(fontStyle, italic);
registerColum.setStyle(fontWeight, bold);
registerColum.embedFonts = true;
registerColum.fontFamily  =myFont;


}
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Remoting with AMFPHP vs. ASP

2005-11-09 Thread Robin Burrer
Hi Navnett,

You can't use flash remoting with standard ASP. However using remoting with
.net is not such a painful experience after all. It's actually fun once you
get the hang of it.

I didn't have any idea of .net but it didn't take me long to build a working
application.

2 tips that should make your live easier:

- use c# as a programming language (it's similar to action script)
- use .net Assemblies not ASP.NET pages (again - writing .net classes is
quite similar to writing AS classes and you don't have to deal with .net
stuff such as code behind the page)


Robin

 

-Original Message-
From: Navneet Behal [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 10 November 2005 8:28 AM
To: Flashcoders mailing list
Subject: [Flashcoders] Remoting with AMFPHP vs. ASP

Hi,

The fun has just been taken out of my development process when after 
finishing RIA with AMFPHP the client top management have suddenly woken up 
and realized that they don't want to have the application with PHP but with 
ASP as the backend language. As sick as that makes me :( I have to now work 
with their dev team to port my code in PHP to ASP. I'm being given the whole

lecture on their best practices.

I don't know much about ASP and the client's dev team knows nothing about 
Flash Remoting so there's a communication gap which will soon arise if I 
don't prepare properly for this.

So the questions:

1. I know that Remoting works with ASP .NET but what about just ASP?
2. Is there something cool like AMFPHP which works with ASP?
3. Where should I read up for more resources on this?

... and any other piece of advice some of you who've worked with ASP and 
Remoting might have.

Regards,
Navneet


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Remoting with AMFPHP vs. ASP

2005-11-09 Thread Robin Burrer
Read the chapter about Flash Remoting And ASP.net in Flash remoting the
definitive guide. Not sure if I would buy the book just for this chapter
though. 

A .net assembly is basically a .net class (.Net class lbrary) which is
compiled into a dll file. Once it's compiled you can access the public
methods of the dll. 

Robin



-Original Message-
From: Navneet Behal [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 10 November 2005 11:37 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Remoting with AMFPHP vs. ASP

Cheers Robin.

Some helpful (and soothing) stuff here.

Will keep these in mind. C Sharp shouldn't be too much of a problem for me 
to pick up. I've read some code written in C# and is quite easy to follow.

I'll have to understand more about .net Assemblies as I've never done that 
before.

Still waiting for more good stuff from the forum :)

Regards,
Navneet

- Original Message - 
From: Robin Burrer [EMAIL PROTECTED]
To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com
Sent: Thursday, November 10, 2005 5:51 AM
Subject: RE: [Flashcoders] Remoting with AMFPHP vs. ASP


 Hi Navnett,

 You can't use flash remoting with standard ASP. However using remoting 
 with
 .net is not such a painful experience after all. It's actually fun once 
 you
 get the hang of it.

 I didn't have any idea of .net but it didn't take me long to build a 
 working
 application.

 2 tips that should make your live easier:

 - use c# as a programming language (it's similar to action script)
 - use .net Assemblies not ASP.NET pages (again - writing .net classes is
 quite similar to writing AS classes and you don't have to deal with .net
 stuff such as code behind the page)


 Robin 

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders