[Flashcoders] Facebook - Flash Developers Group, Manchester, UK. ( just started )

2007-04-16 Thread Stephen Matthews
There's a Facebook -  Flash Developers Group, Manchester, UK just  
been started.


This could be useful, especially for when you have to much work and  
need to find someone good in Manchester, UK.
I am often asked - who do you know that's freelance in Manchester  
that are any good, and sometimes I struggle.


http://www.facebook.com/group.php?gid=2309319562

The founder of the group is Wez Crozier of 'code computer love'
I am Stephen Matthews, freelancer.
___
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] Linked mcs Containing linked mcs

2007-04-16 Thread pedr browne

Hi there,

Have found the following problem...

Say I have an mc with a linkage ID (container_mc) and it contains an mc
which subclasses MovieClip (child_mc). If I attach container_mc to the
stage at runtime and immediately try to call a function in the class
associated with child_mc, I cannot. Child_mc 'exists' in that it traces
correctly, but it seems there is no association between it and its class.

The only way I've found to get around this is to set a delay of between
1/100 and 1/10 of a second before calling the function.

Is there something I'm doing wrong or could do to stop having to do this?

Many 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


[Flashcoders] POST with FileReference

2007-04-16 Thread Gilles Roquefeuil

Hello,

For an upload, i use FileReference with a comboBox listing the  
differents directories (ie. images, templates, files, etc.).

I want to pass the chosen directory with the upload method.
So, as the Flash Help mentions it, i can pass the url to the upload  
method using POST, which looks like  this :

myFR.upload(fileUpload.php?myDir=images) ;
In my PHP page, i use $_POST[myDir] to get the directory name. But  
i just can't manage to get it.

Can anyone give any any direction ?
Thanx a lot, and hello from France,

Gilles
___
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] POST with FileReference

2007-04-16 Thread Muzak
That's not a POST, that's a GET ;-)

So try: $_GET[myDir]

The actual FileReference upload information is sent using POST, which, for 
security reasons, you have no access to.

regards,
Muzak

- Original Message - 
From: Gilles Roquefeuil [EMAIL PROTECTED]
To: Flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 11:32 AM
Subject: [Flashcoders] POST with FileReference


 Hello,

 For an upload, i use FileReference with a comboBox listing the  differents 
 directories (ie. images, templates, files, etc.).
 I want to pass the chosen directory with the upload method.
 So, as the Flash Help mentions it, i can pass the url to the upload  method 
 using POST, which looks like  this :
 myFR.upload(fileUpload.php?myDir=images) ;
 In my PHP page, i use $_POST[myDir] to get the directory name. But  i just 
 can't manage to get it.
 Can anyone give any any direction ?
 Thanx a lot, and hello from France,

 Gilles


___
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 and Arabic

2007-04-16 Thread Danny Kodicek
  HI,
 
 It now transpires that the project I am quoting for needs 
 much of it done in Arabic. As it is my first multi language 
 project in Flash are there any issues with that in Flash (I 
 could write an encyclopedia full about Director and its 
 characater set issues)

Just got back from holiday and noticed this post which doesn't seem to have
had any replies.

Arabic in Flash is possible but tricky. Exactly how tricky depends on what
exactly you need to do. Just putting static Arabic text on screen is easy -
no different from Roman. Dynamic text is essentially okay, but you need to
watch out for RTL and Bidirectional issues. One major issue is that Flash
behaves differently for embedded and non-embedded fonts. Text rendered using
non-embedded fonts uses the OS-level text renderer, and so renders the text
using the standard Bidirectional algorithm. For single-line text this is
perfect (although we didn't test for a very wide range of OS's and browsers
- I suspect there might be some niggles on various combinations); for
multiple-line text you'll find that line breaks do not get added correctly
(words get broken half-way across) so you'll need to add your line breaks
directly into the dynamic text. Text rendered using embedded fonts does not
render correctly: it has the same line-break issues as before, but also it
renders LTR and fails to correctly interpret the Arabic characters into
their cursive variants (that is, join them correctly to give the
'handwritten' style that Arabic text should have). There are ways around
this, including some code libraries (check out FlashRTL). Personally, I
prefer this option as you're in more control - I hate leaving things to the
OS unless I absolutely have to! 

Of course, the above also depends on the *source* of your dynamic text: if
you're in complete control, you can store the text directly as the
characters that will appear on-screen. But if it's coming from something
like an external XML file or some other data source, you'll need to consider
these issues.

If you want input text, you're in a different kettle of crustaceans. We
managed to solve it, but it was a big job. There aren't currently any
available commercial solutions to this, but hopefully as soon as I'm
finished with my enormous globalisation job that's taken me the best part of
a year, we'll be releasing my solution in some form.

Danny

___
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 and Arabic

2007-04-16 Thread nik crosina

Thank you very much, Danny,


Yes I thought that this post sank without a trace, lucky you saw it!

Fro the moment I jsut needed to know if there were any issues, as I am
tendering for an English course DVD that will be sold in the Middle
East.

Do I remember seeing your name on Director forums a long time ago?


Nik Crosina


On 4/16/07, Danny Kodicek [EMAIL PROTECTED] wrote:

  HI,

 It now transpires that the project I am quoting for needs
 much of it done in Arabic. As it is my first multi language
 project in Flash are there any issues with that in Flash (I
 could write an encyclopedia full about Director and its
 characater set issues)

Just got back from holiday and noticed this post which doesn't seem to have
had any replies.

Arabic in Flash is possible but tricky. Exactly how tricky depends on what
exactly you need to do. Just putting static Arabic text on screen is easy -
no different from Roman. Dynamic text is essentially okay, but you need to
watch out for RTL and Bidirectional issues. One major issue is that Flash
behaves differently for embedded and non-embedded fonts. Text rendered using
non-embedded fonts uses the OS-level text renderer, and so renders the text
using the standard Bidirectional algorithm. For single-line text this is
perfect (although we didn't test for a very wide range of OS's and browsers
- I suspect there might be some niggles on various combinations); for
multiple-line text you'll find that line breaks do not get added correctly
(words get broken half-way across) so you'll need to add your line breaks
directly into the dynamic text. Text rendered using embedded fonts does not
render correctly: it has the same line-break issues as before, but also it
renders LTR and fails to correctly interpret the Arabic characters into
their cursive variants (that is, join them correctly to give the
'handwritten' style that Arabic text should have). There are ways around
this, including some code libraries (check out FlashRTL). Personally, I
prefer this option as you're in more control - I hate leaving things to the
OS unless I absolutely have to!

Of course, the above also depends on the *source* of your dynamic text: if
you're in complete control, you can store the text directly as the
characters that will appear on-screen. But if it's coming from something
like an external XML file or some other data source, you'll need to consider
these issues.

If you want input text, you're in a different kettle of crustaceans. We
managed to solve it, but it was a big job. There aren't currently any
available commercial solutions to this, but hopefully as soon as I'm
finished with my enormous globalisation job that's taken me the best part of
a year, we'll be releasing my solution in some form.

Danny

___
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




--
Nik C
___
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] Linked mcs Containing linked mcs

2007-04-16 Thread R�kos Attila

Wait while the onLoad event of container_mc fires - it is called when
all child movieclips are initialized.

  Attila

pb Hi there,
pb 
pb Have found the following problem...
pb 
pb Say I have an mc with a linkage ID (container_mc) and it contains an mc
pb which subclasses MovieClip (child_mc). If I attach container_mc to the
pb stage at runtime and immediately try to call a function in the class
pb associated with child_mc, I cannot. Child_mc 'exists' in that it traces
pb correctly, but it seems there is no association between it and its class.
pb 
pb The only way I've found to get around this is to set a delay of between
pb 1/100 and 1/10 of a second before calling the function.
pb 
pb Is there something I'm doing wrong or could do to stop having to do this?


