[Flashcoders] Mouseclick on disabled button....

2007-01-24 Thread Arindam Dhar
hi,
   
  I have a movie loaded with many animations(not scripted). And there are few 
buttons on stage to control them.Now,when the buttons are disabled, 
continueously clicking on them makes the animations slower and sometimes jerky. 
   
  Why is that happening? When button is disabled no code execution happens so, 
what consumes the CPU? its a fact that multiple processing makes flash 
animations slower, but never thought clicking disabled buttons would consume 
CPU and make animations slower..
   
  Any explanation is highly appreciated..
   
  thanks,
   
  Arindam 


-
 
 Real people. Real questions. Real answers. Share what you know.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] How to position the caret in a TextField when entering the field?

2007-01-24 Thread JOR
Try using setInterval to delay the setSelection() call by a millisecond 
to perform the carat positioning after flash automatically selects the 
complete text when you press the tab key.


The following code positions the cursor at the end of the text string 
when you tab to a textfield.


// start
var tf:TextField;
for (var i:Number = 0; i<5; i++) {
  this.createTextField("field"+i+"_txt", i, 10, i*25, 200, 20);
  tf = this["field"+i+"_txt"];
  tf.text = "this is my text";
  tf.type = "input";
  tf.border = true;
  tf.tabEnabled = true;
  tf.tabIndex = i;
}
var listener:Object = new Object();
listener.onSetFocus = function(oldFocus, newFocus) {
  this.setSel = function() {
clearInterval(this.intervalid);
var tf:TextField = eval(Selection.getFocus());
var end:Number = tf.text.length;
Selection.setSelection(end, end);
// or the front of the string
//Selection.setSelection(0, 0);
  };
  this.intervalid = setInterval(this, "setSel", 1);
};
Selection.addListener(listener);
// end



James O'Reilly  —  Consultant
Adobe Certified Flash Expert
http://www.jamesor.com
Design • Code • Train



Chris Velevitch wrote:

How to I set the position of the caret when entering or clicking in a
non-empty TextField.

I've tried:-

var field1:TextField;
var field2:TextField;

function onSetFocus():Void {
trace(this+" b="+Selection.getCaretIndex());
Selection.setSelection(0,0);
trace(this+" a="+Selection.getCaretIndex());
}

field1.onSetFocus = onSetFocus;
field2.onSetFocus = onSetFocus;

but it isn't working as expected. When I tab into a field, the whole
content is selected the caret index is -1 before and after I change
the position. When I click in the field, the caret stays at the
position clicked and the caret index is 0 before and after I change
the position.

What am I doing wrong?

Chris

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] about the flv and p2p

2007-01-24 Thread hongrizhao
is there any method to broadcast flv with p2p?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] How to position the caret in a TextField when entering the field?

2007-01-24 Thread Chris Velevitch

How to I set the position of the caret when entering or clicking in a
non-empty TextField.

I've tried:-

var field1:TextField;
var field2:TextField;

function onSetFocus():Void {
trace(this+" b="+Selection.getCaretIndex());
Selection.setSelection(0,0);
trace(this+" a="+Selection.getCaretIndex());
}

field1.onSetFocus = onSetFocus;
field2.onSetFocus = onSetFocus;

but it isn't working as expected. When I tab into a field, the whole
content is selected the caret index is -1 before and after I change
the position. When I click in the field, the caret stays at the
position clicked and the caret index is 0 before and after I change
the position.

What am I doing wrong?

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

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


[Flashcoders] FileReference

2007-01-24 Thread [p e r c e p t i c o n]

I've been tasked with making the FileReference class work with Java/jsp.
are there any Java experts on this list that i can ask questions?  php works
fine, as well as asp, but what i really need right now is Java...

any ideas appreciated

thanks

p
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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: flash on osx thru parallels/bootcamp

2007-01-24 Thread jason vancleave
The Mac version of Sepy has been buggier for me than the PC version. The 
lastest versions seem to be getting better and is still nicer for me than using 
the Flash IDE but still overall buggier than the PC version.

I will check out the TextMate screencasts. I'd be happy to switch completely 
over to a Mac based system once Adobe gets all the stuff over to Universal

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] passing url variables to flash movie

2007-01-24 Thread Glen Pike

Hi,

  Sorry, my last email to the list had a typo:

  //Wrong!
 // == for comparison!!
 if (video1 *==* video){
this.videoLoader.gotoAndPlay(2);
 }

  //Right
  // == for comparison!!
 if (video1 == video){
this.videoLoader.gotoAndPlay(2);
 }

  Glen

Gustavo Duenas wrote:
it seems not to work and the flash told me that *= must be followed by 
an operand


would you write me the whole code, the one for the swfobject and the 
one for the flash...I'd appreciate.



Gustavo
On Jan 24, 2007, at 5:17 PM, Glen Pike wrote:


so.addVariable("myvar" is video)

Gustavo Duenas wrote:
thanks man, I'm using swfobject to have my swf ...this would be 
greatbut if my libnk is

fullpage.html?video=nbc6

the so.addVariable("myvar" is video), getQueryParamValue("myurlvar" 
is nbc6) right?



and it is correct the code ffor the action script ?


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}



regards





On Jan 24, 2007, at 4:29 PM, Geoff Stearns wrote:


wow you are all making this much harder than it has to be.

If you use SWFObject to embed your swfs, it has a built in function 
that grabs vars from the url string.


an example:

var so = new SWFOBject("mymovie.swf", "mymovie", ...);
so.addVariable("myvar", getQueryParamValue("myurlvar"));
so.addVariable("myothervar", getQueryParamValue("myotherurlvar"));
so.write("target");

get it here:
http://blog.deconcept.com/swfobject/




On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many simple .asp 
examples on google)


look at the url then in flash i have sn and fe variables that will 
be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that 
whatever.com/flash.swf?var1=value1&var2=value2&varn=valuen (its 
ugly but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I 
use this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=print $_GET['fe']; ?>"> 

...
 VALUE=false>  VALUE=#FF> bgcolor=#FF  WIDTH="100%" HEIGHT="100%" NAME="voila" 
ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___




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

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



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

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


RE: [Flashcoders] Re: flash on osx thru parallels/bootcamp

2007-01-24 Thread Steven Sacks | BLITZ
The thing about TextMate is, you need to watch some of the screencasts
on their site to really see the awesome power of its macros and actions.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] passing url variables to flash movie

2007-01-24 Thread Hairy Dog Digital
Remove the asterisks (*) from before and after the double equals sign. The
line should be:

if (video1 == video) {

not

if (video1 *==* video) {

The asterisks were probably there to highlight the correction. That is, it
should be a double equal sign for an "is equal to" comparison; as opposed to
a single equal sign, which is used to assign a value.
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gustavo
Duenas
Sent: Wednesday, January 24, 2007 5:39 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] passing url variables to flash movie

thi is the message now is giving me

error!!

Operator '*=' must be followed by an operand


and this is the action script I'm using:

var video1 = nbc6;
var video = _root.video;
if (video1 *==* video){
   this.videoLoader.gotoAndPlay(2);
}



the link in the text said;


fullpage.html?video=nbc6


Thanks


Gustavo

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] passing url variables to flash movie

2007-01-24 Thread Gustavo Duenas
it seems not to work and the flash told me that *= must be followed  
by an operand


would you write me the whole code, the one for the swfobject and the  
one for the flash...I'd appreciate.



Gustavo
On Jan 24, 2007, at 5:17 PM, Glen Pike wrote:


so.addVariable("myvar" is video)

Gustavo Duenas wrote:
thanks man, I'm using swfobject to have my swf ...this would be  
greatbut if my libnk is

fullpage.html?video=nbc6

the so.addVariable("myvar" is video), getQueryParamValue 
("myurlvar" is nbc6) right?



and it is correct the code ffor the action script ?


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}



regards





On Jan 24, 2007, at 4:29 PM, Geoff Stearns wrote:


wow you are all making this much harder than it has to be.

If you use SWFObject to embed your swfs, it has a built in  
function that grabs vars from the url string.


an example:

var so = new SWFOBject("mymovie.swf", "mymovie", ...);
so.addVariable("myvar", getQueryParamValue("myurlvar"));
so.addVariable("myothervar", getQueryParamValue("myotherurlvar"));
so.write("target");

get it here:
http://blog.deconcept.com/swfobject/




On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many  
simple .asp examples on google)


