Re: [Flashcoders] BitmapData and Streaming Video

2005-12-14 Thread John Grden
Hey Lori, does it happen with progressive downloaded FLV's or true FCS
streamed video?

I've been able to do it with progressive's without a problem.

On 12/14/05, Lori Hutchek <[EMAIL PROTECTED]> wrote:
>
> Hi All,
>
> I'm attempting to take a capture of the stage doing
> BitmapData. It seems to be working throughout my movie, EXCEPT, when I
> have streaming video on the stage. Has anyone else run into this issue,
> maybe come up with a work around?
>
>
>
> Here's the code I'm using, It's really straight forward so I'm not sure
> whats up...
>
> var myBitmap:BitmapData= new BitmapData(1024,
> 768, false, 0x00FF);
>
> _root.pageFlip.myScreen.attachBitmap(myBitmap,
> 1000);
>
> myBitmap.draw(_root);
>
> _root.pageFlip._visible=true;
>
>
>
> Also to note, I'm calling a function that is doing this every time the
> screen gets updated.
>
>
>
> Thanks
>
> Lori-
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



--
John Grden - Blitz
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] [OT]License Management for Components Development

2005-12-14 Thread Wade Arnold
The company that I work for Is about to launch a large set of 
component. I would like to be able to restrict what URL's the 
components can run on based on user registration. Has anyone on the 
list ever written a license management system based on the per domain 
model? I would like to give the components away to developers and they 
use them for a  90 day trial. At the end of the 90 days the components 
would not load or would load an error if the component was not 
registered or purchased. I know that their are lots of issues that 
could happen with this model. That's why I would rather not start from 
scratch.  Please contact me if you have developed such a product and 
would like to be paid for the application or additional features to the 
application even if it's open source. If you have another way of 
licensing components I would interested in that concept also!


Thanks!

Wade Arnold
[EMAIL PROTECTED]

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


[Flashcoders] SWF Scaling Questoin

2005-12-14 Thread Robert Sandie
Was testing the scale features inside of Flash with an FLVPlayback 
component. Ran the simple script below. I would assume that when you 
move the debug screen the video object would stay the same size as the 
screen. This was not the case. I guess its a question of what "absolute 
zero" (0,0) is on the SWF. Is there another way of going about this so 
that the screen depicts the size of the object?


%%
import mx.video.*;
Stage.scaleMode = "noScale";
my_FLVPlybk.maintainAspectRatio=false;
my_FLVPlybk.contentPath = 
"http://www.helpexamples.com/flash/video/water.flv";;

var stageListener:Object = new Object();
stageListener.onResize = function() {
   my_FLVPlybk._height= Stage.height;
   my_FLVPlybk._width = Stage.width;
   my_FLVPlayback._x = 0;
   my_FLVPlayback._y = 0;
};
Stage.addListener(stageListener);
%%


Also tried this on the HTML 100% stage going full screen. Still got 
weird results.

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


Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Chris Hill
Oh man, I need to get me one of those! Crunching those big flash files 
can take a while on my machine. I use the word FLASH in an attempt to 
stay on topic.


And more info regarding BDB and FSFS:
http://subversion.tigris.org/faq.html#bdb-fsfs-convert

It mentions that BerkeleyDB was the default, but as of 1.2, FSFS is. So 
I'm guessing that FSFS is finally considered production stable in 1.2 
builds onward.




Glenn J. Miller wrote:


Dual 1.8GHz Athlon MP's w/ 4GB RAM... ^_^

FWIW, at the command line as the svn repository owner:
$ svnadmin create --fs-type fsfs /path/to/repos

I believe if I'm not mistaken, BerkeleyDB is indeed the default...

Hope this helps. Peace...

--
Dok
Skyymap, Inc.

 



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


[Flashcoders] sortable list? anyone?

2005-12-14 Thread Mike Lyda
Has anyone seen AS2 code to accomplish this: 
http://tool-man.org/examples/sorting.html
It's doable, and so figure somebody has already done it.. and I'm feeling lazy
and not wanting to re-invent the wheel.  ;)

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Eclipse & FlashOut Setup Question

2005-12-14 Thread Robert Sandie

Sometimes its the simple things. Just had to -clean the directory.

Also found a fairly useful tool for generating actionscript with UML:
http://www.darronschall.com/weblog/archives/000174.cfm


Robert Sandie wrote:

Making the switch from SEPY to Eclipse and am having an issue with 
Eclipse V3.1.1 and FlashOut. Everything is setup including MTASC and 
ASDT but FlashOut is not showing up in the preferences bar. I 
downloaded the FlashOut Package and unzipped the 
com.patapenko.flashout_0.1.6 package in eclipse\plugins directory. Am 
I missing a step here? Anyone else getting this?


Also another question: With Eclipse does anyone generate Actionscript 
classes based off the UML plugins inside of the Eclipse environment?


Thanks!!



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



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


RE: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Glenn J. Miller
Dual 1.8GHz Athlon MP's w/ 4GB RAM... ^_^

FWIW, at the command line as the svn repository owner:
$ svnadmin create --fs-type fsfs /path/to/repos

I believe if I'm not mistaken, BerkeleyDB is indeed the default...

Hope this helps. Peace...

--
Dok
Skyymap, Inc.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Chris Hill
Sent: Wednesday, December 14, 2005 10:09 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] SVN & TortoiseSVN

Very cool! Thanks for popping in with that. I'm glad to see a heavier 
usage of SVN(on linux even!) in the web/flash world. Makes my life 
easier when I push for it as an emerging standard.

Peace
C

PS: So I feel a bit dumb now, I must admit: I'm running FSFS. I thought 
I was running BerkeleyDB but when I compiled it myself I must've set 
FSFS as the default. It must be slower for me because its on a 1ghz machine.

Glenn J. Miller wrote:

>Chris,
>
>Just some 'nice-to-know' information. We're running several Subversion
>repositories on a Fedora Core 3 boxen - FSFS Subversion file system type.
It
>absolutely rips a wake in the water for speed, and is very stable and
secure
>as well (svn-ssh://)...
>
>Just thought I'd add my $0.03 {adjusted for inflation} - hope this is
>helpful for anyone interested in the subject...
>
>--
>Dok
>Skyymap, Inc.
>
>Kindest regards,
> 
>  
>
>>>CHRIS HILL WROTE - SNIP FOR BREVITY << 
>>>  
>>>
>"I have not used the native filesystem method, I'm using the BerkeleyDB 
>method on a linux box."
>  
>
>>>END SNIP <<
>>>  
>>>
>
>
>___
>Flashcoders mailing list
>Flashcoders@chattyfig.figleaf.com
>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>  
>

-- 
 _
<   __ __     >
<  |  |  \/ ___\  Chris Hill  >
<  |  |  / /_/  > [EMAIL PROTECTED]>
<  |/\___  /  http://ubergeek.tv  >
<   /_/   The Smell of Geek!  >
<->

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

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


Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Chris Hill
Very cool! Thanks for popping in with that. I'm glad to see a heavier 
usage of SVN(on linux even!) in the web/flash world. Makes my life 
easier when I push for it as an emerging standard.


Peace
C

PS: So I feel a bit dumb now, I must admit: I'm running FSFS. I thought 
I was running BerkeleyDB but when I compiled it myself I must've set 
FSFS as the default. It must be slower for me because its on a 1ghz machine.


Glenn J. Miller wrote:


Chris,

Just some 'nice-to-know' information. We're running several Subversion
repositories on a Fedora Core 3 boxen - FSFS Subversion file system type. It
absolutely rips a wake in the water for speed, and is very stable and secure
as well (svn-ssh://)...

Just thought I'd add my $0.03 {adjusted for inflation} - hope this is
helpful for anyone interested in the subject...

--
Dok
Skyymap, Inc.

Kindest regards,

 

CHRIS HILL WROTE - SNIP FOR BREVITY << 
 

"I have not used the native filesystem method, I'm using the BerkeleyDB 
method on a linux box."
 


END SNIP <<
 




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



--
_
<   __ __     >
<  |  |  \/ ___\  Chris Hill  >
<  |  |  / /_/  > [EMAIL PROTECTED]>
<  |/\___  /  http://ubergeek.tv  >
<   /_/   The Smell of Geek!  >
<->

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


Re: [Flashcoders] alpha -= 10 = wtf

2005-12-14 Thread guo haifeng
trace(this._alpha);
trace(this._alpha-10);
Output:
100
90



On 12/15/05, Judah Frangipane <[EMAIL PROTECTED]> wrote:
>
> how come floats arent exact? jk
>
> will floats be exact in AS3? or will future versions of flash support
> big ints?
>
> judah
>
> John Dowdell wrote:
>
> > Jason Rayles wrote:
> >
> >> Has this been discussed?
> >> Flash player 8
> >>
> >> trace(this._alpha);
> >> this._alpha -= 10;
> >> trace(this._alpha);
> >>
> >> Output:
> >> 100
> >> 89.84375
> >
> >
> > Not that I can readily recognize, although from the fragments above it
> > looks vaguely like the normal "how come floats aren't exact" topic.
> >
> > jd
> >
> >
> >
> >
> >
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



--
e路信峰  字
欢迎光临 - e路信峰技术情报站(中国・珠海)
http://www.cnflash.org/guohaifeng/
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Glenn J. Miller
Chris,

Just some 'nice-to-know' information. We're running several Subversion
repositories on a Fedora Core 3 boxen - FSFS Subversion file system type. It
absolutely rips a wake in the water for speed, and is very stable and secure
as well (svn-ssh://)...

Just thought I'd add my $0.03 {adjusted for inflation} - hope this is
helpful for anyone interested in the subject...

--
Dok
Skyymap, Inc.

Kindest regards,
 
>> CHRIS HILL WROTE - SNIP FOR BREVITY << 
"I have not used the native filesystem method, I'm using the BerkeleyDB 
method on a linux box."
>> END SNIP <<


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


Re: [Flashcoders] Mp3:: issues...

2005-12-14 Thread Flavio Ramos
That's another old bug that macromedia tryes to forget.

It exists since which version? 5.0?





On 12/14/05, Mike Duguid <[EMAIL PROTECTED]> wrote:
>
> Use 44/22/11Khz sample rates and you should be fine.
>
> On 12/14/05, Karim Beyrouti <[EMAIL PROTECTED]> wrote:
> > Hello !
> >
> > We are using this software that generates mp3's, which i am loading into
> > flash.
> > The problem: flash makes a mess of decoding the audio. check it out:
> >
> >http://kurst.co.uk/wotw/cepstralTest/
> >http://kurst.co.uk/wotw/cepstralTest/audio.mp3
> >
> >
> > i think its because its encoded using MPEG2.2 Layer3 (and flash likes
> > MPEG1.0 Layer3 ) ... any ideas?
> >
> >
> > thanks... - karim
> >
> >
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Eclipse & FlashOut Setup Question

2005-12-14 Thread Robert Sandie
Making the switch from SEPY to Eclipse and am having an issue with 
Eclipse V3.1.1 and FlashOut. Everything is setup including MTASC and 
ASDT but FlashOut is not showing up in the preferences bar. I downloaded 
the FlashOut Package and unzipped the com.patapenko.flashout_0.1.6 
package in eclipse\plugins directory. Am I missing a step here? Anyone 
else getting this?


Also another question: With Eclipse does anyone generate Actionscript 
classes based off the UML plugins inside of the Eclipse environment?


Thanks!!



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


Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
Sorry about all the posts, i seem to have it under control now, thanks 
for all the help on getting me started with this! i think im gonna love it!


Chris Hill wrote:

Lol, this is a problem that I had. If you uncomment that line, you 
need to uncomment the line that has [general] in it, too. The 
[general] bit is called a section header.


But you don't need to uncomment the 'auth-access = write' line, that's 
a default. But you will need to uncomment the 'password-db = passwd' 
line, and then put your passwords into that file.


My passwd file (located in conf/passwd):

[users]
user1 = pass1
user2 = pass2

Here is the svnserve.conf that I have on my projects. Notice most is 
just comments:


### This file controls the configuration of the svnserve daemon, if you
### use it to allow access to this repository.  (If you only allow
### access through http: and/or file: URLs, then this file is
### irrelevant.)

### Visit http://subversion.tigris.org/ for more information.

[general]
### These options control access to the repository for unauthenticated
### and authenticated users.  Valid values are "write", "read",
### and "none".  The sample settings below are the defaults.
anon-access = none
# auth-access = write
### The password-db option controls the location of the password
### database file.  Unless you specify a path starting with a /,
### the file's location is relative to the conf directory.
### Uncomment the line below to use the default password file.
password-db = passwd
### This option specifies the authentication realm of the repository.
### If two repositories have the same authentication realm, they should
### have the same password database, and vice versa.  The default realm
### is repository's uuid.
# realm = My First Repository

Peace
C

Mike Boutin wrote:

Awesome thanks for all the help, I have figured out how to get it 
working but others on my network cannnot commit their changes.  It 
says this:

Connection is read-only

I then went into the svnserve.conf file and uncommented this line 
(anon-access = write)  thinking it would be available but then people 
on the network get this error:


Section header expected line:12:

Any ideas?




Chris Hill wrote:

You should be able to delete the folder you imported into the repo, 
but I am hesitant to tell you to delete anything just in case.


I have not used the native filesystem method, I'm using the 
BerkeleyDB method on a linux box. I believe there is no way to 
convert, but you can always export the repo, then create a new repo 
using the FS method.


http://svnbook.red-bean.com/en/1.1/ch05.html#svn-ch-5-sect-1.3
Using the native filesystem is probably better, but it isn't saving 
the files as normal files, but in a custom subversion format. 
Subversion never has a complete 'normal' copy of your files in the 
repository, since it saves only the changes to the files, and never 
the full file(except when you first import).


Subversion rules, btw. Once you get used to using it, you'll never 
look back. Enjoy!

C


Mike Boutin wrote:

Perfect this is what I was just reading in TortoiseSVN help.  I 
just wasnt sure if I could then delete the folder I had imported.  
It says in the help that their are 2 ways in which it can store the 
files, in a db, or in the native filesystem.  How do you change 
between the two and will using the native filesystem store the 
files outside of a db?  Thanks for all your help by the way.




Chris Hill wrote:

I believe the issue is that you don't need to stick your project 
into c:\svnrepos\project1. When you create the repos, it creates a 
dir structure like this:


conf/  dav/  db/  format  hooks/  locks/  README.txt

And saves your files in its own special way. After you import the 
c:\svnrpos\project1 folder into the repository, its not part of 
the repository. If that makes sense. You can safely delete that 
dir, unless you want it as a backup until you get more comfy with 
svn. Subversion keeps the files inside its db in its own special 
format, only keeping the parts of the files that have changed 
between revisions to save disk space.


C





Mike Boutin wrote:

Just a few questions about SVN & TortoiseSVN.  I have ran the 1 
click setup SVN that installs Subversion and TortoiseSVN.  It 
created the repository in c:\svnrepos


I stuck my project in a folder c:\svnrepos\project1,  then I 
import it into the repos.  Now when I make a new directory and 
use CHeckout, all the files from c:\svnrepos show up with 
checkmarks by them.  Now if I create a new textfile in the 
checkout dir, and update it into the repos, and then I check 
c:\svnrepos\project1, the file i created isnt anywhere to be 
found except in the checkout dir.  Can anyone tell me what im 
doing wrong? Thanks!

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










___
Flashc

Re: [Flashcoders] remoting v service

2005-12-14 Thread Al Veldhuis

Hey Gavin,

An option you could try out is Emissary from FlashLink Solutions. I have 
been working with it for a short while now and it works pretty well.


Its not exactly flash remoting but it is really easy to get data to and 
from a MS SQL server in Windows. I believe the URL is 
http://www.flashlinksolutions.com.


Just as a suggestion. They have a free trial.

Al

Gavin Lilley wrote:


 
Due to changes beyond my control, I am now working on a M$ .NET/MSSQL server
and need to migrate my old php/mysql code over. The php code includes AMFPHP
Remoting classes.

I am looking at either porting the classes into ASP Remoting or creating a
set of wsdl Web services.

Can anyone give me any insight into why they would use one technology over
the other please?

I have read that the two technologies combined work well, I dont understand
this as I see a web service as an alternative to remoting - am I missing
something here?

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

 




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


Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
This is what my I get when I change the svnconf file.  THis is what mine 
looks like:


Its like the password-db is changing the directory it look sin or something?

Error: Commit failed (details follow): 
Error: Can't find config file 'C:\svnrepos\juicyink\conf\bob' 
Error: Check the path and/or URL you've entered. 




### This file controls the configuration of the svnserve daemon, if you
### use it to allow access to this repository.  (If you only allow
### access through http: and/or file: URLs, then this file is
### irrelevant.)

### Visit http://subversion.tigris.org/ for more information.

[general]
### These options control access to the repository for unauthenticated
### and authenticated users.  Valid values are "write", "read",
### and "none".  The sample settings below are the defaults.
anon-access = write
# auth-access = write
### The password-db option controls the location of the password
### database file.  Unless you specify a path starting with a /,
### the file's location is relative to the conf directory.
### Uncomment the line below to use the default password file.
password-db = bob
### This option specifies the authentication realm of the repository.
### If two repositories have the same authentication realm, they should
### have the same password database, and vice versa.  The default realm
### is repository's uuid.
# realm = My First Repository

Chris Hill wrote:

You should be able to delete the folder you imported into the repo, 
but I am hesitant to tell you to delete anything just in case.


I have not used the native filesystem method, I'm using the BerkeleyDB 
method on a linux box. I believe there is no way to convert, but you 
can always export the repo, then create a new repo using the FS method.


http://svnbook.red-bean.com/en/1.1/ch05.html#svn-ch-5-sect-1.3
Using the native filesystem is probably better, but it isn't saving 
the files as normal files, but in a custom subversion format. 
Subversion never has a complete 'normal' copy of your files in the 
repository, since it saves only the changes to the files, and never 
the full file(except when you first import).


Subversion rules, btw. Once you get used to using it, you'll never 
look back. Enjoy!

C


Mike Boutin wrote:

Perfect this is what I was just reading in TortoiseSVN help.  I just 
wasnt sure if I could then delete the folder I had imported.  It says 
in the help that their are 2 ways in which it can store the files, in 
a db, or in the native filesystem.  How do you change between the two 
and will using the native filesystem store the files outside of a 
db?  Thanks for all your help by the way.




Chris Hill wrote:

I believe the issue is that you don't need to stick your project 
into c:\svnrepos\project1. When you create the repos, it creates a 
dir structure like this:


conf/  dav/  db/  format  hooks/  locks/  README.txt

And saves your files in its own special way. After you import the 
c:\svnrpos\project1 folder into the repository, its not part of the 
repository. If that makes sense. You can safely delete that dir, 
unless you want it as a backup until you get more comfy with svn. 
Subversion keeps the files inside its db in its own special format, 
only keeping the parts of the files that have changed between 
revisions to save disk space.


C





Mike Boutin wrote:

Just a few questions about SVN & TortoiseSVN.  I have ran the 1 
click setup SVN that installs Subversion and TortoiseSVN.  It 
created the repository in c:\svnrepos


I stuck my project in a folder c:\svnrepos\project1,  then I import 
it into the repos.  Now when I make a new directory and use 
CHeckout, all the files from c:\svnrepos show up with checkmarks by 
them.  Now if I create a new textfile in the checkout dir, and 
update it into the repos, and then I check c:\svnrepos\project1, 
the file i created isnt anywhere to be found except in the checkout 
dir.  Can anyone tell me what im doing wrong? Thanks!

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








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






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


[Flashcoders] BitmapData and Streaming Video

2005-12-14 Thread Lori Hutchek
Hi All,

I'm attempting to take a capture of the stage doing
BitmapData. It seems to be working throughout my movie, EXCEPT, when I
have streaming video on the stage. Has anyone else run into this issue,
maybe come up with a work around? 

 

Here's the code I'm using, It's really straight forward so I'm not sure
whats up... 

var myBitmap:BitmapData= new BitmapData(1024,
768, false, 0x00FF);

_root.pageFlip.myScreen.attachBitmap(myBitmap,
1000);

myBitmap.draw(_root);

_root.pageFlip._visible=true;

 

Also to note, I'm calling a function that is doing this every time the
screen gets updated. 

 

Thanks

Lori-

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


Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Chris Hill
Lol, this is a problem that I had. If you uncomment that line, you need 
to uncomment the line that has [general] in it, too. The [general] bit 
is called a section header.


But you don't need to uncomment the 'auth-access = write' line, that's a 
default. But you will need to uncomment the 'password-db = passwd' line, 
and then put your passwords into that file.


My passwd file (located in conf/passwd):

[users]
user1 = pass1
user2 = pass2

Here is the svnserve.conf that I have on my projects. Notice most is 
just comments:


### This file controls the configuration of the svnserve daemon, if you
### use it to allow access to this repository.  (If you only allow
### access through http: and/or file: URLs, then this file is
### irrelevant.)

### Visit http://subversion.tigris.org/ for more information.

[general]
### These options control access to the repository for unauthenticated
### and authenticated users.  Valid values are "write", "read",
### and "none".  The sample settings below are the defaults.
anon-access = none
# auth-access = write
### The password-db option controls the location of the password
### database file.  Unless you specify a path starting with a /,
### the file's location is relative to the conf directory.
### Uncomment the line below to use the default password file.
password-db = passwd
### This option specifies the authentication realm of the repository.
### If two repositories have the same authentication realm, they should
### have the same password database, and vice versa.  The default realm
### is repository's uuid.
# realm = My First Repository

Peace
C

Mike Boutin wrote:

Awesome thanks for all the help, I have figured out how to get it 
working but others on my network cannnot commit their changes.  It 
says this:

Connection is read-only

I then went into the svnserve.conf file and uncommented this line 
(anon-access = write)  thinking it would be available but then people 
on the network get this error:


Section header expected line:12:

Any ideas?




Chris Hill wrote:

You should be able to delete the folder you imported into the repo, 
but I am hesitant to tell you to delete anything just in case.


I have not used the native filesystem method, I'm using the 
BerkeleyDB method on a linux box. I believe there is no way to 
convert, but you can always export the repo, then create a new repo 
using the FS method.


http://svnbook.red-bean.com/en/1.1/ch05.html#svn-ch-5-sect-1.3
Using the native filesystem is probably better, but it isn't saving 
the files as normal files, but in a custom subversion format. 
Subversion never has a complete 'normal' copy of your files in the 
repository, since it saves only the changes to the files, and never 
the full file(except when you first import).


Subversion rules, btw. Once you get used to using it, you'll never 
look back. Enjoy!

C


Mike Boutin wrote:

Perfect this is what I was just reading in TortoiseSVN help.  I just 
wasnt sure if I could then delete the folder I had imported.  It 
says in the help that their are 2 ways in which it can store the 
files, in a db, or in the native filesystem.  How do you change 
between the two and will using the native filesystem store the files 
outside of a db?  Thanks for all your help by the way.




Chris Hill wrote:

I believe the issue is that you don't need to stick your project 
into c:\svnrepos\project1. When you create the repos, it creates a 
dir structure like this:


conf/  dav/  db/  format  hooks/  locks/  README.txt

And saves your files in its own special way. After you import the 
c:\svnrpos\project1 folder into the repository, its not part of the 
repository. If that makes sense. You can safely delete that dir, 
unless you want it as a backup until you get more comfy with svn. 
Subversion keeps the files inside its db in its own special format, 
only keeping the parts of the files that have changed between 
revisions to save disk space.


C





Mike Boutin wrote:

Just a few questions about SVN & TortoiseSVN.  I have ran the 1 
click setup SVN that installs Subversion and TortoiseSVN.  It 
created the repository in c:\svnrepos


I stuck my project in a folder c:\svnrepos\project1,  then I 
import it into the repos.  Now when I make a new directory and use 
CHeckout, all the files from c:\svnrepos show up with checkmarks 
by them.  Now if I create a new textfile in the checkout dir, and 
update it into the repos, and then I check c:\svnrepos\project1, 
the file i created isnt anywhere to be found except in the 
checkout dir.  Can anyone tell me what im doing wrong? Thanks!

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









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







___
Flash

Re: [Flashcoders] alpha -= 10 = wtf

2005-12-14 Thread Judah Frangipane

how come floats arent exact? jk

will floats be exact in AS3? or will future versions of flash support 
big ints?


judah

John Dowdell wrote:


Jason Rayles wrote:


Has this been discussed?
Flash player 8

trace(this._alpha);
this._alpha -= 10;
trace(this._alpha);

Output:
100
89.84375



Not that I can readily recognize, although from the fragments above it 
looks vaguely like the normal "how come floats aren't exact" topic.


jd







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


Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread Tyler Wright
>
> I haven't checked various pocket devices on MIDI recently, but the
> problem on desktops has been when you get varying capabilities on
> various platforms, so that the same MIDI file can sound different on
> different machines.
>
> jd
>
>
I understand that there are various complications, especially when building
a cross platform browser plugin like Flash.  What else do you need from us
to decide if this is a worthy investment?  Some of the developers on this
list could perhaps build a viable solution for you but in the end it has to
be the Flash Player team that makes any sort of commitment.  Maybe in a
seperate forum some of the more experienced developers (I'm not one of them)
could help advise/consult on more in-depth technicalities.

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


Re: [Flashcoders] Mp3:: issues...

2005-12-14 Thread Mike Duguid
Use 44/22/11Khz sample rates and you should be fine.

On 12/14/05, Karim Beyrouti <[EMAIL PROTECTED]> wrote:
> Hello !
>
> We are using this software that generates mp3's, which i am loading into
> flash.
> The problem: flash makes a mess of decoding the audio. check it out:
>
>http://kurst.co.uk/wotw/cepstralTest/
>http://kurst.co.uk/wotw/cepstralTest/audio.mp3
>
>
> i think its because its encoded using MPEG2.2 Layer3 (and flash likes
> MPEG1.0 Layer3 ) ... any ideas?
>
>
> thanks... - karim
>
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
Awesome thanks for all the help, I have figured out how to get it 
working but others on my network cannnot commit their changes.  It says 
this:

Connection is read-only

I then went into the svnserve.conf file and uncommented this line 
(anon-access = write)  thinking it would be available but then people on 
the network get this error:


Section header expected line:12:

Any ideas?




Chris Hill wrote:

You should be able to delete the folder you imported into the repo, 
but I am hesitant to tell you to delete anything just in case.


I have not used the native filesystem method, I'm using the BerkeleyDB 
method on a linux box. I believe there is no way to convert, but you 
can always export the repo, then create a new repo using the FS method.


http://svnbook.red-bean.com/en/1.1/ch05.html#svn-ch-5-sect-1.3
Using the native filesystem is probably better, but it isn't saving 
the files as normal files, but in a custom subversion format. 
Subversion never has a complete 'normal' copy of your files in the 
repository, since it saves only the changes to the files, and never 
the full file(except when you first import).


Subversion rules, btw. Once you get used to using it, you'll never 
look back. Enjoy!

C


Mike Boutin wrote:

Perfect this is what I was just reading in TortoiseSVN help.  I just 
wasnt sure if I could then delete the folder I had imported.  It says 
in the help that their are 2 ways in which it can store the files, in 
a db, or in the native filesystem.  How do you change between the two 
and will using the native filesystem store the files outside of a 
db?  Thanks for all your help by the way.




Chris Hill wrote:

I believe the issue is that you don't need to stick your project 
into c:\svnrepos\project1. When you create the repos, it creates a 
dir structure like this:


conf/  dav/  db/  format  hooks/  locks/  README.txt

And saves your files in its own special way. After you import the 
c:\svnrpos\project1 folder into the repository, its not part of the 
repository. If that makes sense. You can safely delete that dir, 
unless you want it as a backup until you get more comfy with svn. 
Subversion keeps the files inside its db in its own special format, 
only keeping the parts of the files that have changed between 
revisions to save disk space.


C





Mike Boutin wrote:

Just a few questions about SVN & TortoiseSVN.  I have ran the 1 
click setup SVN that installs Subversion and TortoiseSVN.  It 
created the repository in c:\svnrepos


I stuck my project in a folder c:\svnrepos\project1,  then I import 
it into the repos.  Now when I make a new directory and use 
CHeckout, all the files from c:\svnrepos show up with checkmarks by 
them.  Now if I create a new textfile in the checkout dir, and 
update it into the repos, and then I check c:\svnrepos\project1, 
the file i created isnt anywhere to be found except in the checkout 
dir.  Can anyone tell me what im doing wrong? Thanks!

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








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






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


Re: [Flashcoders] alpha -= 10 = wtf

2005-12-14 Thread John Dowdell

Jason Rayles wrote:

Has this been discussed?
Flash player 8

trace(this._alpha);
this._alpha -= 10;
trace(this._alpha);

Output:
100
89.84375


Not that I can readily recognize, although from the fragments above it 
looks vaguely like the normal "how come floats aren't exact" topic.


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 mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] alpha -= 10 = wtf

2005-12-14 Thread Morten Barklund Shockwaved

Jason Rayles wrote:

Has this been discussed?
Flash player 8

trace(this._alpha);
this._alpha -= 10;
trace(this._alpha);

Output:
100
89.84375


Yup, alpha is stored internally as values dividable by 100/256. Thus the 
value upon setting will be rounded to the nearest legal value. Use 
another variable in between:


init:
this.alpha = this._alpha;

update:
this._alpha = this.alpha -= 10;

alpha will then always be correct (with the value you want it to be), 
and _alpha will keep up as good as it can.


:)

--
Morten Barklund - Information Architect - Shockwaved
Gothersgade 49, 4th floor - DK-1123 Copenhagen K, Denmark
Phone: +45 7027 2227 - Fax: +45 3369 1174
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] alpha -= 10 = wtf

2005-12-14 Thread Martin Wood

quite a few times, its not just v8 :)