___
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 : memory issue

2007-04-16 Thread Parvaiz Patel

Hi Friends,

I have developed the following script for scrolling dynamically loaded
content in the movie clip. 

The script is working fine. I just wanted to know is it consuming lot of
memory? Because when I load this movie onto another movie. The first
movie become slower.

Thanks,
PP




scrollingspeed = 4;

leftmenu_downbtn.onPress = function(){
scrollingspeed = 8;

}
leftmenu_downbtn.onRelease = function(){
scrollingspeed = 4;

}

leftmenu_downbtn.onRollOver = function(){
scrollingspeed = 4;
leftscrollup=true;
leftscrolling_fn();
}
leftmenu_downbtn.onRollOut = function(){
leftscrollup=false;
leftscrolling_fn();
}
/
leftmenu_upbtn.onPress = function(){
scrollingspeed = 8;

}

leftmenu_upbtn.onRelease = function(){
scrollingspeed = 4;

}

leftmenu_upbtn.onRollOver = function(){
scrollingspeed = 4;
leftscrolldown=true;
leftscrolling_fn();
}
leftmenu_upbtn.onRollOut = function(){
leftscrolldown=false;
leftscrolling_fn();
}

function leftscrolling_fn(){
var test =
this.createEmptyMovieClip(test,this.getNextHighestDepth());
test.onEnterFrame = function(){

if(leftscrollup){
//trace(Moving Up...);
var MaskD:Number = leftmask._y + leftmask._height;
var LeftClipD:Number = PrintClip._y + PrintClip._height;
//trace(LeftClipD : +LeftClipD);
//trace(MaskD : +MaskD);
if (LeftClipD =MaskD) {
PrintClip.yMove = PrintClip.yMove - scrollingspeed;
updateAfterEvent();
}
}
else if(leftscrolldown){
//trace(Moving Down...);
if (leftmask._y =PrintClip._y) {
PrintClip.yMove = PrintClip.yMove + scrollingspeed;
updateAfterEvent();
}
}
else{
//trace(No Moving...);
delete test.onEnterFrame;
}
}
}

___
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 and Arabic

2007-04-16 Thread Danny Kodicek
 
 Thank you very much, Danny,
 
 
 Yes I thought that this post sank without a trace, lucky you saw it!
 
 Fro the moment I jsut needed to know if there were any 
 issues, as I am tendering for an English course DVD that will 
 be sold in the Middle East.
 
 Do I remember seeing your name on Director forums a long time ago?

You'll still see it on some of them :) I work on a big Flash-in-Director
project, so I encounter some of the worst of both worlds...

Danny

___
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 mass cpu benchmarking

2007-04-16 Thread Andreas R
Anyone know of a decent way to benchmark the CPU usage of websites heavy 
with flash advertising?


- Andreas R
___
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] [semi-OT] - Preventing Software Piracy

2007-04-16 Thread Blumenthal, Peter

Thanks all for your responses (and apologies for my tardy reply!)

Roy - that's a really interesting idea. I have a couple of follow up
questions though please. Were you then loading those SWFs into Director,
rather than using a loadMovie to load them into Flash? I assume so,
because although I could use the BinaryIO xtra to rewrite the files to
disc, then load them into Flash, that would of course expose the
unmumged files while the application was running. Also, how difficult
would it be for someone familiar with the SWF format to identify and
strip those junk bits? I am thinking perhaps this *could* be a solution
given AS3's binary socket capabilities...

Hairy Dog - thanks for the pointer - am still reading through the
archives - not really inspiring much confidence though I'm afraid :(

Gustavo  - no, Flash can't do this unfortunately, and in most cases it's
a fairly trivial matter to work around Director's protected external
casts too (well, as far as retrieving the assets goes anyway, not the
code though). Coincidentally, Brazil is one of our target territories -
if you can shed any more light on the level of protection against piracy
in south America that would be both useful and interesting...



I guess we still need to have some more internal discussions about how
secure is secure enough, how much effort to protect is too much effort
etc etc. Anyway, thanks for the input all.

Pete


This email may contain confidential material. If you were not an
intended recipient, please notify the sender and delete all copies.
We may monitor email to and from our network.
This email was sent by a company within the corporate group owned
by Pearson plc, registered office at 80 Strand, London WC2R 0RL,
registered in England and Wales with company number 53723 and
VAT number GB 278 5371 21.
___
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 and Arabic

2007-04-16 Thread nik crosina

same here,
Nik

On 4/16/07, Danny Kodicek [EMAIL PROTECTED] wrote:


 Thank you very much, Danny,


 Yes I thought that this post sank without a trace, lucky you saw it!

 Fro the moment I jsut needed to know if there were any
 issues, as I am tendering for an English course DVD that will
 be sold in the Middle East.

 Do I remember seeing your name on Director forums a long time ago?

You'll still see it on some of them :) I work on a big Flash-in-Director
project, so I encounter some of the worst of both worlds...

Danny

___
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




--
Nik C
___
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 : memory issue

2007-04-16 Thread Danny Kodicek
  Hi Friends,
 
 I have developed the following script for scrolling 
 dynamically loaded content in the movie clip. 
 
 The script is working fine. I just wanted to know is it 
 consuming lot of memory? Because when I load this movie onto 
 another movie. The first movie become slower.

Yes: you're doing an awful lot of createEmptyMovieClips:

 leftmenu_downbtn.onRollOver = function(){
   scrollingspeed = 4;
   leftscrollup=true;
   leftscrolling_fn();
 }

 function leftscrolling_fn(){
   var test =
 this.createEmptyMovieClip(test,this.getNextHighestDepth());
...
 }

Looks to me like you should move the creation of your test movieClip out of
the leftscrolling_fn function. 

Best
Danny

___
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] attach an icon in a RSL-imported custom RButton implementation?

2007-04-16 Thread Stefan Thurnherr

Flashcoders,

I have a custom radiobutton component (MyRButton.as) that resides in a
runtime-shared library (RSL). The component consists of an image and a
textlabel, and I'm having problems implementing the image part of the
component: Whereas the MyRButton code resides in the RSL.swf, the
image will reside in MyWebApp.swf (which loads in RSL.swf at runtime).
So how can a component from a RSL load in (attachMovie() I guess...)
an image that resides in the symbol library of MyWebApp.swf?

Any other proposals on how to implement this?

Thanks in advance!
 stefan.
___
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] scaling/positioning FLVPlayback

2007-04-16 Thread Jason Boyd

I'm new to the FLVPlayback component so sorry if these are trivial
questions, but I'm confused about how to create a Flash Video player that
doesn't scale the controls when resized. Do I need to explicitly do some
9-point scaling settings somewhere? It's ironic that Flash is based on
vector graphics and the ability unique among web multimedia components to
scale to any display, and yet while all the other video player plugins will
happily resize with controls simply extendinging horizontally, the
FLVPlayback component grows or shrinks the actual control UI elements, which
is pretty ugly.

I saw another post about positioning loaded video centered within the
FLVPlayback component. Does this require ActionScript? There is no property
on the component to handle this? What about scaling video, with or without
preserving its aspect ratio, to fit the full frame (minus controls)?

Any help is appreciated. I searched for docs on this but didn't turn up
much.
___
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] scaling/positioning FLVPlayback

2007-04-16 Thread Muzak
FLVPlayback docs
Components Language Reference  FLVPlayback Component (Flash Professional Only)
http://livedocs.adobe.com/flash/8/main/3477.html

