Re: [Flashcoders] fscommand("exec","...") in a standalone app

2006-02-28 Thread syam s


sir..
  any method for passing variables from one flash file to another.. the first 
one was embedded in html


-
Yahoo! Messenger  NEW - crystal clear PC to PC calling worldwide with voicemail 
___
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] Help with timeline Script

2006-02-28 Thread Byron Canfield
The first thing you should do is repair your naming -- object (and all
other) names in Flash should always begin with at least one non-numeric
character.

-- 
Byron "Barn" Canfield


> Help!  I cant get this code quite right.  I'm probably attempting somthing
> that is way above my head but maybe i'll learn something in the end ;-)
>
> Goal description:
>
> I'm creating a time line.  I have a series of dates that act as a series
> of
> buttons.  Each button controls a specific mc.  Like so:
>
> 1930_btn controls 1930_mc
> 1940_btn controls 1940_mc
> 1950_btn controls 1950_mc


___
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] mailto is not working

2006-02-28 Thread Byron Canfield
I'm in this camp -- I prefer using the email client of MY choice, not
someone else's. Plus I like being able to review what I sent.

Personally, I find corporate sites that hide the principals' email
addresses to be annoying -- I just want the email address; I'll do the
rest.

-- 
Byron "Barn" Canfield


> Really? As long as I know it's going to happen (ie - I've clicked on an
> email address) I much prefer the email opening up in the mail client of
> my choice, rather than me having to use some limited feature textbox and
> submit button.
>
> No spellcheck
> No signature
> No address book
> No sent item in my 'sent items' box
>
> etc.
>
> 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
>


___
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] Z sorting multiple overlapping movie clips

2006-02-28 Thread Byron Canfield
You can make it a lot easier by doing some of the prep work for that
architecture in the for loop that you use to first create and assign
depths to those movieclips.

This isn't exactly OOP, but it demonstrates the architecture:

var qtyClips:Number = 4;
var nbrDepthOffset:Number = 7;
var rraClips:Array = new Array();
var nbrLastPressed:Number;
//
function fncClipInit() {
for (var i = 0; i Does anyone have a an algorithm for Z sorting multiple overlapping
> clips...
>
> I have an array of clips and when one is clicked I want it to come to
> the top, but I want the other overlapping items to also shift
> appropriately...
>
> So
>
> Item [1] at depth 10
> Item [2] at depth 9
> Item [3] at depth 8
> Item [4] at depth 7
>
> If you click item [4], it would go to depth 10, and the other would
> shift down 1
>
> Item [4] depth 10
> Item [1] depth 9
> Item [2] depth 8
> Item [3] depth 7
>
> But if any of those items are overlaping other items, they also need to
> be Z sorted.
>
> I'd rather not re-invent the wheel.
>
> Thanks
> Grant
> ___
> 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] Help with timeline Script

2006-02-28 Thread Andy Johnston
Not going to code up your whole app but here are some utility methods I 
use for quick dev. They make use of the fuse kit


http://www.mosessupposes.com/Fuse/

You should send moses an email for the code and he will get it back to 
ya quickly. Once you have the code you can do something with the utils 
below to slide clips on & off the screen


have fun!

//
// Fuse Utility Methods

var anim// = application.anim;

// Slides a clip on screen from 4 possible directions
function slideOnScreen(target:MovieClip, direction:String, alpha:Number, 
time:Number, ease:String, callback:String, scope:Object, delay:Number){
  
   if(delay==undefined){

   delay = 0;
   }
   if(scope==undefined){
   scope = this;
   }
   if(alpha==0){
   target._alpha = 0;
   }
  
   var dirObj:Object = getOutOfBounds(target, direction);


   anim = new Fuse(
   [
{ target:target, start_alpha:alpha, seconds:time },
   { target:target, seconds:time, ease:ease, start_y:dirObj.y, 
start_x:dirObj.x, y:target._y, x:target._x, delay:delay }

   ],
   { func:callback }
   )
  
   anim.scope = scope;
   anim.start();   
}


// Slides a clip off screen from 4 possible directions
function slideOffScreen(target:MovieClip, direction:String, 
alpha:Number, time:Number, ease:String, callback:String, scope:Object, 
delay:Number ){
  
   if(delay==undefined){

   delay = 0;
   }
   if(scope==undefined){
   scope = this;
   }
   if(alpha==0){
   target._alpha = 0;
   }

   var dirObj:Object = getOutOfBounds(target, direction);
  
   anim = new Fuse(

   [
{ target:target, alpha:alpha, seconds:time },
   { target:target, seconds:time, ease:ease, y:dirObj.y, 
x:dirObj.x , delay:delay }

   ],
   { func:callback }
   )
  
   anim.scope = scope;
   anim.start();   
}


// Determines position that will place the target clip
// off the screen in one of four directions.
function getOutOfBounds(target:MovieClip, direction:String){
  
   var oX:Number = target._x;

   var oY:Number = target._y;
   var pad:Number = 100;
  
   switch(direction){

   case "top":
   oY = (0-target._height)-pad;
   break;
   case "bottom":
   oY = (Stage.height+target._height)+pad;
   break;
   case "right":
   oX = (Stage.width+target._width)+pad;
   break;
   case "left":
   oX = (0-target._width)-pad;
   break;
   }
  
   var dirObj:Object = { x:oX, y:oY };
  
   return(dirObj);

}

___
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] Help with timeline Script

2006-02-28 Thread Jeanna Lievsasy
Help!  I cant get this code quite right.  I'm probably attempting somthing
that is way above my head but maybe i'll learn something in the end ;-)

Goal description:

I'm creating a time line.  I have a series of dates that act as a series of
buttons.  Each button controls a specific mc.  Like so:

1930_btn controls 1930_mc
1940_btn controls 1940_mc
1950_btn controls 1950_mc


Pseudo code might go as follows:

onRelease "1930_btn"
•Slide 1930_mc from Right of stage to preset _x & y location / center
stage

onRelease "1950_btn"
•See what mc is currently on stage at center x y location
•Move current MC off stage Left to specific x y local and fade to 0%
•Move "1950_mc" to center x y  local

If  "1930_bt" is clicked another time
•See what mc is currently on stage at center x y location
•Determine x & y location of  "1930_mc"
oIf  "1930_mc" is stage Left
Move current mc Stage  R
Move  "1930_mc" Stage Center & fade up to 100%

•Else
oIf "1930_mc"  is stage Right
Move current MC stage L
Move "1930_mc" Stage Center and Fade up to 100%


Some functions might be

•Function SlideOutL = slides MC from _x, _y center stage to _x, _y off
stage Left

•Function SlideOutR = slides MC from _x, _y center stage to _x, _y off
stage Right