alpha is a byte value (0-255) mapped into the range 0-100

martin

Jason Rayles wrote:

Has this been discussed?
Flash player 8

trace(this._alpha);
this._alpha -= 10;
trace(this._alpha);

Output:
100
89.84375

Thanks, Macromedia!



--
Martin Wood

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


RE: [Flashcoders] can't remove a clip attached to root???

2005-12-14 Thread Ben Smeets
Hi Jason,
 
The solution is like others already mentioned. The problem is the 
getNextHighestDepth and removeMovieclip unable to remove mc's in too high or 
too low levels. How i solve this is to first swapDepths and after that remove.
 
1. attach at getnexthighestdepth
2. mc.swapDepths(9); (i  use this level always for only this purpose)
3. mc.removeMovieClip
 
Shuold work like a charm. And no it's not you who iswrong, it's the code :)
 
Greets, Ben
 



From: [EMAIL PROTECTED] on behalf of Jason Rayles
Sent: Wed 12/14/2005 10:27 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] can't remove a clip attached to root???



Is there a reason that a movie clip attached to _root cannot be removed
using removeMovieClip?

if I do
_root.attachMovie("square", "s", _root.getNextHighestDepth());
then _root.s.removeMovieClip(); does not remove the clip.

However

if I do
mc.attachMovie("square", "s", mc.getNextHighestDepth());
and mc.s.removeMovieClip(); works like a champ.

Flash 8, as 2.0. I am thoroughly stumped.

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


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


[Flashcoders] alpha -= 10 = wtf

2005-12-14 Thread Jason Rayles

Has this been discussed?
Flash player 8

trace(this._alpha);
this._alpha -= 10;
trace(this._alpha);

Output:
100
89.84375

Thanks, Macromedia!

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


Re: [Flashcoders] can't remove a clip attached to root???

2005-12-14 Thread Jason Rayles
Magic, that's it. I am not using any prebuilt components, but I have 
made some components that extend UIObject, so I suspect that is why 
getNextHighestDepth returns 1048576, which I guess is outside the valid 
range. The documentation tells me to use the version 2 DepthManager 
class, but I am not sure how I would use that in place of attachMovie 
and getNextHighestDepth. Any suggestions?


If I can't do it simply with the DepthManager classs, then I guess I 
could pick a number and check against getInstanceAtDepth until I find 
an available depth. Seems dumb.


Eff. Better yet, I think I'll just put an empty movie clip on the stage 
and attach something to that.



On Dec 14, 2005, at 4:29 PM, [EMAIL PROTECTED] 
wrote:



Message: 16
Date: Wed, 14 Dec 2005 22:32:23 +0100
From: Hans Wichman <[EMAIL PROTECTED]>
Subject: Re: [Flashcoders] can't remove a clip attached to root???
To: Flashcoders mailing list ,
flashcoders@chattyfig.figleaf.com
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="us-ascii"; format=flowed

Hi,
is this in an empty movie, or a movie with components in it?
Try and trace the depth, if its higher than a certain number (which 
may be
caused by components on your stage) you have to swap it to a lower 
depth first.

greetz
Hans

At 10:27 PM 12/14/2005, Jason Rayles wrote:
Is there a reason that a movie clip attached to _root cannot be 
removed

using removeMovieClip?

if I do
_root.attachMovie("square", "s", _root.getNextHighestDepth());
then _root.s.removeMovieClip(); does not remove the clip.

However

if I do
mc.attachMovie("square", "s", mc.getNextHighestDepth());
and mc.s.removeMovieClip(); works like a champ.

Flash 8, as 2.0. I am thoroughly stumped.


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


[Flashcoders] Phantoming in List Component

2005-12-14 Thread Steve Krichten
I've had similar problems.  And when you do get it working it still 
flickers due to the scrolling algorithm (refreshing of items).  That's 
why I made this...


http://www.sleekdigital.com/downloads/scrolllistexample.zip
http://www.layer51.com/proto/d.aspx?f=1396

This is a bit out-dated now, but it works.  If you want the more robust, 
updated version let me know.


-Steve

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


[Flashcoders] Mp3:: issues...

2005-12-14 Thread Karim Beyrouti
Hello !

We are using this software that generates mp3's, which i am loading into
flash. 
The problem: flash makes a mess of decoding the audio. check it out:

http://kurst.co.uk/wotw/cepstralTest/ 
http://kurst.co.uk/wotw/cepstralTest/audio.mp3


i think its because its encoded using MPEG2.2 Layer3 (and flash likes
MPEG1.0 Layer3 ) ... any ideas? 


thanks... - karim


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


Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Chris Hill
You should be able to delete the folder you imported into the repo, but 
I am hesitant to tell you to delete anything just in case.


I have not used the native filesystem method, I'm using the BerkeleyDB 
method on a linux box. I believe there is no way to convert, but you can 
always export the repo, then create a new repo using the FS method.


http://svnbook.red-bean.com/en/1.1/ch05.html#svn-ch-5-sect-1.3
Using the native filesystem is probably better, but it isn't saving the 
files as normal files, but in a custom subversion format. Subversion 
never has a complete 'normal' copy of your files in the repository, 
since it saves only the changes to the files, and never the full 
file(except when you first import).


Subversion rules, btw. Once you get used to using it, you'll never look 
back. Enjoy!

C


Mike Boutin wrote:

Perfect this is what I was just reading in TortoiseSVN help.  I just 
wasnt sure if I could then delete the folder I had imported.  It says 
in the help that their are 2 ways in which it can store the files, in 
a db, or in the native filesystem.  How do you change between the two 
and will using the native filesystem store the files outside of a db?  
Thanks for all your help by the way.




Chris Hill wrote:

I believe the issue is that you don't need to stick your project into 
c:\svnrepos\project1. When you create the repos, it creates a dir 
structure like this:


conf/  dav/  db/  format  hooks/  locks/  README.txt

And saves your files in its own special way. After you import the 
c:\svnrpos\project1 folder into the repository, its not part of the 
repository. If that makes sense. You can safely delete that dir, 
unless you want it as a backup until you get more comfy with svn. 
Subversion keeps the files inside its db in its own special format, 
only keeping the parts of the files that have changed between 
revisions to save disk space.


C





Mike Boutin wrote:

Just a few questions about SVN & TortoiseSVN.  I have ran the 1 
click setup SVN that installs Subversion and TortoiseSVN.  It 
created the repository in c:\svnrepos


I stuck my project in a folder c:\svnrepos\project1,  then I import 
it into the repos.  Now when I make a new directory and use 
CHeckout, all the files from c:\svnrepos show up with checkmarks by 
them.  Now if I create a new textfile in the checkout dir, and 
update it into the repos, and then I check c:\svnrepos\project1, the 
file i created isnt anywhere to be found except in the checkout 
dir.  Can anyone tell me what im doing wrong? Thanks!

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







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



--
_
<   __ __     >
<  |  |  \/ ___\  Chris Hill  >
<  |  |  / /_/  > [EMAIL PROTECTED]>
<  |/\___  /  http://ubergeek.tv  >
<   /_/   The Smell of Geek!  >
<->

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


Re: [Flashcoders] can't remove a clip attached to root???

2005-12-14 Thread Cinetryx

Hello,

I noticed a problem with this function, getNextHighestDepth, it 
positions the clips to too high level and so removeMovieClip does not 
delete your clip. You have to put yourself a level to your clip.


bye

Jason Rayles a écrit :

Is there a reason that a movie clip attached to _root cannot be 
removed using removeMovieClip?


if I do
_root.attachMovie("square", "s", _root.getNextHighestDepth());
then _root.s.removeMovieClip(); does not remove the clip.

However

if I do
mc.attachMovie("square", "s", mc.getNextHighestDepth());
and mc.s.removeMovieClip(); works like a champ.

Flash 8, as 2.0. I am thoroughly stumped.

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





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


Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-14 Thread Moses Gunesch
Martin - by the way - I've been trying to email you for several days  
now, but your server's spamcop is bouncing me. Maybe you can write me  
from an alternative address (webmail?) or get your server admin to  
whitelist my IP. Sorry to ping the list with this folks but, I have  
no other way to get this message through.


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


Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
Perfect this is what I was just reading in TortoiseSVN help.  I just 
wasnt sure if I could then delete the folder I had imported.  It says in 
the help that their are 2 ways in which it can store the files, in a db, 
or in the native filesystem.  How do you change between the two and will 
using the native filesystem store the files outside of a db?  Thanks for 
all your help by the way.




Chris Hill wrote:

I believe the issue is that you don't need to stick your project into 
c:\svnrepos\project1. When you create the repos, it creates a dir 
structure like this:


conf/  dav/  db/  format  hooks/  locks/  README.txt

And saves your files in its own special way. After you import the 
c:\svnrpos\project1 folder into the repository, its not part of the 
repository. If that makes sense. You can safely delete that dir, 
unless you want it as a backup until you get more comfy with svn. 
Subversion keeps the files inside its db in its own special format, 
only keeping the parts of the files that have changed between 
revisions to save disk space.


C





Mike Boutin wrote:

Just a few questions about SVN & TortoiseSVN.  I have ran the 1 click 
setup SVN that installs Subversion and TortoiseSVN.  It created the 
repository in c:\svnrepos


I stuck my project in a folder c:\svnrepos\project1,  then I import 
it into the repos.  Now when I make a new directory and use CHeckout, 
all the files from c:\svnrepos show up with checkmarks by them.  Now 
if I create a new textfile in the checkout dir, and update it into 
the repos, and then I check c:\svnrepos\project1, the file i created 
isnt anywhere to be found except in the checkout dir.  Can anyone 
tell me what im doing wrong? Thanks!

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






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


Re: [Flashcoders] Live Preview Woes

2005-12-14 Thread Judah Frangipane

That worked. Thanks :)

// in my class
// traces 'true' in components on the stage and 'undefined' in test movie
trace("_global.isLivePreview = " + _global.isLivePreview)


Derek Vadneau wrote:

If your component live preview is generated by Flash, when you specify an 
AS2 class in the Component Definition dialog, then you can check for 
_global.isLivePreview in your class code.  Some of the V2 components use 
this.


That variable is populated by Flash when your live preview is generated 
that way.


If your live preview is a SWF that you've published, then you can just 
provide a variable such as this yourself.



Derek Vadneau


- Original Message - 
From: "Judah Frangipane" <[EMAIL PROTECTED]>

To: "Flashcoders mailing list" 
Sent: Wednesday, December 14, 2005 2:22 PM
Subject: SPAM-LOW: [Flashcoders] Live Preview Woes



I am working on a component that attaches a movieclip. When I drag it to
the stage it attaches multiple copies of this movieclip skipping my
checks and balances. But when I test the movie it works fine and only
shows one instance like i designed it to. Is there anyway to find out in
my component class file if the instance is on the stage or in a test 
movie?



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



 



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


Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-14 Thread Cinetryx
Thank for your answer, i already that but when you fast rollOver/rollOut 
on several intance you can see a problem on tween's.

example :

i have a button on my scene with  2 clip on this, "bullet" and "texte".

button.onRollOver = function(){
   this.bullet.stopTween();
   this.texte.stopTween();
   this.bullet.tween("_x",50,0.4,"easeOutCubic",0);
   this.texte.tween("_x",60,0.4,"easeOutCubic",0.2);
}
button.onRollOut = function(){
   this.bullet.stopTween();
   this.texte.stopTween();
   this.bullet.tween("_x",0,0.4,"easeOutCubic",0.2);
   this.texte.tween("_x",10,0.4,"easeOutCubic",0);
}
with this code, I noticed a problem with position of "bullet" or "texte"...

maybe thas my syntax or my tween's utilisation  isn't correctly ??but i 
don't think


Mike Boutin a écrit :

I delayed a clip on stage.  Using a button to stop the tween & delay 
before it happens:  If you leave it, it will play after the delay, if 
you click the button before the delay, the tween never happens.  Hope 
this helps.


#include "lmc_tween.as"
clip.tween("_x", clip._x+100,2,"easeout",3);


myButton.onRelease = function(){ clip.stopTween();
}


Cinetryx wrote:


yes, i want.

Mike Boutin a écrit :

So you are calling the tween, but you want to delete it before the 
delay happens?


Cinetryx wrote:


When you write this :

my_mc.tween(property, pEnd, seconds, animType, delay, callback, 
extra1, extra2)


you can set delay before the start tween function .

But my problem is how to delete this delay.

Mike Boutin a écrit :

How exactly are you "delaying" the tween?  the tween class doesnt 
have a "delay" in it as far as I know


Cinetryx wrote:

stopAllTween delete the tween event but  not the delay before the 
tween


Mike Boutin a écrit :

movieclip.stopAllTweens()  will stop all tweening on all the 
instances that are currently tween.  Not sure if this helps.



[EMAIL PROTECTED] wrote:


Hello everybody,

i use tween of laco [laco.wz.cz] with delay on some instances. 
i want to delete a delay and the tween to on previous instance 
when i use a tween on other instance, but i don't manage it. 
can anybody help me ? thank


Ps : i'm French, so sorry for my english

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



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





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



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





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



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





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



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





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


Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Chris Hill
I believe the issue is that you don't need to stick your project into 
c:\svnrepos\project1. When you create the repos, it creates a dir 
structure like this:


conf/  dav/  db/  format  hooks/  locks/  README.txt

And saves your files in its own special way. After you import the 
c:\svnrpos\project1 folder into the repository, its not part of the 
repository. If that makes sense. You can safely delete that dir, unless 
you want it as a backup until you get more comfy with svn. Subversion 
keeps the files inside its db in its own special format, only keeping 
the parts of the files that have changed between revisions to save disk 
space.


C





Mike Boutin wrote:

Just a few questions about SVN & TortoiseSVN.  I have ran the 1 click 
setup SVN that installs Subversion and TortoiseSVN.  It created the 
repository in c:\svnrepos


I stuck my project in a folder c:\svnrepos\project1,  then I import it 
into the repos.  Now when I make a new directory and use CHeckout, all 
the files from c:\svnrepos show up with checkmarks by them.  Now if I 
create a new textfile in the checkout dir, and update it into the 
repos, and then I check c:\svnrepos\project1, the file i created isnt 
anywhere to be found except in the checkout dir.  Can anyone tell me 
what im doing wrong? Thanks!

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