FLVPlayback class
Components Language Reference  FLVPlayback Component (Flash Professional Only) 
 FLVPlayback class
http://livedocs.adobe.com/flash/8/main/3510.html

FLVPlayback.setSize
Components Language Reference  FLVPlayback Component (Flash Professional Only) 
 FLVPlayback class  setSize
http://livedocs.adobe.com/flash/8/main/3609.html



- Original Message - 
From: Jason Boyd [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 4:32 PM
Subject: [Flashcoders] scaling/positioning FLVPlayback


 I'm new to the FLVPlayback component so sorry if these are trivial
 questions, but I'm confused about how to create a Flash Video player that
 doesn't scale the controls when resized. Do I need to explicitly do some
 9-point scaling settings somewhere? It's ironic that Flash is based on
 vector graphics and the ability unique among web multimedia components to
 scale to any display, and yet while all the other video player plugins will
 happily resize with controls simply extendinging horizontally, the
 FLVPlayback component grows or shrinks the actual control UI elements, which
 is pretty ugly.

 I saw another post about positioning loaded video centered within the
 FLVPlayback component. Does this require ActionScript? There is no property
 on the component to handle this? What about scaling video, with or without
 preserving its aspect ratio, to fit the full frame (minus controls)?

 Any help is appreciated. I searched for docs on this but didn't turn up
 much. 


___
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] scaling/positioning FLVPlayback

2007-04-16 Thread aaron smith

from the way things are scaling, it sounds like you're opening the swf in
the standalone player. Are you using this as a standalone thing, or embedded
in a web page..

you can also try:
Stage.scaleMode = 'noscale';



On 4/16/07, Muzak [EMAIL PROTECTED] wrote:


FLVPlayback docs
Components Language Reference  FLVPlayback Component (Flash Professional
Only)
http://livedocs.adobe.com/flash/8/main/3477.html

FLVPlayback class
Components Language Reference  FLVPlayback Component (Flash Professional
Only)  FLVPlayback class
http://livedocs.adobe.com/flash/8/main/3510.html

FLVPlayback.setSize
Components Language Reference  FLVPlayback Component (Flash Professional
Only)  FLVPlayback class  setSize
http://livedocs.adobe.com/flash/8/main/3609.html



- Original Message -
From: Jason Boyd [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 4:32 PM
Subject: [Flashcoders] scaling/positioning FLVPlayback


 I'm new to the FLVPlayback component so sorry if these are trivial
 questions, but I'm confused about how to create a Flash Video player
that
 doesn't scale the controls when resized. Do I need to explicitly do some
 9-point scaling settings somewhere? It's ironic that Flash is based on
 vector graphics and the ability unique among web multimedia components
to
 scale to any display, and yet while all the other video player plugins
will
 happily resize with controls simply extendinging horizontally, the
 FLVPlayback component grows or shrinks the actual control UI elements,
which
 is pretty ugly.

 I saw another post about positioning loaded video centered within the
 FLVPlayback component. Does this require ActionScript? There is no
property
 on the component to handle this? What about scaling video, with or
without
 preserving its aspect ratio, to fit the full frame (minus controls)?

 Any help is appreciated. I searched for docs on this but didn't turn up
 much.


___
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] remoting with as3 (not flex)

2007-04-16 Thread Mark Walters

Is there any class that you know of like RecordSet or ArrayCollection for
AS3 only projects (not flex)?
I'm looking for a class to handle database query results a little easier.

--
Mark Walters

[EMAIL PROTECTED]
http://digitalflipbook.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] OT: Salary Questions

2007-04-16 Thread Jordan Snyder

Hello,

I'm in Oklahoma City, so it's a bit harder sometimes for me to gauge
how much compensation I should receive.  If anyone has any comments on
the following information, please let me know.  I won't disclose my
exact salary, but you can email me offlist if you're curious.

My title is Application Developer, but I am the only person here (and
always have been) that knows the difference between a boolean and a
string.  I am the only technical person and I often take on
experienced IT-related roles such as web server configuration, shell
scripting, server monitoring/management, etc (mostly Unix-based, some
Windows 2000).

I architect and build all backend solutions (PHP, mySQL, CF, RoR,
J2EE) and desktop solutions (Cocoa, Java, Flash/mProjector).  I have
extensive knowledge of media streaming and FCS/FMS application
development.

I also architect all web-based applications and provide diagrams and
documentation for them, after meeting with clients or upper management
directly to translate business objectives into software tools.

I then sit down and do ALL of the development work.  I work with one
designer but I do all UI/interactivity design.

I also manage a small team of interactive designers and producers.

My title does not reflect these duties, but it is difficult to
communicate to my boss what I do.  I am getting roughly what a junior
Actionscript developer would make, and I'm fed up.  There are also no
stock options, no profit sharing, no retirement (401K), no vision nor
dental.  We get a very simple medical insurance plan.

I am looking for advice on this matter.  Do I expect too much if I
demand at least $90K a year?  How do I better inform management as to
what I actually do on a daily basis?  If I'm right in thinking that
I'm getting screwed, is anyone hiring?  ;)

Cheers!

--
Jordan Snyder
[EMAIL PROTECTED]
(Company Undisclosed)
___
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] IE7 flash player bug

2007-04-16 Thread Caleb E. Brown
I am experiencing a bug in IE7 with a textfield and anchor tags.  This doesn’t 
seem to be a problem with IE 6 and everything appears fine in firefox, safari, 
etc.

 

When I set the textfield’s html text to something, give it a stylesheet, and 
call “autosize,” the rollover no longer works.

 

You can see an example I’ve set up here HYPERLINK 
http://sandboxwin.blenderbox.com/flashplayerbug/http://sandboxwin.blenderbox.com/flashplayerbug/

 

Has anyone seen this before?  Is it a bug?  Have you fixed this before? Any 
thoughts?

 

Thanks,

Caleb


-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.4.0/762 - Release Date: 4/15/2007 4:22 PM
 
___
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 and Arabic

2007-04-16 Thread James Tu

