RE: [Flashcoders] RESUME: Senior Flash/Flex Developer

2007-09-06 Thread Kerry Thompson
eric e. dolecki wrote:

> come on... is this really the place?

I think the moderator's policy is... no. Hopefully S/he will chime in.

I personally wouldn't object to an freelancer telling us s/he's available for 
work. In fact, it probably would be a service to the coders here--there have 
been times I've been swamped and looking for a reliable third hand.

But not professional recruiters.

My 2 ¥

Cordially,

Kerry Thompson


___
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] RESUME: Senior Flash/Flex Developer

2007-09-06 Thread eric e. dolecki
come on... is this really the place?

On 9/6/07, Beau Gould <[EMAIL PROTECTED]> wrote:
>
> My candidate is a Senior-level Flash, Flex and Web Developer with an
> extensive background in OOP/OOD currently working for an interactive
> agency
> in New York City. He has 6+ years experience working with AS1, AS2, AS3 as
> well as Flex and has extensive experience with server, database and other
> Web technologies.
>
> He is seeking a full time telecommuting or mostly telecommuting position.
> 100% on-site positions will not be considered.
>
> Please review his resume at the link below and let me know if you would
> like
> to set up an interview: http://www.open-source-staffing.com/sfd.htm
>
> He's asking 112k, benefits not required.
>
> Thank you,
> Beau J. Gould
>
> Open Source Staffing
> www.open-source-staffing.com
> [EMAIL PROTECTED]
>
> ___
> 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] Drawing Advanced Shape

2007-09-06 Thread macromedia flash
Hi guys,

I uses AS3 to draw a shape with gradient as below, now I am going to draw
more complex shape.. can you please help me on this? ==>>
http://www.minlab.net/upload/files/shapes.swf


=

package {
import flash.display.DisplayObject;
import flash.display.Graphics ;
import flash.display.Shape;
import flash.display.Sprite;
import flash.display.GradientType
import flash.display.SpreadMethod
import flash.geom.*

public class GraphicsExample extends Sprite {
private var shapeWidth:uint   = 500;
private var shapeHeight:uint  = 20;
//private var bgColor:uint= 0xFFCC00;
private var borderColor:uint  = 0x00;
private var borderSize:uint   = 2;
private var cornerRadius:uint = 6;
private var xPostion:int  = 20;
private var yPostion:int  = 20;

public function GraphicsExample() {

doDrawShape();
}
private function doDrawShape():void {
var child:Shape = new Shape();

  var fillType:String = GradientType.LINEAR;
  var colors:Array = [0x00, 0x66];
 var alphas:Array = [100, 100];
  var ratios:Array = [0, 255];
var matr:Matrix = new Matrix();

matr.createGradientBox(shapeWidth,shapeHeight, Math.PI / 2, 0,
0);
var spreadMethod:String = SpreadMethod.PAD;

child.graphics.lineStyle(borderSize, borderColor);

child.graphics.beginGradientFill(fillType, colors, alphas,
ratios, matr, spreadMethod);
child.graphics.drawRoundRect(xPostion, 10, shapeWidth,
shapeHeight, cornerRadius);
addChild(child);
}

}
}
=
___
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] RESUME: Senior Flash/Flex Developer

2007-09-06 Thread Beau Gould
My candidate is a Senior-level Flash, Flex and Web Developer with an
extensive background in OOP/OOD currently working for an interactive agency
in New York City. He has 6+ years experience working with AS1, AS2, AS3 as
well as Flex and has extensive experience with server, database and other
Web technologies.

He is seeking a full time telecommuting or mostly telecommuting position.
100% on-site positions will not be considered.

Please review his resume at the link below and let me know if you would like
to set up an interview: http://www.open-source-staffing.com/sfd.htm 

He's asking 112k, benefits not required. 

Thank you, 
Beau J. Gould 
 
Open Source Staffing 
www.open-source-staffing.com 
[EMAIL PROTECTED] 

___
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] coding a world clock

2007-09-06 Thread John VanHorn
yes, the flash Date object provides all the necessary properties to
calculate the time for different time zones, but it still wont be accurate
if the user's clock is off.

for more accuracy, youll need to have the time from the server. this should
be simple to do with any server side language. in php, you can use the
date('U') function or the time() function, which will both give you the Unix
timestamp - the number of seconds that have passed since 12am January 1,
1970. you can pass that into your swf using flashvars. you can then create a
Date object based off of that value. just note that (in php, at least) the
value is seconds, and the flash Date object uses milliseconds. oh, and load
time of your swf may cause that to be off a little. if thats a problem, you
could store it in a javascript Date object, and then grab the value when
youre ready for it.