--
_
<   __ __     >
<  |  |  \/ ___\  Chris Hill  >
<  |  |  / /_/  > [EMAIL PROTECTED]>
<  |/\___  /  http://ubergeek.tv  >
<   /_/   The Smell of Geek!  >
<->

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


Re: [Flashcoders] can't remove a clip attached to root???

2005-12-14 Thread Morten Barklund Shockwaved

Jason Rayles wrote:
Is there a reason that a movie clip attached to _root cannot be removed 
using removeMovieClip?


If _root.getNextHighestDepth() returns a negative value, then you cannot 
remove the movieclip unless you swap it up to some positive depth. I'm 
not sure, but that might be it.


Otherwise, no! There is no such difference - of course you can do that.

Change the depth to 1, and see if that works out for you :)

--
Morten Barklund - Information Architect - Shockwaved
Gothersgade 49, 4th floor - DK-1123 Copenhagen K, Denmark
Phone: +45 7027 2227 - Fax: +45 3369 1174
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] can't remove a clip attached to root???

2005-12-14 Thread Hans Wichman

Hi,
is this in an empty movie, or a movie with components in it?
Try and trace the depth, if its higher than a certain number (which may be 
caused by components on your stage) you have to swap it to a lower depth first.

greetz
Hans

At 10:27 PM 12/14/2005, Jason Rayles wrote:
Is there a reason that a movie clip attached to _root cannot be removed 
using removeMovieClip?


if I do
_root.attachMovie("square", "s", _root.getNextHighestDepth());
then _root.s.removeMovieClip(); does not remove the clip.

However

if I do
mc.attachMovie("square", "s", mc.getNextHighestDepth());
and mc.s.removeMovieClip(); works like a champ.

Flash 8, as 2.0. I am thoroughly stumped.

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


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


Re: [Flashcoders] Flexbuilder 2: how can I hide subcontrolsoftheRichTextEditor?

2005-12-14 Thread JesterXL
I just read the documentation to find out what buttons are where:

http://livedocs.macromedia.com/labs/1/flex/langref/index.html

MXML Only Components > Rich Text Editor

There are no class files provided in this build.

I think the buttons are in an HBox, so if you do the below, it'll resize for 
you:

my_rte.fontFamilyCombo.width = 0;

my_rte.fontFamilyCombo.height = 0;

my_rte.alignButtons.width = 0;

my_rte.alignButtons.height = 0;

my_rte.linkTextInput.width = 0;

my_rte.linkTextInput.height = 0;


- Original Message - 
From: "Tom Bray" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Wednesday, December 14, 2005 12:56 PM
Subject: Re: [Flashcoders] Flexbuilder 2: how can I hide 
subcontrolsoftheRichTextEditor?


Thanks again.  Now, I'd like to update the layout of the subcontrols
to account for extra space left by the ones I've hidden.  Is that
possible?  Would I need to actually remove individual subcontrols with
removeChild()? And can I move all the subcontrols so they're above the
textarea instead of below?  Are the class files for these controls
available somewhere so I can figure out the answers to these questions
myself?

Thanks,

Tom

On 12/13/05, JesterXL <[EMAIL PROTECTED]> wrote:
> Right idea, wrong event.  Use creationComplete (another might work, but 
> this
> is the safest):
>
> 
> id="my_rte"
>
> width="100%" height="100%"
>
> creationComplete="hideMofos()"/>
>
>
>
> - Original Message -
> From: "Tom Bray" <[EMAIL PROTECTED]>
> To: "Flashcoders mailing list" 
> Sent: Tuesday, December 13, 2005 8:36 PM
> Subject: Re: [Flashcoders] Flexbuilder 2: how can I hide subcontrols
> oftheRichTextEditor?
>
>
> Thanks, Jesse.  Now, what if I want to hide those mofos automagically
> when the app loads so the user never sees them?  I've been trying to
> call the hideMofos() method like this:
>
>  height="100%"  initialize="hideMofos()"/>
>
> But I get a runtime error that makes me think I need to wait for those
> subcontrols to initialize. Correct?
>
> -Tom
>
> On 12/13/05, JesterXL <[EMAIL PROTECTED]> wrote:
> > This works:
> >
> > 
> >
> > http://www.macromedia.com/2005/mxml"; 
> > xmlns="*">
> >
> > 
> >
> > 
> >
> > 
> >
> >  >
> > label="Hide Buttons"
> >
> > click="hideMofos()" />
> >
> >  >
> > id="my_rte"
> >
> > width="100%" height="100%" />
> >
> > 
> >
> >
> >
> > - Original Message -
> > From: "Tom Bray" <[EMAIL PROTECTED]>
> > To: "Flashcoders mailing list" 
> > Sent: Tuesday, December 13, 2005 7:42 PM
> > Subject: [Flashcoders] Flexbuilder 2: how can I hide subcontrols of
> > theRichTextEditor?
> >
> >
> > I'd like to hide the font chooser, align buttons, and the link text
> > field in my RTE component.  My first attempt was to set the _visible
> > property of the linkTextInput subcontrol to false in the RTE's
> > initialize event handler.  This throws errors at runtime and they
> > aren't particularly helpful at figuring out what the problem is.
> >
> > Thanks,
> >
> > Tom
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders 

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


Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
When I do a commit, after adding the file of course.  The commit 
happens, but where does it stop that file? Shouldnt it post my new file 
to the repository? instead it just sends it back to where i first 
created it like so:


Adding: Desktop\test\tests.txt 
Sending Content: C:\Documents and Settings\Boots\Desktop\test\tests.txt 
Completed: At revision: 3 



Shoulding it be sending content to c:\svnrepos\project1??



David Skoglund wrote:

I think you should use the "commit" command to commit you changes 
instead of "update".


/David Skoglund
www.monsterland.se


- Original Message - From: "Mike Boutin" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Wednesday, December 14, 2005 10:09 PM
Subject: [Flashcoders] SVN & TortoiseSVN


Just a few questions about SVN & TortoiseSVN.  I have ran the 1 click 
setup SVN that installs Subversion and TortoiseSVN.  It created the 
repository in c:\svnrepos


I stuck my project in a folder c:\svnrepos\project1,  then I import 
it into the repos.  Now when I make a new directory and use CHeckout, 
all the files from c:\svnrepos show up with checkmarks by them.  Now 
if I create a new textfile in the checkout dir, and update it into 
the repos, and then I check c:\svnrepos\project1, the file i created 
isnt anywhere to be found except in the checkout dir.  Can anyone 
tell me what im doing wrong? Thanks!

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



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



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


[Flashcoders] can't remove a clip attached to root???

2005-12-14 Thread Jason Rayles
Is there a reason that a movie clip attached to _root cannot be removed 
using removeMovieClip?


if I do
_root.attachMovie("square", "s", _root.getNextHighestDepth());
then _root.s.removeMovieClip(); does not remove the clip.

However

if I do
mc.attachMovie("square", "s", mc.getNextHighestDepth());
and mc.s.removeMovieClip(); works like a champ.

Flash 8, as 2.0. I am thoroughly stumped.

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


Re: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread David Skoglund
I think you should use the "commit" command to commit you changes instead of 
"update".


/David Skoglund
www.monsterland.se


- Original Message - 
From: "Mike Boutin" <[EMAIL PROTECTED]>

To: "Flashcoders mailing list" 
Sent: Wednesday, December 14, 2005 10:09 PM
Subject: [Flashcoders] SVN & TortoiseSVN


Just a few questions about SVN & TortoiseSVN.  I have ran the 1 click 
setup SVN that installs Subversion and TortoiseSVN.  It created the 
repository in c:\svnrepos


I stuck my project in a folder c:\svnrepos\project1,  then I import it 
into the repos.  Now when I make a new directory and use CHeckout, all the 
files from c:\svnrepos show up with checkmarks by them.  Now if I create a 
new textfile in the checkout dir, and update it into the repos, and then I 
check c:\svnrepos\project1, the file i created isnt anywhere to be found 
except in the checkout dir.  Can anyone tell me what im doing wrong? 
Thanks!

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



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


Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread Weyert de Boer

Hi John,
I haven't checked various pocket devices on MIDI recently, but the 
problem on desktops has been when you get varying capabilities on 
various platforms, so that the same MIDI file can sound different on 
different machines.
Yes, but that's probably because every platform and/or videocard has 
different standard soundback. Of course this can be a issue, but not 
when you use MIDI for controlling external devices ;-) Anyway it's a 
good idea have a look at this, I can't believe this is a big change 
within the Flash player. Oh well, I will check it out for yah


Yours,
Weyert de Boer
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Phantoming in List Component

2005-12-14 Thread John Giotta
This tutorial on ActionScript.com helped alot!
http://www.actionscript.com/index.php/fw/1/displaying-images-in-a-datagrid-utilizing-a-cell-renderer/
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Mike Boutin
Just a few questions about SVN & TortoiseSVN.  I have ran the 1 click 
setup SVN that installs Subversion and TortoiseSVN.  It created the 
repository in c:\svnrepos


I stuck my project in a folder c:\svnrepos\project1,  then I import it 
into the repos.  Now when I make a new directory and use CHeckout, all 
the files from c:\svnrepos show up with checkmarks by them.  Now if I 
create a new textfile in the checkout dir, and update it into the repos, 
and then I check c:\svnrepos\project1, the file i created isnt anywhere 
to be found except in the checkout dir.  Can anyone tell me what im 
doing wrong? Thanks!

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


Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread John Dowdell

Tyler Wright wrote:

Also, am I incorrect in understanding that many hand-held devices with Flash
Lite already have MIDI available in some form?


I haven't checked various pocket devices on MIDI recently, but the 
problem on desktops has been when you get varying capabilities on 
various platforms, so that the same MIDI file can sound different on 
different machines.


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 mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread Tyler Wright
Also, am I incorrect in understanding that many hand-held devices with Flash
Lite already have MIDI available in some form?

I don't know what the implemenations are or what they would mean to the
common OS.  Does anyone have experience with this?
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread Tyler Wright
Thank you.

I understand that "Who wants (feature)?" is a very general request.  In this
instance I was probing for feedback on the exact same questions you're
asking, which the developers of Flashcoders gave.

To sum up directly, there were a few areas covered in these conversations:

Developers would like to build MIDI dynamically through low level commands
and then play it.  If it would bloat the filesize of the Flash Player, then
simply add the ability to play a flat MIDI file loaded from a server.  Then
to be dynamic, allow that same loadMidi method to load from an internal
binaryArray as the AS 3 Loader class allows.  Then individual applications
take on the filesize of sequencing MIDI instead of the player itself.  The
last wish which I know very little about is to offer an interface to see the
MIDI devices on the users OS and to connect and communicate with them (with
the users permission, like a webcam).  The Flash Player shouldn't care what
the device is, as long the user is notified.

Developers would also love to have some sort of buffer in which they could
manipulate sound waves directly (binary data in FP8.5) and have it streamed
out to the OS as Flash does with sound files.  Once again, just a
Loaderconcept of playing files from a binaryArray seems like it would
add very
little to the file size.  I don't know the costs of these solutions and I am
just one opinion on this list.  I didn't hear anything on the list about a
simple api or make it easy to handle these powerful abilities.  I personally
would rather see the Player size kept to a minimum, even it it meant I had
to do a lot of custom development in ActionScript.  AS Libraries would be
built to make it available for the common man I'm sure.  But the abilities
have to be there first so users aren't forced to download/install 3rd party
plugins.

Thats my say, for what it's worth.

Tyler

On 12/14/05, John Dowdell <[EMAIL PROTECTED]> wrote:
>
> Tyler Wright wrote:
> > This conversation has now been posted to http://codext.xtyler.com/code/2
> > I've posted a summary along with a direct quote of the entire
> conversation
> > which I hope will continue to receive contributions.  If everyone
> approves,
> > I'll send it off to MM, though I know they also keep up in the
> Flashcoders
> > list and have perhaps already most of this.
>
> Thanks. In the recent rush I haven't been able to read "Who wants MIDI?"
> much less abstract it.
>
> Were you able to get a sense from the whole list of (a) which specific
> MIDI (or MIDI-like) features & implementations are most desired; and (b)
> how much they'd be willing to pay for this in player size?
>
> Do you know what size of MIDI engine would work best for you, for which
> MIDI abilities, for instance?
>
>
> > Anyone also know the link the the MM wish list?
>
> Searching "macromedia wish list" pulls up
> http://www.macromedia.com/go/wish
>
> I know that MIDI or Beatnik or other audio-via-instructions has been on
> the wishlist for awhile, although specific wishes vary in the amount of
> the General MIDI spec they need, and wishes vary in how much of a player
> download effect they'd accept.
>
>
> > I'd like to take a poll. Do you think MIDI should be included
> > in the Flash Player? Why or why not? I want both votes and
> > opinions as I'll organize the results and send them off to
> > "Adobe, formerly known as Macromedia". Please respond with
> > some sort of opinion whether it's pro or con.
>
> Hmm, that sounds sort of mom-and-apple-pie... who would *not* want a new
> ability? The big questions are precisely which abilities under that
> general "midi" label most people actually want most, and what they'd be
> willing to pay for it, in terms of slower audience adoption or greater
> disparity across devices or whatever?
>
> 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 mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread fla coder
xnice!

On 14/12/05, Martin Wood <[EMAIL PROTECTED]> wrote:
>
> I urge you to get someone to have a good read through the discussion.
> There was a lot of good input and i think improving the audio
> capabilities of flash would be a huge step forward for what i consider
> to be the most neglected aspect of flash.
>
> Or, if all else fails then persuade adobe to buy these guys
>
> http://www.fmod.org/
>
> :)
>
> >> Thanks. In the recent rush I haven't been able to read "Who wants
> >> MIDI?" much less abstract it.
> >>
> >> Were you able to get a sense from the whole list of (a) which specific
> >> MIDI (or MIDI-like) features & implementations are most desired; and
> >> (b) how much they'd be willing to pay for this in player size?
> >>
> >> Do you know what size of MIDI engine would work best for you, for
> >> which MIDI abilities, for instance?
> >>
> --
> Martin Wood
>
> http://relivethefuture.com/choronzon
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] CSS styles vs. TextFormat

2005-12-14 Thread Joseph Balderson

> I'd like to know, what are advantages (if any) of using  TextFormat
> instead of CSS ?

HTML textfields with embedded fonts using formatting-specific tags cannot use 
setTextFormat or setNewTextFormat. The formatting must be defined in a 
TextField.styleSheet object. Of course, you can use HTML text with setTextFormat 
or setNewTextFormat, but no formatting-specific HTML tags such as  or  or 
 are recognized. For non-HTML text, setTextFormat or setNewTextFormat will 
do just nicely, and does not involve as much overhead.


Joseph



Joseph Balderson
Interactive Media Design & Development
http://www.joeflash.ca

Faculty Member, Flash Development,
Humber College School of Media Studies
http://mediastudies.humber.ca


GregoryN wrote:

Hello Flashcoders,

It is possible to replace CSS with  TextFormat object using
styleSheet.transform() .

I'd like to know, what are advantages (if any) of using  TextFormat
instead of CSS ?

I'm creating multiple text fields and want to apply tweening to them,
so the question above is especially interesting in coordination with
embedded fonts.

Thanks in advance.


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


Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread Martin Wood
I urge you to get someone to have a good read through the discussion. 
There was a lot of good input and i think improving the audio 
capabilities of flash would be a huge step forward for what i consider 
to be the most neglected aspect of flash.


Or, if all else fails then persuade adobe to buy these guys

http://www.fmod.org/

:)

Thanks. In the recent rush I haven't been able to read "Who wants 
MIDI?" much less abstract it.


Were you able to get a sense from the whole list of (a) which specific 
MIDI (or MIDI-like) features & implementations are most desired; and 
(b) how much they'd be willing to pay for this in player size?


Do you know what size of MIDI engine would work best for you, for 
which MIDI abilities, for instance?



--
Martin Wood

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


Re: [Flashcoders] Live Preview Woes

2005-12-14 Thread Derek Vadneau
If your component live preview is generated by Flash, when you specify an 
AS2 class in the Component Definition dialog, then you can check for 
_global.isLivePreview in your class code.  Some of the V2 components use 
this.

That variable is populated by Flash when your live preview is generated 
that way.

If your live preview is a SWF that you've published, then you can just 
provide a variable such as this yourself.


Derek Vadneau


- Original Message - 
From: "Judah Frangipane" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Wednesday, December 14, 2005 2:22 PM
Subject: SPAM-LOW: [Flashcoders] Live Preview Woes



I am working on a component that attaches a movieclip. When I drag it to
the stage it attaches multiple copies of this movieclip skipping my
checks and balances. But when I test the movie it works fine and only
shows one instance like i designed it to. Is there anyway to find out in
my component class file if the instance is on the stage or in a test 
movie?


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


Re: [Flashcoders] Phantoming in List Component

2005-12-14 Thread John Giotta
Ok, I understand what your saying about setValue being called with
every change to the List, but now I'm having problems with my
thumbnail icons disappearing.

I basically what to build a CellRenderer that allows me to load
external JPEGs as the cell icon.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] DataGrid - Content

2005-12-14 Thread Helmut Granda

AH! It all makes sense now.

Thanks for your help, I really appreciate it.

Helmut.

Helen Triolo wrote:


Helmut Granda wrote:


Thanks all for your help on this.

What I can't get my head around and maybe that is why I cant get this 
to work is, how does the DG knows to get the info from certail 
columns only?


I dont see the declaration that the information belongs to the DG.

Using Helen's sample

mydata = [{company:a, id:3}, {company:b, id:54}];
mygrid.columnNames = ["company"];



one more line (should've included for clarity before):
mygrid.dataProvider = mydata;



How does mygrid knows to get the column "company" from mydata when my 
data has not yet beein delared to have a relationship with mygrid?




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






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


Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread Stan Vassilev

I'll give a hint :)

- Don't include default General Midi Bank (that'd be at least 1-2 MB to 
sound reasonable, so it's out of question, that's like bundling fonts in the 
player, pointless), just provide the engine and some sort of 
instrument/patch format we can load


- This is similar to the MOD/XM "mod players" from the old days, they are 
basically light music synths that you load with patches and they have some 
realtime processing of the patch, like layering multiple samples, LFO (low 
frequency oscilation), ADSR envelope (attack, decay, sustain, release), 
vibrato/tremolo, velocity, panning.