look at the url then in flash i have sn and fe variables that  
will be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that whatever.com/flash.swf? 
var1=value1&var2=value2&varn=valuen (its ugly but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I  
use this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=print $_GET['fe']; ?>"> 

...
 VALUE=false>  NAME=bgcolor VALUE=#FF> menu=false quality=high bgcolor=#FF  WIDTH="100%"  
HEIGHT="100%" NAME="voila" ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___




___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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: flash on osx thru parallels/bootcamp

2007-01-24 Thread robert


On Jan 24, 2007, at 1:37 PM, Steven Sacks | BLITZ wrote:


Have you tried FlashDevelop for Windows or TextMate for Mac?



Yes, I really like TextMate and enjoying this 30-day trial. Now I'm  
using BBedit which is good but not well suited for actionscripting.


Anyway my main curiosity is to see how the IDE handles since I still  
need to go in an manage symbols and etc. 
___

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

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


Re: [Flashcoders] AS3 Defining Objects

2007-01-24 Thread Thomas Fowler
You could make a collection object holding your various objects (1...N) and 
then have a key for each object. From there you could easily make a method 
to get a particular item by id out of your collection.


- Original Message -
From: "Eric Lee" <[EMAIL PROTECTED]>
To: "'Flashcoders mailing list'" 
Sent: Wednesday, January 24, 2007 4:08 PM
Subject: [Flashcoders] AS3 Defining Objects


Hi list,



So I have a situation where I need to create multiple objects based on XML
data. Is there a way in AS3 that I can do something like this:



for (var i:int=0; iSince they got rid of eval in AS3, I'm not quite sure how to go about 
this.




Thanks!

-Eric



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

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


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

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


RE: [Flashcoders] Re: flash on osx thru parallels/bootcamp

2007-01-24 Thread Merrill, Jason
yeah, Flexbuilder 2 is really nice for AS3 development (even if you're
not building Flex apps).

Jason Merrill
Bank of America 
Learning & Organizational Effectiveness
 
 
 
 
 
 

>>-Original Message-
>>From: [EMAIL PROTECTED] 
>>[mailto:[EMAIL PROTECTED] On Behalf 
>>Of jason van cleave
>>Sent: Wednesday, January 24, 2007 5:23 PM
>>To: flashcoders@chattyfig.figleaf.com
>>Subject: [Flashcoders] Re: flash on osx thru parallels/bootcamp
>>
>>
>>I have. I tried FlashDevelop a while back and am planning on 
>>giving it another go and with the AS3 stuff I have just seen. 
>>I like how Sepy works with native .flp files and had versions 
>>on both the mac and pc. (I also have a horrible addiction to 
>>it's autoformatting.)
>>
>>After hearing quite a bit about it I got TextMate this 
>>weekend and started to set it up. Looks very clean and  good 
>>replacement for BBEdit but I was suprised with it that it 
>>didn't have ftp support built in (without transmit). 
>>
>>I work on multiple machines and platforms and am dying for a 
>>consistent editor between them. Flex/Eclipse looks like it 
>>has all I want but it will probably be another year before I 
>>will be able to be 100% over to AS3.
>>
>>___
>>Flashcoders@chattyfig.figleaf.com
>>To change your subscription options or search the archive:
>>http://chattyfig.figleaf.com/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] div over swf

2007-01-24 Thread Micky Hulse

Manolet Gmail wrote:

is there anyway to makes the div appears over the swf?


Use SWFobject, and try "opaque" wmode.

You might find my post on Sitepoint helpful:



Additionally, you will probably have to play around with 
relative/absolute positioning and z-index... but wmode="opaque" is 
definitely going to yield the results you are looking for.


Hth's,
Good luck,
Cheers,
Micky

--
 Wishlist: 
   Switch: 
 BCC?: 
   My: 
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] passing url variables to flash movie

2007-01-24 Thread Gustavo Duenas

thi is the message now is giving me

error!!

Operator '*=' must be followed by an operand


and this is the action script I'm using:

var video1 = nbc6;
var video = _root.video;
if (video1 *==* video){
  this.videoLoader.gotoAndPlay(2);
   }



the link in the text said;


fullpage.html?video=nbc6


Thanks


Gustavo

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

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


Re: [Flashcoders] AS3 Defining Objects

2007-01-24 Thread slangeberg

eval() hasn't been needed for some time (since bracket[] notation
introduced). Just need to remember that you can't type the properties of a
plain Object:

   var numItems:int = 10;

   var myObject:Object = new Object();

   for (var i:int=0; i wrote:


Hi list,



So I have a situation where I need to create multiple objects based on XML
data. Is there a way in AS3 that I can do something like this:



for (var i:int=0; ihttp://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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





--

: : ) Scott
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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: flash on osx thru parallels/bootcamp

2007-01-24 Thread Steven Sacks | BLITZ
TextEdit on Mac is hands down the best text editor for Mac, possibly on
both platforms.

It's learning curve beyond the basics can be steep but it is so powerful
and you can tightly integrate it with MTASC, SVN, etc., which makes it
worthwhile.  The benefits to your workflow are measurable.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] div over swf

2007-01-24 Thread Steven Sacks | BLITZ
Short answer: no.

Long answer: It's sort of possible, but it doesn't work in all browser
or on all platforms. So, unless you have total control of the delivery
platform, no.

Check out wmode="transparent" and see if that helps but no guarantees.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


RE: [Flashcoders] AS3 Defining Objects

2007-01-24 Thread Steven Sacks | BLITZ
You can't strict type items in a hash.  You never could, and you don't
need to.  You cast them as you pull them out of the hash.

myObject[i] = {};
myObject[i].prop = "Prop Value";
var someProp:String = myObject[i].prop;

Not to mention, casting as object is considered weak typing since an
object can be anything, so it should be avoided unless you are really
casting a object.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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: flash on osx thru parallels/bootcamp

2007-01-24 Thread jason van cleave

I have. I tried FlashDevelop a while back and am planning on giving it another 
go and with the AS3 stuff I have just seen. I like how Sepy works with 
native .flp files and had versions on both the mac and pc. (I also have a 
horrible addiction to it's autoformatting.)

After hearing quite a bit about it I got TextMate this weekend and started to 
set it up. Looks very clean and  good replacement for BBEdit but I was suprised 
with it that it didn't have ftp support built in (without transmit). 

I work on multiple machines and platforms and am dying for a consistent editor 
between them. Flex/Eclipse looks like it has all I want but it will probably be 
another year before I will be able to be 100% over to AS3.

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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: flash on osx thru parallels/bootcamp

2007-01-24 Thread Joeri van Oostveen

Is the mac version of SEPY so much different then the pc version, and
why do you keep using it on the pc?

Just wondering, as I'm still searching for the (near) perfect editor
for me. Now I'm using Eclipse, but it's quite a huge editor...
I couldn't get the hang of XCode, and I haven't find any good editors
yet.. (on macos x).

greetings
Joeri

On 1/24/07, jason van cleave <[EMAIL PROTECTED]> wrote:

I do some overly complicated worflow just to keep using SEPY. It goes like this.

Turn windows sharing on the the mac. Mount that share as a drive in Windows. I
put all my classes here. I don't have the problem of the IDE not seeing the
classes doing it this way.

Have Flash open on the Mac with all the correct fonts for the project. I edit
all my classes in SEPY/PC and hop over to the mac to compile.

VirtueDesktop is great for this, allowing me to switch back and forth between
platforms running fullscreen:

http://www.macupdate.com/info.php/id/16530

Sharepoints is great for setting up multiple shares on the mac:
http://www.versiontracker.com/dyn/moreinfo/macosx/12512



I use a similiar process to publish to the mac's Sites folder allowing me to
test through a browser on both the mac and pc.

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] passing url variables to flash movie

2007-01-24 Thread Glen Pike

Hi,

   Apologies for the last email - overexcitable mouse finger...

   so.addVariable("video", getQueryParamValue("video"));

   ActionScript.

   // == for comparison!!
   if (video1 *==* video){
  this.videoLoader.gotoAndPlay(2);
   }
}
Gustavo Duenas wrote:
thanks man, I'm using swfobject to have my swf ...this would be 
greatbut if my libnk is

fullpage.html?video=nbc6

the so.addVariable("myvar" is video), getQueryParamValue("myurlvar" is 
nbc6) right?



and it is correct the code ffor the action script ?


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}



regards





On Jan 24, 2007, at 4:29 PM, Geoff Stearns wrote:


wow you are all making this much harder than it has to be.

If you use SWFObject to embed your swfs, it has a built in function 
that grabs vars from the url string.


an example:

var so = new SWFOBject("mymovie.swf", "mymovie", ...);
so.addVariable("myvar", getQueryParamValue("myurlvar"));
so.addVariable("myothervar", getQueryParamValue("myotherurlvar"));
so.write("target");

get it here:
http://blog.deconcept.com/swfobject/




On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many simple .asp 
examples on google)


look at the url then in flash i have sn and fe variables that will 
be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that 
whatever.com/flash.swf?var1=value1&var2=value2&varn=valuen (its ugly 
but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I use 
this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=$_GET['fe']; ?>"> 

...
  
  
WIDTH="100%" HEIGHT="100%" NAME="voila" ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the
archive:


http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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






 


Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


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

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




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

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


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

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


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the

Re: [Flashcoders] passing url variables to flash movie

2007-01-24 Thread Glen Pike

so.addVariable("myvar" is video)

Gustavo Duenas wrote:
thanks man, I'm using swfobject to have my swf ...this would be 
greatbut if my libnk is

fullpage.html?video=nbc6

the so.addVariable("myvar" is video), getQueryParamValue("myurlvar" is 
nbc6) right?



and it is correct the code ffor the action script ?


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}



regards





On Jan 24, 2007, at 4:29 PM, Geoff Stearns wrote:


wow you are all making this much harder than it has to be.

If you use SWFObject to embed your swfs, it has a built in function 
that grabs vars from the url string.


an example:

var so = new SWFOBject("mymovie.swf", "mymovie", ...);
so.addVariable("myvar", getQueryParamValue("myurlvar"));
so.addVariable("myothervar", getQueryParamValue("myotherurlvar"));
so.write("target");

get it here:
http://blog.deconcept.com/swfobject/




On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many simple .asp 
examples on google)


look at the url then in flash i have sn and fe variables that will 
be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that 
whatever.com/flash.swf?var1=value1&var2=value2&varn=valuen (its ugly 
but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I use 
this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=$_GET['fe']; ?>"> 

...
  
  
WIDTH="100%" HEIGHT="100%" NAME="voila" ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the
archive:


http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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






 


Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


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

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




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

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


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

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


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

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



Gus

[Flashcoders] div over swf

2007-01-24 Thread Manolet Gmail

Hi, i building a page, i make some publicity on flash and i use a div
for the loading screen...

the problem is that the flash appears over the div...

is there anyway to makes the div appears over the swf?

sorry my english.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] AS3 Defining Objects

2007-01-24 Thread Eric Lee
Hi list,

 

So I have a situation where I need to create multiple objects based on XML
data. Is there a way in AS3 that I can do something like this:

 

for (var i:int=0; ihttp://chattyfig.figleaf.com/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] passing url variables to flash movie

2007-01-24 Thread Gustavo Duenas
thanks man, I'm using swfobject to have my swf ...this would be  
greatbut if my libnk is

fullpage.html?video=nbc6

the so.addVariable("myvar" is video), getQueryParamValue("myurlvar"  
is nbc6) right?



and it is correct the code ffor the action script ?


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}



regards





On Jan 24, 2007, at 4:29 PM, Geoff Stearns wrote:


wow you are all making this much harder than it has to be.

If you use SWFObject to embed your swfs, it has a built in function  
that grabs vars from the url string.


an example:

var so = new SWFOBject("mymovie.swf", "mymovie", ...);
so.addVariable("myvar", getQueryParamValue("myurlvar"));
so.addVariable("myothervar", getQueryParamValue("myotherurlvar"));
so.write("target");

get it here:
http://blog.deconcept.com/swfobject/




On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many simple .asp  
examples on google)


look at the url then in flash i have sn and fe variables that will  
be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that whatever.com/flash.swf? 
var1=value1&var2=value2&varn=valuen (its ugly but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I  
use this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=print $_GET['fe']; ?>"> 

...
   
 VALUE=#FF> quality=high bgcolor=#FF  WIDTH="100%" HEIGHT="100%"  
NAME="voila" ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the
archive:


http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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






__ 
__

Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


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

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




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

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


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

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


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

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

RE: [Flashcoders] Demystify the Flash player installation & updating for me

2007-01-24 Thread Merrill, Jason
Thanks John, that makes sense.  Appreciate the info.

Jason Merrill
Bank of America 
Learning & Organizational Effectiveness
 
 
 
 
 
 

>>-Original Message-
>>From: [EMAIL PROTECTED] 
>>[mailto:[EMAIL PROTECTED] On Behalf 
>>Of John Dowdell
>>Sent: Wednesday, January 24, 2007 4:24 PM
>>To: Flashcoders mailing list
>>Subject: Re: [Flashcoders] Demystify the Flash player 
>>installation & updating for me
>>
>>Merrill, Jason wrote:
>>> How does the Flash autoupdate work?  Never quite understood 
>>that.  I 
>>> ran the uninstaller, went to a Web page with the adobe 
>>player, and it 
>>> seems to instantly have the Flash player installed back in 
>>again - so 
>>> I assumed it was the autoupdater  - unless the uninstaller I ran 
>>> silently failed or something...
>>
>>If you're in Internet Explorer, then you may need to restart 
>>the system to actually complete the removal of an ActiveX 
>>Control... that's the way the Microsoft architecture works, 
>>and this might be the cause of this part of the description.
>>
>>The update mechanism itself is a notification service -- just 
>>lets you know that a new version is available -- doesn't 
>>install without your express permission.
>>http://www.macromedia.com/support/documentation/en/flashplayer
>>/help/help10.html
>>
>>
>>> I cannot see my Flash player 9 object like my co-worker can 
>>by going 
>>> to Internet Explorer 6:Tools > Settings> Internet Options > View 
>>> Objects.
>>
>>I'm not good on this part, sorry... I keep Internet Explorer 
>>installed but I'm not sure what they expose where, or how 
>>different installations might show things in different 
>>interfaces. Maybe someone else has a hypothesis on this part...?
>>
>>jd
>>
>>
>>
>>
>>
>>-- 
>>John Dowdell . Adobe Developer Support . San Francisco CA USA
>>Weblog: http://weblogs.macromedia.com/jd
>>Aggregator: http://weblogs.macromedia.com/mxna
>>Technotes: http://www.macromedia.com/support/
>>Spam killed my private email -- public record is best, thanks.
>>___
>>Flashcoders@chattyfig.figleaf.com
>>To change your subscription options or search the archive:
>>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>
>>Brought to you by Fig Leaf Software
>>Premier Authorized Adobe Consulting and Training
>>http://www.figleaf.com
>>http://training.figleaf.com
>>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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: flash on osx thru parallels/bootcamp

2007-01-24 Thread Steven Sacks | BLITZ
Have you tried FlashDevelop for Windows or TextMate for Mac?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] passing url variables to flash movie

2007-01-24 Thread Thomas Fowler

Was wondering when Geoff would chime in on that ;)

- Original Message -
From: "Geoff Stearns" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Wednesday, January 24, 2007 3:29 PM
Subject: Re: [Flashcoders] passing url variables to flash movie


wow you are all making this much harder than it has to be.

If you use SWFObject to embed your swfs, it has a built in function  
that grabs vars from the url string.


an example:

var so = new SWFOBject("mymovie.swf", "mymovie", ...);
so.addVariable("myvar", getQueryParamValue("myurlvar"));
so.addVariable("myothervar", getQueryParamValue("myotherurlvar"));
so.write("target");

get it here:
http://blog.deconcept.com/swfobject/




On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many simple .asp  
examples on google)


look at the url then in flash i have sn and fe variables that will  
be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that whatever.com/flash.swf? 
var1=value1&var2=value2&varn=valuen (its ugly but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I use  
this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=print $_GET['fe']; ?>"> 

...
   
 VALUE=#FF> bgcolor=#FF  WIDTH="100%" HEIGHT="100%" NAME="voila"  
ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the
archive:


http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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






___ 
_

Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


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

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




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

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


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

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


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

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


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

Brought to you by Fig Leaf Soft

Re: [Flashcoders] passing url variables to flash movie

2007-01-24 Thread Gustavo Duenas

and which is the code to read those in flash...actionscript I mean.


Regards


Gustavo
On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many simple .asp  
examples on google)


look at the url then in flash i have sn and fe variables that will  
be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that whatever.com/flash.swf? 
var1=value1&var2=value2&varn=valuen (its ugly but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I use  
this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=print $_GET['fe']; ?>"> 

...
   
 VALUE=#FF> bgcolor=#FF  WIDTH="100%" HEIGHT="100%" NAME="voila"  
ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the
archive:


http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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






___ 
_

Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


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

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




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

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


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

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





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

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


Re: [Flashcoders] passing url variables to flash movie

2007-01-24 Thread Geoff Stearns

wow you are all making this much harder than it has to be.

If you use SWFObject to embed your swfs, it has a built in function  
that grabs vars from the url string.


an example:

var so = new SWFOBject("mymovie.swf", "mymovie", ...);
so.addVariable("myvar", getQueryParamValue("myurlvar"));
so.addVariable("myothervar", getQueryParamValue("myotherurlvar"));
so.write("target");

get it here:
http://blog.deconcept.com/swfobject/




On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many simple .asp  
examples on google)