We tried the following:
(we're embedding fonts in all cases, also we don't have require any  
input fields...we're just displaying Arabic)


-Copied Arabic text into a static text field...flash actually  
reverses the characters.  So we copied reversed text a static field.   
Then when we published, it seems that the characters were not being  
displayed correctly.  An arabic reader took a look at it and told us  
that the arabic characters didn't connect to each other correctly!   
It's as if you took English script characters and broke them apart!


We then tried a few more experiments...
- copy and pasted Arabic text (normal order) into a dynamic  
field...flash flipped it.  But when you publish it for Player 8, the  
order of the text is correct, but the characters looked disjointed  
again.


-We published it for Player 7 and this time everything looked  
perfect.  The order of the text was correct and the characters looked  
connected!!!


We basically have all the text assets in a separate .swf (published  
for Player 7) and we're using it as a runtime shared library.  Our  
main app is published as Player 8.


Has anyone else seen this?  Am I not doing something right here? I'm  
shocked that support for Arabic (and I'm assuming other RTL  
languages) took a step backwards from Player 7 to Player 8.  I wonder  
what it is in Player 9.



-James


On Apr 16, 2007, at 7:10 AM, nik crosina wrote:


Thank you very much, Danny,


Yes I thought that this post sank without a trace, lucky you saw it!

Fro the moment I jsut needed to know if there were any issues, as I am
tendering for an English course DVD that will be sold in the Middle
East.

Do I remember seeing your name on Director forums a long time ago?


Nik Crosina


On 4/16/07, Danny Kodicek [EMAIL PROTECTED] wrote:

  HI,

 It now transpires that the project I am quoting for needs
 much of it done in Arabic. As it is my first multi language
 project in Flash are there any issues with that in Flash (I
 could write an encyclopedia full about Director and its
 characater set issues)

Just got back from holiday and noticed this post which doesn't  
seem to have

had any replies.

Arabic in Flash is possible but tricky. Exactly how tricky depends  
on what
exactly you need to do. Just putting static Arabic text on screen  
is easy -
no different from Roman. Dynamic text is essentially okay, but you  
need to
watch out for RTL and Bidirectional issues. One major issue is  
that Flash
behaves differently for embedded and non-embedded fonts. Text  
rendered using
non-embedded fonts uses the OS-level text renderer, and so renders  
the text
using the standard Bidirectional algorithm. For single-line text  
this is
perfect (although we didn't test for a very wide range of OS's and  
browsers

- I suspect there might be some niggles on various combinations); for
multiple-line text you'll find that line breaks do not get added  
correctly
(words get broken half-way across) so you'll need to add your line  
breaks
directly into the dynamic text. Text rendered using embedded fonts  
does not
render correctly: it has the same line-break issues as before, but  
also it
renders LTR and fails to correctly interpret the Arabic characters  
into

their cursive variants (that is, join them correctly to give the
'handwritten' style that Arabic text should have). There are ways  
around
this, including some code libraries (check out FlashRTL).  
Personally, I
prefer this option as you're in more control - I hate leaving  
things to the

OS unless I absolutely have to!

Of course, the above also depends on the *source* of your dynamic  
text: if

you're in complete control, you can store the text directly as the
characters that will appear on-screen. But if it's coming from  
something
like an external XML file or some other data source, you'll need  
to consider

these issues.

If you want input text, you're in a different kettle of  
crustaceans. We

managed to solve it, but it was a big job. There aren't currently any
available commercial solutions to this, but hopefully as soon as I'm
finished with my enormous globalisation job that's taken me the  
best part of

a year, we'll be releasing my solution in some form.

Danny

___
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




--
Nik C
___
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] Scaling Up an Image in Proportion to width or height

2007-04-16 Thread James Tu
I found some code online which I turned into a function...  This  
should give you the scale whether you are scaling up or down.  You  
tell it the area you want your mc to fit into and it will give you a  
number back...all you have to do is then use that number...example:  
mc._xscale = mc._yscale = number_returned_from_function.


Maybe this helps out a bit?

function fitToDimension( sourceWidth:Number, sourceHeight:Number,  
targetWidth:Number, targetHeight:Number ):Number {


if ( sourceWidth/targetWidth  sourceHeight/targetHeight ) {
//aspect ratio is determined by width
return (targetWidth*100/sourceWidth);
} else {
//aspect ratio is determined by height
return (targetHeight*100/sourceHeight);
}

}

-James



On Mar 28, 2007, at 10:28 AM, {reduxdj} wrote:

I know how to scale an image down... what's the formula for scaling  
up too?


For instance, i want my images to be in proportion and at least 500  
pixels wide.


Thanks,
Patrick

___
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] IE7 flash player bug

2007-04-16 Thread Muzak
What happens if you take .autoSize out of the onLoad handler?
Don't have IE7, so haven't tried it.


import mx.utils.Delegate;
import TextField.StyleSheet;

var path:String = test.css;
var tf:TextField;
var format:StyleSheet = new TextField.StyleSheet();

function formatLoadHandler(loaded:Boolean):Void {
 if (loaded) {
  this.tf.styleSheet = format;
  this.tf.htmlText = a href=\http://www.adobe.com\;adobe/a;
 } else {
  this.tf.text = Error loading CSS file!;
 }
}

this.tf.autoSize = left;
this.tf.html = true;
this.format.onLoad = Delegate.create(this, this.formatLoadHandler);
this.format.load(path);

regards,
Muzak

- Original Message - 
From: Caleb E. Brown [EMAIL PROTECTED]
To: Flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 6:46 PM
Subject: [Flashcoders] IE7 flash player bug


I am experiencing a bug in IE7 with a textfield and anchor tags.  This doesnt 
seem to be a problem with IE 6 and everything appears 
fine in firefox, safari, etc.



When I set the textfields html text to something, give it a stylesheet, and 
call autosize, the rollover no longer works.



You can see an example Ive set up here HYPERLINK 
http://sandboxwin.blenderbox.com/flashplayerbug/http://sandboxwin.blenderbox.com/flashplayerbug/



Has anyone seen this before?  Is it a bug?  Have you fixed this before? Any 
thoughts?



Thanks,

Caleb



___
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] Loading a SWF and calling the caller from that SWF

2007-04-16 Thread John laPlante
I am cross-movie scripting and want to call a method on the loading SWF 
from the loaded SWF.  That is, I have a.swf and I load b.swf into it. I 
then want to call a.methodX.  The other way around is pretty easy.  I'm 
not sure how to get a handle on the calling swf. I've considered calling 
a method on B with a reference to A so that I get a handle (e.g., 
b.methodY(referenceToA) but this won't work in my situation because I 
want it to work with an older swf (a component really) that has already 
been disturbed.

___
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] IE7 flash player bug

2007-04-16 Thread Caleb E. Brown
it works correctly.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Muzak
Sent: Monday, April 16, 2007 1:23 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] IE7 flash player bug

What happens if you take .autoSize out of the onLoad handler?
Don't have IE7, so haven't tried it.


import mx.utils.Delegate;
import TextField.StyleSheet;

var path:String = test.css;
var tf:TextField;
var format:StyleSheet = new TextField.StyleSheet();

function formatLoadHandler(loaded:Boolean):Void {
 if (loaded) {
  this.tf.styleSheet = format;
  this.tf.htmlText = a href=\http://www.adobe.com\;adobe/a;
 } else {
  this.tf.text = Error loading CSS file!;
 }
}

this.tf.autoSize = left;
this.tf.html = true;
this.format.onLoad = Delegate.create(this, this.formatLoadHandler);
this.format.load(path);

regards,
Muzak

- Original Message - 
From: Caleb E. Brown [EMAIL PROTECTED]
To: Flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 6:46 PM
Subject: [Flashcoders] IE7 flash player bug


I am experiencing a bug in IE7 with a textfield and anchor tags.  This doesnt 
seem to be a problem with IE 6 and everything appears 
fine in firefox, safari, etc.



When I set the textfields html text to something, give it a stylesheet, and 
call autosize, the rollover no longer works.



You can see an example Ive set up here HYPERLINK 
http://sandboxwin.blenderbox.com/flashplayerbug/http://sandboxwin.blenderbox.com/flashplayerbug/



Has anyone seen this before?  Is it a bug?  Have you fixed this before? Any 
thoughts?



Thanks,

Caleb



___
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

-- 
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.4.0/762 - Release Date: 4/15/2007 4:22 PM
 

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.4.0/762 - Release Date: 4/15/2007 4:22 PM
 
___
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] remoting with as3 (not flex)

2007-04-16 Thread Muzak
DataProvider

AS2: mx.controls.listclasses.DataProvider
AS3: fl.data.DataProvider

In AS2 the DataProvider is a decorator (mixin) for the Array class.

mx.controls.listclasses.DataProvider.Initialize(Array);
var dp:Array = new Array(hello, world);
trace(dp.getItemAt(0));

In AS3 it's not (but the mixin version is still available).

var arr:Array = [hello, world];
var dp:DataProvider = new fl.data.DataProvider(arr);
trace(dp.getItemAt(0));

Both have methods and dispatch events.

Does that help?

regards,
Muzak