On 9/6/07, Marcelo Volmaro <[EMAIL PROTECTED]> wrote:
>
> I took that data from various sources. I'm using that for my own clock
> too, and also have a function that, taking a "position" (first, second,
> third, etc), a month and "day" can calculate the real date when a DST
> occurs (for example, you feed "first Friday of may" or "last Monday of
> December" and it returns the correct date for a specific year).
>
> I have a list of DST/Timezones per location, but did not converted to AS
> (I have some XML files). The problem is that the list is a big one,
> because the list is compromised of:
> a) Countries
> b) Regions
> c) States
> d) Cities.
>
> Usually, you can trim down the list a lot, since almost all cities in a
> country have the same TZ/DST, but that's not the case for the US. In fact,
> you have some cities on the same state that have different TZ.
>
> You can get the complete list from:
>
> http://www.isi.edu/~pan/SWBP/time-zone-note/time-zone-note.html
>
> The problem with that list is that the dates specified for the start/end
> of DST is that are tied to a specific year and usually you need to wait
> until someone updates that list... so I coded the following list that has
> all the info necessary to do the calcs:
>
> private static const dstPolicies:Object = {
> USADLS:new DstPolicy(1,0,4, -1,0,10),
> EUDLS:new DstPolicy(-1,0,3, -1,0,10),
> AU2003DLS:new DstPolicy(-1,0,10, -1,0,3),
> AUTDLS:new DstPolicy(1,1,10, -1,0,3),
> RUDLS:new DstPolicy(-1,0,3, -1,0,10),
> EGDLS:new DstPolicy(-1,5,4, -1,4,9),
> IRDLS:new DstPolicy(-1,6,3, -1,1,9),
> IQDLS:new DstPolicy(255, 1,4, 255, 1,10),
> ILDLS:new DstPolicy(-1,4,3, 1,4,10),
> JODLS:new DstPolicy(-1,3,3, -1,4,10),
> NADLS:new DstPolicy(1,0,9, 1,0,4),
> PKDLS:new DstPolicy(1,6,4, 1,6,10),
> SYDLS:new DstPolicy(255,30,3, 255,21,9),
> CLDLS:new DstPolicy(2,0,10, 2,0,3),
> CLEDLS:new DstPolicy(2,5,10, 2,6,3),
> NZDLS:new DstPolicy(1,0,10, 3,0,3),
> PYDLS:new DstPolicy(1,0,9, 1,0,4),
> FKDLS:new DstPolicy(1,0,9, -1,0,4)
> };
>
> Where the first number is the position (1: first, -1:last, 255: straight
> date), the second and the third are the day/month.
> If the position is 255, the date is a straight day/month date, so for
> example for IRAQ the start date is April 1.
>
> The formulas for the calcs are:
>
> /**
>  * @param y:int Year
>  * @param m:int Month (0 - 11)
>  * @param n:int Day of the week (0 for a Sunday, 1 for a
> Monday, 2 for a
> Tuesday, etc)
>  * @param w:int Occurence (1:first, 2:second, 3:third,
> 4:fourth, -1:last)
>  * @return real day of the month where the DST starts/ends
>  *
>  * first friday = w:1, n:5
>  * third monday = w:3, n:1
>  * last monday = w:-1, n:1
>  */
>
> private static function calcStartEnd(y:int, m:int, n:int,
> w:int):int{
> if (w < 0){
> var nd:Number = (new Date(y, m,
> 0)).getDate();
> var diff:Number = (getDayOfWeek(y, m+1,
> nd) - n) % 7;
> if (diff < 0) diff += 7;
> return nd-diff;
> }
>
> var nq:int = 7 * w - 6 + (n - getDayOfWeek(y, m+1,
> 1)) % 7;
> if (nq < 1) nq += 7;
>
> return nq;
> }
>
> /**
>  * @param y:int Year
>  * @param m:int Month (1 - 12)
>  * @param d:int Day (1 - 31)
> 

[Flashcoders] Re: Drawing Shapes

2007-09-06 Thread macromedia flash
Hi guys,

I fixed the problem... see code below, However I have one more question
about how to draw an advanced shapes with gradient... please see the swf
here. .(sorry guys, you have to wait 15s to download the file -_- )

http://www.live-share.com/files/264501/shapes.swf.html



=

package {
import flash.display.DisplayObject;
import flash.display.Graphics;
import flash.display.Shape;
import flash.display.Sprite;
import flash.display.GradientType
import flash.display.SpreadMethod
import flash.geom.*

public class GraphicsExample extends Sprite {
private var shapeWidth:uint   = 500;
private var shapeHeight:uint  = 20;
//private var bgColor:uint= 0xFFCC00;
private var borderColor:uint  = 0x00;
private var borderSize:uint   = 2;
private var cornerRadius:uint = 6;
private var xPostion:int  = 20;
private var yPostion:int  = 20;

public function GraphicsExample() {

doDrawShape();
}
private function doDrawShape():void {
var child:Shape = new Shape();

  var fillType:String = GradientType.LINEAR;
  var colors:Array = [0x00, 0x66];
 var alphas:Array = [100, 100];
  var ratios:Array = [0, 255];
var matr:Matrix = new Matrix();

matr.createGradientBox(shapeWidth,shapeHeight, Math.PI / 2, 0,
0);
var spreadMethod:String = SpreadMethod.PAD;

child.graphics.lineStyle(borderSize, borderColor);

child.graphics.beginGradientFill(fillType, colors, alphas,
ratios, matr, spreadMethod);
child.graphics.drawRoundRect(xPostion, 10, shapeWidth,
shapeHeight, cornerRadius);
addChild(child);
}

}
}
=


Cheers



On 9/6/07, macromedia flash <[EMAIL PROTECTED] > wrote:
>
> Hi there I am going to use AS3 to draw the box as below... you can
> download the shapes.swf file here
>
> http://www.2shared.com/file/2247730/b78a543a/shape.html ?
>
>
> I have already figured out the border and gradient shape, but when I try
> to combine them together, the gradient is gone any idea or good ways to
> handle this?
>
> THANK YOU VERY MUCH
>
>
>  HOW to test the code ==
>
> 1. Paste the class example code into a new AS file and give the file the
> same name as the primary class (for example: GraphicsExample.as).
> 2. Create and save a new empty FLA file in the same directory as the AS
> file.
> 3. In the Properties tab of the Property inspector enter the class name of
> the primary class for the example in the Document class text box (for
> example: GraphicsExample).
> 4. Save your changes to the FLA file.
> 5. Test the movie using the Control > Test Movie menu option.
> ===
>
>
>  AS3 Code ==
> package {
> import flash.display.DisplayObject ;
> import flash.display.Graphics;
> import flash.display.Shape;
> import flash.display.Sprite;
> import flash.display.GradientType
> import flash.display.SpreadMethod
> import flash.geom.*
>
> public class GraphicsExample extends Sprite {
> private var shapeWidth:uint   = 500;
> private var shapeHeight:uint  = 20;
> //private var bgColor:uint= 0xFFCC00;
> private var borderColor:uint  = 0x66;
> private var borderSize:uint   = 0;
> private var cornerRadius:uint = 6;
> private var gutter:uint   = 5;
> private var xPostion:int  = 20;
> private var yPostion:int  = 20;
>
> public function GraphicsExample() {
>
> doDrawBackground();
> doDrawRoundRect();
> //refreshLayout();
> }
>
> private function doDrawRoundRect():void {
> var child:Shape = new Shape();
> //child.graphics.beginFill(bgColor);
> child.graphics.lineStyle(borderSize, borderColor);
> child.graphics.drawRoundRect(xPostion, yPostion, shapeWidth,
> shapeHeight, cornerRadius);
> child.graphics.endFill();
> addChild(child);
> //child.x=300;
> //trace(child.x)
> }
>
> private function doDrawBackground():void {
> var child:Shape = new Shape();
>
>   var fillType:String = GradientType.LINEAR;
>   var colors:Array = [0x00, 0x66];
>  var alphas:Array = [100, 100];
>   var ratios:Array = [0, 255];
> var matr:Matrix = new Matrix();
>
> matr.createGradientBox(shapeWidth,shapeHeight, Math.PI / 2, 0,
> 0);
> var spreadMethod:String = SpreadMethod.PAD;
>
> child.graphics.beginGradientFill (fillType, colors, alphas,
> ratios, matr, spreadMethod);
> //child.graphics.drawRect(xPostion,0,shapeWidth,shapeHei

Re: [Flashcoders] Test list...

2007-09-06 Thread Omar Fouad
test

On 9/6/07, Javier Tello <[EMAIL PROTECTED]> wrote:
>
> ...
> ___
> 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
>



-- 
Omar M. Fouad - Digital Emotions
http://www.omarfouad.net

This e-mail and any attachment is for authorised use by the intended
recipient(s) only. It may contain proprietary material, confidential
information and/or be subject to legal privilege. It should not be copied,
disclosed to, retained or used by, any other party. If you are not an
intended recipient then please promptly delete this e-mail and any
attachment and all copies and inform the sender. Thank you.
___
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 9 cs3: Alternative to tree, menu, tabbar and charting components

2007-09-06 Thread Austin Kottke

Hey guys,

I found this great set of components that yahoo made for flash 9 cs3 as 
there is no tree component.


Check it out: http://developer.yahoo.com/flash/astra-flash/

It's released under the bsd license.

Best, Austin
___
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] Drawing Shapes

2007-09-06 Thread macromedia flash
Hi there I am going to use AS3 to draw the box as below... you can download
the shapes.swf file here

http://www.2shared.com/file/2247730/b78a543a/shape.html?


I have already figured out the border and gradient shape, but when I try to
combine them together, the gradient is gone any idea or good ways to
handle this?

THANK YOU VERY MUCH


 HOW to test the code ==

1. Paste the class example code into a new AS file and give the file the
same name as the primary class (for example: GraphicsExample.as).
2. Create and save a new empty FLA file in the same directory as the AS
file.
3. In the Properties tab of the Property inspector enter the class name of
the primary class for the example in the Document class text box (for
example: GraphicsExample).
4. Save your changes to the FLA file.
5. Test the movie using the Control > Test Movie menu option.
===


 AS3 Code ==
package {
import flash.display.DisplayObject ;
import flash.display.Graphics;
import flash.display.Shape;
import flash.display.Sprite;
import flash.display.GradientType
import flash.display.SpreadMethod
import flash.geom.*

public class GraphicsExample extends Sprite {
private var shapeWidth:uint   = 500;
private var shapeHeight:uint  = 20;
//private var bgColor:uint= 0xFFCC00;
private var borderColor:uint  = 0x66;
private var borderSize:uint   = 0;
private var cornerRadius:uint = 6;
private var gutter:uint   = 5;
private var xPostion:int  = 20;
private var yPostion:int  = 20;

public function GraphicsExample() {

doDrawBackground();
doDrawRoundRect();
//refreshLayout();
}

private function doDrawRoundRect():void {
var child:Shape = new Shape();
//child.graphics.beginFill(bgColor);
child.graphics.lineStyle(borderSize, borderColor);
child.graphics.drawRoundRect(xPostion, yPostion, shapeWidth,
shapeHeight, cornerRadius);
child.graphics.endFill();
addChild(child);
//child.x=300;
//trace(child.x)
}

private function doDrawBackground():void {
var child:Shape = new Shape();

  var fillType:String = GradientType.LINEAR;
  var colors:Array = [0x00, 0x66];
 var alphas:Array = [100, 100];
  var ratios:Array = [0, 255];
var matr:Matrix = new Matrix();

matr.createGradientBox(shapeWidth,shapeHeight, Math.PI / 2, 0,
0);
var spreadMethod:String = SpreadMethod.PAD;

child.graphics.beginGradientFill (fillType, colors, alphas,
ratios, matr, spreadMethod);
//child.graphics.drawRect(xPostion,0,shapeWidth,shapeHeight);
child.graphics.drawRoundRect(xPostion, 0, shapeWidth,
shapeHeight, cornerRadius);
addChild(child);
}

}
}
 END OF CODE ===
___
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 John Dowdell
First step: Figure out how people will likely try to find your website 
in the search engines.


(You will *always* remain invisible on search term "flower delivery", 
for instance... far too much competition. You might be able to place on 
"'flower delivery' 'san francisco' haight-ashbury", though.)


Once you know the plausible queries on which you can compete, make sure 
that your HTML markup contains the proper clues (TITLE, metadata, body 
text containing your term), then make a spider-guiding sitemap:

http://sitemaps.org/

... and after that, work on getting inbound links whose anchor text 
reflects the search terms on which you wish to compete. (Inbound links 
do a lot for final search-engine placement... search up "talentless 
hack" or "miserable failure" to learn more about this.)


The "binary SWF" line is a red herring. Google has pulled text out of 
SWF for years, just like it does for HTML. It won't know that a picture 
of a rose is a rose -- whether in SWF or JPG -- unless you provide those 
alphanumerics somewhere else in the presentation.


Choosing your target search terms is the hard part, and the one which 
most clients do not understand. A small business finds it hard to break 
through all the noise and gaming of the search engines today, but 
targeting the plausible search terms on which you can realistically 
compete is the very first step.


jd






--
John Dowdell . Adobe Developer Support . San Francisco CA USA
Weblog: http://weblogs.macromedia.com/jd
Aggregator: http://weblogs.macromedia.com/mxna
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.
___
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 CS3 UI Bug

2007-09-06 Thread Muzak
Yup, happens with Library and Project panel all the time.

- Original Message - 
From: "Paul Venton" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, September 06, 2007 9:06 PM
Subject: RE: [Flashcoders] Flash CS3 UI Bug


> More ...
>
> When opening panels (any) when collapsed to icons, they open but fail to
> show any content.  I have to close and re-open the panels in hope that their
> content is rendered.  Very annoying when I'm tight for time.
>
> The test movie often opens as a resized window to well below 100%
> (dimensions are within my screen resolution).
>
> ___
> 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 CS3 UI Bug

2007-09-06 Thread Paul Venton
More ...

When opening panels (any) when collapsed to icons, they open but fail to
show any content.  I have to close and re-open the panels in hope that their
content is rendered.  Very annoying when I'm tight for time.

The test movie often opens as a resized window to well below 100%
(dimensions are within my screen resolution).

___
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] Copy and paste a movieClip?

2007-09-06 Thread T. Michael Keesey
On 9/6/07, Mendelsohn, Michael <[EMAIL PROTECTED]> wrote:
> Just as I suspected, Julian.  Thanks for your reply.  Doesn't this
> feature exist in AS3?  (I have no experience with it yet.)

As I recall, duplication in AS2 wasn't really duplication--just
instantiation of the same symbol and its associated class. In AS3 you
can do the same thing a bit differently:

import flash.display.DisplayObject;
import flash.display.DisplayObjectContainer;
import flash.utils.getDefinitionByName;
import flash.utils.getQualifiedClassName;

function duplicateDisplayObject(original:DisplayObject,
parent:DisplayObjectContainer, name:String):DisplayObject {
var originalClass:Class =
getDefinitionByName(getQualifiedClassName(original));
var duplicate:DisplayObject = new originalClass() as DisplayObject;
duplicate.name = name;
parent.addChild(duplicate);
return duplicate;
}

NOTE: I haven't tested this.
-- 
T. Michael Keesey
Director of Technology
Exopolis, Inc.
2894 Rowena Avenue Ste. B
Los Angeles, California 90039
--
The Dinosauricon: http://dino.lm.com
Parry & Carney: http://parryandcarney.com
ISPN Forum: http://www.phylonames.org/forum/
___
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 CS3 UI Bug

2007-09-06 Thread Muzak
This is what I saw when I opened a project file this morning:
http://muzakdeezign.com/flashcoders/fcs3_ui_bug.jpg

Other UI bugs I've encountered:

- When opening Library or Project Panel (at the right) they're partly hiden 
behind the Properties and Help Panel (at the bottom) and 
the only way to fix it is to restart Flash.
- When testing an application which opens a Browse File dialog 
(FileReference.browse()), the application and Browse File dialog 
dissapear (behind the Flash IDE).
- Same problem Steven described when testing an application.. The test movie 
window is hidden behind certain UI panels. Once this 
behavior kicks in, the only way to solve it is to restart Flash.

regards,
Muzak

- Original Message - 
From: "Steven Sacks" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, September 06, 2007 7:49 PM
Subject: Re: [Flashcoders] Flash CS3 UI Bug


> Nice to know I'm not alone in experiencing this buggy behavior.
>
> Giles Taylor, consider yourself lucky that you don't have the bug.
>
> By the way, I have a brand spankin new clean install of Windows XP SP2 here.  
> Flash was installed right after the OS was and the 
> bug appeared immediately.  So, it isn't some OS artifact here.


___
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] Copy and paste a movieClip?

2007-09-06 Thread Mendelsohn, Michael
Just as I suspected, Julian.  Thanks for your reply.  Doesn't this
feature exist in AS3?  (I have no experience with it yet.)

- MM




> As far as I know you can't duplicate movieclips into a container other

than the original one.
___
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 Muzak
Have you looked into the Flash Search Enginde SDK?
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16603&sliceId=1

>From the FAQ:
http://www.adobe.com/licensing/developer/search/faq/

The SDK includes an application named 'swf2html'. Swf2html extracts text and 
links from a Flash .SWF file, and returns the data to 
stdout or as an HTML document. Swf2html is provided as a compiled application, 
and as a static library for linked library 
implementation.


You can get the SDK after agreeing the licence
http://www.adobe.com/licensing/developer/

hth,
Muzak

- Original Message - 
From: "Robin Burrer" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, September 06, 2007 3:46 PM
Subject: Re: [Flashcoders] search engine optimization for flash sites


> 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


___
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] copy and paste text

2007-09-06 Thread Jason Bay


AWESOME THANKS!


On Sep 6, 2007, at 10:51 AM, Nick Johnston wrote:


Hello Jason,

You can use the System.setClipboard(textField.text) method. Make  
sure to include this line : import flash.system.System;


Cheers,
Nick
Jason Bay wrote:

hello -

Is it possible to dynamically copy and paste out of a text field?

I have a text field with a "copy code" button and a "cancel"  
button. Potentially the user would click the copy code button and  
you would be able to then paste to in another location.


thanks for your help!


___
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] Flash CS3 UI Bug

2007-09-06 Thread Steven Sacks

Nice to know I'm not alone in experiencing this buggy behavior.

Giles Taylor, consider yourself lucky that you don't have the bug.

By the way, I have a brand spankin new clean install of Windows XP SP2 
here.  Flash was installed right after the OS was and the bug appeared 
immediately.  So, it isn't some OS artifact here.

___
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] coding a world clock

2007-09-06 Thread Marcelo Volmaro
I took that data from various sources. I'm using that for my own clock  
too, and also have a function that, taking a "position" (first, second,  
third, etc), a month and "day" can calculate the real date when a DST  
occurs (for example, you feed "first Friday of may" or "last Monday of  
December" and it returns the correct date for a specific year).


I have a list of DST/Timezones per location, but did not converted to AS  
(I have some XML files). The problem is that the list is a big one,  
because the list is compromised of:

a) Countries
b) Regions
c) States
d) Cities.

Usually, you can trim down the list a lot, since almost all cities in a  
country have the same TZ/DST, but that's not the case for the US. In fact,  
you have some cities on the same state that have different TZ.


You can get the complete list from:

http://www.isi.edu/~pan/SWBP/time-zone-note/time-zone-note.html

The problem with that list is that the dates specified for the start/end  
of DST is that are tied to a specific year and usually you need to wait  
until someone updates that list... so I coded the following list that has  
all the info necessary to do the calcs:


private static const dstPolicies:Object = {
USADLS:new DstPolicy(1,0,4, -1,0,10),
EUDLS:new DstPolicy(-1,0,3, -1,0,10),
AU2003DLS:new DstPolicy(-1,0,10, -1,0,3),
AUTDLS:new DstPolicy(1,1,10, -1,0,3),
RUDLS:new DstPolicy(-1,0,3, -1,0,10),
EGDLS:new DstPolicy(-1,5,4, -1,4,9),
IRDLS:new DstPolicy(-1,6,3, -1,1,9),
IQDLS:new DstPolicy(255, 1,4, 255, 1,10),
ILDLS:new DstPolicy(-1,4,3, 1,4,10),
JODLS:new DstPolicy(-1,3,3, -1,4,10),
NADLS:new DstPolicy(1,0,9, 1,0,4),
PKDLS:new DstPolicy(1,6,4, 1,6,10),
SYDLS:new DstPolicy(255,30,3, 255,21,9),
CLDLS:new DstPolicy(2,0,10, 2,0,3),
CLEDLS:new DstPolicy(2,5,10, 2,6,3),
NZDLS:new DstPolicy(1,0,10, 3,0,3),
PYDLS:new DstPolicy(1,0,9, 1,0,4),
FKDLS:new DstPolicy(1,0,9, -1,0,4)
};

Where the first number is the position (1: first, -1:last, 255: straight  
date), the second and the third are the day/month.
If the position is 255, the date is a straight day/month date, so for  
example for IRAQ the start date is April 1.


The formulas for the calcs are:

/**
 * @param y:int Year
 * @param m:int Month (0 - 11)
		 * @param n:int Day of the week (0 for a Sunday, 1 for a Monday, 2 for a  
Tuesday, etc)

 * @param w:int Occurence (1:first, 2:second, 3:third, 
4:fourth, -1:last)
 * @return real day of the month where the DST starts/ends
 *
 * first friday = w:1, n:5
 * third monday = w:3, n:1
 * last monday = w:-1, n:1
 */