look at the url then in flash i have sn and fe variables that will  
be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that whatever.com/flash.swf? 
var1=value1&var2=value2&varn=valuen (its ugly but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I use  
this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=print $_GET['fe']; ?>"> 

...
   
 VALUE=#FF> bgcolor=#FF  WIDTH="100%" HEIGHT="100%" NAME="voila"  
ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the
archive:


http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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






___ 
_

Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


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

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




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

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


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

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


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

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


Re: [Flashcoders] Demystify the Flash player installation & updating for me

2007-01-24 Thread John Dowdell

Merrill, Jason wrote:

How does the Flash autoupdate work?  Never quite understood that.  I ran
the uninstaller, went to a Web page with the adobe player, and it seems
to instantly have the Flash player installed back in again - so I
assumed it was the autoupdater  - unless the uninstaller I ran silently
failed or something...


If you're in Internet Explorer, then you may need to restart the system 
to actually complete the removal of an ActiveX Control... that's the way 
the Microsoft architecture works, and this might be the cause of this 
part of the description.


The update mechanism itself is a notification service -- just lets you 
know that a new version is available -- doesn't install without your 
express permission.

http://www.macromedia.com/support/documentation/en/flashplayer/help/help10.html



I cannot see my Flash player 9 object like my co-worker can by
going to Internet Explorer 6:Tools > Settings> Internet Options > View
Objects.


I'm not good on this part, sorry... I keep Internet Explorer installed 
but I'm not sure what they expose where, or how different installations 
might show things in different interfaces. Maybe someone else has a 
hypothesis on this part...?


jd





--
John Dowdell . Adobe Developer Support . San Francisco CA USA
Weblog: http://weblogs.macromedia.com/jd
Aggregator: http://weblogs.macromedia.com/mxna
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


Re: [Flashcoders] passing url variables to flash movie

2007-01-24 Thread iashido
dont know in asp (but on my prev research i found many simple .asp  
examples on google)


look at the url then in flash i have sn and fe variables that will be  
filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that whatever.com/flash.swf? 
var1=value1&var2=value2&varn=valuen (its ugly but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I use  
this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=$_GET['fe']; ?>"> 

...
   
   
WIDTH="100%" HEIGHT="100%" NAME="voila" ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the
archive:


http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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






 


Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


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

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




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

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


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

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


RE: [Flashcoders] Demystify the Flash player installation & updating for me

2007-01-24 Thread Merrill, Jason
yeah, same permissions.  Uninstalling and re-installing didn't seem to
fix the issue though. I used the latest Adobe uninstaller.  Thanks for
the info though!

How does the Flash autoupdate work?  Never quite understood that.  I ran
the uninstaller, went to a Web page with the adobe player, and it seems
to instantly have the Flash player installed back in again - so I
assumed it was the autoupdater  - unless the uninstaller I ran silently
failed or something...

Jason Merrill
Bank of America 
Learning & Organizational Effectiveness
 
 
 
 
 
 

>>-Original Message-
>>From: [EMAIL PROTECTED] 
>>[mailto:[EMAIL PROTECTED] On Behalf 
>>Of Andy Herrman
>>Sent: Wednesday, January 24, 2007 3:48 PM
>>To: Flashcoders mailing list
>>Subject: Re: [Flashcoders] Demystify the Flash player 
>>installation & updating for me
>>
>>Do you and your coworker have the same permissions on your machine?
>>For instance, if your coworker is an administrator but you're 
>>a restricted user that could explain different installations.
>>
>>My first try would be to completely uninstall Flash and then 
>>reinstall it (I had some really weird problem with flash a 
>>few months ago where I had to do this 4 or 5 times before it worked).
>>
>>Trying it myself, Flash does not appear in the Downloaded 
>>Program Files directory (where the "View Objects..." thing 
>>takes you).  The file IE is using is at:
>>C:\WINDOWS\system32\Macromed\Flash\Flash8.ocx
>>
>>On my other machine with Flash 9, the ocx file is in the same 
>>place (just called Flash9b.ocx), though I do have a 
>>"Shockwave Flash Object"
>>entry in the downloaded program files directory.
>>
>>The only difference between these two machines is that on the 
>>Flash8 one I'm not an admin (Debugger User), while on the 
>>other one I am.
>>
>>   -Andy
>>
>>
>>
>>On 1/24/07, Merrill, Jason <[EMAIL PROTECTED]> wrote:
>>> OK, so something I have never understood about Flash player 
>>> installation and Internet Explorer.
>>>
>>> I have a co-worker who has 9,0,28,0 installed, verified in Internet 
>>> Explorer 6: Tools > Settings> Internet Options > View Objects.
>>> I have 9,0,28,0 installed, verfied by going to:
>>> http://www.macromedia.com/software/flash/about/ and seeing 
>>the version 
>>> shown (unless that site is lying to me).
>>> However, I cannot see my Flash player 9 object like my 
>>co-worker can 
>>> by going to Internet Explorer 6:Tools > Settings> Internet 
>>Options > 
>>> View Objects.
>>> I can however see Flash sites just fine (including Flash 9 
>>Flex sites) 
>>> as can my co-worker.
>>>
>>> Why is that?  The issue for us is we have a third party 
>>Flash player 
>>> wrapper (Ice player) running in the browser, and the files that run 
>>> with that work fine for my co-worker, but not for me.  We 
>>seen to have 
>>> the same Flash player installation, just not in the same location? 
>>> This seems to be why the third party Flash player wrapper (both my 
>>> co-worker and I have the same install, there is only one version of 
>>> it) does not work for me but works for my co-worker.
>>>
>>> Can Flash player get installed in a different location?
>>>
>>> Also, if you have time for a bonus question, how does Adobe's Flash 
>>> player auto-update work?  How can Adobe update the Flash player 
>>> without my permission?  Is auto-update somehow related to 
>>my issue?  I 
>>> have also seen times on Adobe's site where it indicated I 
>>did not have 
>>> the Flash player installed, even though I did and could view other 
>>> Flash sites just fine.  Is my registry just hosed or 
>>something?  How 
>>> can I clean up this mess?
>>>
>>> Thanks,
>>>
>>> Jason Merrill
>>> Bank of America
>>> Learning & Organizational Effectiveness
>>>
>>>
>>>
>>>
>>>
>>>
>>> ___
>>> Flashcoders@chattyfig.figleaf.com
>>> To change your subscription options or search the archive:
>>> http://chattyfig.figleaf.com/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] passing url variables to flash movie

2007-01-24 Thread Gustavo Duenas
I don't  think this guys have the phpdo you know how can I use  
this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=$_GET['fe']; ?>"> 

...
   
   
WIDTH="100%" HEIGHT="100%" NAME="voila" ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the
archive:


http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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






_ 
___

Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


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

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




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

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


Re: [Flashcoders] Re: swfObject+externalinterface

2007-01-24 Thread James Dean

external interface is not a part of flash player 7. needs to be
published in 8 and have the sfwObject embed it as 8

On 1/24/07, jason van cleave <[EMAIL PROTECTED]> wrote:

Your swfObject code says that you are targeting 7 - Are you publishing for 7?

var so = new SWFObject("display.swf", "mymovie", "200", "100", "7",

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Demystify the Flash player installation & updating for me

2007-01-24 Thread Andy Herrman

Do you and your coworker have the same permissions on your machine?
For instance, if your coworker is an administrator but you're a
restricted user that could explain different installations.

My first try would be to completely uninstall Flash and then reinstall
it (I had some really weird problem with flash a few months ago where
I had to do this 4 or 5 times before it worked).

Trying it myself, Flash does not appear in the Downloaded Program
Files directory (where the "View Objects..." thing takes you).  The
file IE is using is at:
C:\WINDOWS\system32\Macromed\Flash\Flash8.ocx

On my other machine with Flash 9, the ocx file is in the same place
(just called Flash9b.ocx), though I do have a "Shockwave Flash Object"
entry in the downloaded program files directory.

The only difference between these two machines is that on the Flash8
one I'm not an admin (Debugger User), while on the other one I am.

  -Andy



On 1/24/07, Merrill, Jason <[EMAIL PROTECTED]> wrote:

OK, so something I have never understood about Flash player installation
and Internet Explorer.

I have a co-worker who has 9,0,28,0 installed, verified in Internet
Explorer 6: Tools > Settings> Internet Options > View Objects.
I have 9,0,28,0 installed, verfied by going to:
http://www.macromedia.com/software/flash/about/ and seeing the version
shown (unless that site is lying to me).
However, I cannot see my Flash player 9 object like my co-worker can by
going to Internet Explorer 6:Tools > Settings> Internet Options > View
Objects.
I can however see Flash sites just fine (including Flash 9 Flex sites)
as can my co-worker.

Why is that?  The issue for us is we have a third party Flash player
wrapper (Ice player) running in the browser, and the files that run with
that work fine for my co-worker, but not for me.  We seen to have the
same Flash player installation, just not in the same location? This
seems to be why the third party Flash player wrapper (both my co-worker
and I have the same install, there is only one version of it) does not
work for me but works for my co-worker.

Can Flash player get installed in a different location?

Also, if you have time for a bonus question, how does Adobe's Flash
player auto-update work?  How can Adobe update the Flash player without
my permission?  Is auto-update somehow related to my issue?  I have also
seen times on Adobe's site where it indicated I did not have the Flash
player installed, even though I did and could view other Flash sites
just fine.  Is my registry just hosed or something?  How can I clean up
this mess?

Thanks,

Jason Merrill
Bank of America
Learning & Organizational Effectiveness






___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] passing url variables to flash movie

2007-01-24 Thread Gustavo Duenas

mind you tell me how, I'm out of my league...


Thanks


Gustavo
On Jan 24, 2007, at 3:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the
archive:


http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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






__ 
__

Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] passing url variables to flash movie

2007-01-24 Thread iashido

sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=$_GET['fe']; ?>"> 

...
   
   
WIDTH="100%" HEIGHT="100%" NAME="voila" ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the
archive:


http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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






__ 
__

Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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: flash on osx thru parallels/bootcamp

2007-01-24 Thread jason van cleave
I do some overly complicated worflow just to keep using SEPY. It goes like this.

Turn windows sharing on the the mac. Mount that share as a drive in Windows. I 
put all my classes here. I don't have the problem of the IDE not seeing the 
classes doing it this way.

Have Flash open on the Mac with all the correct fonts for the project. I edit 
all my classes in SEPY/PC and hop over to the mac to compile.

VirtueDesktop is great for this, allowing me to switch back and forth between 
platforms running fullscreen:

http://www.macupdate.com/info.php/id/16530

Sharepoints is great for setting up multiple shares on the mac:
http://www.versiontracker.com/dyn/moreinfo/macosx/12512



I use a similiar process to publish to the mac's Sites folder allowing me to 
test through a browser on both the mac and pc.

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Transforming a MovieClip instance to monochrome

2007-01-24 Thread Stuart Schoneveld
To completely desaturate a display object you can do:

var t:Number = 1/3;
var c = new ColorMatrixFilter([t, t, t, 0, 0,
   t, t, t, 0, 0,
   t, t, t, 0, 0,
   0, 0, 0, 1, 0]);
displayObject.filters = [c];


HTH :)

Stuart

-Original Message-
From: Andrew Kirkham [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 24, 2007 10:24 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Transforming a MovieClip instance to monochrome

Is there a way of transforming a coloured MovieClip instance to monochrome
(specifically grey scale) at run time? I want it to indicate that a control
is disabled.

It seems a fairly elementary thing to do, so possibly I'm overlooking
something quite obvious.

The ColorTransform class seems a likely method, but I'm not very
knowledgable about the intricacies manipulating RGB values, and although
I've spent some time adjusting various values I haven't acheived the result
I want.

Regards
Andy KIrkham
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] passing url variables to flash movie

2007-01-24 Thread Joshua Sera
You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:

> Hi Guys, I'm really concerned for this, Iknow this
> might be easy for  
> you, but I'm knocking my head against the wall.
> This is the code in the action script:
> 
> 
> var video1 = nbc6;
> var video = _root.video;
> if (video1 = video){
>   tellTarget(this.videoLoader){
>   gotoAndPlay(2);
>   }
> }
> 
> 
> and this is the link in the text message:
> 
> fullpage.html?video=nbc6
> 
> I'd appreciate your help.
> 
> 
> 
> Thanks
> 
> 
> Gustavo Duenas
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the
> archive:
>
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
> 



 

Looking for earth-friendly autos? 
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Q: Flash e-card xml vs remoting/AMFPHP

2007-01-24 Thread moveup
Hi
Working on a flash e-card that involves saving image properties(scale, 
rotation, x,y cordinates) as well as a small amount of text.

I was wondering if using remoting/AMFPHP offers any advantages over simply 
posting an XML object?

Thanks
Jim Bachalo

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

"...all improvisation is life in search of a style."
 - Bruce Mau,'LifeStyle'
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


[Flashcoders] passing url variables to flash movie

2007-01-24 Thread Gustavo Duenas
Hi Guys, I'm really concerned for this, Iknow this might be easy for  
you, but I'm knocking my head against the wall.

This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Demystify the Flash player installation & updating for me

2007-01-24 Thread Merrill, Jason
OK, so something I have never understood about Flash player installation
and Internet Explorer.

I have a co-worker who has 9,0,28,0 installed, verified in Internet
Explorer 6: Tools > Settings> Internet Options > View Objects.
I have 9,0,28,0 installed, verfied by going to:
http://www.macromedia.com/software/flash/about/ and seeing the version
shown (unless that site is lying to me).
However, I cannot see my Flash player 9 object like my co-worker can by
going to Internet Explorer 6:Tools > Settings> Internet Options > View
Objects.
I can however see Flash sites just fine (including Flash 9 Flex sites)
as can my co-worker.

Why is that?  The issue for us is we have a third party Flash player
wrapper (Ice player) running in the browser, and the files that run with
that work fine for my co-worker, but not for me.  We seen to have the
same Flash player installation, just not in the same location? This
seems to be why the third party Flash player wrapper (both my co-worker
and I have the same install, there is only one version of it) does not
work for me but works for my co-worker. 

Can Flash player get installed in a different location?

Also, if you have time for a bonus question, how does Adobe's Flash
player auto-update work?  How can Adobe update the Flash player without
my permission?  Is auto-update somehow related to my issue?  I have also
seen times on Adobe's site where it indicated I did not have the Flash
player installed, even though I did and could view other Flash sites
just fine.  Is my registry just hosed or something?  How can I clean up
this mess?  

Thanks,

Jason Merrill
Bank of America 
Learning & Organizational Effectiveness
 
 
 
 
 
 
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


Re: [Flashcoders] AS3 properties woes

2007-01-24 Thread Derek Vadneau
You can put code before super(). If you intend to use any super methods 
then you definitely need to call super() beforehand. But if you want to 
call a method of your sub class before super(), it does work.

.. now I don't necessarily agree with doing that, but I guess it depends 
on what you need to accomplish.


Derek Vadneau

- Original Message - 
From: "Steven Sacks | BLITZ" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Wednesday, January 24, 2007 1:52 PM
Subject: RE: [Flashcoders] AS3 properties woes


I don't know about AS3 (and I can't imagine this is different from AS2)
but you cannot put any code before super() in a constructor.