- Original Message - 
From: Mark Walters [EMAIL PROTECTED]
To: flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 5:57 PM
Subject: [Flashcoders] remoting with as3 (not flex)


 Is there any class that you know of like RecordSet or ArrayCollection for
 AS3 only projects (not flex)?
 I'm looking for a class to handle database query results a little easier.

 -- 
 Mark Walters



___
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] Loading a SWF and calling the caller from that SWF

2007-04-16 Thread John laPlante
I find that I am able to refer to the loading swf using 
_level0[instanceName] if I open the loading swf from a web server. 
From localHost, that doesn't work. I thought I would have overcome this 
problem when I added System.security.allowDomain(*) to the loaded swf 
(i.e., b.swf). I wonder if I need to add allowDomain to the loading swf. 


John laPlante wrote:
I am cross-movie scripting and want to call a method on the loading 
SWF from the loaded SWF.  That is, I have a.swf and I load b.swf into 
it. I then want to call a.methodX.  The other way around is pretty 
easy.  I'm not sure how to get a handle on the calling swf. I've 
considered calling a method on B with a reference to A so that I get a 
handle (e.g., b.methodY(referenceToA) but this won't work in my 
situation because I want it to work with an older swf (a component 
really) that has already been disturbed.

___


___
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] IE7 flash player bug

2007-04-16 Thread Caleb E. Brown
Changing it to the onLoad handler doesn't change it.

Thanks though.

-c

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Muzak
Sent: Monday, April 16, 2007 1:23 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] IE7 flash player bug

What happens if you take .autoSize out of the onLoad handler?
Don't have IE7, so haven't tried it.


import mx.utils.Delegate;
import TextField.StyleSheet;

var path:String = test.css;
var tf:TextField;
var format:StyleSheet = new TextField.StyleSheet();

function formatLoadHandler(loaded:Boolean):Void {
 if (loaded) {
  this.tf.styleSheet = format;
  this.tf.htmlText = a href=\http://www.adobe.com\;adobe/a;
 } else {
  this.tf.text = Error loading CSS file!;
 }
}

this.tf.autoSize = left;
this.tf.html = true;
this.format.onLoad = Delegate.create(this, this.formatLoadHandler);
this.format.load(path);

regards,
Muzak

- Original Message - 
From: Caleb E. Brown [EMAIL PROTECTED]
To: Flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 6:46 PM
Subject: [Flashcoders] IE7 flash player bug


I am experiencing a bug in IE7 with a textfield and anchor tags.  This doesnt 
seem to be a problem with IE 6 and everything appears 
fine in firefox, safari, etc.



When I set the textfields html text to something, give it a stylesheet, and 
call autosize, the rollover no longer works.



You can see an example Ive set up here HYPERLINK 
http://sandboxwin.blenderbox.com/flashplayerbug/http://sandboxwin.blenderbox.com/flashplayerbug/



Has anyone seen this before?  Is it a bug?  Have you fixed this before? Any 
thoughts?



Thanks,

Caleb



___
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

-- 
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.4.0/762 - Release Date: 4/15/2007 4:22 PM
 

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.4.0/762 - Release Date: 4/15/2007 4:22 PM
 
___
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] Loading a SWF and calling the caller from that SWF

2007-04-16 Thread Muzak
Have b.swf dispatch an event and a.swf listen for that event.

regards,
Muzak

- Original Message - 
From: John laPlante [EMAIL PROTECTED]
To: flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 7:45 PM
Subject: [Flashcoders] Loading a SWF and calling the caller from that SWF


I am cross-movie scripting and want to call a method on the loading SWF from 
the loaded SWF.  That is, I have a.swf and I load 
b.swf into it. I then want to call a.methodX.  The other way around is pretty 
easy.  I'm not sure how to get a handle on the 
calling swf. I've considered calling a method on B with a reference to A so 
that I get a handle (e.g., b.methodY(referenceToA) but 
this won't work in my situation because I want it to work with an older swf (a 
component really) that has already been disturbed.


___
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] IE7 flash player bug

2007-04-16 Thread Caleb E. Brown
Hi matthew, 

Thanks for helping me look into this.  I tried uninstalling and installing as 
that article suggests but to no avail.  

Can you tell me, do you see the bug here 
http://sandboxwin.blenderbox.com/flashplayerbug/ with your version of the flash 
player in IE7?

Thanks for your help.

-c

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Ganz
Sent: Monday, April 16, 2007 2:19 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] IE7 flash player bug

i ran into an issue last week and someone pointed me in this direction:
http://blog.deconcept.com/2006/12/08/corrupt-flash-player-install-after-ie-7-upgrade/

though my symptoms weren't what was mentioned in the blog (i was having 
problems with the eolas fix), the uninstall/reinstall of the flash player 
did the trick.

hth,

matt.
- Original Message - 
From: Caleb E. Brown [EMAIL PROTECTED]
To: flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 1:58 PM
Subject: RE: [Flashcoders] IE7 flash player bug


Changing it to the onLoad handler doesn't change it.

Thanks though.

-c

-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Muzak
Sent: Monday, April 16, 2007 1:23 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] IE7 flash player bug

What happens if you take .autoSize out of the onLoad handler?
Don't have IE7, so haven't tried it.


import mx.utils.Delegate;
import TextField.StyleSheet;

var path:String = test.css;
var tf:TextField;
var format:StyleSheet = new TextField.StyleSheet();

function formatLoadHandler(loaded:Boolean):Void {
 if (loaded) {
  this.tf.styleSheet = format;
  this.tf.htmlText = a href=\http://www.adobe.com\;adobe/a;
 } else {
  this.tf.text = Error loading CSS file!;
 }
}

this.tf.autoSize = left;
this.tf.html = true;
this.format.onLoad = Delegate.create(this, this.formatLoadHandler);
this.format.load(path);

regards,
Muzak

- Original Message - 
From: Caleb E. Brown [EMAIL PROTECTED]
To: Flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 6:46 PM
Subject: [Flashcoders] IE7 flash player bug


I am experiencing a bug in IE7 with a textfield and anchor tags.  This 
doesnt seem to be a problem with IE 6 and everything appears
fine in firefox, safari, etc.



When I set the textfields html text to something, give it a stylesheet, and 
call autosize, the rollover no longer works.



You can see an example Ive set up here HYPERLINK
http://sandboxwin.blenderbox.com/flashplayerbug/http://sandboxwin.blenderbox.com/flashplayerbug/



Has anyone seen this before?  Is it a bug?  Have you fixed this before? Any 
thoughts?



Thanks,

Caleb



___
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

-- 

No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.4.0/762 - Release Date: 4/15/2007 
4:22 PM


-- 

No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.4.0/762 - Release Date: 4/15/2007 
4:22 PM

___
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

-- 
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.4.0/762 - Release Date: 4/15/2007 4:22 PM
 

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.4.0/762 - Release Date: 4/15/2007 4:22 PM
 
___
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] IE7 flash player bug

2007-04-16 Thread Matthew Ganz
what i see is a result of the eolas patent. in IE7, i have to click on your 
flash movie first and then the rollOver works just fine.


implement the eolas fix and you should be fine.

i have flash player 8,0,22,0
- Original Message - 
From: Caleb E. Brown [EMAIL PROTECTED]

To: flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 2:46 PM
Subject: RE: [Flashcoders] IE7 flash player bug


Hi matthew,

Thanks for helping me look into this.  I tried uninstalling and installing 
as that article suggests but to no avail.


Can you tell me, do you see the bug here 
http://sandboxwin.blenderbox.com/flashplayerbug/ with your version of the 
flash player in IE7?


Thanks for your help.

-c

-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Matthew Ganz

Sent: Monday, April 16, 2007 2:19 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] IE7 flash player bug