•Function SlideInR = slides MC from _x, _y off stage Right to _x, _y
center stage

•Function SlideInL = slides MC from _x, _y off stage Left to _x, _y
center stage

•Function CurrentMC  = determine what mc is at _x, _y  Center Stage
position

•Function Left = determines if an mc is at  _x, _y off stage Left
•Function Right = determines if an mc is at  _x, _y off stage Right


Now if could just figure out the code to
A: define the currentMC, Left, and Right functions and then
B: how to call them!



Here are some examples that come close to what i want to do:

http://www.cybergrain.com/tech/demos/imagebrowser/index.html


http://flash-creations.com/notes/sample_tweensequence.php
___
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] Textfield size (TextFormat + thickness)

2006-02-28 Thread erixtekila

Hi all,



Has anyone find a way to calculate the real size that a textfield 
should take in order to display its content correctly.
The trouble comes from the mix of TextFormat properties and TextField 
ones :


TextFormat.getTextExtend did a good job before the safron text engine 
included in Flash8.
Now we can set thickness directly on the textfield, but the preceding 
method of TextFormat doesn't take account of that.


So obviously the result is smaller than needed.

Is there a factor to multiply to the getTextExtend method to get it 
work with those nice textfield enhancements ?



Thanks for your lights.
---
erixtekila
http://blog.v-i-a.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] Order of dispatched events?

2006-02-28 Thread Judah
Thanks!

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Johannes Nel
Sent: Tuesday, February 28, 2006 10:28 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Order of dispatched events?

in the order you added the listeners.
it just loops through an array and executes the methods one by one

On 2/28/06, Judah <[EMAIL PROTECTED]> wrote:
>
> Is there a way to make the order that events are called "Fixed"?
>
>
>
> Are they guaranteed to be executed in a particular order?
>
>
>
> Judah
>
> ___
> 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
>



--
j:pn
http://www.lennel.org
___
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] seekBar and volumeBar Handle conflict

2006-02-28 Thread Jamay Liu
Hi,
I am trying to build a customized controller for my flv player with the
flvPlayback components. For some reason, I can't get the SeekBar and the
VolumeBar to behave properly together. They work fine when either is alone
on the controller, but when they are both present, the seekBar handle
doesn't drag when it is supposed to. Sometimes, a yellow rectangle flashes
around the OTHER handle (on the volume bar) instead.
Is this a bug? Anyone know how to fix it? I tried moving the handle around
on the stage, but that didn't work.

Thanks!

-J
___
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 on PSP!

2006-02-28 Thread Weyert de Boer

Now I only need a PSP with fw1.5 :-)
___
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 on PSP!

2006-02-28 Thread Judah
This is great news!!!

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Alias
Sent: Tuesday, February 28, 2006 11:43 AM
To: Flashcoders mailing list
Subject: [Flashcoders] Flash on PSP!

Hi guys,

Looks like someone's gotten a homebrew flash player working on the
PSP! Looks pretty good, although apparently it's still early days.
Works on 1.5 firmware.

http://files.psphacks.net/details.php?file=93

Cheers,
Alias
___
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] Regular Expression

2006-02-28 Thread JesterXL
Yep.  Go here:
http://livedocs.macromedia.com/labs/1/flex/langref/index.html

Scroll down on the bottom left hand frame to "RegExp".

- Original Message - 
From: "Chris Kennon" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Tuesday, February 28, 2006 2:14 PM
Subject: [Flashcoders] Regular Expression


Hi All,

Does AS 3 have support for regular expressions?





Return True,




Christopher Kennon
Principal/Designer/Programmer -Bushidodeep
www.bushidodeep.com
___
"An ideal is merely the projection,
on an enormously enlarged scale,
of some aspect of personality."
  - Aldus Huxley


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

2006-02-28 Thread Chris Kennon

Hi All,

Does AS 3 have support for regular expressions?





Return True,




Christopher Kennon
Principal/Designer/Programmer -Bushidodeep
www.bushidodeep.com
___
"An ideal is merely the projection,
on an enormously enlarged scale,
of some aspect of personality."
 - Aldus Huxley


___
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] Subclass a video component

2006-02-28 Thread Manuel Saint-Victor
I'm trying to subclass the Video in flash to add some methods to it.  I've
tried creating a subclass and having the Video symbol as a property and
tried overriding the attachVideo and passing the parameters to it.  I
haven't been able to get the movie to play thus far.  Does anyone have any
recommendations or has anyone had any success subclassing the Video in
Flash?

Mani
___
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] JSFLTools from bit-101

2006-02-28 Thread Christian Giordano

Christian Giordano wrote:
I'm having issues on mixing AS code and JSFL code in a Panel. A noticed 
that this project could be helpful, does anyone know what happened to it?


I found the way to mix all the things (what a mess!). But any news about 
that project will be welcome :)


Cya, chr

--
___
{ Christian Giordano's site and blog @ http://cgws.nuthinking.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 on PSP!

2006-02-28 Thread Ryan Matsikas
WICKED!

On 2/28/06, Alias <[EMAIL PROTECTED]> wrote:
>
> Hi guys,
>
> Looks like someone's gotten a homebrew flash player working on the
> PSP! Looks pretty good, although apparently it's still early days.
> Works on 1.5 firmware.
>
> http://files.psphacks.net/details.php?file=93
>
> Cheers,
> Alias
> ___
> 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] fscommand("exec","...") in a standalone app

2006-02-28 Thread Oliver Quas

Derek,

thanks a lot! it works perfectly, now. :)

best regards,
oliver



Am 28.02.2006 um 18:36 schrieb Derek Vadneau:


This:

should be:


The first part of the string after asfunction: is the path to the  
function

you are calling.  After the comma is the parameter the function will
receive.

Btw, your subject is a little misleading since your actual problem  
is with
asfunction.  If the trace isn't happening then the fscommand has no  
chance

of working.

And to that, make sure your EXE is in a folder called fscommand,  
and that

folder is in the same folder as your SWF/EXE.


Derek Vadneau

- Original Message -
From: "Oliver Quas" <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, February 28, 2006 12:12 PM
Subject: [Flashcoders] fscommand("exec","...") in a standalone app


hi there,

i know there have been a lot of posts about this topic, but i didn't
find any information related to the case i'm currently dealing with,
and the deadline for the job is pretty soon, so please forgive me, if
this has been discussed before:

i have implemented a flash movie (1 file), that should run offline as
a standalone-app/projector from cd (Windows only). the contents get
loaded dynamically using xml-files. the app contains a movieclip
(box_mc) that contains a textfield (text_tf) showing html-text
provided by the xml-files.