super() must be the first line of code in a constructor.

You should pass the labelClass value to the super constructor (watch
your every move, super constructor).

super("date");

and in your parent

function ClassName(lc:String)
{
labelClass = lc;
}




___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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: swfObject+externalinterface

2007-01-24 Thread jason van cleave
Your swfObject code says that you are targeting 7 - Are you publishing for 7?

var so = new SWFObject("display.swf", "mymovie", "200", "100", "7", 

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

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


RE: [Flashcoders] AS3 properties woes

2007-01-24 Thread Stuart Schoneveld
This behavior has changed in AS3, you can now call super() at any point in
the constructor. 

-Original Message-
From: Steven Sacks | BLITZ [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 24, 2007 7:53 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] AS3 properties woes

I don't know about AS3 (and I can't imagine this is different from AS2)
but you cannot put any code before super() in a constructor.  

super() must be the first line of code in a constructor.

You should pass the labelClass value to the super constructor (watch
your every move, super constructor).

super("date");

and in your parent 

function ClassName(lc:String) 
{
labelClass = lc;
}


 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf 
> Of Keith Salisbury
> Sent: Wednesday, January 24, 2007 6:32 AM
> To: Flashcoders mailing list
> Subject: Re: [Flashcoders] AS3 properties woes
> 
> Thanks guys, its was actually my fault,
> 
> the example i gave was a little simpler than my real code, 
> and i discovered i was calling setTitle from inside the super 
> construtor, so obviously if i dont set my subclass variable 
> before calling "super()" it wont use that variable.
> 
> by changing the subclass constructor to this:
> 
> 
> public function DateMarker ()
> {
>labelClass = "date"
>super();
> }
> 
> I have the desired functionalitythink i probably need to 
> spend some time refactoring tho.
> 
> The example i've given (aside from Petro's astute comment) 
> should actually work as expected, not as i described!! Sorry 
> for the distractions!!!
> 
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] AS3 properties woes

2007-01-24 Thread Steven Sacks | BLITZ
I don't know about AS3 (and I can't imagine this is different from AS2)
but you cannot put any code before super() in a constructor.  

super() must be the first line of code in a constructor.

You should pass the labelClass value to the super constructor (watch
your every move, super constructor).

super("date");

and in your parent 

function ClassName(lc:String) 
{
labelClass = lc;
}


 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf 
> Of Keith Salisbury
> Sent: Wednesday, January 24, 2007 6:32 AM
> To: Flashcoders mailing list
> Subject: Re: [Flashcoders] AS3 properties woes
> 
> Thanks guys, its was actually my fault,
> 
> the example i gave was a little simpler than my real code, 
> and i discovered i was calling setTitle from inside the super 
> construtor, so obviously if i dont set my subclass variable 
> before calling "super()" it wont use that variable.
> 
> by changing the subclass constructor to this:
> 
> 
> public function DateMarker ()
> {
>labelClass = "date"
>super();
> }
> 
> I have the desired functionalitythink i probably need to 
> spend some time refactoring tho.
> 
> The example i've given (aside from Petro's astute comment) 
> should actually work as expected, not as i described!! Sorry 
> for the distractions!!!
> 
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] passing url vars to a movieclip inside other movieclip

2007-01-24 Thread Gustavo Duenas


I have two movies:
one is   the main movie   which loads the second movie that  loads  a  
text file which has a

link:

movie2.swf?video=nbc6

I know how to read the data with _root.video but I'd like to know how  
can read it inside the main movie and inside the html page.



Regards


Gustavo Duenas
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Getting Frames Per Second

2007-01-24 Thread Steven Sacks | BLITZ
> Is there a way to know the original fps of a loaded swf? I 
> mean, the fps to which it was compiled to, not the actual framerate?

Sure, decompile it.  :)

http://www.sothink.com/

FYI, you can set Flash to 24fps and runtime framerate calculators will
show it's running 35-38 fps.  The player ain't perfect.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] scrolling a randomly generated field function resultHELP PLEASE

2007-01-24 Thread Steven Sacks | BLITZ
Check this out

http://www.kirupa.com/developer/actionscript/zooming.htm

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Transforming a MovieClip instance to monochrome

2007-01-24 Thread Andrew J Kirkham

That looks like it!

Thanks

Andy


- Original Message - 
From: "Rákos Attila" <[EMAIL PROTECTED]>

To: "Flashcoders mailing list" 
Sent: Wednesday, January 24, 2007 11:50 AM
Subject: Re: [Flashcoders] Transforming a MovieClip instance to monochrome




ColorMatrixFilter is your friend :)

 Attila

AK> Is there a way of transforming a coloured MovieClip instance to
AK> monochrome (specifically grey scale) at run time? I want it to
AK> indicate that a control is disabled.

AK> It seems a fairly elementary thing to do, so possibly I'm
AK> overlooking something quite obvious.

AK> The ColorTransform class seems a likely method, but I'm not very
AK> knowledgable about the intricacies manipulating RGB values, and
AK> although I've spent some time adjusting various values I haven't
AK> acheived the result I want.


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

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



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

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


Re: [Flashcoders] flash on osx thru parallels/bootcamp

2007-01-24 Thread robert

Thank you for your tips.

I'm sorry I think I wasn't clear.

Initially I ran a .swf in Parallels and the performance was  
incredible which ignited my interest to what else Parallels could do.  
I was thinking of using the Flash IDE for PC on my Mac via Parallels,  
that way the OS X doesn't need to invoke Rosetta. So while waiting  
for comments last night I installed Flash IDE for PC (trial version)  
on my Parallels and it does fell pretty snappy.


Only problem so far is my Parallels didn't have some projects' fonts  
installed and I needed to copy over the class files because the IDE  
couldn't find them on the Mac/PC shared directory. At this point I've  
only attempted to publish some projects but not start up anything new.


I was just curious if anyone else had done that and had any comments.



On Jan 24, 2007, at 6:23 AM, Andy Herrman wrote:


I haven't tried it at all, so I may be way off here, but:

If you're having performance problems, try playing around with the VM
settings in Parallels.  Specifically, take a look at how much RAM
parallels is giving to the VM.  If that value is too low then the
virtual machine won't have enough RAM to use, so it will end up
thrashing (paging stuff back and forth to disk).  This can cause
serious performance problems.  Try upping the RAM and see if that
helps.

I assume you're running XP in the virtual machine.  I want to say you
should give it at least 512MB of ram, though if you're running a lot
of things other than Parallels and only have a gig or so of RAM in
your machine then you may not have that much to spare.  You'll have to
experiment.

  -Andy


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] LocalConnection slow ...

2007-01-24 Thread Arindam Dhar
Andy,
   
  U guessed it right, simaltaneous code processing do occur in this case.
   
  app1 --sends to -> master swf --broadcasts to--> app2.
  |-- broadcasts to > app3
   
  When app1 sends out data, lot of codes get executed simaltaneously in app1, 
app2 and app3...
   
  Flash's threading model could be the explanation...
   
  thanks,
   
  Arindam
   
   
  
Andy Herrman <[EMAIL PROTECTED]> wrote:
  I've noticed delays in my application, but I'm not sure if they're the
same as yours.

The delays I've seen seem to stem from Flash's threading model
(specifically, being single-threaded). Depending on the timing of the
messages you're sending/receiving, especially if you have a lot of
movies, sometimes the process one movie is doing will delay the
handling/receipt of messages by another movie. That might not be
relevant here, but it's possible. When the delay happens, are any of
your movies doing any kind of processing?

-Andy

On 1/24/07, Arindam Dhar wrote:
> hi,
>
> I have observed a slight delay in data transfer in LocalConnection.I have 
> several flash applications in IE browser, fed with data by a master swf 
> through broadcasting. A data change in one window is broadcasted to other 
> windows through the master swf using LocalConnection().Sometimes data 
> transfer is very fast and at times very slow, as slow as a second or two.The 
> files are published for FP6.
>
> Has anyone encountered similar problem, any explanation or answer?
>
> regards,
>
> Arindam
>
>
> -
>
> Real people. Real questions. Real answers. Share what you know.
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/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



-
 Yahoo! Movies - Search movie info and celeb profiles and photos.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] LocalConnection slow ...

2007-01-24 Thread Arindam Dhar


Andy Herrman <[EMAIL PROTECTED]> wrote:  I've noticed delays in my application, 
but I'm not sure if they're the
same as yours.

The delays I've seen seem to stem from Flash's threading model
(specifically, being single-threaded). Depending on the timing of the
messages you're sending/receiving, especially if you have a lot of
movies, sometimes the process one movie is doing will delay the
handling/receipt of messages by another movie. That might not be
relevant here, but it's possible. When the delay happens, are any of
your movies doing any kind of processing?

-Andy