i ran into an issue last week and someone pointed me in this direction:
http://blog.deconcept.com/2006/12/08/corrupt-flash-player-install-after-ie-7-upgrade/

though my symptoms weren't what was mentioned in the blog (i was having
problems with the eolas fix), the uninstall/reinstall of the flash player
did the trick.

hth,

matt.
- Original Message - 
From: Caleb E. Brown [EMAIL PROTECTED]

To: flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 1:58 PM
Subject: RE: [Flashcoders] IE7 flash player bug


Changing it to the onLoad handler doesn't change it.

Thanks though.

-c

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Muzak
Sent: Monday, April 16, 2007 1:23 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] IE7 flash player bug

What happens if you take .autoSize out of the onLoad handler?
Don't have IE7, so haven't tried it.


import mx.utils.Delegate;
import TextField.StyleSheet;

var path:String = test.css;
var tf:TextField;
var format:StyleSheet = new TextField.StyleSheet();

function formatLoadHandler(loaded:Boolean):Void {
if (loaded) {
 this.tf.styleSheet = format;
 this.tf.htmlText = a href=\http://www.adobe.com\;adobe/a;
} else {
 this.tf.text = Error loading CSS file!;
}
}

this.tf.autoSize = left;
this.tf.html = true;
this.format.onLoad = Delegate.create(this, this.formatLoadHandler);
this.format.load(path);

regards,
Muzak

- Original Message - 
From: Caleb E. Brown [EMAIL PROTECTED]

To: Flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 6:46 PM
Subject: [Flashcoders] IE7 flash player bug


I am experiencing a bug in IE7 with a textfield and anchor tags.  This
doesnt seem to be a problem with IE 6 and everything appears
fine in firefox, safari, etc.



When I set the textfields html text to something, give it a stylesheet, and
call autosize, the rollover no longer works.



You can see an example Ive set up here HYPERLINK
http://sandboxwin.blenderbox.com/flashplayerbug/http://sandboxwin.blenderbox.com/flashplayerbug/



Has anyone seen this before?  Is it a bug?  Have you fixed this before? Any
thoughts?



Thanks,

Caleb



___
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

--

No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.4.0/762 - Release Date: 4/15/2007
4:22 PM


--

No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.4.0/762 - Release Date: 4/15/2007
4:22 PM

___
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

--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.4.0/762 - Release Date: 4/15/2007 
4:22 PM



--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.4.0/762 - Release Date: 4/15/2007 
4:22 PM


___
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 

RE: [Flashcoders] IE7 flash player bug

2007-04-16 Thread Caleb E. Brown
Actually, for me it doesn't work fine once I click on it.  The problem persists 
when clicked on (I have a site I'm working on that is embedded with js where 
I'm having the problem as well. I just didn't want that to be part of the 
equation when looking into this bug).  

It is not the eola issue, but it does seem to be specific to my computer and 
possibly Vista (I checked it out on some other computers running Vista and 
IE7), so I'm going to stop caring since I use firefox for personal browsing 
anyways.

At any rate, the problem's not fixed, but I don't need to fix it anymore.

Thanks
-c

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Ganz
Sent: Monday, April 16, 2007 2:52 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] IE7 flash player bug

what i see is a result of the eolas patent. in IE7, i have to click on your 
flash movie first and then the rollOver works just fine.

implement the eolas fix and you should be fine.

i have flash player 8,0,22,0
- Original Message - 
From: Caleb E. Brown [EMAIL PROTECTED]
To: flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 2:46 PM
Subject: RE: [Flashcoders] IE7 flash player bug


Hi matthew,

Thanks for helping me look into this.  I tried uninstalling and installing 
as that article suggests but to no avail.

Can you tell me, do you see the bug here 
http://sandboxwin.blenderbox.com/flashplayerbug/ with your version of the 
flash player in IE7?

Thanks for your help.

-c

-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Matthew Ganz
Sent: Monday, April 16, 2007 2:19 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] IE7 flash player bug

i ran into an issue last week and someone pointed me in this direction:
http://blog.deconcept.com/2006/12/08/corrupt-flash-player-install-after-ie-7-upgrade/

though my symptoms weren't what was mentioned in the blog (i was having
problems with the eolas fix), the uninstall/reinstall of the flash player
did the trick.

hth,

matt.
- Original Message - 
From: Caleb E. Brown [EMAIL PROTECTED]
To: flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 1:58 PM
Subject: RE: [Flashcoders] IE7 flash player bug


Changing it to the onLoad handler doesn't change it.

Thanks though.

-c

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Muzak
Sent: Monday, April 16, 2007 1:23 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] IE7 flash player bug

What happens if you take .autoSize out of the onLoad handler?
Don't have IE7, so haven't tried it.


import mx.utils.Delegate;
import TextField.StyleSheet;

var path:String = test.css;
var tf:TextField;
var format:StyleSheet = new TextField.StyleSheet();

function formatLoadHandler(loaded:Boolean):Void {
 if (loaded) {
  this.tf.styleSheet = format;
  this.tf.htmlText = a href=\http://www.adobe.com\;adobe/a;
 } else {
  this.tf.text = Error loading CSS file!;
 }
}

this.tf.autoSize = left;
this.tf.html = true;
this.format.onLoad = Delegate.create(this, this.formatLoadHandler);
this.format.load(path);

regards,
Muzak

- Original Message - 
From: Caleb E. Brown [EMAIL PROTECTED]
To: Flashcoders@chattyfig.figleaf.com
Sent: Monday, April 16, 2007 6:46 PM
Subject: [Flashcoders] IE7 flash player bug


I am experiencing a bug in IE7 with a textfield and anchor tags.  This
doesnt seem to be a problem with IE 6 and everything appears
fine in firefox, safari, etc.



When I set the textfields html text to something, give it a stylesheet, and
call autosize, the rollover no longer works.



You can see an example Ive set up here HYPERLINK
http://sandboxwin.blenderbox.com/flashplayerbug/http://sandboxwin.blenderbox.com/flashplayerbug/



Has anyone seen this before?  Is it a bug?  Have you fixed this before? Any
thoughts?



Thanks,

Caleb



___
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

-- 

No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.4.0/762 - Release Date: 4/15/2007
4:22 PM


-- 

No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.4.0/762 - Release Date: 4/15/2007
4:22 PM

___
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] Ten Year Flash website

2007-04-16 Thread Mark Carolin

Hi Weyert,

So,

The 10 year anniversary site was made very closely to the way you have
imagined.

After lots of consideration, we went for the best looking combination.

The earth itself was two .flv's... one going forward and one going in
reverse.

There was one transition to the higher resolution close-up image.

The dots were mapped to the earth based on one snyched animated dot that was
scaled and sequenced to the correct start frame.

And the background was a scrolling bitmap that was also synched.

While, I think this system has some excellent benefits in controlling the
look and image quality, file size and performance issues can occur.

If doing it again,  I would like to explore doing something like Andre
michelle's genius... http://lab.andre-michelle.com/earth

Displacing the an image or even a series of images with layered clouds etc
into one bitmap.

Hope this helps...

Mark Carolin

On 4/13/07, Weyert de Boer [EMAIL PROTECTED] wrote:


Hi! I just saw the new website Ten Year Flash. It really looks nice. But
could someone here share what you used
for creating the Earth? How would have made the website like this:

   1. some rotating video left to right, right to left. you cant rotate
top-bottom etc.
   2. reusable zoom in, and zoom out animation using the texture from
NASA Marble project [1] using a reasonable resolution
   3. create serie of pictures that has all major countries, and some
times major cities in countries (i.e. east and west coast of north
america)
   4. creating image that adds the 'fogginess' which will blended with