private static function calcStartEnd(y:int, m:int, n:int, 
w:int):int{
if (w < 0){
var nd:Number = (new Date(y, m, 0)).getDate();
var diff:Number = (getDayOfWeek(y, m+1, nd) - 
n) % 7;
if (diff < 0) diff += 7;
return nd-diff;
}

var nq:int = 7 * w - 6 + (n - getDayOfWeek(y, m+1, 1)) 
% 7;
if (nq < 1) nq += 7;

return nq;
}

/**
 * @param y:int Year
 * @param m:int Month (1 - 12)
 * @param d:int Day (1 - 31)
 * @return 0 for a Sunday, 1 for a Monday, 2 for a Tuesday, etc.
 */

private static function getDayOfWeek(y:int, m:int, d:int):int{
var a:int = int((14 - m) / 12);
y -= a;
m += 12 * a - 2;
			var r:int =  (d + y + int(y/4) - int(y/100) + int(y/400)  
+ int((31*m)/12))%7;

if (r < 0) {
return 7+r;

} else {
return r;
}
}



Hope it helps...


On Thu, 06 Sep 2007 13:03:13 -0300, Keith Reinfeld  
<[EMAIL PROTECTED]> wrote:



Hi Corban,

Yes, I've been working on mine. I really want to thank Marcelo for the
timezones array. Very helpful! Where did that come from?