On 1/24/07, Arindam Dhar wrote:
> hi,
>
> I have observed a slight delay in data transfer in LocalConnection.I have 
> several flash applications in IE browser, fed with data by a master swf 
> through broadcasting. A data change in one window is broadcasted to other 
> windows through the master swf using LocalConnection().Sometimes data 
> transfer is very fast and at times very slow, as slow as a second or two.The 
> files are published for FP6.
>
> Has anyone encountered similar problem, any explanation or answer?
>
> regards,
>
> Arindam
>
>
> -
>
> Real people. Real questions. Real answers. Share what you know.
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/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



-
 
 Real people. Real questions. Real answers. Share what you know.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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 about video loading from a text file

2007-01-24 Thread Gustavo Duenas
hi, I've been trying to do this, tell me if I'm wrong, I just trying  
to read a video file, in a component , whose order comes from a text  
file, redered as html.


the code for the video is:


var video1 = nbc6;

if (video1 == URL.video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}

and the link in the txt file says:

news.swf?video=nbc6


it doesn't load the video when I execute the link, I does load the  
video in the beginning of the movie, and when I write quotation marks in
the URL.video like this "URL.video" nothing happens, some ideas, I'd  
appreciate your help.




Gustavo Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS LLC
1225 w. Beaver St. suite 119
Jacksonville, FL 32204
904 . 2650330
www.leftandrightsolutions.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] scrolling a randomly generated field function result HELP PLEASE

2007-01-24 Thread Paul V.
Hey, I am new here.  So bare with me.  I am working on a globe portion of my 
file I want the globe to look like it is turning. so I randomly generated green 
islands on a blue background.
Just looks like a short segment of a circle blue with green islands on it. 


Since I wanted to continuously generate islands as I scroll, I chose random.  
The code that I used: prototype.loadIsland below (Works Just Fine).  What I 
want to do is take the island instances and scroll them towards to bottom of 
the screen and expand it so It looks like getting closer or flying towards a 
horizon from the air.  Use:

 island._xscale+=2;
 island._yscale+=1;
 island._y+=2;

 the only problem is that I want to run a function for all island instances 
after they are on   screen.  If you look at the code below, that means either 
setting a function to move them individually till they are off screen, or maybe 
with an array after they are all generated and moving the batch, and unloading 
them at a high enough y value (when they are off screen).
then reloading a version of the function with tighter placement parameters 
(smaller and on the horizon), and looping through the scroll function. For a 
constantly spinning globe.  I will share the code with anyone who helps me out 
on this.

Anyone Have any solutions or ideas that would work?


_global.islandClass=function(){};
island = new islandClass();

islandClass.prototype.loadIsland=function(){
 islandNum=1;
 for(i=251;i<=291;i++){ 
 attachMovie("island", "island"+islandNum, islandNum);  
//placing the mc, naming the instance and adding it to the level (islandNum).

 island=eval("island"+islandNum);
//generating an  instance for the object

 x=random(900);
 while(x<0 || x>800){x=random(900);}
 island._x=x;
//x parameters - keeping it on screen not sure if I need to do this.
 
 y=random(600);
 while(y<425 || y>500){ y=random(600);}
 island._y=y;
//y parameters - lower portion of screen

 scale=random(64);

islandNum++;}
}



Thank you!!
Paul V.


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] LocalConnection slow ...

2007-01-24 Thread Andy Herrman

I've noticed delays in my application, but I'm not sure if they're the
same as yours.

The delays I've seen seem to stem from Flash's threading model
(specifically, being single-threaded).  Depending on the timing of the
messages you're sending/receiving, especially if you have a lot of
movies, sometimes the process one movie is doing will delay the
handling/receipt of messages by another movie.  That might not be
relevant here, but it's possible.  When the delay happens, are any of
your movies doing any kind of processing?

  -Andy

On 1/24/07, Arindam Dhar <[EMAIL PROTECTED]> wrote:

hi,

  I have observed a slight delay in data transfer in LocalConnection.I have 
several flash applications in IE browser, fed with data by a master swf through 
broadcasting. A data change in one window is broadcasted to other windows 
through the master swf using LocalConnection().Sometimes data transfer is very 
fast and at times very slow, as slow as a second or two.The files are published 
for FP6.

  Has anyone encountered similar problem, any explanation or answer?

  regards,

  Arindam


-

 Real people. Real questions. Real answers. Share what you know.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] swfObject+externalinterface

2007-01-24 Thread Geoff Stearns
should be fine, do you have any other elements with the same id as  
your movie ("mymovie") or is your swf inside a form?




On Jan 24, 2007, at 6:57 AM, Andreas R wrote:

I'm having some trouble catching EI calls when using swfObject,  
anyone else got this working?



 This text is replaced by the Flash movie.


var so = new SWFObject("display.swf", "mymovie", "200", "100", "7", "#336699");
  function sayHello(){
   alert("hello");
  }
  so.write("flashcontent");


where display.swf has this:

testButton.onPress = function(){
   ExternalInterface.call("sayHello");
}
no go for me :(

- A
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] (no subject)

2007-01-24 Thread Gustavo Duenas
hi guys does anyone of you knows  how can I oder a swf ffile to read  
a video in a loader using the link in a text file , being read this  
as html?


using something like that , myfile.swf?video= .   or  
myMovie.html?video =..



I don't know guys this is way beyond my understand.






Regards


Gustavo Duenas

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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: SPAM-LOW: RE: [Flashcoders] AS3 properties woes

2007-01-24 Thread slangeberg

That's a part of OO design. What's the point of extension if the parent
constructor isn't called? You merely write your override logic in your
child's constructor, anyhow.

-Scott

On 1/24/07, Brandon Barkley <[EMAIL PROTECTED]> wrote:


If that's the case, that's a really stupid bit of functionality because
you can't completely override a constructor. I was not aware that AS did
it that way.

Derek Vadneau wrote:
> It happens because the compiler realizes you haven't called super() in
> your constructor and does it for you.
>
>
> Derek Vadneau
>
> - Original Message -
> From: "Petro Bochan" <[EMAIL PROTECTED]>
> To: "Flashcoders mailing list" 
> Sent: Wednesday, January 24, 2007 9:20 AM
> Subject: SPAM-LOW: RE: [Flashcoders] AS3 properties woes
>
>
> Brandon Barkley
>
>> Also not an AS3 expert, but I think Danny is wrong. The super function
>> is necessary to call the parent constructor.
>>
>
> Hi Brandon,
>
> I'm afraid u r wrong. Just try it out, the constructor IS being called
> once u extend the class.
>
> Cheers,
> Petro
>
>
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/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





--

: : ) Scott
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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: SPAM-LOW: RE: [Flashcoders] AS3 properties woes

2007-01-24 Thread Derek Vadneau
Programming ActionScript 3.0 > Overview of ActionScript Programming > 
Object-Oriented Programming in ActionScript > Classes

http://livedocs.macromedia.com/flex/2/docs/1842.html

"If the superclass constructor is not explicitly called, the compiler 
automatically inserts a call before the first statement in the constructor 
body."

You can call super() anywhere in your constructor (before or after other 
code), but if you leave it out, super() is called for you.


Derek Vadneau

- Original Message - 
From: "Brandon Barkley" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Wednesday, January 24, 2007 10:20 AM
Subject: Re: SPAM-LOW: RE: [Flashcoders] AS3 properties woes


If that's the case, that's a really stupid bit of functionality because
you can't completely override a constructor. I was not aware that AS did
it that way.



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] LocalConnection slow ...

2007-01-24 Thread Arindam Dhar
hi,
   
  I have observed a slight delay in data transfer in LocalConnection.I have 
several flash applications in IE browser, fed with data by a master swf through 
broadcasting. A data change in one window is broadcasted to other windows 
through the master swf using LocalConnection().Sometimes data transfer is very 
fast and at times very slow, as slow as a second or two.The files are published 
for FP6.
   
  Has anyone encountered similar problem, any explanation or answer?
   
  regards,
   
  Arindam


-
 
 Real people. Real questions. Real answers. Share what you know.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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: SPAM-LOW: RE: [Flashcoders] AS3 properties woes

2007-01-24 Thread Brandon Barkley
If that's the case, that's a really stupid bit of functionality because 
you can't completely override a constructor. I was not aware that AS did 
it that way.


Derek Vadneau wrote:
It happens because the compiler realizes you haven't called super() in 
your constructor and does it for you.



Derek Vadneau

- Original Message - 
From: "Petro Bochan" <[EMAIL PROTECTED]>

To: "Flashcoders mailing list" 
Sent: Wednesday, January 24, 2007 9:20 AM
Subject: SPAM-LOW: RE: [Flashcoders] AS3 properties woes


Brandon Barkley
  

Also not an AS3 expert, but I think Danny is wrong. The super function
is necessary to call the parent constructor.



Hi Brandon,

I'm afraid u r wrong. Just try it out, the constructor IS being called
once u extend the class.

Cheers,
Petro


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Combobox embed fonts PC/Mac problem

2007-01-24 Thread Chip Moeser

Still no go. But thanks. Just going to build our own combo box now.

Delfi Ramirez wrote:

Try ordinary marks. I mean not (") but (')

Delfí Ramírez i Ruiz


http://segonquart.blogspot.com



___ 
Copy addresses and emails from any email account to Yahoo! Mail - quick, easy and free. http://uk.docs.yahoo.com/trueswitch2.html

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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: SPAM-LOW: RE: [Flashcoders] AS3 properties woes

2007-01-24 Thread Derek Vadneau
It happens because the compiler realizes you haven't called super() in 
your constructor and does it for you.


Derek Vadneau

- Original Message - 
From: "Petro Bochan" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Wednesday, January 24, 2007 9:20 AM
Subject: SPAM-LOW: RE: [Flashcoders] AS3 properties woes


Brandon Barkley
> Also not an AS3 expert, but I think Danny is wrong. The super function
> is necessary to call the parent constructor.

Hi Brandon,

I'm afraid u r wrong. Just try it out, the constructor IS being called
once u extend the class.

Cheers,
Petro


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

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


Re: [Flashcoders] AS3 properties woes

2007-01-24 Thread Keith Salisbury

Thanks guys, its was actually my fault,

the example i gave was a little simpler than my real code, and i discovered
i was calling setTitle from inside the super construtor, so obviously if i
dont set my subclass variable before calling "super()" it wont use that
variable.

by changing the subclass constructor to this:


public function DateMarker ()
{
  labelClass = "date"
  super();
}

I have the desired functionalitythink i probably need to spend some time
refactoring tho.

The example i've given (aside from Petro's astute comment) should actually
work as expected, not as i described!! Sorry for the distractions!!!


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

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