in the text displayed inside text_tf, i want to show some links,
opening .wmv- and .exe-files. for the links, i'm using something like
this in the xml:



   



inside box_mc i implemented the following function:

public function openExe(path:String):Void
{
 trace("works");
 fscommand("exec", path);
}

unfortunately, when i click the link, the function doesn't get
called. does anyone see/know what i am doing wrong?

thanks in advance!

best regards,
oliver


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

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


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

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


[Flashcoders] Flash on PSP!

2006-02-28 Thread Alias
Hi guys,

Looks like someone's gotten a homebrew flash player working on the
PSP! Looks pretty good, although apparently it's still early days.
Works on 1.5 firmware.

http://files.psphacks.net/details.php?file=93

Cheers,
Alias
___
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] fscommand("exec","...") in a standalone app

2006-02-28 Thread Derek Vadneau
This:

should be:


The first part of the string after asfunction: is the path to the function 
you are calling.  After the comma is the parameter the function will 
receive.

Btw, your subject is a little misleading since your actual problem is with 
asfunction.  If the trace isn't happening then the fscommand has no chance 
of working.

And to that, make sure your EXE is in a folder called fscommand, and that 
folder is in the same folder as your SWF/EXE.


Derek Vadneau

- Original Message - 
From: "Oliver Quas" <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, February 28, 2006 12:12 PM
Subject: [Flashcoders] fscommand("exec","...") in a standalone app


hi there,

i know there have been a lot of posts about this topic, but i didn't
find any information related to the case i'm currently dealing with,
and the deadline for the job is pretty soon, so please forgive me, if
this has been discussed before:

i have implemented a flash movie (1 file), that should run offline as
a standalone-app/projector from cd (Windows only). the contents get
loaded dynamically using xml-files. the app contains a movieclip
(box_mc) that contains a textfield (text_tf) showing html-text
provided by the xml-files.


in the text displayed inside text_tf, i want to show some links,
opening .wmv- and .exe-files. for the links, i'm using something like
this in the xml:



   



inside box_mc i implemented the following function:

public function openExe(path:String):Void
{
 trace("works");
 fscommand("exec", path);
}

unfortunately, when i click the link, the function doesn't get
called. does anyone see/know what i am doing wrong?

thanks in advance!

best regards,
oliver


___
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] fscommand("exec","...") in a standalone app

2006-02-28 Thread Michael Stuhr

Oliver Quas schrieb:


inside box_mc i implemented the following function:

public function openExe(path:String):Void
{
 trace("works");
 fscommand("exec", path);
}

unfortunately, when i click the link, the function doesn't get  
called. does anyone see/know what i am doing wrong?

scope is your fault:




should be:

.. href="asfunction:_pathtoyourfunction.openExe( ...


micha
___
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 swf with embedded fonts.

2006-02-28 Thread Jim Tann
You couldn't have looked that hard, I answerd this yesterday :-)

 

http://chattyfig.figleaf.com/pipermail/flashcoders/2006-February/160965.html

 

Jim

 

 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Magnus Askenbäck
Sent: 28 February 2006 10:36
To: Flashcoders mailing list
Subject: [Flashcoders] loading swf with embedded fonts.

 

Hi all,

been searching (both in this list and on google) for a way to load an 

swf at runtime (with embedded fonts) and access them font within the 

"mother clip".

Anyone knows if this is possible, and if so point me in the right direction?

 

TIA

 

.magnus

___

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] fscommand("exec","...") in a standalone app

2006-02-28 Thread Oliver Quas

hi there,

i know there have been a lot of posts about this topic, but i didn't  
find any information related to the case i'm currently dealing with,  
and the deadline for the job is pretty soon, so please forgive me, if  
this has been discussed before:


i have implemented a flash movie (1 file), that should run offline as  
a standalone-app/projector from cd (Windows only). the contents get  
loaded dynamically using xml-files. the app contains a movieclip  
(box_mc) that contains a textfield (text_tf) showing html-text  
provided by the xml-files.



in the text displayed inside text_tf, i want to show some links,  
opening .wmv- and .exe-files. for the links, i'm using something like  
this in the xml:




  




inside box_mc i implemented the following function:

public function openExe(path:String):Void
{
trace("works");
fscommand("exec", path);
}

unfortunately, when i click the link, the function doesn't get  
called. does anyone see/know what i am doing wrong?


thanks in advance!

best regards,
oliver

___
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] Images in textFields..

2006-02-28 Thread GregoryN

I'd suggest to look in archive:
November, 2005,
thread "Loading multiple images inside dynamic text field "

Also, It'll be helpful if you show us some of your code...
  

-- 
Best regards,
 GregoryN

http://GOusable.com
Flash components development.
Usability services.


___
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] Focus within the Browser

2006-02-28 Thread Steve Mathews
Don't forget that you can get focus from Tab also, so just watching
for a click event may miss some instances of focusing.

On 2/27/06, Claudia Barnal <[EMAIL PROTECTED]> wrote:
> Thanks again,
>
> Just another thought.
>
> If you know that you have received focus when the mouse is pressed on the
> stage (onMouseDown()), can't you use that to detect the focus and onblur to
> detect the loss of focus? Or is there another reason for using your code to
> detect when you receive the focus?
>
> Thanks again,
> Claudia
>
> _
> The new MSN Search Toolbar now includes Desktop search!
> http://toolbar.msn.co.uk/
>
> ___
> 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] Order of dispatched events?

2006-02-28 Thread Johannes Nel
in the order you added the listeners.
it just loops through an array and executes the methods one by one

On 2/28/06, Judah <[EMAIL PROTECTED]> wrote:
>
> Is there a way to make the order that events are called "Fixed"?
>
>
>
> Are they guaranteed to be executed in a particular order?
>
>
>
> Judah
>
> ___
> 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
>



--
j:pn
http://www.lennel.org
___
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] Images in textFields..

2006-02-28 Thread Karim Beyrouti
Same-same... I was kinda hoping that there was going to be something else...
Guess there has never been any oficial word from Adobe for this one

Think I will forget about images in text fields...

Cheers


- karim

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Merrill,
Jason
Sent: 28 February 2006 16:20
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Images in textFields..

Just a lot of  tags is the only solution I've found.  

Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com