the picture of 2.
   5. Some lang/lat projection system or something to show the items on
the globe.

How would you guys do it? Or more interesting would any of the creators
of the site share information?
I think I am gonna recreate this.

[1]

http://earthobservatory.nasa.gov/Newsroom/BlueMarble/BlueMarble_monthlies.html

Yours,
Weyert

___
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





--
323-573-4352(c)

AIM:bulbousbeans
MSN:[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] Printing problem with F player 9.0.45

2007-04-16 Thread jgl

This is what I am talking about:
http://thankyouforhelping.com/test/

All I did was simply import a BMP (png) with no effects OR filters.
Added a print button with code:

on (release) {
  printNum(0, bmovie);
}

and no beuno. :(

Anyone have any suggestions. People are dying. Apps are breaking.
Workflow is screwed. My phone is ringing off the hook.
___
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 and Arabic

2007-04-16 Thread nik crosina

So Adobe Director is not alone in behaving oddly with fonts, char sets
and languages ...
... that makes me really look forward to that project now ;)

Thanks,

Nik Crosina

On 4/16/07, James Tu [EMAIL PROTECTED] wrote:

We tried the following:
(we're embedding fonts in all cases, also we don't have require any
input fields...we're just displaying Arabic)

-Copied Arabic text into a static text field...flash actually
reverses the characters.  So we copied reversed text a static field.
Then when we published, it seems that the characters were not being
displayed correctly.  An arabic reader took a look at it and told us
that the arabic characters didn't connect to each other correctly!
It's as if you took English script characters and broke them apart!

We then tried a few more experiments...
- copy and pasted Arabic text (normal order) into a dynamic
field...flash flipped it.  But when you publish it for Player 8, the
order of the text is correct, but the characters looked disjointed
again.

-We published it for Player 7 and this time everything looked
perfect.  The order of the text was correct and the characters looked
connected!!!

We basically have all the text assets in a separate .swf (published
for Player 7) and we're using it as a runtime shared library.  Our
main app is published as Player 8.

Has anyone else seen this?  Am I not doing something right here? I'm
shocked that support for Arabic (and I'm assuming other RTL
languages) took a step backwards from Player 7 to Player 8.  I wonder
what it is in Player 9.


-James


On Apr 16, 2007, at 7:10 AM, nik crosina wrote:

 Thank you very much, Danny,


 Yes I thought that this post sank without a trace, lucky you saw it!

 Fro the moment I jsut needed to know if there were any issues, as I am
 tendering for an English course DVD that will be sold in the Middle
 East.

 Do I remember seeing your name on Director forums a long time ago?


 Nik Crosina


 On 4/16/07, Danny Kodicek [EMAIL PROTECTED] wrote:
   HI,
 
  It now transpires that the project I am quoting for needs
  much of it done in Arabic. As it is my first multi language
  project in Flash are there any issues with that in Flash (I
  could write an encyclopedia full about Director and its
  characater set issues)

 Just got back from holiday and noticed this post which doesn't
 seem to have
 had any replies.

 Arabic in Flash is possible but tricky. Exactly how tricky depends
 on what
 exactly you need to do. Just putting static Arabic text on screen
 is easy -
 no different from Roman. Dynamic text is essentially okay, but you
 need to
 watch out for RTL and Bidirectional issues. One major issue is
 that Flash
 behaves differently for embedded and non-embedded fonts. Text
 rendered using
 non-embedded fonts uses the OS-level text renderer, and so renders
 the text
 using the standard Bidirectional algorithm. For single-line text
 this is
 perfect (although we didn't test for a very wide range of OS's and
 browsers
 - I suspect there might be some niggles on various combinations); for
 multiple-line text you'll find that line breaks do not get added
 correctly
 (words get broken half-way across) so you'll need to add your line
 breaks
 directly into the dynamic text. Text rendered using embedded fonts
 does not
 render correctly: it has the same line-break issues as before, but
 also it
 renders LTR and fails to correctly interpret the Arabic characters
 into
 their cursive variants (that is, join them correctly to give the
 'handwritten' style that Arabic text should have). There are ways
 around
 this, including some code libraries (check out FlashRTL).
 Personally, I
 prefer this option as you're in more control - I hate leaving
 things to the
 OS unless I absolutely have to!

 Of course, the above also depends on the *source* of your dynamic
 text: if
 you're in complete control, you can store the text directly as the
 characters that will appear on-screen. But if it's coming from
 something
 like an external XML file or some other data source, you'll need
 to consider
 these issues.

 If you want input text, you're in a different kettle of
 crustaceans. We
 managed to solve it, but it was a big job. There aren't currently any
 available commercial solutions to this, but hopefully as soon as I'm
 finished with my enormous globalisation job that's taken me the
 best part of
 a year, we'll be releasing my solution in some form.

 Danny

 ___
 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



 --
 Nik C
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 

Re: [Flashcoders] Printing problem with F player 9.0.45

2007-04-16 Thread Hans Wichman

Hi,

check http://www.peachpit.com/articles/article.asp?p=31573rl=1

and specifically:

*CAUTION*

The print and printNum actions do not print alpha channels, bitmaps, or
color effects.
There was a post a couple weeks ago about printing a movieclip, check it
out.
I have some printing code on my blog as well, which might help you out:

http://objectpainters.com/blog/?p=9
greetz
JC



On 4/16/07, jgl [EMAIL PROTECTED] wrote:


This is what I am talking about:
http://thankyouforhelping.com/test/

All I did was simply import a BMP (png) with no effects OR filters.
Added a print button with code:

on (release) {
  printNum(0, bmovie);
}

and no beuno. :(

Anyone have any suggestions. People are dying. Apps are breaking.
Workflow is screwed. My phone is ringing off the hook.
___
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] Printing problem with F player 9.0.45

2007-04-16 Thread jgl

Hey JC,

Thanks :)

The hard time I am having about this is that it has alway worked
before 9.0.45 which came out on the 14th. It works fine with all
previous versions. Too many apps to correct. Maybe I'll get lucky and
MM will have this new feature that breaks my old code removed.

I really appreciate the links.

On 4/16/07, Hans Wichman [EMAIL PROTECTED] wrote:

Hi,

check http://www.peachpit.com/articles/article.asp?p=31573rl=1

and specifically:

*CAUTION*

The print and printNum actions do not print alpha channels, bitmaps, or
color effects.
There was a post a couple weeks ago about printing a movieclip, check it
out.
I have some printing code on my blog as well, which might help you out:

http://objectpainters.com/blog/?p=9
greetz
JC



On 4/16/07, jgl [EMAIL PROTECTED] wrote:

 This is what I am talking about:
 http://thankyouforhelping.com/test/

 All I did was simply import a BMP (png) with no effects OR filters.
 Added a print button with code:

 on (release) {
   printNum(0, bmovie);
 }

 and no beuno. :(

 Anyone have any suggestions. People are dying. Apps are breaking.
 Workflow is screwed. My phone is ringing off the hook.
 ___
 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] [semi-OT] - Preventing Software Piracy

2007-04-16 Thread nik crosina

Hi,

Not sure whether that is applicable to your project, Pete, but has
anyone ever used dongle (i.e. hardware) protection for their projects?
I am currently testing out HASP from Aladdin, and does the job so far
(have not come very far yet in testing though).

It does offer to build calls to the key into the functions of the
software you are building, and I am in the process of finding out if
that includes ActionScript as well.

What do you guys think about this kind of protection? Why isn't it
used more often?

Nik



On 4/16/07, Blumenthal, Peter [EMAIL PROTECTED] wrote:


Thanks all for your responses (and apologies for my tardy reply!)