RE: [Flashcoders] AS3 properties woes

2007-01-24 Thread Petro Bochan
Brandon Barkley
> Also not an AS3 expert, but I think Danny is wrong. The super function
> is necessary to call the parent constructor.

Hi Brandon,

I'm afraid u r wrong. Just try it out, the constructor IS being called
once u extend the class.

Cheers,
Petro

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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 osx thru parallels/bootcamp

2007-01-24 Thread Andy Herrman

I haven't tried it at all, so I may be way off here, but:

If you're having performance problems, try playing around with the VM
settings in Parallels.  Specifically, take a look at how much RAM
parallels is giving to the VM.  If that value is too low then the
virtual machine won't have enough RAM to use, so it will end up
thrashing (paging stuff back and forth to disk).  This can cause
serious performance problems.  Try upping the RAM and see if that
helps.

I assume you're running XP in the virtual machine.  I want to say you
should give it at least 512MB of ram, though if you're running a lot
of things other than Parallels and only have a gig or so of RAM in
your machine then you may not have that much to spare.  You'll have to
experiment.

  -Andy

On 1/23/07, robert <[EMAIL PROTECTED]> wrote:

Hi
I'm curious if anyone is using Flash IDE on OS X, but doing it thru
Parallels. I'm on a Mac Book Pro with 2.33 GHz core duos and it feels
like the same speed to publish on this or my old powerbook. I really
noticed a difference when I ran a swf (it was only the flash player
though). Just curious if I should alter my work style!
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


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

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


RE: [Flashcoders] Flash IE OCX error

2007-01-24 Thread Robert Chyko
I get the same thing from time to time, but it is very random and I have
not been able to narrow it down.  It is a rather rare occurrence for me,
so I have just been living with it.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Arindam
Dhar
Sent: Wednesday, January 24, 2007 4:37 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Flash IE OCX error


yes, i did reinstall numerous times, not helping :-(

Geoff Stearns <[EMAIL PROTECTED]> wrote:  have you tried uninstalling
the plugin (using the adobe uninstaller) 
and then reinstalling it?


On Jan 22, 2007, at 3:36 AM, Arindam Dhar wrote:

> hi,
>
> I have encountered flash ocx error many times which just appears
> without any hint after which I have no other option but to close 
> the relevent browser.
>
> This is what exactly i get in the error popup,
>
> Internet explorer encountered a problem with addon and needs to
> close.
> The following add-on running when this problem occured
> file : Flash9.ocx
> company : adobe systems incorporated
> Description : Adobe flash player 9
>
> Has anyone faced this or has any explanation and solution?
>
> thanks,
>
> Arindam
>
>
>
> 
> -
>
> Real people. Real questions. Real answers. Share what you know. 
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive: 
> http://chattyfig.figleaf.com/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



-
 Yahoo! Movies - Search movie info and celeb profiles and photos.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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: Re[8]: [Flashcoders] External libraries

2007-01-24 Thread Andy Herrman

It might not be MTASC itself, but something that FlashDevelop is doing
with MTASC that caused it (an option I couldn't find or something).
Either way, setting it at the beginning of my script fixes it, so it
doesn't really matter anymore. :)

  -Andy

On 1/24/07, Rákos Attila <[EMAIL PROTECTED]> wrote:


I tried out your code and get exactly the same result with Flash IDE
and MTASC. Did you try it in the stand-alone player? If in the
browser, may be you have changed the default scaling and alignment
values in the Publish Settings?

Anyway, the most secure method is to set Stage options by script - it
works everywhere.

  Attila

AH> Aha!
AH>
AH> Ok, here's some code:
AH>
AH> -
AH> class mtascTest {
AH>   private var root:MovieClip;
AH>
AH>   public static function main(rootMC):Void {
AH> if(rootMC == undefined) { rootMC = _root; }
AH> //Stage.scaleMode = "noScale";
AH> //Stage.align = "LT";
AH> var main:mtascTest = new mtascTest(rootMC);
AH>   }
AH>
AH>   function mtascTest(rootMC:MovieClip) {
AH> this.root = rootMC;
AH> init();
AH>   }
AH>
AH>   private function init() {
AH> root.moveTo(0, 0);
AH> root.beginFill(0xff, 100);
AH> root.lineTo(5, 0);
AH> root.lineTo(5, 5);
AH> root.lineTo(0, 5);
AH> root.lineTo(0, 0);
AH> root.endFill();
AH>   }
AH> }
AH> -
AH>
AH> There's one line in the FLA's first frame:
AH> mtascTest.main(this);
AH>
AH> When I build with just the Flash IDE I get a small red rectangle in
AH> the top left corner.  If I resize the window to be larger it doesn't
AH> stay in the top left corner, but moves down and right (but doesn't
AH> change size).
AH>
AH> If I build the same code using MTASC it starts out looking the same.
AH> However, when I resize the window the red square jumps around and
AH> changes size.  It moves such that it's always touching one of the
AH> edges of the window.  It's kind of hard to explain.
AH>
AH> My guess is MTASC and the FlashIDE have different Stage defaults.  If
AH> I uncomment the Stage.scaleMode line in the above code both the
AH> FlashIDE and MTASC build SWFs act like the FlashIDE one worked without
AH> the scaleMode being set.


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] AS3 properties woes

2007-01-24 Thread Brandon Barkley
Also not an AS3 expert, but I think Danny is wrong. The super function 
is necessary to call the parent constructor. I believe that the problem 
is related to what Petro said about labelClass being outside of the 
AbstractMarker class. I would also consider subclassing showTitle and 
adding a trace to see if the value is correct in the DateMarker version. 
If so, then someone the two labelClass variables aren't the same actual 
variable which would be weird :)


Danny Kodicek wrote:

 Not an AS3 expert by any means, but my first thought is that the error is
here:

  

  public class DateMarker extends AbstractMarker
  {
public function DateMarker ()
{
  super();
  labelClass = "date"
}
  }



I'm not sure, but the super() function looks out of place here. You're
already invoking the AbstractMarker constructor by creating a subclass, so
it should work by itself. I suspect that calling super() there has messed
with your scope somehow.

Feel free to shoot me down. 


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@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


RE: [Flashcoders] AS3 properties woes

2007-01-24 Thread Danny Kodicek
 Not an AS3 expert by any means, but my first thought is that the error is
here:

>   public class DateMarker extends AbstractMarker
>   {
> public function DateMarker ()
> {
>   super();
>   labelClass = "date"
> }
>   }

I'm not sure, but the super() function looks out of place here. You're
already invoking the AbstractMarker constructor by creating a subclass, so
it should work by itself. I suspect that calling super() there has messed
with your scope somehow.

Feel free to shoot me down. 

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] AS3 properties woes

2007-01-24 Thread Petro Bochan
Keith Salisbury
> 
> Slightly confused
> 
> I have a super class:
> 
> package com.ktec.timeline
> {
>   protected var labelClass:String = "default";
>   public class AbstractMarker {
> public function AbstractMarker ()
> {
>   labelClass = "default";
> }
> public function showTitle (title:String):void
> {
>   trace(" + title + "")
> }
>   }
> }
> 
> and a subclass:
> 
> package com.ktec.timeline
> {
>   public class DateMarker extends AbstractMarker
>   {
> public function DateMarker ()
> {
>   super();
>   labelClass = "date"
> }
>   }
> }
> 
> 
> Then i use:
> 
> var marker:DateMarker = new DateMarker()
> 
> marker.showTitle("hello world") # hello
world
> 
> 
> This isnt what i would expect?
> 
> Can anyone enlighten me where i'm going wrong?
> 
> thanks
> keith

Hi Keith,

Little question: what r u working under: Flash 9 Beta or Flex 2? I
wonder your code even compiled. Move this line:

protected var labelClass:String = "default";

inside your class definition. It's outside the scope of the class. I
tried it out, worked fine for me.

Cheers,
Petro

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] AS3 properties woes

2007-01-24 Thread Keith Salisbury

Slightly confused

I have a super class:

package com.ktec.timeline
{
 protected var labelClass:String = "default";
 public class AbstractMarker {
   public function AbstractMarker ()
   {
 labelClass = "default";
   }
   public function showTitle (title:String):void
   {
 trace(" + title + "")
   }
 }
}

and a subclass:

package com.ktec.timeline
{
 public class DateMarker extends AbstractMarker
 {
   public function DateMarker ()
   {
 super();
 labelClass = "date"
   }
 }
}


Then i use:

var marker:DateMarker = new DateMarker()

marker.showTitle("hello world") # hello world


This isnt what i would expect?

Can anyone enlighten me where i'm going wrong?

thanks
keith
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] swfObject+externalinterface

2007-01-24 Thread Andreas R
I'm having some trouble catching EI calls when using swfObject, anyone 
else got this working?



 This text is replaced by the Flash movie.


var so = new SWFObject("display.swf", "mymovie", "200", "100", "7", "#336699");
  function sayHello(){
   alert("hello");
  }
  so.write("flashcontent");


where display.swf has this:

testButton.onPress = function(){
   ExternalInterface.call("sayHello");
}
no go for me :(

- A
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Transforming a MovieClip instance to monochrome

2007-01-24 Thread R�kos Attila

ColorMatrixFilter is your friend :)

  Attila
  
AK> Is there a way of transforming a coloured MovieClip instance to
AK> monochrome (specifically grey scale) at run time? I want it to
AK> indicate that a control is disabled.

AK> It seems a fairly elementary thing to do, so possibly I'm
AK> overlooking something quite obvious.

AK> The ColorTransform class seems a likely method, but I'm not very
AK> knowledgable about the intricacies manipulating RGB values, and
AK> although I've spent some time adjusting various values I haven't
AK> acheived the result I want.


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Transforming a MovieClip instance to monochrome