I have worked out a mechanism for applying Daylight Savings Time rules.  
Now

all I need is the data, by location, to pass in.

Note to Jim Berkey:

Re: [Flashcoders] coding a world clock

2007-09-06 Thread Jim Berkey
It's in CS3 now. I'll save a Flash 8 version and put it up. Check in 10 
minutes. Sorry.
Also, code is in the separate mc's for each clock, not on the first frame, 
it's an old piece I haven't updated.


Jimbo
http://jimbo.us
- Original Message - 
From: "Keith Reinfeld" <[EMAIL PROTECTED]>

To: 
Sent: Thursday, September 06, 2007 12:36 PM
Subject: RE: [Flashcoders] coding a world clock



Hi Jim,

Thanks again!

Is it just me (Flash 8) or does anybody else get the 'Unexpected File
Format' error?

What version of Flash was your worldclock.fla created in?

Regards,

-Keith
http://keithreinfeld.home.comcast.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


RE: [Flashcoders] coding a world clock

2007-09-06 Thread Keith Reinfeld
Hi Jim, 

Thanks again! 

Is it just me (Flash 8) or does anybody else get the 'Unexpected File
Format' error? 

What version of Flash was your worldclock.fla created in?

Regards, 

-Keith 
http://keithreinfeld.home.comcast.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