>>-Original Message-
>>From: [EMAIL PROTECTED] [mailto:flashcoders- 
>>[EMAIL PROTECTED] On Behalf Of Karim Beyrouti
>>Sent: Tuesday, February 28, 2006 11:09 AM
>>To: 'Flashcoders mailing list'
>>Subject: RE: [Flashcoders] Images in textFields..
>>
>>I guess there is no workarround ?
>>
>>-Original Message-
>>From: [EMAIL PROTECTED]
>>[mailto:[EMAIL PROTECTED] On Behalf Of
Merrill,
>>Jason
>>Sent: 28 February 2006 15:43
>>To: Flashcoders mailing list
>>Subject: RE: [Flashcoders] Images in textFields..
>>
>>Unfortunately it's buggy and has been for a long time.
>>
>>Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com
>>
>>
>>
-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders- 
[EMAIL PROTECTED] On Behalf Of Karim Beyrouti
Sent: Tuesday, February 28, 2006 8:06 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Images in textFields..

seems lots of people have had the same problem...

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
James
>>Deakin
Sent: 28 February 2006 13:00
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Images in textFields..

Odd i'm having the same problem


On 28 Feb 2006, at 12:48, Karim Beyrouti wrote:

>>
>> I am working with HTML and images in textField's, and am
wondering
>> how one would keep images (  ) inline with
the
>> text?
>> I am trying to have text on one line then the image on another
>>line.
>>
>> Also Another problem I get with > src="myimg2.jpg "> is that images overlap...its a bit anoying to
>>say
>> the least, as HTML behaves differently. Any way arround this,
>>without
>> inserting lots of  tags?
>>
>> I am Publishing for Flash 7 player...

___

>>NOTICE:
>>This message is for the designated recipient only and may contain
privileged
>>or confidential information. If you have received it in error, please
notify
>>the sender immediately and delete the original. Any other use of this
e-mail
>>by you is prohibited.
>>___
>>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.1.375 / Virus Database: 268.1.0/269 - Release Date:
24/02/2006
>>
>>___
>>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.1.375 / Virus Database: 268.1.0/269 - Release Date: 24/02/2006


___
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] Images in textFields..

2006-02-28 Thread Merrill, Jason
Just a lot of  tags is the only solution I've found.  

Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com










>>-Original Message-
>>From: [EMAIL PROTECTED] [mailto:flashcoders-
>>[EMAIL PROTECTED] On Behalf Of Karim Beyrouti
>>Sent: Tuesday, February 28, 2006 11:09 AM
>>To: 'Flashcoders mailing list'
>>Subject: RE: [Flashcoders] Images in textFields..
>>
>>I guess there is no workarround ?
>>
>>-Original Message-
>>From: [EMAIL PROTECTED]
>>[mailto:[EMAIL PROTECTED] On Behalf Of
Merrill,
>>Jason
>>Sent: 28 February 2006 15:43
>>To: Flashcoders mailing list
>>Subject: RE: [Flashcoders] Images in textFields..
>>
>>Unfortunately it's buggy and has been for a long time.
>>
>>Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com
>>
>>
>>
-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Karim Beyrouti
Sent: Tuesday, February 28, 2006 8:06 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Images in textFields..

seems lots of people have had the same problem...

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
James
>>Deakin
Sent: 28 February 2006 13:00
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Images in textFields..

Odd i'm having the same problem


On 28 Feb 2006, at 12:48, Karim Beyrouti wrote:

>>
>> I am working with HTML and images in textField's, and am
wondering
>> how one would keep images (  ) inline with
the
>> text?
>> I am trying to have text on one line then the image on another
>>line.
>>
>> Also Another problem I get with > src="myimg2.jpg "> is that images overlap...its a bit anoying to
>>say
>> the least, as HTML behaves differently. Any way arround this,
>>without
>> inserting lots of  tags?
>>
>> I am Publishing for Flash 7 player...

___

>>NOTICE:
>>This message is for the designated recipient only and may contain
privileged
>>or confidential information. If you have received it in error, please
notify
>>the sender immediately and delete the original. Any other use of this
e-mail
>>by you is prohibited.
>>___
>>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.1.375 / Virus Database: 268.1.0/269 - Release Date:
24/02/2006
>>
>>___
>>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] Order of dispatched events?

2006-02-28 Thread Judah
Is there a way to make the order that events are called "Fixed"? 

 

Are they guaranteed to be executed in a particular order? 

 

Judah

___
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] Images in textFields..

2006-02-28 Thread Karim Beyrouti
I guess there is no workarround ?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Merrill,
Jason
Sent: 28 February 2006 15:43
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Images in textFields..

Unfortunately it's buggy and has been for a long time.

Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com



>>-Original Message-
>>From: [EMAIL PROTECTED] [mailto:flashcoders- 
>>[EMAIL PROTECTED] On Behalf Of Karim Beyrouti
>>Sent: Tuesday, February 28, 2006 8:06 AM
>>To: 'Flashcoders mailing list'
>>Subject: RE: [Flashcoders] Images in textFields..
>>
>>seems lots of people have had the same problem...
>>
>>-Original Message-
>>From: [EMAIL PROTECTED]
>>[mailto:[EMAIL PROTECTED] On Behalf Of James
Deakin
>>Sent: 28 February 2006 13:00
>>To: Flashcoders mailing list
>>Subject: Re: [Flashcoders] Images in textFields..
>>
>>Odd i'm having the same problem
>>
>>
>>On 28 Feb 2006, at 12:48, Karim Beyrouti wrote:
>>

 I am working with HTML and images in textField's, and am wondering 
 how one would keep images (  ) inline with the 
 text?
 I am trying to have text on one line then the image on another
line.

 Also Another problem I get with >>> src="myimg2.jpg "> is that images overlap...its a bit anoying to
say
 the least, as HTML behaves differently. Any way arround this,
without
 inserting lots of  tags?

 I am Publishing for Flash 7 player...
>>
>>___
>>
NOTICE:
This message is for the designated recipient only and may contain privileged
or confidential information. If you have received it in error, please notify
the sender immediately and delete the original. Any other use of this e-mail
by you is prohibited.
___
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.1.375 / Virus Database: 268.1.0/269 - Release Date: 24/02/2006

___
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] JSFLTools from bit-101

2006-02-28 Thread Christian Giordano
I'm having issues on mixing AS code and JSFL code in a Panel. A noticed 
that this project could be helpful, does anyone know what happened to it?


best, chr
--
___
{ Christian Giordano's site and blog @ http://cgws.nuthinking.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] Images in textFields..

2006-02-28 Thread Merrill, Jason
Unfortunately it's buggy and has been for a long time.

Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com



>>-Original Message-
>>From: [EMAIL PROTECTED] [mailto:flashcoders-
>>[EMAIL PROTECTED] On Behalf Of Karim Beyrouti
>>Sent: Tuesday, February 28, 2006 8:06 AM
>>To: 'Flashcoders mailing list'
>>Subject: RE: [Flashcoders] Images in textFields..
>>
>>seems lots of people have had the same problem...
>>
>>-Original Message-
>>From: [EMAIL PROTECTED]
>>[mailto:[EMAIL PROTECTED] On Behalf Of James
Deakin
>>Sent: 28 February 2006 13:00
>>To: Flashcoders mailing list
>>Subject: Re: [Flashcoders] Images in textFields..
>>
>>Odd i'm having the same problem
>>
>>
>>On 28 Feb 2006, at 12:48, Karim Beyrouti wrote:
>>

 I am working with HTML and images in textField's, and am wondering
 how one would keep images (  ) inline with the
 text?
 I am trying to have text on one line then the image on another
line.

 Also Another problem I get with >>> src="myimg2.jpg "> is that images overlap...its a bit anoying to
say
 the least, as HTML behaves differently. Any way arround this,
without
 inserting lots of  tags?

 I am Publishing for Flash 7 player...
>>
>>___
>>
NOTICE:
This message is for the designated recipient only and may contain privileged or 
confidential information. If you have received it in error, please notify the 
sender immediately and delete the original. Any other use of this e-mail by you 
is prohibited.
___
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] [Maybe OT] Internationalization Consulting?

2006-02-28 Thread Jörg Müller

Hi!

Does anyone on the list do consulting in internationalization of Flash 
websites (or know someone who does)?


I'm working on a site that exists in English and has to be Korean, too. 
I'd prefer someone in Germany as it might be necessary to meet in person.


Anyone with experience in this area is welcome to contact me, too.

Thanks,

Jörg.

___
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: scolling scaled content force stop at boundaries

2006-02-28 Thread Jon Bennett
don't worry, I figured it out using localToGlobal...

// right
this.scrollBtns_mc.right_mc.onRollOver = function ()
{
this.onEnterFrame = function ()
{
var point = new Object();
 point.x = obj.scrollBoundary_mc._x;
 point.y = obj.scrollBoundary_mc._y;
obj.scrollTarget_mc.localToGlobal (point);

var xBoundary = -(((obj.scrollBoundary_mc._width *
obj.scrollScale) + 100) - obj.scrollWidth);

// trace ("scrollBoundary_mc._x: " + obj.scrollBoundary_mc._x
+ " | scrollBoundary_mc._y: " + obj.scrollBoundary_mc._y);
// trace ("point.x: " + point.x + " | point.y: " + point.y);
// trace ("xBoundary: " + xBoundary + " | yBoundary: " + yBoundary);

if (point.x >= xBoundary)
{
obj.scrollTarget_mc._x -= 10;
}
else
{
this.onEnterFrame = undefined;
}
};
};

jon


--


jon bennett
t: +44 (0) 1225 341 039 w: http://www.jben.net/
iChat (AIM): jbendotnet Skype: jon-bennett
___
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] SWF Mouse drag out

2006-02-28 Thread Daniel Cascais
Hi,

I've been testing how to get the x and y position of the Mouse when
outside the Stage when the SWF is embedded in an HTML, which obviously
is not easy. For now I am interested in getting the Mouse coordinates
when the mouse has been pressed inside the Stage (onMouseDown) and the
dragged out. When you do this and drag the Mouse outside the SWF
bounds you keep on getting the Mouse coordinates, which is excellent.
This works great in Firefox, but has some issues in Internet Explorer
(haven't tested in other browsers).

Now, in IE if you drag the Mouse UP and out of the SWF you will start
getting the desired results, but if you don't do it first you won't
get the coordinates when you have dragged the Mouse out of the Stage
bounds (LHS, RHS and bottom). Also, sometimes (if you play around a
lot) this will happen if you drag the mouse DOWN and out of the SWF.

After you have actually managed to get the corresponding behavior in
IE and then you let the Mouse go, the saga begins again.

Can anyone confirm this behavior in IE?
Can anyone explain this behavior in IE?
Can anyone solve this behavior in IE?


Here's some sample code you can try out:

createTextField ("output1", 1, 100, 22, 200, 22).text = "Not testing
mouse x and y position";
createTextField ("output2", 2, 100, 44, 200, 22).text = "0 x 0";
createTextField ("output3", 3, 100, 66, 200, 22).text = "Mouse is
outside the SWF bounds: false";

function onMouseDown()
{
   output1.text = "Testing mouse x and y position";
}

function onMouseUp()
{
   output1.text = "Not testing mouse x and y position";
}

function onMouseMove()
{
   output2.text = _xmouse + " x " + _ymouse;
   output3.text = "Mouse is outside the SWF bounds: " + ( _xmouse < 0
|| _xmouse > Stage.width || _ymouse < 0 || _ymouse > Stage.height );
}
___
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 swf with embedded fonts.

2006-02-28 Thread Magnus Askenbäck
Looks like a great solution. will fiddle around with it a bit and get 
back to u if it serves my purpose.


tnx

.m


Iv wrote:


Hello Magnus,

MA> been searching (both in this list and on google) for a way to load an
MA> swf at runtime (with embedded fonts) and access them font within the 
MA> "mother clip".

MA> Anyone knows if this is possible, and if so point me in the right direction?

http://www.sharedfonts.com



 



--

*MAGNUS ASKENBÄCK  |  AD

NORMA COMMUNICATION AB*
T. +46 31 748 88 15
M. +46 736 79 48 97
[EMAIL PROTECTED]
www.norma.se

--

"It is better to fail in originality
than to succeed in imitation."
» Herman Melville (1819 - 1891)
___
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] automatic object re-arrange via drag/drop

2006-02-28 Thread Adrian Lynch
If you find out any more about this I'd love to hear about it too.

Adrian

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Jayson K
Hanes
Sent: 28 February 2006 10:41
To: Flashcoders mailing list
Subject: [Flashcoders] automatic object re-arrange via drag/drop


Hey guys.. I remember seeing wayy back a sample swf that was done in
someones "lab" that allowed objects to be dragged around and dropped, to
then have all objects be re-arranged automatically such that none
overlapped... (I looked on bit-101, flashkit, etc)..

Anyone recall the location of such an example?

I think the idea was that the dropped object became the center of
gravity for the other objects to "flow around"... I can see it in my
head.. lol

One of those "not wanting to waste time Re-inventing the wheel"
situations...

Thanks,

-Jayson
___
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] Does anything allow FLV(sorensen or vp6) to mpeg4 for IPOD

2006-02-28 Thread erixtekila

I want to be able to take flash video and put it on a video ipod. Is
there any way to do this?


As always : ffmpeg will convert h.263 to mp4.
vp6 is not included as it is not a known codec.

---
erixtekila
http://blog.v-i-a.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] Images in textFields..

2006-02-28 Thread Karim Beyrouti
seems lots of people have had the same problem... 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of James Deakin
Sent: 28 February 2006 13:00
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Images in textFields..

Odd i'm having the same problem


On 28 Feb 2006, at 12:48, Karim Beyrouti wrote:

>>
>> I am working with HTML and images in textField's, and am wondering 
>> how one would keep images (  ) inline with the 
>> text?
>> I am trying to have text on one line then the image on another line.
>>
>> Also Another problem I get with > src="myimg2.jpg "> is that images overlap...its a bit anoying to say 
>> the least, as HTML behaves differently. Any way arround this, without 
>> inserting lots of  tags?
>>
>> I am Publishing for Flash 7 player...

___
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.1.375 / Virus Database: 268.1.0/269 - Release Date: 24/02/2006


___
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] Images in textFields..