2007-01-24 Thread eric dolecki

Google:
Flash desaturate movieclip

- ericd.

On 1/24/07, Andrew Kirkham <[EMAIL PROTECTED]> wrote:


Is there a way of transforming a coloured MovieClip instance to monochrome
(specifically grey scale) at run time? I want it to indicate that a control
is disabled.

It seems a fairly elementary thing to do, so possibly I'm overlooking
something quite obvious.

The ColorTransform class seems a likely method, but I'm not very
knowledgable about the intricacies manipulating RGB values, and although
I've spent some time adjusting various values I haven't acheived the result
I want.

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

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





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

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


[Flashcoders] Transforming a MovieClip instance to monochrome

2007-01-24 Thread Andrew Kirkham
Is there a way of transforming a coloured MovieClip instance to monochrome 
(specifically grey scale) at run time? I want it to indicate that a control is 
disabled.

It seems a fairly elementary thing to do, so possibly I'm overlooking something 
quite obvious.

The ColorTransform class seems a likely method, but I'm not very knowledgable 
about the intricacies manipulating RGB values, and although I've spent some 
time adjusting various values I haven't acheived the result I want.

Regards
Andy KIrkham
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] ExternalInterface.call -> javascript error

2007-01-24 Thread Nick Zotta

Thanks for your observation about the "small capital letters" :)  ...
my mistake :)
but are you programmers? ... I don't think so. Sorry,  couldn't resist :P



On 1/23/07, Mick G <[EMAIL PROTECTED]> wrote:

"My swf filename only contains small capital letters."

Yes but how do you get small caps into a filename??? ;)



On 1/23/07, Zeh Fernando <[EMAIL PROTECTED]> wrote:
>
> But they have. There are "capital" glyphs, and "small capital" glyphs
> (smallcaps). They're not capital glyphs with a different size, mind you,
> as there's change in shape size but not in weight.
>
> http://en.wikipedia.org/wiki/Smallcaps
>
> The more you learn...
>
>
>
> Zeh
>
>
> > "small capital letters"?  I didn't know capital letters had sizes! =P
> > Sorry, couldn't resist.  Intelligent discussion may now continue. :)
> >
> >   -Andy
> >
> > On 1/23/07, Nick Zotta <[EMAIL PROTECTED]> wrote:
> >> Thanks for the link, I've already seen this bug on the net, but it is
> >> not my case. My swf filename only contains small capital letters.
> >>
> >>
> >>
> >>
> >> On 1/23/07, Mick G <[EMAIL PROTECTED]> wrote:
> >> > Try looking into this JS/Flash bug - it's a strange one but gets me
> >> once and
> >> > a while...
> >> >
> >> > http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4b687833
> >> >
> >> >
> >> >
> >> > On 1/23/07, Nick Zotta <[EMAIL PROTECTED]> wrote:
> >> > >
> >> > > I created my own swfobject kind of javascript class that uses
> >> > > document.write() to put my SWF object into web page. IDs and NAMEs
> >> are
> >> > > unique.
> >> > >
> >> > >
> >> > >
> >> > > On 1/23/07, John VanHorn <[EMAIL PROTECTED]> wrote:
> >> > > > also, make sure that the id/name of the object/embed tag is
> >> unique in
> >> > > the
> >> > > > dom. id conflicts between two elements will give you this error,
> >> too.
> >> > > how
> >> > > > are you embedding your swf? object/embed tags? swfobject?
> >> > > >
> >> > > > On 1/23/07, Nick Zotta <[EMAIL PROTECTED]> wrote:
> >> > > > >
> >> > > > > Hello flashcoders,
> >> > > > >
> >> > > > > Does anyone know the cause of the javascript error: "Object
> >> doesn't
> >> > > > > support this property or method" when using
> >> ExternalInterface.call()
> >> > > > > to comunicate between Flash and Javascript?  My javascript
> >> function is
> >> > > > > triggered, but before executing its actions, a javascript
> >> error popup
> >> > > > > appears with the message :"Object doesn't support this
> >> property or
> >> > > > > method". Even if the javascript function is blank (nothing to
> >> > > > > execute), the javascript error still appears.
> >> > > > > No javascript error in Firefox or Opera, but only in IE (6 and
> >> 7).
> >> > > > > I get this error both locally and on the webserver.
> >> > > > > All the tests were made with FlashPlayer 9.
> >> > > > >
> >> > > > > Thanks a lot,
> >> > > > >
> >> > > > > Nick
> >> > > > > ___
> >> > > > > Flashcoders@chattyfig.figleaf.com
> >> > > > > To change your subscription options or search the archive:
> >> > > > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >> > > > >
> >> > > > > Brought to you by Fig Leaf Software
> >> > > > > Premier Authorized Adobe Consulting and Training
> >> > > > > http://www.figleaf.com
> >> > > > > http://training.figleaf.com
> >> > > > >
> >> > > >
> >> > > >
> >> > > >
> >> > > > --
> >> > > > John Van Horn
> >> > > > [EMAIL PROTECTED]
> >> > > > ___
> >> > > > Flashcoders@chattyfig.figleaf.com
> >> > > > To change your subscription options or search the archive:
> >> > > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >> > > >
> >> > > > Brought to you by Fig Leaf Software
> >> > > > Premier Authorized Adobe Consulting and Training
> >> > > > http://www.figleaf.com
> >> > > > http://training.figleaf.com
> >> > > >
> >> > > ___
> >> > > Flashcoders@chattyfig.figleaf.com
> >> > > To change your subscription options or search the archive:
> >> > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >> > >
> >> > > Brought to you by Fig Leaf Software
> >> > > Premier Authorized Adobe Consulting and Training
> >> > > http://www.figleaf.com
> >> > > http://training.figleaf.com
> >> > >
> >> > ___
> >> > Flashcoders@chattyfig.figleaf.com
> >> > To change your subscription options or search the archive:
> >> > http://chattyfig.figleaf.com/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 A

Re: [Flashcoders] Flash IE OCX error

2007-01-24 Thread Arindam Dhar
yes, i did reinstall numerous times, not helping :-(

Geoff Stearns <[EMAIL PROTECTED]> wrote:  have you tried uninstalling the 
plugin (using the adobe uninstaller) 
and then reinstalling it?


On Jan 22, 2007, at 3:36 AM, Arindam Dhar wrote:

> hi,
>
> I have encountered flash ocx error many times which just appears 
> without any hint after which I have no other option but to close 
> the relevent browser.
>
> This is what exactly i get in the error popup,
>
> Internet explorer encountered a problem with addon and needs to 
> close.
> The following add-on running when this problem occured
> file : Flash9.ocx
> company : adobe systems incorporated
> Description : Adobe flash player 9
>
> Has anyone faced this or has any explanation and solution?
>
> thanks,
>
> Arindam
>
>
>
> 
> -
>
> Real people. Real questions. Real answers. Share what you know.
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/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



-
 Yahoo! Movies - Search movie info and celeb profiles and photos.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Getting Frames Per Second

2007-01-24 Thread Zárate

Is there a way to know the original fps of a loaded swf? I mean, the
fps to which it was compiled to, not the actual framerate?

Cheers,

Juan

On 1/23/07, Eskil Janson <[EMAIL PROTECTED]> wrote:

Hi Daniel!

If you want something more graphical, you can download my framechecker at:

http://www.flashakademin.se/framechecker/framechecker.fla

Drag the performacetester clip from the library of the fla to the stage
of any .fla you want to test, and
you will see how the framerate fluctuates over time (if you have
performance issues...)

Regards

/Eskil


Marc Hoffman skrev:
> Daniel,
>
> Try this, from Colin Moock:
>
> 
http://www.moock.org/webdesign/flash/actionscript/fps-speedometer/
>
>
> A bit dated, but still should work fine or at least give you a
> headstart building your own.
>
> Marc Hoffman
>
> At 10:20 AM 1/23/2007, you wrote:
>
>> The post below about converting graphics to vectors got me thinking
>> and I wanted to see how using bitmap cache, vectors, filters, images,
>> etc effected the frame rate.  I can obviously see when the frame rate
>> slows down, but it'd be nice to have some actual numbers with it.
>>
>> I'd also like to get some real numbers when testing flash
>> applications on slower computers and different OS.
>>
>> Daniel Holth
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
>
>


--

---eskilStina
--
Eskil Janson  Mobil: +46 0735 31 68 52
Slupskjulsvägen 38E-post: [EMAIL PROTECTED]

111 49 Stockholm  Webb: www.eskilstina.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




--
Juan Delgado - Zárate
http://zarate.tv
http://dandolachapa.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] >> replaceSel and Accents

2007-01-24 Thread Danny Kodicek
 > How can I do to replace accent with 2 array?
> 
> ///
> this.createTextField("my_txt", this.getNextHighestDepth(), 
> 10, 10, 320, 240); my_txt.type = "input"; my_txt.text = "é 
> ère ç"; var myArray:Array = new Array("é", "è", "à", "ç"); 
> var newArray:Array = new Array("e", "e", "a", "c"); function 
> replace_accents(myArray) {
>replaceSel(newArray);
> }
> my_txt .replace_accents();

This doesn't really make much sense. replaceSel() works on selected text;
your function replace_accents takes an argument you're not calling; it also
doesn't exist within the scope of my_txt. I think you might want to do a bit
more reading about how functions work in ActionScript before going much
further.

However:

function replaceAccents(fld:TextField, fromArr:Array, toArr:Array):Void {
var txt:String = fld.text
for (var i = 0; ihttp://chattyfig.figleaf.com/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] >> replaceSel and Accents

2007-01-24 Thread Laurent CUCHET
How can I do to replace accent with 2 array?

///
this.createTextField("my_txt", this.getNextHighestDepth(), 10, 10, 320,
240);
my_txt.type = "input";
my_txt.text = "é ère ç";
var myArray:Array = new Array("é", "è", "à", "ç");
var newArray:Array = new Array("e", "e", "a", "c");
function replace_accents(myArray) {
   replaceSel(newArray);
}
my_txt .replace_accents();

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

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