Re: [Flashcoders] Copy and paste a movieClip?

2007-09-06 Thread JulianG

Yes.
As far as I know you can't duplicate movieclips into a container other 
than the original one.
You could try attachMovie if you need to use the same movieclip symbol 
in different places.


In any case, when you duplicate a movieclip, you don't get a clone of 
the current state of the object. You get a new instance of the same 
symbol. This means (for instance) that it doesn't matter if your 
movieclip-to-be-cloned was playing around frame #30, your duplicated MC 
will always start from frame 1. And if you had set any variables on the 
first MC, the duplicated won't keep those values either.


I hope this helps,
JulianG



Mendelsohn, Michael wrote:

Hi list...

[AS2]  I'm trying to figure out how to copy a movieClip from inside a
scroll pane component and paste that copy on the _root.  The movieclip
version of duplicateMovieClip doesn't seem to work because I can't
target the clip inside the scroll pane.  The global version of
duplicateMovieClip doesn't seem to work because I can't say
_root.duplicateMovieClip(target).  Am I missing something?

- Michael M.
___
  

___
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] coding a world clock

2007-09-06 Thread Jim Berkey

Note to Jim Berkey: First, thank you for the link. Nice touch with the
iconic location graphics. Second, I'm getting a 404 for the worldclock
source file. Just FYI.

Regards,

-Keith
http://keithreinfeld.home.comcast.net

Sorry  had to uncloak it in Dreamweaver before I uploaded. Should be 
there now. 


___
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] coding a world clock

2007-09-06 Thread Keith Reinfeld
Hi Corban, 

Yes, I've been working on mine. I really want to thank Marcelo for the
timezones array. Very helpful! Where did that come from? 

I have worked out a mechanism for applying Daylight Savings Time rules. Now
all I need is the data, by location, to pass in. 

Note to Jim Berkey: First, thank you for the link. Nice touch with the
iconic location graphics. Second, I'm getting a 404 for the worldclock
source file. Just FYI. 

Regards, 

-Keith 
http://keithreinfeld.home.comcast.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


Re: [Flashcoders] copy and paste text

2007-09-06 Thread Nick Johnston

Hello Jason,

You can use the System.setClipboard(textField.text) method. Make sure to 
include this line : import flash.system.System;


Cheers,
Nick
Jason Bay wrote:

hello -

Is it possible to dynamically copy and paste out of a text field?

I have a text field with a "copy code" button and a "cancel" button. 
Potentially the user would click the copy code button and you would be 
able to then paste to in another location.


thanks for your help!


___
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't access

2007-09-06 Thread Andy Herrman
My guess is that your "this" variable is getting mixed up.  I'm not
familiar with the "Delegate.function" usage, but that function may be
being called with a scope you're not expecting.

Try just using a regular function there.  You've already set up the
'ref' member of the 'swfListen' object, so 'this.ref' should give you
what you want.

  -Andy

On 9/6/07, Lee Marshall <[EMAIL PROTECTED]> wrote:
> I am trying to construct a class that loads in an external SWF. I have a
> movieclip in the external SWF called 'closer_mc' which I cannot get
> access to. I keep getting undefined in my output. Can anyone suggest
> anything?
>
>
>
> Cheers
>
>
>
> Code:
>
>
>
> class PopupIll {
>
> //Initialise variables
>
> public var t:MovieClip;
>
> public var a:MovieClip;
>
> public var closer_mc:MovieClip;
>
> public var popX:Number;
>
> public var popY:Number;
>
> public var popMovie:String;
>
> //Constructor function
>
> public function PopupIll(movieName:String, target:MovieClip,
> newX:Number, newY:Number, depth:Number, a:MovieClip) {
>
> t = target;
>
> t._x = newX;
>
> t._y = newY;
>
> var swfListen:Object = new Object();
>
> swfListen.ref = t;
>
> swfListen.ref2 = t.closer_mc;
>
> //Create listener object
>
> var swfMCLoader:MovieClipLoader = new
> MovieClipLoader();
>
> //Create MovieClipLoader
>
> swfListen.onLoadError =
> function(target_mc:MovieClip, errorCode:String, status:Number) {
>
> trace("Error loading image:
> "+errorCode);
>
> };
>
> swfListen.onLoadStart =
> function(target_mc:MovieClip):Void  {
>
> //trace("onLoadStart: " +
> target_mc);
>
> };
>
> swfListen.onLoadProgress =
> function(target_mc:MovieClip, numBytesLoaded:Number,
> numBytesTotal:Number):Void  {
>
> var numPercentLoaded:Number =
> numBytesLoaded/numBytesTotal*100;
>
> //trace("onLoadProgress: " +
> target_mc + " is " + numPercentLoaded + "% loaded");
>
> };
>
> swfListen.onLoadComplete =
> Delegate.function(target_mc:MovieClip, status:Number):Void  {
>
> //trace("onLoadComplete: " +
> target_mc);
>
>
> //swfMCLoader.unloadClip(illHolder_mc);
>
> trace(this.ref.closer_mc);
>
> this.ref.closer_mc._x = 100;
>
> this.ref.closer_mc.onRelease =
> function() {
>
>
> this.ref.removeMovieClip();
>
> };
>
>
> //swfMCLoader.removeListener(swfListen);
>
> };
>
> swfMCLoader.addListener(swfListen);
>
> swfMCLoader.loadClip(movieName,t);
>
> }
>
> }
>
>
>
> Lee Marshall.
> Senior Media Designer/Developer
>
> Transart Educational Marketing Systems
> Clare Hall
> Parsons Green
> St Ives Business Park
> St Ives
> Cambridgeshire PE27 4WY
>
> Tel Direct Dial: +44(0)1480 499213
> Tel General Enquiries: +44(0)1480 499200
> Fax: +44(0)1480 499201
> email: [EMAIL PROTECTED] 
> web: www.transart.co.uk 
>
> Confidentiality notice:
> Please note that the information contained herein is highly confidential
> and may also be privileged and is for the named recipient(s) only, on no
> account should any part or details be disclosed to any third party
> without the prior written consent of Transart.  In the event that you
> are not the intended recipient then please delete it and any copies that
> you have made and contact me on the above number.
>
> General statement:
> Any statements made, or intentions expressed in this communication may
> not necessarily reflect the view of Transart.  Be advised that no
> content herein may be held binding upon Transart or any associated
> company unless confirmed by the issuance of a formal contractual
> document or purchase order.
>
>
>
> ___
> 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

Br

[Flashcoders] copy and paste text

2007-09-06 Thread Jason Bay

hello -

Is it possible to dynamically copy and paste out of a text field?

I have a text field with a "copy code" button and a "cancel" button.  
Potentially the user would click the copy code button and you would  
be able to then paste to in another location.


thanks for your help!


___
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] Copy and paste a movieClip?

2007-09-06 Thread Mendelsohn, Michael
Hi list...

[AS2]  I'm trying to figure out how to copy a movieClip from inside a
scroll pane component and paste that copy on the _root.  The movieclip
version of duplicateMovieClip doesn't seem to work because I can't
target the clip inside the scroll pane.  The global version of
duplicateMovieClip doesn't seem to work because I can't say
_root.duplicateMovieClip(target).  Am I missing something?