2006-02-28 Thread Karim Beyrouti
I am starting to wonder whether there is a solution to this.. it could have
been a brilliant feature. 

I am now thinking that a solution which will use a scrollpane movieclips,
and will require every element on the page to be positioned individually,
instead of using a textfield.

Hmmm It's a shame, I kinda liked the simplicity of images and text
living in one field together. 



- karim


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Adrian Park
Sent: 28 February 2006 12:37
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Images in textFields..

Without trying it myself I can't answer your first question but for your
second question, have you tried specifying the width and height attributes
of your  tags? This might prevent overlapping.

e.g. 

On 2/28/06, Karim Beyrouti <[EMAIL PROTECTED]> wrote:
>
> Hello !...
>
> I am working with HTML and images in textField's, and am wondering how 
> one would keep images (  ) inline with the text?  
> I am trying to have text on one line then the image on another line.
>
> Also Another problem I get with  src="myimg2.jpg "> is that images overlap...its a bit anoying to say 
> the least, as HTML behaves differently. Any way arround this, without 
> inserting lots of  tags?
>
> I am Publishing for Flash 7 player...
>
>
>
> Many thanks
>
>
> Karim
>
> ___
> 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.1.375 / Virus Database: 268.1.0/269 - Release Date: 24/02/2006


___
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] Images in textFields..