- A simple MOD/XM engine (or subset) can fit in something like 20kb or less 
(honestly, I'm talking real implementations here), and with lots of the 
audio stuff abstracted in these modern OS days you can squeeze even more 
from it maybe.


Regards, Stan Vassilev

Thanks. In the recent rush I haven't been able to read "Who wants MIDI?" 
much less abstract it.


Were you able to get a sense from the whole list of (a) which specific 
MIDI (or MIDI-like) features & implementations are most desired; and (b) 
how much they'd be willing to pay for this in player size?


Do you know what size of MIDI engine would work best for you, for which 
MIDI abilities, for instance?




Anyone also know the link the the MM wish list?


Searching "macromedia wish list" pulls up
http://www.macromedia.com/go/wish


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


Re: [Flashcoders] DataGrid - Content

2005-12-14 Thread Helen Triolo

Helmut Granda wrote:


Thanks all for your help on this.

What I can't get my head around and maybe that is why I cant get this 
to work is, how does the DG knows to get the info from certail columns 
only?


I dont see the declaration that the information belongs to the DG.

Using Helen's sample

mydata = [{company:a, id:3}, {company:b, id:54}];
mygrid.columnNames = ["company"];


one more line (should've included for clarity before):
mygrid.dataProvider = mydata;



How does mygrid knows to get the column "company" from mydata when my 
data has not yet beein delared to have a relationship with mygrid?




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


Re: [Flashcoders] DataGrid - Content

2005-12-14 Thread Helmut Granda

Thanks all for your help on this.

What I can't get my head around and maybe that is why I cant get this to 
work is, how does the DG knows to get the info from certail columns only?


I dont see the declaration that the information belongs to the DG.

Using Helen's sample

mydata = [{company:a, id:3}, {company:b, id:54}];
mygrid.columnNames = ["company"];

How does mygrid knows to get the column "company" from mydata when my 
data has not yet beein delared to have a relationship with mygrid?


I saw the did the same here:
http://flash-creations.com/notes/servercomm_database.php
Which is the link provided

TIA.
Helmut.

Robert Chyko wrote:


When you are creating the columns in your datagrid do not create a
column for the id's, just for whatever you want to actually display.

Then you can put whatever values you want into your DataSet, but the
Datagrid will only display the values that have columns associated with
them.

So if in your for loop when you are adding to the DataSet, you can add
any properties you want (just like you are doing in your first push()
statement in your for loop):

myDataSet.push({ID:idValue, Name:name, Company:id, property4:value,
property5:value, etc..});


But you only want to display Name and Company, then you only create
columns for Name and Company in the datagrid:

var newCol = new DataGridColumn("Name"); 
newCol.headerText = "Name"; 
myDataGrid.addColumn(newCol);


var newCol = new DataGridColumn("Company"); 
newCol.headerText = "Company"; 
myDataGrid.addColumn(newCol);


If you don't get it, let me know, I can write up a quick .fla and send
it to you.




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Helmut
Granda
Sent: Wednesday, December 14, 2005 1:26 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] DataGrid - Content


Thanks Robert,

Im glad to hear it can be done, with a for loop I am populating the 
Datagrid:


myDataSet = newArray();
   for (var i = 0; iHow would I avoid creating a new column and not getting an error from 
the compiler? Sorry I have been strugling with this project for a 
LONG time and my brain is fried now. :)


Thanks!
...helmut


Robert Chyko wrote:

 


Sure, when you are setting up the Datagrid, just do not create a column
for the id's.  When you add a row to the Datagrid you can keep id as
   


one
 


of the values, but it just will not be displayed because there is no
column for it.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Helmut
Granda
Sent: Wednesday, December 14, 2005 1:12 PM
To: Flashcoders mailing list
Subject: [Flashcoders] DataGrid - Content


Is there anyway to add Data to the Data grid but to keep some of the 
data "hidden" for a later use?


EXE:
company = [a,b,c,d,e,f,g,h,i]
id = [3,54,97,23,65,87,54,23]

I am displaying the company array into my DataGrid, but I would like to
   



 

keep the ID in relation to the company, I can create an array and 
display the company and its ID, but is there anyway to "hide" the ID
   


but
 


have it ready and linked to the company array?

Any Pointers greatly appreciated.
Helmut.

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






   



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




 



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


Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread John Dowdell

Tyler Wright wrote:

This conversation has now been posted to http://codext.xtyler.com/code/2
I've posted a summary along with a direct quote of the entire conversation
which I hope will continue to receive contributions.  If everyone approves,
I'll send it off to MM, though I know they also keep up in the Flashcoders
list and have perhaps already most of this.  


Thanks. In the recent rush I haven't been able to read "Who wants MIDI?" 
much less abstract it.


Were you able to get a sense from the whole list of (a) which specific 
MIDI (or MIDI-like) features & implementations are most desired; and (b) 
how much they'd be willing to pay for this in player size?


Do you know what size of MIDI engine would work best for you, for which 
MIDI abilities, for instance?




Anyone also know the link the the MM wish list?


Searching "macromedia wish list" pulls up
http://www.macromedia.com/go/wish

I know that MIDI or Beatnik or other audio-via-instructions has been on 
the wishlist for awhile, although specific wishes vary in the amount of 
the General MIDI spec they need, and wishes vary in how much of a player 
download effect they'd accept.



> I’d like to take a poll. Do you think MIDI should be included
> in the Flash Player? Why or why not? I want both votes and
> opinions as I’ll organize the results and send them off to
> "Adobe, formerly known as Macromedia". Please respond with
> some sort of opinion whether it’s pro or con.

Hmm, that sounds sort of mom-and-apple-pie... who would *not* want a new 
ability? The big questions are precisely which abilities under that 
general "midi" label most people actually want most, and what they'd be 
willing to pay for it, in terms of slower audience adoption or greater 
disparity across devices or whatever?


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 mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Re: FLV Length

2005-12-14 Thread Cole Peterson

This is in response to 

> Does anyone know how to retrieve the length of an .FLV file with C#?

Flash Mx 2004: Update your 
C:\Program Files\Macromedia\Flash MX 2004\en\First
Run\Classes\NetStream.as

with

function onMetaData(info:Object):Void;

 
to enable getting the duration of your flv's from the metadata.


ns.onMetaData = function(obj) {
trace("FLV duration: "+obj.duration+" sec.");
trace("FLV videodatarate: "+obj.videodatarate+"
Kbit/s");
trace("FLV audiodatarate: "+obj.audiodatarate+"
Kbit/s");
trace("FLV creationdate: "+obj.creationdate);
};

 


: Cole Peterson 
: ZAAZ, Inc 
: Interactive developer 
: [EMAIL PROTECTED] 

: t 206.341.9885 x4867 
: www.zaaz.com 

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


[Flashcoders] Using the magic mx.utils classes

2005-12-14 Thread Sander

Hi there,

I found a nice list of classes that shipped with Flash 2004, like  
Xpath and Collection. But these seem to be the "best" documented  
ones. Others like mx.utils.errorStrings are a mystery even to Google.


Does anyone know of a website that explains the usage of these  
classes? Needless to say a search on Macrobe doesn't return hits on  
most classes.





























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


[Flashcoders] Live Preview Woes

2005-12-14 Thread Judah Frangipane


I am working on a component that attaches a movieclip. When I drag it to 
the stage it attaches multiple copies of this movieclip skipping my 
checks and balances. But when I test the movie it works fine and only 
shows one instance like i designed it to. Is there anyway to find out in 
my component class file if the instance is on the stage or in a test movie?


class myComponent extends TextInput {

  // constructor
  function myComponent() {

  }

  function init() {
 if ("onTheStage") {
// exit out and do not attach movie
 }
 else {
// attach movie
 styleRequired()
  }

  }

   // style the text box when the value is valid
   function styleRequired() {
   trace("style required")
   required_mc = 
_parent.attachMovie("required_mc",this+"_required", 
this._parent.getNextHighestDepth());

   if (required) {
   trace("required="+required)
   if (requiredAlign=="left") {
   required_mc._x = _x - required_mc._width;
   required_mc._y = _y;
   }
   else {
   required_mc._x = _x + __width;
   required_mc._y = _y;
   }
   }
   else {
   required_mc._visible = false;
   }
   }
}
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Flexbuilder 2: Drag & Drop

2005-12-14 Thread Tom Bray
How can I prevent the data in the dragSource from being deleted from
the dragInitiator?  I'm using MM's drag & drop example below. When you
drag an item from one list to the other, the data is removed from the
dragInitiator and I don't want that to happen. I tried supplying my
own dragComplete event handler for the dragInitiator list, but that
didn't work.  I'm a little surprised that the default behavior is to
delete the data from initiator.  (The docs suggest that it isn't the
default behavior.)



http://www.macromedia.com/2005/mxml";
width="500" height="200" borderStyle="solid" backgroundColor="#FF"
creationComplete="initApp()">
















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


[Flashcoders] Fast Property Compare

2005-12-14 Thread clark slater
Hey Folks,

Originally sent this yesterday but it never seemed to come through.
Apologies if you get it twice.

I'm working on some code for a catalog style application and I need to
compare objects from two different sets of data. Any object may have 10+
properties and I need to know if *some* properties have identical values. So
far I have been doing this the old fashioned way but I am wondering if there
is a much faster/better way to achieve the same result.

This is my present solution, would love to hear how clever people out there
handle this:

// param filterObj determines the props and values that must match e.g.
{prop1:"a", prop2:"b"}

function compareItems (filterObj:Object) : Array {
  var resultArr = new Array();
  var itemArr = RS.items;

  for (var i = 0; i < itemArr.length; i++) {
   var propMatch = true;
   var tmpItem = itemArr[i];

   for (var j in filterObj) {
if (tmpItem[j] != filterObj[j]) {
 propMatch = false;
 break;
}
   }

   if (propMatch) {
resultArr.push (tmpItem);
   }

  }
Thanks,

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


Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-14 Thread Moses Gunesch

On Dec 14, 2005, at 5:38 AM, Martin Klasson wrote:
So I can not recommend this engine as the 1.1 version has some  
problems,
which DID work in the 1.0 release. I have emailed Moses about this,  
but he might not be up yet.


Christ almighty Martin! It's called a private beta and you are  
breaking your trust in a huge way here with this post. Way out of  
line dude.


Anyway people, the version 1.1 Martin is going on about is not yet  
available except by special request for beta testers, but you're more  
than welcome to use 1.0. As stated at my site, version 1.0 is very  
stable but has a couple of very minor known bugs that you probably  
will not run up against.


I have been working around the clock (with a lot of help from Jim  
Tann/ UK and Graeme Asher/ Seattle on the MTASC issue) on getting  
v1.1 stable and ready to release, it has a number of great new  
features like bezier tweens and easy filter tweening.


I am really excited about it, it's a great version! I hope to get  
that out within the next few weeks but I need to debug plus work  
things out with the German authors of the filter tools that I've  
integrated into the kit, which is taking some doing as well. Believe  
me, this project is eating far more time than I have to give,  
basically it's now a full-time (and unpaid) job, so some patience is  
required from the fan base here or I will jump out a window.


Also, to clear up the confusion about tweening engines in other  
posts, Zigo personally passed the torch to me on further updating his  
engine, so ZigoEngine+Fuse Kit 1.0 is currently the newest quasi- 
official release of lmc_tween - it's the same engine but as2 class  
based and includes easy to use components.


http://www.mosessupposes.com/Fuse/
Fuse on. - Moses

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


Re: [Flashcoders] Attaching components within components

2005-12-14 Thread Pranav Negandhi (Fractal Ink)
I think I made some breakthrough here. When I trace a typeof(oStackVar) 
it returns "object" instead of "movieclip". What gives? I thought 
components were movieclips.


I'm guess that because its being interpreted as an object, the 
createClassObject method doesn't run correctly. Anybody got any idea if 
this is true?


Regards,
Pranav

Pranav Negandhi wrote:

Sigh!
I don't even know where to begin. I'm creating a component called Stack
through the createClassObject command. A while later I'm creating a
component called Card inside the Stack using createClassObject. And it
returns null.

The exact same line of code placed on the stage or on the constructor of the
Stack object creates the Card component. But if I put this is a function in
Stack called CreateCardObjects(sCardsList) then it doesn't work. Why? I have
no clue. Can someone shed some light on this?


Regards,
Pranav Negandhi

Fractal | ink
O: 91 22 5660 3682
M: 91 98211 73656
www.fractalink.com

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



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


Re: [Flashcoders] SendAndLoad and Paypal problem

2005-12-14 Thread David Rorex
On 12/14/05, Thierry V. <[EMAIL PROTECTED]> wrote:
> Hello List !!
>
> I try to make a cart in a full flash site, and since 1 week, try to work
> with paypal, but no success...
>
> my code :
>
> [code]
> var lv:LoadVars = new LoadVars();
> lv.sendAndLoad( url, lv, "POST" );
> [/code]
>
>
> If I try this code into the Flash IDE (mx 2004), loadVars return
> success, but doesn't update the paypal cart...
>
> If I try this code into a browser, but with local path (ie
> c:\web\www\test\test.html) the loadVars return success and update my
> cart, yeah !!
>
> After that, I want to try on real scheme, with correct url (ie
> 127.0.0.1/test/test.html), but in this case, loadVars return failed and
> it's not possible to relaunch the test (I have two buttons, first to add
> an item, second to display paypal site cart).
>
> It's a security problem ? Is there any possibility to call correctly the
> paypal site with sendAndLoad and url path ??

I think POST doesn't work correctly from within the IDE all the time,
so that would explain the first problem.

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


RE: [Flashcoders] DataGrid - Content

2005-12-14 Thread Robert Chyko
When you are creating the columns in your datagrid do not create a
column for the id's, just for whatever you want to actually display.

Then you can put whatever values you want into your DataSet, but the
Datagrid will only display the values that have columns associated with
them.

So if in your for loop when you are adding to the DataSet, you can add
any properties you want (just like you are doing in your first push()
statement in your for loop):

myDataSet.push({ID:idValue, Name:name, Company:id, property4:value,
property5:value, etc..});


But you only want to display Name and Company, then you only create
columns for Name and Company in the datagrid:

var newCol = new DataGridColumn("Name"); 
newCol.headerText = "Name"; 
myDataGrid.addColumn(newCol);

var newCol = new DataGridColumn("Company"); 
newCol.headerText = "Company"; 
myDataGrid.addColumn(newCol);

If you don't get it, let me know, I can write up a quick .fla and send
it to you.




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Helmut
Granda
Sent: Wednesday, December 14, 2005 1:26 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] DataGrid - Content


Thanks Robert,

Im glad to hear it can be done, with a for loop I am populating the 
Datagrid:

myDataSet = newArray();
for (var i = 0; iSure, when you are setting up the Datagrid, just do not create a column
>for the id's.  When you add a row to the Datagrid you can keep id as
one
>of the values, but it just will not be displayed because there is no
>column for it.
>
>
>-Original Message-
>From: [EMAIL PROTECTED]
>[mailto:[EMAIL PROTECTED] On Behalf Of Helmut
>Granda
>Sent: Wednesday, December 14, 2005 1:12 PM
>To: Flashcoders mailing list
>Subject: [Flashcoders] DataGrid - Content
>
>
>Is there anyway to add Data to the Data grid but to keep some of the 
>data "hidden" for a later use?
>
>EXE:
>company = [a,b,c,d,e,f,g,h,i]
>id = [3,54,97,23,65,87,54,23]
>
>I am displaying the company array into my DataGrid, but I would like to

>keep the ID in relation to the company, I can create an array and 
>display the company and its ID, but is there anyway to "hide" the ID
but
>
>have it ready and linked to the company array?
>
>Any Pointers greatly appreciated.
>Helmut.
>
>___
>Flashcoders mailing list
>Flashcoders@chattyfig.figleaf.com
>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>___
>Flashcoders mailing list
>Flashcoders@chattyfig.figleaf.com
>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
>
>
>
>  
>

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


RE: [Flashcoders] Loading Xml from Flash over Http

2005-12-14 Thread Brent Gore
It seems that using the "/dir/file.xml" works over "dir/file.xml".  This
is a step in the right direction, but I'm sure we'll still get a lot of
complaining about this. :)  Even worse, our dev environment is IIS, but
the production environment is unix, so who knows what will happen.

Thanks for the comments!

-Original Message-
From: Cedric Muller [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 14, 2005 1:55 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Loading Xml from Flash over Http

should have something to do with the server's OS ?

> Strange that this should come up, the other day my colleague was 
> working
> on a file that used relative refferences loaded in from XML, it worked
> fine, the next day when he open it up it had stopped working - the fix
> we found was instead of:
>
> "mydir/myfile.xml"
>
> Was to use
>
> "/mydir/myfile.xml"
>
> The odd thing was it had worked fine before and we'd not moved any of
> the files around.
>
> Our swf runs in a projector environment, but it may be worth a try?
>
> Cheers
>
> M
>
>> -Original Message-
>> From: [EMAIL PROTECTED]
>> [mailto:[EMAIL PROTECTED] On Behalf
>> Of Brent Gore
>> Sent: 13 December 2005 16:07
>> To: flashcoders@chattyfig.figleaf.com
>> Subject: [Flashcoders] Loading Xml from Flash over Http
>>
>> I have an xml file that is loaded into a swf, playing in a
>> browser.  My question is about the url to the xml file.  If I
>> specify an absolute url
>> ("http://mydomain.com/xml/file.xml";) I have no problems but
>> when I try and use a relative url ("xml/file.xml") it fails
>> to load.  The rel path is correct.  Running the swf in any
>> environment other than over http works correctly with the rel
>> url.  I've also added a crossdomain.xml which allows any
>> access, and it resides with the swf.
>>
>> For this particular project it is crucial that the url be
>> relative and not absolute.  Is this a limitation in Flash, or
>> am I missing something?
>> Are there any other options than using an absolute url?
>>
>> Thanks for your help!
>>
>> Brent
>> ___
>> Flashcoders mailing list
>> Flashcoders@chattyfig.figleaf.com
>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>


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


Re: [Flashcoders] DataGrid - Content

2005-12-14 Thread Helmut Granda

Thanks Robert,

Im glad to hear it can be done, with a for loop I am populating the 
Datagrid:


myDataSet = newArray();
   for (var i = 0; iHow would I avoid creating a new column and not getting an error from 
the compiler? Sorry I have been strugling with this project for a 
LONG time and my brain is fried now. :)


Thanks!
...helmut


Robert Chyko wrote:


Sure, when you are setting up the Datagrid, just do not create a column
for the id's.  When you add a row to the Datagrid you can keep id as one
of the values, but it just will not be displayed because there is no
column for it.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Helmut
Granda
Sent: Wednesday, December 14, 2005 1:12 PM
To: Flashcoders mailing list
Subject: [Flashcoders] DataGrid - Content


Is there anyway to add Data to the Data grid but to keep some of the 
data "hidden" for a later use?


EXE:
company = [a,b,c,d,e,f,g,h,i]
id = [3,54,97,23,65,87,54,23]

I am displaying the company array into my DataGrid, but I would like to 
keep the ID in relation to the company, I can create an array and 
display the company and its ID, but is there anyway to "hide" the ID but


have it ready and linked to the company array?

Any Pointers greatly appreciated.
Helmut.

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




 



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


Re: [Flashcoders] DataGrid - Content

2005-12-14 Thread Helen Triolo
Put your contents into one array with object elements and use the 
columnNames property to specify only the columns (ie, object properties) 
you want to show.  For example,


mydata = [{company:a, id:3}, {company:b, id:54}, etc];
mygrid.columnNames = ["company"];

There's a working example here: 
http://flash-creations.com/notes/servercomm_database.php


Helen


Helmut Granda wrote:

Is there anyway to add Data to the Data grid but to keep some of the 
data "hidden" for a later use?


EXE:
company = [a,b,c,d,e,f,g,h,i]
id = [3,54,97,23,65,87,54,23]

I am displaying the company array into my DataGrid, but I would like 
to keep the ID in relation to the company, I can create an array and 
display the company and its ID, but is there anyway to "hide" the ID 
but have it ready and linked to the company array?




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


Re: [Flashcoders] image manipulation in Flash

2005-12-14 Thread Helmut Granda

Maybe the following tutorial will get you started:

http://www.tutorialized.com/tutorial/Using-Advanced-Bitmap-Color-Manipulation/3124

Helmut.

rishi wrote:


Hi



I want to do image manipulation in Flash. 




Problem Definition.



I have a png image exported at 80% quality . I am using 4 colors in png
image say red,blue,green,orange. But as the image is generate because of
lower quality image now contains more than 4 colors, some are variations
of red, some of yellow some of gren.. In my application I want the user
to have an option to replace selective color.

How can I achieve to replace simultaneous ranges of red even if user
specified a single color red. Also keeping in mind the intention to
change only connected pixels.



Any ideas are welcome.



Regards

Rishi

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




 



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


Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-14 Thread Tyler Wright
I should be the one to thank you guys.

Anyone also know the link the the MM wish list?

Tyler

On 12/13/05, Weyert de Boer <[EMAIL PROTECTED]> wrote:
>
> Yeah, looks nice!
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] DataGrid - Content

2005-12-14 Thread Robert Chyko
Sure, when you are setting up the Datagrid, just do not create a column
for the id's.  When you add a row to the Datagrid you can keep id as one
of the values, but it just will not be displayed because there is no
column for it.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Helmut
Granda
Sent: Wednesday, December 14, 2005 1:12 PM
To: Flashcoders mailing list
Subject: [Flashcoders] DataGrid - Content


Is there anyway to add Data to the Data grid but to keep some of the 
data "hidden" for a later use?

EXE:
company = [a,b,c,d,e,f,g,h,i]
id = [3,54,97,23,65,87,54,23]

I am displaying the company array into my DataGrid, but I would like to 
keep the ID in relation to the company, I can create an array and 
display the company and its ID, but is there anyway to "hide" the ID but

have it ready and linked to the company array?

Any Pointers greatly appreciated.
Helmut.

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


[Flashcoders] DataGrid - Content

2005-12-14 Thread Helmut Granda
Is there anyway to add Data to the Data grid but to keep some of the 
data "hidden" for a later use?


EXE:
company = [a,b,c,d,e,f,g,h,i]
id = [3,54,97,23,65,87,54,23]

I am displaying the company array into my DataGrid, but I would like to 
keep the ID in relation to the company, I can create an array and 
display the company and its ID, but is there anyway to "hide" the ID but 
have it ready and linked to the company array?


Any Pointers greatly appreciated.
Helmut.

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


Re: [Flashcoders] Flexbuilder 2: how can I hide subcontrols oftheRichTextEditor?

2005-12-14 Thread Tom Bray
Thanks again.  Now, I'd like to update the layout of the subcontrols
to account for extra space left by the ones I've hidden.  Is that
possible?  Would I need to actually remove individual subcontrols with
removeChild()? And can I move all the subcontrols so they're above the
textarea instead of below?  Are the class files for these controls
available somewhere so I can figure out the answers to these questions
myself?

Thanks,

Tom

On 12/13/05, JesterXL <[EMAIL PROTECTED]> wrote:
> Right idea, wrong event.  Use creationComplete (another might work, but this
> is the safest):
>
> 
> id="my_rte"
>
> width="100%" height="100%"
>
> creationComplete="hideMofos()"/>
>
>
>
> - Original Message -
> From: "Tom Bray" <[EMAIL PROTECTED]>
> To: "Flashcoders mailing list" 
> Sent: Tuesday, December 13, 2005 8:36 PM
> Subject: Re: [Flashcoders] Flexbuilder 2: how can I hide subcontrols
> oftheRichTextEditor?
>
>
> Thanks, Jesse.  Now, what if I want to hide those mofos automagically
> when the app loads so the user never sees them?  I've been trying to
> call the hideMofos() method like this:
>
>  height="100%"  initialize="hideMofos()"/>
>
> But I get a runtime error that makes me think I need to wait for those
> subcontrols to initialize. Correct?
>
> -Tom
>
> On 12/13/05, JesterXL <[EMAIL PROTECTED]> wrote:
> > This works:
> >
> > 
> >
> > http://www.macromedia.com/2005/mxml"; xmlns="*">
> >
> > 
> >
> > 
> >
> > 
> >
> >  >
> > label="Hide Buttons"
> >
> > click="hideMofos()" />
> >
> >  >
> > id="my_rte"
> >
> > width="100%" height="100%" />
> >
> > 
> >
> >
> >
> > - Original Message -
> > From: "Tom Bray" <[EMAIL PROTECTED]>
> > To: "Flashcoders mailing list" 
> > Sent: Tuesday, December 13, 2005 7:42 PM
> > Subject: [Flashcoders] Flexbuilder 2: how can I hide subcontrols of
> > theRichTextEditor?
> >
> >
> > I'd like to hide the font chooser, align buttons, and the link text
> > field in my RTE component.  My first attempt was to set the _visible
> > property of the linkTextInput subcontrol to false in the RTE's
> > initialize event handler.  This throws errors at runtime and they
> > aren't particularly helpful at figuring out what the problem is.
> >
> > Thanks,
> >
> > Tom
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Attaching components within components

2005-12-14 Thread Pranav Negandhi
Sigh!
I don't even know where to begin. I'm creating a component called Stack
through the createClassObject command. A while later I'm creating a
component called Card inside the Stack using createClassObject. And it
returns null.

The exact same line of code placed on the stage or on the constructor of the
Stack object creates the Card component. But if I put this is a function in
Stack called CreateCardObjects(sCardsList) then it doesn't work. Why? I have
no clue. Can someone shed some light on this?


Regards,
Pranav Negandhi

Fractal | ink
O: 91 22 5660 3682
M: 91 98211 73656
www.fractalink.com

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


[Flashcoders] Looking for developer for start-up?

2005-12-14 Thread Jason Sosa
Building a start-up for the radio/music industry. Wondering if anyone  
is interested in an equity share for contributing development. Need a  
back end guy smart as shit. Heavy back end logic, lots of forms. Have  
industry partners and have been featured in Billboard Radio Monitor.



**
Jason Sosa
President
Mind Spin Research LLC.
www.mindspinresearch.com
ph. 616-928-0868
toll free. 1-888-218-1627

iChat/AIM: [EMAIL PROTECTED]



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


Re: [Flashcoders] FLV Length

2005-12-14 Thread Jordan L. Chilcott
The duration is located within the metadata of an FLV. Unless C# is  
able to read the metadata within an FLV, you can always read it  
within a Flash Player or browser and have it pass the info to C#.


jord

On Dec 14, 2005, at 5:55 AM, Jim Tann wrote:


Does anyone know how to retrieve the length of an .FLV file with C#?


--
Jordan L. Chilcott, President
Interactivity Unlimited
Guelph, Ontario
-
Tel:  (519) 837-1879
eFax: (253) 276-8631

mailto:[EMAIL PROTECTED]
http://www.interactivityunlimited.com
iChat/AIM: j1chilcott

Author: "Building Web Sites with Macromedia Studio MX"
Author: "Building Dynamic Web Sites with Macromedia Studio MX"
Author: "Flash Professional 8: Training From the Source"


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


Re: [Flashcoders] private/public troubles

2005-12-14 Thread grant
If I have a main Application class I generally drag it to the stage and then in 
my external code I have the application start in the onload method of the 
class.  I never use root, in your case its probably not a big deal I just find 
sometime in the future a use of root would come back and bite me.

using _root is generally considered a no-no.

"stone the blasphemer!", "stone the blasphemer" !  :)

Grant

- Original Message -
From: PR Durand [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: 12/14/05 11:21 AM
Subject: Re: [Flashcoders] private/public troubles

> Thanx a lot Grant,
> I think you pointed right. 'will test it.
> Why on _root? because the project is a full external code, and this 
> class is the core of the application, so why not putting it on _level0 
> (so mainSwf._root) ?
> Is it better to make a CoreComponent and drag it to the scene?
> PR
> 
> 
> [EMAIL PROTECTED] a écrit :
> 
> >did you type your instance of oCore on root ?
> >
> >if your data is not "typed" the iDE will not enforce access modifiers.
> >
> >e.g
> >
> >var core:Core = new Core()
> >trace (core.oParam); /// should not compile
> >
> >var anotherCore = new Core()
> >trace (anotherCore .oParam); /// should compile as anotherCore is not typed.
> >
> >because you are declaring it on root is probably not typed.  Why put it on 
> >root ?
> >
> >Grant.
> >
> >- Original Message -
> >From: PR Durand [EMAIL PROTECTED]
> >To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
> >Sent: 12/14/05 9:54 AM
> >Subject: [Flashcoders] private/public troubles
> >
> >  
> >
> >>Hi List!
> >>
> >>This is not really a problem, but rather a question cause it seems 
> >>strange...
> >>
> >>I've got a Core.as class containing
> >>private var oParam:ParamMngr;
> >>and
> >>this.oParam = new ParamMngr();
> >>
> >>in the ParamMngr class, we can see
> >>private var mcGround:MovieClip;
> >>and theuse of it.
> >>
> >>into flash, on main stage, I've put the following:
> >>import com.domain.Core;
> >>_root.oCore = new Core();
> >>
> >>and then tried
> >>trace(_root.oCore.oParam.mcGround);
> >>--> it worked !!!
> >>
> >>why? each variable is private... so how can it run?
> >>
> >>thx,
> >>
> >>PR
> >>
> >>___
> >>Flashcoders mailing list
> >>Flashcoders@chattyfig.figleaf.com
> >>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >>
> >>
> >
> >___
> >Flashcoders mailing list
> >Flashcoders@chattyfig.figleaf.com
> >http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> >
> >  
> >
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


Re: [Flashcoders] RE: 3D in Flash

2005-12-14 Thread Weyert de Boer


You can also do this easily with Fusion 5, anyway it's not that 
difficuilt anyways.

I saw some nice Sin City flows for Fusion 5 at IBC. Awesome.

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


RE: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Merrill, Jason
Keep the captions in an external XML file.  Have an event trigger a text
field to update.  For example, I use Xpath and wrote this function,
which updates based on a movie's current frame (because I am using the
media playback component's cue points which advance the frames based on
the cue points) - but could be any event:

function showCaption(thisFrame:Number):Void{ 
caption_txt.text =
XPath.selectNodes(_parent.session.data.xmlFiles["content_xml"],"content/
welcome/message/caption["+(thisFrame-1)+"[EMAIL PROTECTED]");  
}

showCaption(theMovieClip._currentframe);

Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com










>>-Original Message-
>>From: [EMAIL PROTECTED] [mailto:flashcoders-
>>[EMAIL PROTECTED] On Behalf Of Derivative
>>Sent: Wednesday, December 14, 2005 11:45 AM
>>To: Flashcoders mailing list
>>Subject: Re: [Flashcoders] Displaying transcript on-screen for
hearing-impaired
>>
>>Sorry - Should have clarified. These movies are just Flash movies
>>although I will be doing some FLV's in a while so that is helpful,
>>particulary thrwoing the text in XML for the client.
>>
>>Sean
>>
>>On 12/14/05, Merrill, Jason <[EMAIL PROTECTED]> wrote:
>>> When you mean, "movies" - do you mean video clips or Flash movies?
If
>>> you mean video clips, then Flash MX 2004 and Flash 8 have built-in
cue
>>> point features.  Coincidentally, I was just doing some of this last
>>> night for a Flash 7 file.  Using the Media Playback component, you
can
>>> add cue points to video and display text on screen.  I've even got
the
>>> caption text in an external XML file that the client can edit if
they
>>> need.  Pretty easy to set up and looks pretty slick too. Information
is
>>> in the help files.
>>>
>>> Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> >>-Original Message-
>>> >>From: [EMAIL PROTECTED]
[mailto:flashcoders-
>>> >>[EMAIL PROTECTED] On Behalf Of Derivative
>>> >>Sent: Wednesday, December 14, 2005 11:26 AM
>>> >>To: Flashcoders@chattyfig.figleaf.com
>>> >>Subject: [Flashcoders] Displaying transcript on-screen for
>>> hearing-impaired
>>> >>
>>> >>Hola -
>>> >>
>>> >>I am working on a project that includes several movies which the
>>> >>client wants to make more usable to hearing-impaired viewers.
>>> >>I have done this in the past simply by syncing up scrolling text
on
>>> >>the timeline but this obviously gets annoying over several movies,
>>> >>edits, etc. I know Flash has some usability features built-in (for
>>> >>screen-readers, etc) but we are assuming the viewer has no
appropriate
>>> >>software for handling voice-over and we need include it.
>>> >>
>>> >>So - anyone know of any clever methods of doing this and perhaps
even
>>> >>a more user-friendly method?
>>> >>
>>> >>- Sean
>>> >>___
>>> >>Flashcoders mailing list
>>> >>Flashcoders@chattyfig.figleaf.com
>>> >>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>> NOTICE:
>>> This message is for the designated recipient only and may contain
privileged or
>>confidential information. If you have received it in error, please
notify the sender
>>immediately and delete the original. Any other use of this e-mail by
you is
>>prohibited.
>>> ___
>>> Flashcoders mailing list
>>> Flashcoders@chattyfig.figleaf.com
>>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>>
>>___
>>Flashcoders mailing list
>>Flashcoders@chattyfig.figleaf.com
>>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] RE: 3D in Flash

2005-12-14 Thread Weyert de Boer


The compositing system used for something like this is typically a 
flame or inferno (autodesk/discreet) seat which can then motion blend 
between the still sequences. There are also some cheaper plugins for 
AfterEffects and Shake that will do this, albeit not nearly as good, 
which is why this doesn't look perfect in some regards. RE-Flex Morph 
which comes with Autodesk Combustion 4 will also do this (with a 
decent amount of hand massaging).
You can also do this easily with Fusion 5, anyway it's not that 
difficuilt anyways.


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


RE: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Mike Mountain
Yeah - sorry what I meant was if you use the flash 8 video encoder tool
there's a whole section in the setting devoted to cue points, event
triggering etc. It's a bit easier to set up than the old MX04 way if I
recall.

M

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf 
> Of Merrill, Jason
> Sent: 14 December 2005 16:37
> To: Flashcoders mailing list
> Subject: RE: [Flashcoders] Displaying transcript on-screen 
> for hearing-impaired
> 
> >>You can embed cue points in flash 8 flvs
> 
> You can also target Flash 7/use Flash MX 2004 to add cue 
> points as well.
> 
> Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com
> 
> 
> 
> 
> 
> 
> 
> NOTICE:
> This message is for the designated recipient only and may 
> contain privileged or confidential information. If you have 
> received it in error, please notify the sender immediately 
> and delete the original. Any other use of this e-mail by you 
> is prohibited.
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] RE: 3D in Flash

2005-12-14 Thread Jon Bradley

On Dec 14, 2005, at 10:37 AM, nik crosina wrote:

This IKEA thingy is just brilliant! But I think it is a bit out of our 
reach

time-wise and buclient budget wise.

Techniology wise I wanted to get an idea from you guys as to whcih 
solution
you would gravitate towards to. My gut feeling would be to use 
Shockwave
because of its 3D features, but install wise flash is more wide spread 
and

would cause less hassle for our clients.

I guess it depends on how easy and painless we make the process for 
the site

visitors, and how good lokonig / easy to use we make it

Thanks!!!

Nik C


Not necessarily. The flash portion of this work isn't the real 
budget-breaker or time element in a project like this. This is all 
about studio setup and setting up camera rigs with a flash controller 
and a lot of cameras at that - at least 30-40 with remote capabilities. 
There are studios that do this as a service, and you may be suprised at 
what you find.


The compositing system used for something like this is typically a 
flame or inferno (autodesk/discreet) seat which can then motion blend 
between the still sequences. There are also some cheaper plugins for 
AfterEffects and Shake that will do this, albeit not nearly as good, 
which is why this doesn't look perfect in some regards. RE-Flex Morph 
which comes with Autodesk Combustion 4 will also do this (with a decent 
amount of hand massaging).


Full 3d rendering is also an option if your environments are available 
for use in some 3d package.


good luck!

Jon Bradley
Animation / Interactive / Visual FX
Post Central, Inc.
170 Linden Oaks, Suite B
Rochester, NY  14625
585.385.1530  x273
[EMAIL PROTECTED]
www.cherrycrushthemovie.com

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


Re: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Derivative
Sorry - Should have clarified. These movies are just Flash movies
although I will be doing some FLV's in a while so that is helpful,
particulary thrwoing the text in XML for the client.

Sean

On 12/14/05, Merrill, Jason <[EMAIL PROTECTED]> wrote:
> When you mean, "movies" - do you mean video clips or Flash movies?  If
> you mean video clips, then Flash MX 2004 and Flash 8 have built-in cue
> point features.  Coincidentally, I was just doing some of this last
> night for a Flash 7 file.  Using the Media Playback component, you can
> add cue points to video and display text on screen.  I've even got the
> caption text in an external XML file that the client can edit if they
> need.  Pretty easy to set up and looks pretty slick too. Information is
> in the help files.
>
> Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com
>
>
>
>
>
>
>
>
>
>
> >>-Original Message-
> >>From: [EMAIL PROTECTED] [mailto:flashcoders-
> >>[EMAIL PROTECTED] On Behalf Of Derivative
> >>Sent: Wednesday, December 14, 2005 11:26 AM
> >>To: Flashcoders@chattyfig.figleaf.com
> >>Subject: [Flashcoders] Displaying transcript on-screen for
> hearing-impaired
> >>
> >>Hola -
> >>
> >>I am working on a project that includes several movies which the
> >>client wants to make more usable to hearing-impaired viewers.
> >>I have done this in the past simply by syncing up scrolling text on
> >>the timeline but this obviously gets annoying over several movies,
> >>edits, etc. I know Flash has some usability features built-in (for
> >>screen-readers, etc) but we are assuming the viewer has no appropriate
> >>software for handling voice-over and we need include it.
> >>
> >>So - anyone know of any clever methods of doing this and perhaps even
> >>a more user-friendly method?
> >>
> >>- Sean
> >>___
> >>Flashcoders mailing list
> >>Flashcoders@chattyfig.figleaf.com
> >>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> NOTICE:
> This message is for the designated recipient only and may contain privileged 
> or confidential information. If you have received it in error, please notify 
> the sender immediately and delete the original. Any other use of this e-mail 
> by you is prohibited.
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Merrill, Jason
>>You can embed cue points in flash 8 flvs 

You can also target Flash 7/use Flash MX 2004 to add cue points as well.

Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com







NOTICE:
This message is for the designated recipient only and may contain privileged or 
confidential information. If you have received it in error, please notify the 
sender immediately and delete the original. Any other use of this e-mail by you 
is prohibited.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Merrill, Jason
When you mean, "movies" - do you mean video clips or Flash movies?  If
you mean video clips, then Flash MX 2004 and Flash 8 have built-in cue
point features.  Coincidentally, I was just doing some of this last
night for a Flash 7 file.  Using the Media Playback component, you can
add cue points to video and display text on screen.  I've even got the
caption text in an external XML file that the client can edit if they
need.  Pretty easy to set up and looks pretty slick too. Information is
in the help files.

Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com










>>-Original Message-
>>From: [EMAIL PROTECTED] [mailto:flashcoders-
>>[EMAIL PROTECTED] On Behalf Of Derivative
>>Sent: Wednesday, December 14, 2005 11:26 AM
>>To: Flashcoders@chattyfig.figleaf.com
>>Subject: [Flashcoders] Displaying transcript on-screen for
hearing-impaired
>>
>>Hola -
>>
>>I am working on a project that includes several movies which the
>>client wants to make more usable to hearing-impaired viewers.
>>I have done this in the past simply by syncing up scrolling text on
>>the timeline but this obviously gets annoying over several movies,
>>edits, etc. I know Flash has some usability features built-in (for
>>screen-readers, etc) but we are assuming the viewer has no appropriate
>>software for handling voice-over and we need include it.
>>
>>So - anyone know of any clever methods of doing this and perhaps even
>>a more user-friendly method?
>>
>>- Sean
>>___
>>Flashcoders mailing list
>>Flashcoders@chattyfig.figleaf.com
>>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
NOTICE:
This message is for the designated recipient only and may contain privileged or 
confidential information. If you have received it in error, please notify the 
sender immediately and delete the original. Any other use of this e-mail by you 
is prohibited.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Xpath and aphostrophes

2005-12-14 Thread Helmut Granda

MM V7 AS2 Crashes too.

Any Suggestions? So far Im working on testing if the string has a ' to 
change it to Hex and back.


Helmut

Helmut Granda wrote:


MM V8 AS2.

I havent tried with any other compilers, maybe a bug in the compiler?

Helmut

[EMAIL PROTECTED] wrote:

are you compiling with the MM compiler or with MTASC and if so what 
version, i had the issue when running MTASC V9 and don't have this 
issue with 1.11


Grant

- Original Message -
From: Helmut Granda [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: 12/14/05 12:31 AM
Subject: Re: [Flashcoders] Xpath and aphostrophes

 


Ok I found where the problem is, when I run this command:

XPath.selectNodes (myDoc,"/Node[Attribute = 
'"+SearchTermWithAphostrophe+"']");


It goes into an infinite loop, does anyone has any idea why the 
SearchTermWithAphostrophe would trigger the infinite loop?


TIA.
Helmut


Helmut Granda wrote:

  


Hello,

I have in interactive CD with a search function on it. I am using 
XPath to handle all my search funcionallity since it needs to work 
on PC and MAC.


The CD I am producing crashes everything I try to search for 
strings that have aphostrophes on them (exe - Helmut's Files).


I have tried for a couple of days to fix the issue for I am still 
having trouble, I was wondering if anyone has encounter this 
problem and found a solution for it.


Better yet, if there is a "better" alternative to XPATH, welcome. 
What I am mainly doing is a search engine for a listing.


TIA.
Helmut



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







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



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




 



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






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


RE: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Mike Mountain
You can embed cue points in flash 8 flvs Then use these to trigger
your subtitles

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf 
> Of Derivative
> Sent: 14 December 2005 16:26
> To: Flashcoders@chattyfig.figleaf.com
> Subject: [Flashcoders] Displaying transcript on-screen for 
> hearing-impaired
> 
> Hola -
> 
> I am working on a project that includes several movies which 
> the client wants to make more usable to hearing-impaired viewers.
> I have done this in the past simply by syncing up scrolling 
> text on the timeline but this obviously gets annoying over 
> several movies, edits, etc. I know Flash has some usability 
> features built-in (for screen-readers, etc) but we are 
> assuming the viewer has no appropriate software for handling 
> voice-over and we need include it.
> 
> So - anyone know of any clever methods of doing this and 
> perhaps even a more user-friendly method?
> 
> - Sean
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Derivative
Hola -

I am working on a project that includes several movies which the
client wants to make more usable to hearing-impaired viewers.
I have done this in the past simply by syncing up scrolling text on
the timeline but this obviously gets annoying over several movies,
edits, etc. I know Flash has some usability features built-in (for
screen-readers, etc) but we are assuming the viewer has no appropriate
software for handling voice-over and we need include it.

So - anyone know of any clever methods of doing this and perhaps even
a more user-friendly method?

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


Re: [Flashcoders] Xpath and aphostrophes

2005-12-14 Thread Helmut Granda

MM V8 AS2.

I havent tried with any other compilers, maybe a bug in the compiler?

Helmut

[EMAIL PROTECTED] wrote:


are you compiling with the MM compiler or with MTASC and if so what version, i 
had the issue when running MTASC V9 and don't have this issue with 1.11

Grant

- Original Message -
From: Helmut Granda [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: 12/14/05 12:31 AM
Subject: Re: [Flashcoders] Xpath and aphostrophes

 


Ok I found where the problem is, when I run this command:

XPath.selectNodes (myDoc,"/Node[Attribute = 
'"+SearchTermWithAphostrophe+"']");


It goes into an infinite loop, does anyone has any idea why the 
SearchTermWithAphostrophe would trigger the infinite loop?


TIA.
Helmut


Helmut Granda wrote:

   


Hello,

I have in interactive CD with a search function on it. I am using 
XPath to handle all my search funcionallity since it needs to work on 
PC and MAC.


The CD I am producing crashes everything I try to search for strings 
that have aphostrophes on them (exe - Helmut's Files).


I have tried for a couple of days to fix the issue for I am still 
having trouble, I was wondering if anyone has encounter this problem 
and found a solution for it.


Better yet, if there is a "better" alternative to XPATH, welcome. What 
I am mainly doing is a search engine for a listing.


TIA.
Helmut



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




 


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



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




 



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


Re: [Flashcoders] private/public troubles

2005-12-14 Thread PR Durand

Thanx a lot Grant,
I think you pointed right. 'will test it.
Why on _root? because the project is a full external code, and this 
class is the core of the application, so why not putting it on _level0 
(so mainSwf._root) ?

Is it better to make a CoreComponent and drag it to the scene?
PR


[EMAIL PROTECTED] a écrit :


did you type your instance of oCore on root ?

if your data is not "typed" the iDE will not enforce access modifiers.

e.g

var core:Core = new Core()
trace (core.oParam); /// should not compile

var anotherCore = new Core()
trace (anotherCore .oParam); /// should compile as anotherCore is not typed.

because you are declaring it on root is probably not typed.  Why put it on root 
?

Grant.

- Original Message -
From: PR Durand [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: 12/14/05 9:54 AM
Subject: [Flashcoders] private/public troubles

 


Hi List!

This is not really a problem, but rather a question cause it seems 
strange...


I've got a Core.as class containing
private var oParam:ParamMngr;
and
this.oParam = new ParamMngr();

in the ParamMngr class, we can see
private var mcGround:MovieClip;
and theuse of it.

into flash, on main stage, I've put the following:
import com.domain.Core;
_root.oCore = new Core();

and then tried
trace(_root.oCore.oParam.mcGround);
--> it worked !!!

why? each variable is private... so how can it run?

thx,

PR

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



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


 



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


RE: [Flashcoders] Firefox bug?

2005-12-14 Thread Ben Smeets
The FireFox browser does not default see the body of an html page at
100% height of the browser window in later html standards. Getting rid
of the doctype helps, because you force the browser into quirks mode
where the body IS 100% height. Another solution is also to set the
height of the body to 100% in css.

Body
{
  height:100%;
}

In ie it will be higher then 100% though when this is turned on though
:)

Good luck.

Ben

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: woensdag 14 december 2005 15:51
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Firefox bug?

Howdy...

An easy fix would be getting rid of the DOCTYPE line from your HTML
file...

CyanBlue

- Original Message -
From: "MetaArt" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Wednesday, December 14, 2005 9:42 AM
Subject: [Flashcoders] Firefox bug?


> I have dev a Flash movie, showed inside an Html page. The stage width
of
> movie is 1000 px, the width of all on stage is 2048 px.
> If seen in IE, it works fine, if seen in FireFox, it is showed in a
very
> strange way.
> If the publish settings is to showAll, in FireFox the movie appear
very
very
> little, about the half of the screen;
> if the publish settings is to noBorder, in FireFox the movie appear
right
in
> width, but... (very strange behavior!) just the top part of it is
visible.
> The height of movie is 750 px, but if you try to right click just
under
> visible Flash, you discover html context menu, not Flash menu, like if
movie
> height is too less than 750!...
> You can see it at this URL: http://www.magmart.it/index2.htm. Try to
open
in
> IE and FF (now, is settings to showAll).
> Any idea about?
>
>  Enrico Tomaselli
>   +> web designer <+
>   [EMAIL PROTECTED]
> http://www.metatad.it


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


Re: [Flashcoders] private/public troubles

2005-12-14 Thread grant
did you type your instance of oCore on root ?

if your data is not "typed" the iDE will not enforce access modifiers.

e.g

var core:Core = new Core()
trace (core.oParam); /// should not compile

var anotherCore = new Core()
trace (anotherCore .oParam); /// should compile as anotherCore is not typed.

because you are declaring it on root is probably not typed.  Why put it on root 
?

Grant.

- Original Message -
From: PR Durand [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: 12/14/05 9:54 AM
Subject: [Flashcoders] private/public troubles

> Hi List!
> 
> This is not really a problem, but rather a question cause it seems 
> strange...
> 
> I've got a Core.as class containing
> private var oParam:ParamMngr;
> and
> this.oParam = new ParamMngr();
> 
> in the ParamMngr class, we can see
> private var mcGround:MovieClip;
> and theuse of it.
> 
> into flash, on main stage, I've put the following:
> import com.domain.Core;
> _root.oCore = new Core();
> 
> and then tried
> trace(_root.oCore.oParam.mcGround);
> --> it worked !!!
> 
> why? each variable is private... so how can it run?
> 
> thx,
> 
> PR
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


Re: [Flashcoders] Xpath and aphostrophes

2005-12-14 Thread grant
are you compiling with the MM compiler or with MTASC and if so what version, i 
had the issue when running MTASC V9 and don't have this issue with 1.11

Grant

- Original Message -
From: Helmut Granda [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: 12/14/05 12:31 AM
Subject: Re: [Flashcoders] Xpath and aphostrophes

> Ok I found where the problem is, when I run this command:
> 
> XPath.selectNodes (myDoc,"/Node[Attribute = 
> '"+SearchTermWithAphostrophe+"']");
> 
> It goes into an infinite loop, does anyone has any idea why the 
> SearchTermWithAphostrophe would trigger the infinite loop?
> 
> TIA.
> Helmut
> 
> 
> Helmut Granda wrote:
> 
> > Hello,
> >
> > I have in interactive CD with a search function on it. I am using 
> > XPath to handle all my search funcionallity since it needs to work on 
> > PC and MAC.
> >
> > The CD I am producing crashes everything I try to search for strings 
> > that have aphostrophes on them (exe - Helmut's Files).
> >
> > I have tried for a couple of days to fix the issue for I am still 
> > having trouble, I was wondering if anyone has encounter this problem 
> > and found a solution for it.
> >
> > Better yet, if there is a "better" alternative to XPATH, welcome. What 
> > I am mainly doing is a search engine for a listing.
> >
> > TIA.
> > Helmut
> >
> >
> >
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> >
> >
> >
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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


Re: [Flashcoders] Firefox bug?

2005-12-14 Thread MetaArt
Yes, real pixel width and height values is a solution, that solve the
problem, but so born other two!
First, if user have a screen resolution less than 1024x768, must scroll
vertical to see the menu buttons; second, if I wrote, as width value, the
stage width, I can't see the background beyond the right margin; and if I
wrote the full width, I have a great horizontal scroll...
However, I have solved changin' doctype:

thanx2all

 Enrico Tomaselli
  +> web designer <+
  [EMAIL PROTECTED]
http://www.metatad.it

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


Re: [Flashcoders] RE: 3D in Flash

2005-12-14 Thread nik crosina
This IKEA thingy is just brilliant! But I think it is a bit out of our reach
time-wise and buclient budget wise.

Techniology wise I wanted to get an idea from you guys as to whcih solution
you would gravitate towards to. My gut feeling would be to use Shockwave
because of its 3D features, but install wise flash is more wide spread and
would cause less hassle for our clients.

I guess it depends on how easy and painless we make the process for the site
visitors, and how good lokonig / easy to use we make it

Thanks!!!

Nik C


On 12/9/05, Adrian Showater <[EMAIL PROTECTED]> wrote:
>
> A possible example of the functionality that you are talking about is by
> IKEA on http://demo.fb.se/e/ikea/dreamkitchen/site/default.html  They use
> the Matrix like 3D spinning views for different kitchen designs. If you
> were
> to combine FLVs of each hotel room like this, with short transitional FLVs
> for moving between rooms, I assume that you should be able to simulate a
> complete user controlled "walkthrough" of a 3D space as long as you were
> only concerned with one viewpoint per room.  But again, I've never tried
> it,
> and I assume that it would take some time to create.
>
> Another fun example that does this for some spaces is the movie Corpse
> Brides official site  http://corpsebridemovie.warnerbros.com/ .
>
>
> Adrian Showalter
> Software Developer
> Holmes BizNet
> www.HolmesBizNet.com 
> 330.893.3901 ext 102
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



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


Re: [Flashcoders] Firefox bug?

2005-12-14 Thread Éric Thibault

The code inside your HTML page is :

codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"; 
width="100%" height="100%" id="magmart" align="middle">







bgcolor="#7251bc" width="100%" height="100%" name="magmart" 
align="middle" allowScriptAccess="sameDomain" 
type="application/x-shockwave-flash" 
pluginspage="http://www.macromedia.com/go/getflashplayer"; />



where you specify the with and height of your SWF.  Instead of % you 
should use px because Firefox seems to resise your SWF so that all of it 
is shown in 100% of the screen!


Is there a reason to have a 2048px stage and only use 50%?

You could think of the Html page like a window to show only a portion of 
your movie... and adjust your stage to that window and move the content 
MCs to that space (like a mask)...


I'm just trying to vision it all.

My "french" 2 cents.

A+

MetaArt wrote:


Sorry but... can you tell me more (and more 'clear') about?
thanx...

Enrico Tomaselli
 +> web designer <+
 [EMAIL PROTECTED]
http://www.metatad.it

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

 




--
===

Éric Thibault
Programmeur analyste
Réseau de valorisation de l'enseignement
Université Laval, pavillon Félix-Antoine Savard
Québec, Canada
Tel.: 656-2131 poste 18015
Courriel : [EMAIL PROTECTED]

===

Avis relatif à la confidentialité / Notice of Confidentiality / Advertencia de 
confidencialidad 

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


Re: [Flashcoders] Firefox bug?

2005-12-14 Thread MetaArt
Sorry but... can you tell me more (and more 'clear') about?
thanx...

 Enrico Tomaselli
  +> web designer <+
  [EMAIL PROTECTED]
http://www.metatad.it

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


Re: [Flashcoders] Firefox bug?

2005-12-14 Thread Éric Thibault

if instead of
   width="100%" height="100%"

you put the actual real pixel dimentions in width and height (but then 
you will have scrollbars...) ? Because the swf IS 100% of my FF screen!


It seems like a deficient implementation from IE...

A+

MetaArt wrote:


I have dev a Flash movie, showed inside an Html page. The stage width of
movie is 1000 px, the width of all on stage is 2048 px.
If seen in IE, it works fine, if seen in FireFox, it is showed in a very
strange way.
If the publish settings is to showAll, in FireFox the movie appear very very
little, about the half of the screen;
if the publish settings is to noBorder, in FireFox the movie appear right in
width, but... (very strange behavior!) just the top part of it is visible.
The height of movie is 750 px, but if you try to right click just under
visible Flash, you discover html context menu, not Flash menu, like if movie
height is too less than 750!...
You can see it at this URL: http://www.magmart.it/index2.htm. Try to open in
IE and FF (now, is settings to showAll).
Any idea about?

Enrico Tomaselli
 +> web designer <+
 [EMAIL PROTECTED]
http://www.metatad.it

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

 




--
===

Éric Thibault
Programmeur analyste
Réseau de valorisation de l'enseignement
Université Laval, pavillon Félix-Antoine Savard
Québec, Canada
Tel.: 656-2131 poste 18015
Courriel : [EMAIL PROTECTED]

===

Avis relatif à la confidentialité / Notice of Confidentiality / Advertencia de 
confidencialidad 

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


  1   2   >