Roy - that's a really interesting idea. I have a couple of follow up
questions though please. Were you then loading those SWFs into Director,
rather than using a loadMovie to load them into Flash? I assume so,
because although I could use the BinaryIO xtra to rewrite the files to
disc, then load them into Flash, that would of course expose the
unmumged files while the application was running. Also, how difficult
would it be for someone familiar with the SWF format to identify and
strip those junk bits? I am thinking perhaps this *could* be a solution
given AS3's binary socket capabilities...

Hairy Dog - thanks for the pointer - am still reading through the
archives - not really inspiring much confidence though I'm afraid :(

Gustavo  - no, Flash can't do this unfortunately, and in most cases it's
a fairly trivial matter to work around Director's protected external
casts too (well, as far as retrieving the assets goes anyway, not the
code though). Coincidentally, Brazil is one of our target territories -
if you can shed any more light on the level of protection against piracy
in south America that would be both useful and interesting...



I guess we still need to have some more internal discussions about how
secure is secure enough, how much effort to protect is too much effort
etc etc. Anyway, thanks for the input all.

Pete


This email may contain confidential material. If you were not an
intended recipient, please notify the sender and delete all copies.
We may monitor email to and from our network.
This email was sent by a company within the corporate group owned
by Pearson plc, registered office at 80 Strand, London WC2R 0RL,
registered in England and Wales with company number 53723 and
VAT number GB 278 5371 21.
___
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




--
Nik C
___
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] [semi-OT] - Preventing Software Piracy

2007-04-16 Thread Weyert de Boer

Hi Nik,

I have done research for my dad a while ago, and I came to the
conclusion that it wasn't worth the effort $$$ wise.

Not sure whether that is applicable to your project, Pete, but has
anyone ever used dongle (i.e. hardware) protection for their projects?
I am currently testing out HASP from Aladdin, and does the job so far
(have not come very far yet in testing though).

Yes, the problem with dongles is that it's quite hard to implement, right.
Especially, I would like to advice you not take any of the included examples
or even consider build on top of it. The examples are weak. Please rent some
person who is fully into the dongle and encryption. If not, it will be 
lost money.



What do you guys think about this kind of protection? Why isn't it
used more often?

Because it's a big investment to implement.

Yours,
Weyert de Boer

___
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] [semi-OT] - Preventing Software Piracy

2007-04-16 Thread Иван Дембицкий

Hello Peter,

I think a problem in business idea.
You can compare Microsoft and Google business idea.
And?
Do you like Microsoft direction?
Everybody understand: it's yesterday's business principles.

You need to change your mind for correlation with today's realities.
Problem not in protection problems.
Problem in business idea.

IMHO.

--
iv
___
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] Microsoft Silverlight ...

2007-04-16 Thread Stephen Ford
What do you make of Microsoft's 
Silverlight:http://www.microsoft.com/silverlight/default_01.aspxTheir site 
sucks for starters, but anyone have any thoughts on what impact this will have 
on 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


Re: [Flashcoders] Microsoft Silverlight ...

2007-04-16 Thread Weyert de Boer
I think not everyone wants to install because you would have to 
reinstall MacOSX. Because it ain't working for on 10.4.9.
Beside of that it's quite nice. It has the coolness of Apollo but then 
inside a browser window...

What do you make of Microsoft's 
Silverlight:http://www.microsoft.com/silverlight/default_01.aspxTheir site 
sucks for starters, but anyone have any thoughts on what impact this will have 
on 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


[Flashcoders] Flash 9 CS 3 Components

2007-04-16 Thread Austin Kottke
There is some mention that in order for the flash 9 cs3 components to 
work version .45 needs to be downloaded. However on adobe's site there 
are examples using these new components in the examples. Anyone have an 
idea how this works?


Also, flash 9 is shipping now. Does this mean the adobe web premium 
suite is shipping as well?


Any help would be appreciated.

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


Re: [Flashcoders] Flash 9 CS 3 Components

2007-04-16 Thread John Grden

I'd been working on the pv3d components with 9.0.38 just fine it seemed.

On 4/16/07, Austin Kottke [EMAIL PROTECTED] wrote:


There is some mention that in order for the flash 9 cs3 components to
work version .45 needs to be downloaded. However on adobe's site there
are examples using these new components in the examples. Anyone have an
idea how this works?

Also, flash 9 is shipping now. Does this mean the adobe web premium
suite is shipping as well?

Any help would be appreciated.

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





--
[  JPG  ]
___
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 CS 3 Components

2007-04-16 Thread Weyert de Boer
Yeah, everything is shipping. Design Premium, Web Premium etc. Not the 
Production Suite or Master Edition Suite, though.
There is some mention that in order for the flash 9 cs3 components to 
work version .45 needs to be downloaded. However on adobe's site there 
are examples using these new components in the examples. Anyone have 
an idea how this works?


Also, flash 9 is shipping now. Does this mean the adobe web premium 
suite is shipping as well?


Any help would be appreciated.

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@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] Reasons of failing onLoad of LoadVars

2007-04-16 Thread Weyert de Boer

Hello!

I happen to have some issues with the onLoad event of the LoadVars 
object in ActionScript.
I am curious if anyone here could tell what could be the possible 
reasons why the onLoad event

don't get triggered.

The problem I have is that the event don't get triggered while the other 
to events onHTTPStatus and  onData
are receiving the actually data received from the POST or GET request. 
For example, it returns 200 as the http

status and the actual OK (as expected) as the data.

It also seems that the addRequestHeader() command gets ignored?!?!

Could someone tell me what could be the problem? Maybe I am not sending 
my HTTP headers correctly?

If you can shed some light on it for me... let me please know!

The code I used for this test is:

var result_lv:LoadVars = new LoadVars();
result_lv.onLoad = function(success) { // nothing
   trace( success: + success )
   if (success) {
   trace( success:  + status );
   log(Success!  + result_lv.welcomeMessage);
   } else {
   trace( error);
   log(Error connecting to server.);
   }
}

result_lv.onData = function(data) {
   trace(R: data: + data );
   log( data:  + data );
   if ( data == OK ) {
   log(command succesfully. );
   }
}

result_lv.onHTTPStatus = function(status) {
   trace( R: status:  + status );
   log( status:  + status );
}

function log(msg) {
   logger.text = logger.text + msg + \n;
}

//
var send_lv:LoadVars = new LoadVars();
send_lv.onLoad=function(s) {
   trace(success:  + s ); // nothing
}

send_lv.action = authenticate;
send_lv.username = 23;
send_lv.password = 7cc658971e8f998772bc0a3dda09e834b4d9aede;
send_lv.addRequestHeader( Contraband-PublicHash, 
068c0316e6af2602bbf56cfd85175ff2ae732d02 );

send_lv.sendAndLoad(http://127.0.0.1:8082/;, result_lv, POST );

stop();

Thanks in advance!

p.s. Probably overlooking something :/

Yours,
Weyert de Boer

___
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] Reasons of failing onLoad of LoadVars

2007-04-16 Thread Weyert de Boer

It works. onLoad don't get triggered when you using onData g

Yours,
Weyert de Boer
___
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] Reasons of failing onLoad of LoadVars

2007-04-16 Thread R�kos Attila

In a LoadVars object onLoad is invoked by the default onData handler.
If you assign a custom onData handler, onLoad will not be triggered
anymore, unless you call it explicitely (preferably after calling
the decode() method) or invoke the original onData handler.

  Attila

___
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] Reasons of failing onLoad of LoadVars

2007-04-16 Thread Weyert de Boer
I still think it's some dodgy way of triggering events. If it works this 
way g


Yours,
Weyert
___
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