2006-02-28 Thread James Deakin

Odd i'm having the same problem


On 28 Feb 2006, at 12:48, Karim Beyrouti wrote:



I am working with HTML and images in textField's, and am wondering  
how

one would keep images (  ) inline with the text?
I am trying to have text on one line then the image on another line.

Also Another problem I get with  is that images overlap...its a bit anoying to say
the least, as HTML behaves differently. Any way arround this, without
inserting lots of  tags?

I am Publishing for Flash 7 player...


___
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: scolling scaled content force stop at boundaries

2006-02-28 Thread Jon Bennett
> // obj.scrollTarget_mc = main map
> // obj.scrollBoundary = name of the mc on the main map
> // obj.scrollWidth = Stage.width
> this.scrollBtns_mc.right_mc.onRollOver = function ()
> {
> this.onEnterFrame = function ()
> {
> if (obj.scrollTarget_mc[obj.scrollBoundary]._x >=
> -((obj.scrollTarget_mc[obj.scrollBoundary]._width) - obj.scrollWidth))
> {
> obj.scrollTarget_mc._x -= 10;
> }
> else
> {
> this.onEnterFrame = undefined;
> }
> };
> };

I've just tried using localToGlobal to extract the x and y co-ord's of
my boundary clip, but haven't had any luck so far...

// left
this.scrollBtns_mc.left_mc.onRollOver = function ()
{
this.onEnterFrame = function ()
{
var point = new Object();
point.x = obj.scrollBoundary_mc._x;
point.y = obj.scrollBoundary_mc._y;
this.localToGlobal (point);

if (point.x <= 0)
{
obj.scrollTarget_mc._x += 10;
}
else
{
this.onEnterFrame = undefined;
}
};
};

any clues as to where I'm going wrong?

thanks,

Jon
--


jon bennett
t: +44 (0) 1225 341 039 w: http://www.jben.net/
iChat (AIM): jbendotnet Skype: jon-bennett
___
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] Images in textFields..

2006-02-28 Thread Karim Beyrouti
Yep, I am using the width / height attributes of the img tag. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Adrian Park
Sent: 28 February 2006 12:37
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Images in textFields..

Without trying it myself I can't answer your first question but for your
second question, have you tried specifying the width and height attributes
of your  tags? This might prevent overlapping.

e.g. 

On 2/28/06, Karim Beyrouti <[EMAIL PROTECTED]> wrote:
>
> Hello !...
>
> I am working with HTML and images in textField's, and am wondering how 
> one would keep images (  ) inline with the text?  
> I am trying to have text on one line then the image on another line.
>
> Also Another problem I get with  src="myimg2.jpg "> is that images overlap...its a bit anoying to say 
> the least, as HTML behaves differently. Any way arround this, without 
> inserting lots of  tags?
>
> I am Publishing for Flash 7 player...
>
>
>
> Many thanks
>
>
> Karim
>
> ___
> 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.1.375 / Virus Database: 268.1.0/269 - Release Date: 24/02/2006


___
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] scolling scaled content force stop at boundaries

2006-02-28 Thread Jon Bennett
hi,

I'm working on a map project, it's not overly complicated, and only
has 2 levels of zooming, though the scale amount depends on which
button is clicked. When someone clicks an area, the whole map tweens
(scaleTo + slideTo) to that position, and 4 scroll arrows appear. At
the moment I'm scrolling to the edges of the entire map, what I'd
really like is to be able to scroll the entire map but only to the
boundaries on a certain mc within the map, but I can't seem to crack
at all.

Some code:

// obj.scrollTarget_mc = main map
// obj.scrollBoundary = name of the mc on the main map
// obj.scrollWidth = Stage.width
this.scrollBtns_mc.right_mc.onRollOver = function ()
{
this.onEnterFrame = function ()
{
if (obj.scrollTarget_mc[obj.scrollBoundary]._x >=
-((obj.scrollTarget_mc[obj.scrollBoundary]._width) - obj.scrollWidth))
{
obj.scrollTarget_mc._x -= 10;
}
else
{
this.onEnterFrame = undefined;
}
};
};
Anyone got any ideas on how I can do this?

I can post more code if need be :)

tia!

jon
--


jon bennett
t: +44 (0) 1225 341 039 w: http://www.jben.net/
iChat (AIM): jbendotnet Skype: jon-bennett
___
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] Images in textFields..

2006-02-28 Thread Adrian Park
Without trying it myself I can't answer your first question but for your
second question, have you tried specifying the width and height attributes
of your  tags? This might prevent overlapping.

e.g. 