- Michael M.
___
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] coding a world clock

2007-09-06 Thread Jim Berkey

I did something for a client that may be helpful -
It's  in AS2 - easy to modify, add to, etc.:

http://jimbo.us/lab/worldClock.html

Jimbo
http://jimbo.us
- Original Message - 
From: "Corban Baxter" <[EMAIL PROTECTED]>

To: 
Sent: Thursday, September 06, 2007 10:17 AM
Subject: Re: [Flashcoders] coding a world clock


hey keith or any of you guys have you had a chance to look any further 
into

this. I have put it to the side since the time i posted but I am going to
try and get back at it very quickly.

On 9/3/07, Marcelo Volmaro <[EMAIL PROTECTED]> wrote:


Something like this?

private static var timeZones:Array = [
[-1, "Azores","Brazil Atlantic Islands","Cape
Verde","Greenland
Scoresbysun","Guinea Bissau"],
[-2, "Antarctica"],
[-3, "Argentina","Brazil East", "French Guiana",
"Greenland",
"Guyana","St Pierre & Miquelon","Suriname","Uruguay"],
[-3.5, "Canada Newfoundland"],
[-4, "AST: Atlantic Standard","Anguilla", "Antigua",
"Argentina western
prov","Aruba","Barbados","Bermuda","Bolivia","Bonaire","Brazil
Acre","Brazil West","British Virgin Islands","Canada
Atlantic","Chile","Curacao","Dominica","Dominican Republic","Falkland
Islands","Greenland Thule","Grenada","Grenadines","Guadeloupe","Leeward
Islands","Martinique","Netherlands Antilles","Nevis
Montserrat","Paraguay","Puerto Rico","Saba","St Christopher","St
Croix","St John","St Kitts Nevis","St Lucia","St Maarten","St Thomas","St
Vincent","Trinidad and Tobago","Venezuela","Virgin Islands","Windward
Islands"],
[-5, "EST: Eastern Standard","Bahamas","Canada
Eastern","Cayman
Islands","Colombia","Cuba","Ecuador","Galapagos
Islands","Haiti","Jamaica","Panama","Peru","Turks and Caicos 
Islands","USA

Eastern","USA Indiana East"],
[-6, "CST: Central Standard","Belize", "Canada
Central","Costa
Rica","Easter Island","El
Salvador","Guatemala","Honduras","Mexico","Nicaragua","USA Central"],
[-7, "MST: Mountain Standard","Canada Mountain","Mexico
Nayarit","Mexico
Sinaloa","Mexico Sonora","USA Arizona","USA Mountain"],
[-8, "PST: Pacific Standard","Canada Yukon &
Pacific","Mexico Baja Calif
Norte","USA Pacific"],
[-9, "Gambier Island","USA Alaska"],
[-9, "Marquesas Islands"],
[-10, "Christmas Islands","Cook Islands","French
Polynesia","Johnston
Island","Society Island","Tahiti","Tuamotu Island","Tubuai Island","USA
Aleutian","USA Hawaii"],
[-11, "NT: Nome","American Samoa","Canton Enderbury
Islands","Midway
Island","Niue Island","Samoa"],
[-12, "IDLW: International Date Line West"],

[0, "Ascension","Burkina Faso","Canary Islands","Channel
Islands","Cote
d'Ivoire","England","Faroe
Island","Gambia","Ghana","Guinea","Iceland","Ireland Republic
of","Liberia","Madeira","Mali","Mauritania","Morocco","Northern
Ireland","Principe Island","Sao Tome e
Principe","Scotland","Senegal","Sierra Leone","St Helena","Togo","United
Kingdom","Wales"],
[1.00, "CET Central European",
"Albania","Algeria","Andorra","Angola","Austria","Balearic
Islands","Belgium","Benin","Bosnia Hercegovina","Cameroon","Central
African Rep","Chad","Congo","Czech
Republic","Dahomey","Denmark","Equatorial

Guinea","France","Gabon","Germany","Gibraltar","Hungary","Italy","Luxembourg","Macedonia","Mallorca

Islands","Malta","Melilla","Monaco","Namibia","Netherlands","Niger","Nigeria","Norway","Poland","Portugal","San

Marino","Slovakia","Slovenia","Spain","Sweden","Switzerland","Tunisia","Vatican
City","Yugoslavia","Zaire Kinshasa Mbandaka","Croatia"],
[2.00, "EET Eastern

European","Belarus","Botswana","Bulgaria","Burundi","Cyprus","Egypt","Estonia","Finland","Greece","Israel","Jordan","Latvia","Lebanon","Lesotho","Libya","Lithuania","Malawi","Moldova","Moldovian
Rep Pridnestrovye","Mozambique","Romania","Russian Federation zone
one","Rwanda","South
Africa","Sudan","Swaziland","Syria","Turkey","Ukraine","Zaire Haut
Zaire","Zaire Kasai","Zaire Kivu","Zaire Shaba","Zambia","Zimbabwe"],
[3.00,

"Azerbaijan","Bahrain","Djibouti","Eritrea","Ethiopia","Iraq","Kenya","Kuwait","Madagascar","Mayotte","Qatar","Russian
Federation zone two","Saudi
Arabia","Somalia","Tanzania","Uganda","Yemen"],
[3.50, "Iran"],
[4.00,
"Armenia","Georgia","Mauritius","Oman","Reunion","Russian
Federation zone three","Seychelles","United Arab Emirates"],
[4.50, "Afghanistan"],
[5.00, "Kyrgyzstan","Maldives","Pakistan","Russian
Federation zone
four","Turkmenistan","Uzbekistan"],
[5.50, "India","Sri Lanka"],
[5.75, "Nepal"],
[6.00, "Bangladesh","Bhutan","Kazakhstan","Russian
Federation zone
five","Tajikistan"],
[6.50, "Myanmar"],
[7.00, "Cambodia","Indonesia West","Laos","Russian
Federation zone
si

[Flashcoders] Print Rows DataGrid

2007-09-06 Thread Vivek Gaikwad
Hi,

 

I have a DataGrid on the stage having almost 70 rows. A vertical scrollbar
appears since these many rows can't fit in one shot. 

When I print this movie, the rows which were visible from the DataGrid only
get printed. What if I want to print the entire DataGrid(all 70 rows)?

 

 

peace, veiky

___
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 Benny
Hi Robin,

Google DOES index flash content (out of the box) but there are some
limitations. The biggest one is that Google only indexes the text and links
that are embedded in the swf. So dynamically loaded content will NOT be
indexed.

Therefore most pro's will go another direction, the one of 'progressive
enhancement'. This means you first build the html version of your site
(inclusive internal linking) and build your swf in such way that it loads
that same content. Then you setup your index page with SWFObject. This will
first load the html version of your site in a div and immediately overwrites
that div with the flash version (i.e. if possible). 

Now if a indexing robot visits your site they will only get as far as the
html version, because they don't pass  SWFObject's flash detection check. 

Don’t forget to disallow indexing of your swf through an entry in your
robots.txt file. 

Regards,
Benny

P.S. SWFAddress (or alternatives) is not persé needed for good SEO but does
have a positive effect on the accessibility and user experience of your
site. Another benefit of SWFAddress is it's deep linking capability. So if
someone finds any page of your site in Google you can direct them to the
exact spot in your swf site, without deep linking the will always end up at
the start section of your swf site.


___
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] coding a world clock

2007-09-06 Thread Corban Baxter
hey keith or any of you guys have you had a chance to look any further into
this. I have put it to the side since the time i posted but I am going to
try and get back at it very quickly.

On 9/3/07, Marcelo Volmaro <[EMAIL PROTECTED]> wrote:
>
> Something like this?
>
> private static var timeZones:Array = [
> [-1, "Azores","Brazil Atlantic Islands","Cape
> Verde","Greenland
> Scoresbysun","Guinea Bissau"],
> [-2, "Antarctica"],
> [-3, "Argentina","Brazil East", "French Guiana",
> "Greenland",
> "Guyana","St Pierre & Miquelon","Suriname","Uruguay"],
> [-3.5, "Canada Newfoundland"],
> [-4, "AST: Atlantic Standard","Anguilla", "Antigua",
> "Argentina western
> prov","Aruba","Barbados","Bermuda","Bolivia","Bonaire","Brazil
> Acre","Brazil West","British Virgin Islands","Canada
> Atlantic","Chile","Curacao","Dominica","Dominican Republic","Falkland
> Islands","Greenland Thule","Grenada","Grenadines","Guadeloupe","Leeward
> Islands","Martinique","Netherlands Antilles","Nevis
> Montserrat","Paraguay","Puerto Rico","Saba","St Christopher","St
> Croix","St John","St Kitts Nevis","St Lucia","St Maarten","St Thomas","St
> Vincent","Trinidad and Tobago","Venezuela","Virgin Islands","Windward
> Islands"],
> [-5, "EST: Eastern Standard","Bahamas","Canada
> Eastern","Cayman
> Islands","Colombia","Cuba","Ecuador","Galapagos
> Islands","Haiti","Jamaica","Panama","Peru","Turks and Caicos Islands","USA
> Eastern","USA Indiana East"],
> [-6, "CST: Central Standard","Belize", "Canada
> Central","Costa
> Rica","Easter Island","El
> Salvador","Guatemala","Honduras","Mexico","Nicaragua","USA Central"],
> [-7, "MST: Mountain Standard","Canada Mountain","Mexico
> Nayarit","Mexico
> Sinaloa","Mexico Sonora","USA Arizona","USA Mountain"],
> [-8, "PST: Pacific Standard","Canada Yukon &
> Pacific","Mexico Baja Calif
> Norte","USA Pacific"],
> [-9, "Gambier Island","USA Alaska"],
> [-9, "Marquesas Islands"],
> [-10, "Christmas Islands","Cook Islands","French
> Polynesia","Johnston
> Island","Society Island","Tahiti","Tuamotu Island","Tubuai Island","USA
> Aleutian","USA Hawaii"],
> [-11, "NT: Nome","American Samoa","Canton Enderbury
> Islands","Midway
> Island","Niue Island","Samoa"],
> [-12, "IDLW: International Date Line West"],
>
> [0, "Ascension","Burkina Faso","Canary Islands","Channel
> Islands","Cote
> d'Ivoire","England","Faroe
> Island","Gambia","Ghana","Guinea","Iceland","Ireland Republic
> of","Liberia","Madeira","Mali","Mauritania","Morocco","Northern
> Ireland","Principe Island","Sao Tome e
> Principe","Scotland","Senegal","Sierra Leone","St Helena","Togo","United
> Kingdom","Wales"],
> [1.00, "CET Central European",
> "Albania","Algeria","Andorra","Angola","Austria","Balearic
> Islands","Belgium","Benin","Bosnia Hercegovina","Cameroon","Central
> African Rep","Chad","Congo","Czech
> Republic","Dahomey","Denmark","Equatorial
>
> Guinea","France","Gabon","Germany","Gibraltar","Hungary","Italy","Luxembourg","Macedonia","Mallorca
>
> Islands","Malta","Melilla","Monaco","Namibia","Netherlands","Niger","Nigeria","Norway","Poland","Portugal","San
>
> Marino","Slovakia","Slovenia","Spain","Sweden","Switzerland","Tunisia","Vatican
> City","Yugoslavia","Zaire Kinshasa Mbandaka","Croatia"],
> [2.00, "EET Eastern
>
> European","Belarus","Botswana","Bulgaria","Burundi","Cyprus","Egypt","Estonia","Finland","Greece","Israel","Jordan","Latvia","Lebanon","Lesotho","Libya","Lithuania","Malawi","Moldova","Moldovian
> Rep Pridnestrovye","Mozambique","Romania","Russian Federation zone
> one","Rwanda","South
> Africa","Sudan","Swaziland","Syria","Turkey","Ukraine","Zaire Haut
> Zaire","Zaire Kasai","Zaire Kivu","Zaire Shaba","Zambia","Zimbabwe"],
> [3.00,
>
> "Azerbaijan","Bahrain","Djibouti","Eritrea","Ethiopia","Iraq","Kenya","Kuwait","Madagascar","Mayotte","Qatar","Russian
> Federation zone two","Saudi
> Arabia","Somalia","Tanzania","Uganda","Yemen"],
> [3.50, "Iran"],
> [4.00,
> "Armenia","Georgia","Mauritius","Oman","Reunion","Russian
> Federation zone three","Seychelles","United Arab Emirates"],
> [4.50, "Afghanistan"],
> [5.00, "Kyrgyzstan","Maldives","Pakistan","Russian
> Federation zone
> four","Turkmenistan","Uzbekistan"],
> [5.50, "India","Sri Lanka"],
> [5.75, "Nepal"],
> [6.00, "Bangladesh","Bhutan","Kazakhstan","Russian
> Federation zone
> five","Tajikistan"],
> [6.50, "Myanmar"],
> [7.00, "Cambodia","Indonesia West","Laos","Russian
> Federation zone
> six","Thailand","Vietnam"],
> [8.00, "Australia Western","Brunei","China People's
> Rep","Hong
> Kong","Indonesia Central","Malaysia

[Flashcoders] Can't access

2007-09-06 Thread Lee Marshall
I am trying to construct a class that loads in an external SWF. I have a
movieclip in the external SWF called 'closer_mc' which I cannot get
access to. I keep getting undefined in my output. Can anyone suggest
anything?

 

Cheers

 

Code:

 

class PopupIll {

//Initialise variables

public var t:MovieClip;

public var a:MovieClip;

public var closer_mc:MovieClip;

public var popX:Number;

public var popY:Number;

public var popMovie:String;

//Constructor function

public function PopupIll(movieName:String, target:MovieClip,
newX:Number, newY:Number, depth:Number, a:MovieClip) {

t = target;

t._x = newX;

t._y = newY;

var swfListen:Object = new Object();

swfListen.ref = t;

swfListen.ref2 = t.closer_mc;

//Create listener object

var swfMCLoader:MovieClipLoader = new
MovieClipLoader();

//Create MovieClipLoader

swfListen.onLoadError =
function(target_mc:MovieClip, errorCode:String, status:Number) {

trace("Error loading image:
"+errorCode);

};

swfListen.onLoadStart =
function(target_mc:MovieClip):Void  {

//trace("onLoadStart: " +
target_mc);

};

swfListen.onLoadProgress =
function(target_mc:MovieClip, numBytesLoaded:Number,
numBytesTotal:Number):Void  {

var numPercentLoaded:Number =
numBytesLoaded/numBytesTotal*100;

//trace("onLoadProgress: " +
target_mc + " is " + numPercentLoaded + "% loaded");

};

swfListen.onLoadComplete =
Delegate.function(target_mc:MovieClip, status:Number):Void  {

//trace("onLoadComplete: " +
target_mc);

 
//swfMCLoader.unloadClip(illHolder_mc);

trace(this.ref.closer_mc);

this.ref.closer_mc._x = 100;

this.ref.closer_mc.onRelease =
function() {

 
this.ref.removeMovieClip();

};

 
//swfMCLoader.removeListener(swfListen);

};

swfMCLoader.addListener(swfListen);

swfMCLoader.loadClip(movieName,t);

}

}

 

Lee Marshall.
Senior Media Designer/Developer

Transart Educational Marketing Systems 
Clare Hall
Parsons Green
St Ives Business Park
St Ives
Cambridgeshire PE27 4WY

Tel Direct Dial: +44(0)1480 499213
Tel General Enquiries: +44(0)1480 499200
Fax: +44(0)1480 499201
email: [EMAIL PROTECTED]  
web: www.transart.co.uk  

Confidentiality notice:
Please note that the information contained herein is highly confidential
and may also be privileged and is for the named recipient(s) only, on no
account should any part or details be disclosed to any third party
without the prior written consent of Transart.  In the event that you
are not the intended recipient then please delete it and any copies that
you have made and contact me on the above number.
 
General statement:
Any statements made, or intentions expressed in this communication may
not necessarily reflect the view of Transart.  Be advised that no
content herein may be held binding upon Transart or any associated
company unless confirmed by the issuance of a formal contractual
document or purchase order.

 

___
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 gerry
SWFAddress is not only the back and fwd button access, it has the ability
for deep linking in search engines. Read the documentation on it, there's
a lot more to it... it's very good!

-Gerry

> 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@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] SWX and security

2007-09-06 Thread Corban Baxter
i think this is a better question for the swx mailing list...

http://osflash.org/mailman/listinfo/swx_osflash.org

On 5/25/07, Jiri Heitlager | dadata.org <[EMAIL PROTECTED]> wrote:
>
> I have been reading up on  SWX by Aral Balkan and have a question that
> maybe the list can answer. Dealing with sending data to a server from
> flash there is always the question of security. Making games in flash
> and sending data to a server is always a hassle when the sended data
> needs to be obscured.
> I wonder if SWX has the potential to make sending data over the wire
> 'saver', that is when the swf is created on the server side, maybe it
> can be encrypted.
> But still the URL to the gateway on the server can be read with
> different tool, so that makes me wonder if it is possible at all.
>
> Some thoughts on the matter by the more genious among the list would be
> nice ;)
>
> Jiri
>
> ___
> 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
>



-- 
Corban Baxter
http://www.projectx4.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] search engine optimization for flash sites

2007-09-06 Thread dr.ache

Best way would be saving your content in a database or xml and generate
a html pages from it. the same content will be loaded inside flash. thus
search engines can crawl your html pages which show the same content
as your flash site.

Robin Burrer schrieb:

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@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] Mac issue with flickerling FLVPlayback component

2007-09-06 Thread Matt Muller
Hi I have an FLVPlayback component on a html page. When its paused and its
scrolled off the screen and scrolled back on it doesnt redraw the video
frame correctly.
This is a mac issue. Has anyone else experienced this?

Cheers

MaTT
___
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 Jiri Heitlager | dadata.org

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


Re: [Flashcoders] Flash CS3 UI Bug

2007-09-06 Thread Nick Gerig
yeah i was noticing this yesterday . it also does it with the debug 
window! Why you would want an active debug window to go behind panels I 
dont know.


Michael Trim wrote:

Why are the panels in Flash CS3 (Windows) set to always on top?  When I



test movie in Flash, the test movie window goes BEHIND ALL PANELS?

+1 it's a very annoying 'feature'
___
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 CS3 UI Bug

2007-09-06 Thread Michael Trim
>Why are the panels in Flash CS3 (Windows) set to always on top?  When I

test movie in Flash, the test movie window goes BEHIND ALL PANELS?

+1 it's a very annoying 'feature'
___
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] AS3 version of the ol' dynamically-created constructor trick?

2007-09-06 Thread Peter Balogh
Thank you! That's exactly it.

- Original Message 
From: Pedro Taranto <[EMAIL PROTECTED]>
To: flashcoders@chattyfig.figleaf.com
Sent: Wednesday, September 5, 2007 11:16:39 PM
Subject: Re: [Flashcoders] AS3 version of the ol' dynamically-created 
constructor trick?

you can use:

var classRef:Class = getDefinitionByName("MyClassNmae") as Class;
var myInstance:* = new classRef();

-- 
Pedro Taranto

___
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 CS3 UI Bug

2007-09-06 Thread Paul Venton
I know what you mean.  It only happens occasionally here but when it does I
find the test movie is obscured by some, not all, of the panels.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steven
Sacks
Sent: 05 September 2007 22:03
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Flash CS3 UI Bug

Lord knows I'm the last guy to complain about something on Flashcoders 
*wink* but this is ridiculous.

Why are the panels in Flash CS3 (Windows) set to always on top?  When I 
test movie in Flash, the test movie window goes BEHIND ALL PANELS?

If this is intentional, who's the genius at Adobe who came up with this 
retarded ass bullcrap?  I thought Adobe was trying to improve the UI not

break it.

FIX IT.

/rant


___
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] Q:flashInspector/luminicBox not working in browser

2007-09-06 Thread Sunil Jolly
That *is* strange!

Is something interfering with the localconnection? Another luminicbox
hidden away somewhere or another app in the browser?

Any app config settings that are different in the IDE to the browser?

Sunil 
 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: 05 September 2007 17:12
To: flashcoders
Subject: [Flashcoders] Q:flashInspector/luminicBox not working in
browser


For some reason I'm not getting any of my log calls from the
browserworks fine when testing in the IDE though

Anyone have an idea on how to get back my log calls?

Strange...this hasn't happened before and I use luminicbox all the
time...

[e] jbach at bitstream.ca
[c] 416.668.0034
[w] www.bitstream.ca

"...all improvisation is life in search of a style."
 - Bruce Mau,'LifeStyle'
___
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 CS3 UI Bug

2007-09-06 Thread Giles Taylor
Must just be your "retarded ass bullcrap" install ;)
Mine works lovely.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steven
Sacks
Sent: 05 September 2007 22:03
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Flash CS3 UI Bug

Lord knows I'm the last guy to complain about something on Flashcoders 
*wink* but this is ridiculous.

Why are the panels in Flash CS3 (Windows) set to always on top?  When I 
test movie in Flash, the test movie window goes BEHIND ALL PANELS?

If this is intentional, who's the genius at Adobe who came up with this 
retarded ass bullcrap?  I thought Adobe was trying to improve the UI not

break it.

FIX IT.

/rant

___
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] 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


[Flashcoders] Test list...

2007-09-06 Thread Javier Tello
...
___
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