On 2/28/06, Karim Beyrouti <[EMAIL PROTECTED]> wrote:
>
> Hello !...
>
> I am working with HTML and images in textField's, and am wondering how one
> would keep images (  ) inline with the text?  I am
> trying to have text on one line then the image on another line.
>
> Also Another problem I get with 
> is that images overlap...its a bit anoying to say the least, as HTML
> behaves
> differently. Any way arround this, without inserting lots of 
> tags?
>
> I am Publishing for Flash 7 player...
>
>
>
> Many thanks
>
>
> Karim
>
> ___
> 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] Images in textFields..

2006-02-28 Thread Karim Beyrouti
Hello !...

I am working with HTML and images in textField's, and am wondering how one
would keep images (  ) inline with the text?  I am
trying to have text on one line then the image on another line. 

Also Another problem I get with 
is that images overlap...its a bit anoying to say the least, as HTML behaves
differently. Any way arround this, without inserting lots of  tags?

I am Publishing for Flash 7 player...



Many thanks


Karim

___
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: R: [Flashcoders] dispatching an event from a frame

2006-02-28 Thread quinrou .
I forgot to say that one of my classes is watching for the dispatchEvent
from that clip.

On 2/28/06, Tom Rhodes <[EMAIL PROTECTED]> wrote:
>
> Why not set up your listener in a class, and pass the class the timeline
> of
> the frame you want to do something with, and watch the _currentframe
> property until it is 100
>
> -Messaggio originale-
> Da: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Per conto di quinrou .
> Inviato: 28 February 2006 12:03
> A: Flashcoders mailing list
> Oggetto: [Flashcoders] dispatching an event from a frame
>
> Hi all,
>
> I was wondering if it was possible to dispatch an event from a frame. As
> in
> I have a movieclip which plays and then for instance when it gets to frame
> 100 I'd like it to dispatch an event.
>
> I have imported the eventDispatcher and initialized the class on frame  1.
> //frame1
> import mx.event.EventDispatcher;
> EventDispatcher.initialize(this);
>
> on frame 100 I invoke the dispatchEvent method
> //frame 100
> dispatchEvent({type:"onEvent"});
>
> but nothing...
>
> I am guessing it's because I didn't provide the addEventListener and
> removeEventListener in frame 1..., right?
> But how Do I do that without getting a compiler error?
>
> Please help, I am someone out there must have had the same idea. This
> method
> looks much more efficient than having an onEnterFrame which is waiting for
> a
> variable to be set on that timeline.
>
> thanks
> Seb
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


[Flashcoders] Re: Does anything allow FLV(sorensen or vp6) to mpeg4 for IPOD

2006-02-28 Thread Simen Brekken
hank williams  gmail.com> writes:

> 
> ffmpeg will create mpeg4, but I dont think it can read vp6. No one has
> cracked or created an open or opensource version of a vp6 player. To
> use mpeg, someone would have to licence or gain access to a vp6
> player, which would then allow ffmpeg to re-encode the video. This
> would probably, though not necessarily(deoending on On2's stance),
> need to be a commercial product.
> 
> I guess I was just wondering if any such commercial products existed.
> It seems to me not so great that flash video is a dead end. Given the
> popularity of the ipod, a little transcoding goodness would be in
> order.

I am too disappointed over the fact that Adobe has chosen vp6 over H.264 both
size, quality and openness but I guess we'll just have to sit and wait.


Regards,
Simen Brekken

___
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: Does anything allow FLV(sorensen or vp6) to mpeg4 for IPOD

2006-02-28 Thread hank williams
ffmpeg will create mpeg4, but I dont think it can read vp6. No one has
cracked or created an open or opensource version of a vp6 player. To
use mpeg, someone would have to licence or gain access to a vp6
player, which would then allow ffmpeg to re-encode the video. This
would probably, though not necessarily(deoending on On2's stance),
need to be a commercial product.

I guess I was just wondering if any such commercial products existed.
It seems to me not so great that flash video is a dead end. Given the
popularity of the ipod, a little transcoding goodness would be in
order.

Regards
Hank

On 2/28/06, Simen Brekken <[EMAIL PROTECTED]> wrote:
> hank williams  gmail.com> writes:
>
> >
> > I want to be able to take flash video and put it on a video ipod. Is
> > there any way to do this?
>
> If FFMpeg can't, nothing can :)
>
> http://ffmpeg.sourceforge.net/
>
>
> Regards,
> Simen Brekken
>
>
> ___
> 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] loading swf with embedded fonts.

2006-02-28 Thread Iv
Hello Magnus,

MA> been searching (both in this list and on google) for a way to load an
MA> swf at runtime (with embedded fonts) and access them font within the 
MA> "mother clip".
MA> Anyone knows if this is possible, and if so point me in the right direction?

http://www.sharedfonts.com



-- 
Ivan Dembicki

[EMAIL PROTECTED] || 
http://www.design.ru

___
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: Does anything allow FLV(sorensen or vp6) to mpeg4 for IPOD

2006-02-28 Thread Simen Brekken
hank williams  gmail.com> writes:

> 
> I want to be able to take flash video and put it on a video ipod. Is
> there any way to do this?

If FFMpeg can't, nothing can :)

http://ffmpeg.sourceforge.net/


Regards,
Simen Brekken


___
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 swf with embedded fonts.

2006-02-28 Thread Nick Weekes
No worries Magnus.  If that isnt what you're after, post again.

Cheers,

Nick 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Magnus
Askenbäck
Sent: 28 February 2006 10:53
To: Flashcoders mailing list
Subject: Re: [Flashcoders] loading swf with embedded fonts.

ah, true. tnx mate, will have look into this...  =)

.m


Nick Weekes wrote:

>Hmm...I think this was discussed yesterday.
>
>Check the archives for "specific circumstance with shared library fonts".
>
>Cheers,
>
>Nick
>
>-Original Message-
>From: [EMAIL PROTECTED]
>[mailto:[EMAIL PROTECTED] On Behalf Of Magnus
>Askenbäck
>Sent: 28 February 2006 10:36
>To: Flashcoders mailing list
>Subject: [Flashcoders] loading swf with embedded fonts.
>
>Hi all,
>been searching (both in this list and on google) for a way to load an 
>swf at runtime (with embedded fonts) and access them font within the 
>"mother clip".
>Anyone knows if this is possible, and if so point me in the right
direction?
>
>TIA
>
>.magnus
>___
>Flashcoders@chattyfig.figleaf.com
>To change your subscription options or search the archive:
>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
>Brought to you by Fig Leaf Software
>Premier Authorized Adobe Consulting and Training
>http://www.figleaf.com
>http://training.figleaf.com
>
>
>___
>Flashcoders@chattyfig.figleaf.com
>To change your subscription options or search the archive:
>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
>Brought to you by Fig Leaf Software
>Premier Authorized Adobe Consulting and Training
>http://www.figleaf.com
>http://training.figleaf.com
>
>
>  
>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


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

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


R: [Flashcoders] dispatching an event from a frame

2006-02-28 Thread Tom Rhodes
Why not set up your listener in a class, and pass the class the timeline of
the frame you want to do something with, and watch the _currentframe
property until it is 100

-Messaggio originale-
Da: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Per conto di quinrou .
Inviato: 28 February 2006 12:03
A: Flashcoders mailing list
Oggetto: [Flashcoders] dispatching an event from a frame

Hi all,

I was wondering if it was possible to dispatch an event from a frame. As in
I have a movieclip which plays and then for instance when it gets to frame
100 I'd like it to dispatch an event.

I have imported the eventDispatcher and initialized the class on frame  1.
//frame1
import mx.event.EventDispatcher;
EventDispatcher.initialize(this);

on frame 100 I invoke the dispatchEvent method
//frame 100
dispatchEvent({type:"onEvent"});

but nothing...

I am guessing it's because I didn't provide the addEventListener and
removeEventListener in frame 1..., right?
But how Do I do that without getting a compiler error?

Please help, I am someone out there must have had the same idea. This method
looks much more efficient than having an onEnterFrame which is waiting for a
variable to be set on that timeline.

thanks
Seb
___
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] Does anything allow FLV(sorensen or vp6) to mpeg4 for IPOD

2006-02-28 Thread hank williams
I want to be able to take flash video and put it on a video ipod. Is
there any way to do this?

Regards
Hank
___
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] dispatching an event from a frame

2006-02-28 Thread quinrou .
Hi all,

I was wondering if it was possible to dispatch an event from a frame. As in
I have a movieclip which plays and then for instance when it gets to frame
100 I'd like it to dispatch an event.

I have imported the eventDispatcher and initialized the class on frame  1.
//frame1
import mx.event.EventDispatcher;
EventDispatcher.initialize(this);

on frame 100 I invoke the dispatchEvent method
//frame 100
dispatchEvent({type:"onEvent"});

but nothing...

I am guessing it's because I didn't provide the addEventListener and
removeEventListener in frame 1..., right?
But how Do I do that without getting a compiler error?

Please help, I am someone out there must have had the same idea. This method
looks much more efficient than having an onEnterFrame which is waiting for a
variable to be set on that timeline.

thanks
Seb
___
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 swf with embedded fonts.

2006-02-28 Thread Magnus Askenbäck

ah, true. tnx mate, will have look into this...  =)

.m


Nick Weekes wrote:


Hmm...I think this was discussed yesterday.

Check the archives for "specific circumstance with shared library fonts".

Cheers,

Nick

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Magnus
Askenbäck
Sent: 28 February 2006 10:36
To: Flashcoders mailing list
Subject: [Flashcoders] loading swf with embedded fonts.

Hi all,
been searching (both in this list and on google) for a way to load an 
swf at runtime (with embedded fonts) and access them font within the 
"mother clip".

Anyone knows if this is possible, and if so point me in the right direction?

TIA

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

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


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

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


 


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

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


[Flashcoders] global vScrollPolicy definition rejected

2006-02-28 Thread André Goliath
Hi Coders, 
 
I´m running into a mystery I can´t solve, if anyone could point me into the
right direction i´d be very thankful.
 
I´m defining some global StyleSheet properties for MM V2 Components in Flash
8 Pro like this
 
_global.styles.Tree = new mx.styles.CSSStyleDeclaration();
_global.styles.Tree.setStyle("backgroundColor", 0xEE);
_global.styles.Tree.setStyle("rollOverColor", 0xFF);
//...and so on until
_global.styles.Tree.setStyle("vScrollPolicy", "auto");
 
now every Style is accepted except the vScrollPolicy, it behaves as it would
be "on" which is the default value.
It´s the same for List and DataGrid Components.
If I directly assign the style to an instance like this
 
_root.command_tr.setStyle("vScrollPolicy", "auto");
 
everything works,...
 
Any clues for me?
 
Thanks,
 
André
 
 
___
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 swf with embedded fonts.

2006-02-28 Thread Nick Weekes
Hmm...I think this was discussed yesterday.

Check the archives for "specific circumstance with shared library fonts".

Cheers,

Nick

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Magnus
Askenbäck
Sent: 28 February 2006 10:36
To: Flashcoders mailing list
Subject: [Flashcoders] loading swf with embedded fonts.

Hi all,
been searching (both in this list and on google) for a way to load an 
swf at runtime (with embedded fonts) and access them font within the 
"mother clip".
Anyone knows if this is possible, and if so point me in the right direction?

TIA

.magnus
___
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] automatic object re-arrange via drag/drop

2006-02-28 Thread Jayson K Hanes
Hey guys.. I remember seeing wayy back a sample swf that was done in
someones "lab" that allowed objects to be dragged around and dropped, to
then have all objects be re-arranged automatically such that none
overlapped... (I looked on bit-101, flashkit, etc)..

Anyone recall the location of such an example?

I think the idea was that the dropped object became the center of
gravity for the other objects to "flow around"... I can see it in my
head.. lol

One of those "not wanting to waste time Re-inventing the wheel"
situations...

Thanks,

-Jayson
___
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 swf with embedded fonts.

2006-02-28 Thread Magnus Askenbäck

Hi all,
been searching (both in this list and on google) for a way to load an 
swf at runtime (with embedded fonts) and access them font within the 
"mother clip".

Anyone knows if this is possible, and if so point me in the right direction?

TIA

.magnus
___
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] parsing all symbols in the timeline with JSFL

2006-02-28 Thread Christian Giordano
Hi Guys, is there a simple way to parse all the symbols (also nested) in 
the timeline without moving through all the frames (for instance like 
fl.getDocumentDOM().library.items) ? Or otherwise did anyone do a script 
that could be useful?


Thanks, chr
--
___
{ Christian Giordano's site and blog @ http://cgws.nuthinking.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] Meet Jennifer Shiman & the 30 Second Bunnies (interview)

2006-02-28 Thread Flashgrrl
(Interview from FlasherDotOrg - www.flasherdot.org)

MEET JENNIFER SHIMAN AND THE 30 SECOND BUNNIES:
What do the movies The Exorcist, Titanic and cute
little bunny rabbits all have in common? 

The answer is Jennifer Shiman. Jennifer is a Flash
artist and movie buff who has condensed some of the
best cult films into 30 second movies all
starring...bunnies. Seeing is believing. 

We recently caught up with Jennifer Shiman to get her
thoughts on Flash, success and bunnies

Read the full interview at:
http://www.flasherdot.org/Articles/JenniferShiman30SecBunnies.htm




Send instant messages to your online friends http://au.messenger.yahoo.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