RE: [Flashcoders] efficient htmltext.reduce() function? orsimilaridea?

2006-01-18 Thread Gunnar Reinseth
Well, it would reduce the amount of code used to search the string. But
could you give an example string, and how it should look after being
reduced two times ( i.e. htmltext.reduce(2) ) ?

--
gunnar

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jayson K
Hanes
Sent: 17. januar 2006 20:03
To: Flashcoders mailing list
Subject: RE: [Flashcoders] efficient htmltext.reduce() function?
orsimilaridea?

Thanks gunnar.. I've used regex stuff for simple string manipulation..
but I can't see how it could be applied to arbitrarily reduce the length
of an html string??.. at least.. not without a lot of work?

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


RE: [Flashcoders] efficient htmltext.reduce() function? orsimilaridea?

2006-01-18 Thread Gunnar Reinseth
disregard this last post - the issue was well explained in later posts
:)

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gunnar
Reinseth
Sent: 18. januar 2006 09:08
To: Flashcoders mailing list
Subject: RE: [Flashcoders] efficient htmltext.reduce() function?
orsimilaridea?

Well, it would reduce the amount of code used to search the string. But
could you give an example string, and how it should look after being
reduced two times ( i.e. htmltext.reduce(2) ) ?

--
gunnar

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jayson K
Hanes
Sent: 17. januar 2006 20:03
To: Flashcoders mailing list
Subject: RE: [Flashcoders] efficient htmltext.reduce() function?
orsimilaridea?

Thanks gunnar.. I've used regex stuff for simple string manipulation..
but I can't see how it could be applied to arbitrarily reduce the length
of an html string??.. at least.. not without a lot of work?

-Jayson
___
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] How to Build a Flash Bandwidth Tester?

2006-01-18 Thread Martin Klasson


They could be using Flashcomm for measuring the upload-check I guess.
There might be ways to test it without flashcomm.

Perhaps you could send of a really big xml-string through the XML's
sendAndLoad for flash 7...

Or might use the Fileupload in flash8, but I haven't tested it, and it
probably needs user-initiative to select which file to upload.

But with Flashcomm you could probably do a neat 'hidden' upload-check.
-the download check is easy to do without flashcomm, but upload is a
little tougher.

/ mk

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Petersen
Sent: den 17 januari 2006 23:07
To: Flashcoders mailing list
Subject: RE: [Flashcoders] How to Build a Flash Bandwidth Tester?

It's kind of cool...  It looks like it calls some server side script
that generates a random noisy image, which it then proceeds to download:

http://chi.speakeasy.net/speedtest/random350x350.jpg

I'm guessing it probably uses MovieClipLoader, which fires off events to
give you the progress updates on downloads.  That's how they can
determine speed on the fly.  It kicks off downloading that 350x350
image(around 200k), but then it finishes with an almost 5mb generated
image.

The upload test posts a pretty sizable amount of random gibberish(200k
and then 1mb).  I'm not really sure how they track that, is there
something akin to MovieClipLoader for uploads with Flash 7?  It might
just be a timer, where they just take your Total Size / Seconds Taken...

Don Petersen

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jeff
Mastropietro
Sent: Tuesday, January 17, 2006 2:54 PM
To: Flashcoders mailing list
Subject: [Flashcoders] How to Build a Flash Bandwidth Tester?

Does anyone have any ideas how this flash bandwidth tester is working?

http://www.speakeasy.net/speedtest/

It must be fetching a file from the server somehow, but how?  Also, it 
must be posting that file or some other file back to the server.

We have an application that let's our users upload files to our servers,

so we'd like to provide something like this on our website so that our 
users can test their upload speeds.  If anyone knows of an open source 
one, that would be superb.

Thanks,
Jeff



___
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] Re: How to Build a Flash Bandwidth Tester?

2006-01-18 Thread Jiri Heitlager

He,

I did the test and used the Firefox extension Live HTTP headers, to see 
what is going on.
I suspect they determine the upload speed by using SendAndLoad(), 
because Flash calls a php file called upload.php wich generates a var 
called content and is a massive string of random letters it appears.

But how this exactly is being done I cant quit figure out?
Anybody, I am curious now.

Jiri

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


RE: [Flashcoders] PrintJob Landscape printing with Portrait

2006-01-18 Thread Steven Sacks
Here is a refined version of my function:

function printImage(mc) {
var realW = mc._width;
var realH = mc._height;
pj = new PrintJob();
var pageCount = 0;
if (pj.start()) {
var cXscale, cYscale;
if (pj.orientation.toLowerCase() != landscape) {
mc._rotation = 90;
mc._x = mc._width;
cXscale = (pj.pageWidth / realH) * 100;
cYscale = (pj.pageHeight / realW) * 100;
} else {
cXscale = (pj.pageWidth / realW) * 100;
cYscale = (pj.pageHeight / realH) * 100;
}   
mc._xscale = mc._yscale = Math.min(cXscale, cYscale);
if (pj.addPage(mc, {xMin:0, xMax:realW, yMin:0,
yMax:realH})) {
pageCount++;
}
}
if (pageCount  0) {
pj.send();
}
mc._xscale = mc._yscale = 100;
mc._rotation = mc._x = mc._y = 0;
delete pj;
}

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


RE: [Flashcoders] efficient htmltext.reduce() function? orsimilaridea?

2006-01-18 Thread Gunnar Reinseth
Here's a full example implemented in Java. Shouldn't be any problem to
implement in AS.

http://www.prepost.net/misc/Test.java

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jayson K
Hanes
Sent: 17. januar 2006 20:03
To: Flashcoders mailing list
Subject: RE: [Flashcoders] efficient htmltext.reduce() function?
orsimilaridea?

Thanks gunnar.. I've used regex stuff for simple string manipulation..
but I can't see how it could be applied to arbitrarily reduce the length
of an html string??.. at least.. not without a lot of work?

-Jayson
___
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] MX 2004 and keyboard shortcuts

2006-01-18 Thread Roman Blöth

Hey there,


has someone ever managed to change the keyboard shortcuts for Flash's 
AS-editor's copy  paste from ctrl-c / ctrl-v to ctrl-ins / shift ins?


The menu item Edit - Keyboard Shortcuts lets me change these settings 
explicitly, if I switch to my own settings (cannot change these for the 
Macromedia default - set), but it won't work as expected:


ctrl-c/-v still remains functional, though I disabled this, but 
ctrl-/shift-ins doesn't work at all. Restart of Flash doesn't make any 
difference...


What is it that Flash and Director won't let Windows-users use these 
left-handed(*) copy  paste shortcuts?



Any hint welcome,
Roman.


(*) - at least for me as a left handed man the ins-versions work much faster

--

---
gosub communications gmbh | fredersdorfer str. 10  | 10243 berlin
t [030] 29 66 88 81 | f [030] 29 66 88 84 | http://www.gosub.de
---

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


RE: [Flashcoders] MX 2004 and keyboard shortcuts

2006-01-18 Thread Steven Sacks
Because they're system level not application level.
 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf 
 Of Roman Blöth
 Sent: Wednesday, January 18, 2006 1:57 AM
 To: flashcoders@chattyfig.figleaf.com
 Subject: [Flashcoders] MX 2004 and keyboard shortcuts
 
 Hey there,
 
 
 has someone ever managed to change the keyboard shortcuts for Flash's 
 AS-editor's copy  paste from ctrl-c / ctrl-v to ctrl-ins / shift ins?
 
 The menu item Edit - Keyboard Shortcuts lets me change these 
 settings 
 explicitly, if I switch to my own settings (cannot change 
 these for the 
 Macromedia default - set), but it won't work as expected:
 
 ctrl-c/-v still remains functional, though I disabled this, but 
 ctrl-/shift-ins doesn't work at all. Restart of Flash doesn't 
 make any 
 difference...
 
 What is it that Flash and Director won't let Windows-users use these 
 left-handed(*) copy  paste shortcuts?
 
 
 Any hint welcome,
 Roman.
 
 
 (*) - at least for me as a left handed man the ins-versions 
 work much faster
 
 -- 
 
 ---
  gosub communications gmbh | fredersdorfer str. 10  | 10243 berlin
  t [030] 29 66 88 81 | f [030] 29 66 88 84 | http://www.gosub.de
 ---
 
 ___
 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] Cross platform text woes

2006-01-18 Thread Karina Steffens
Hi Bill, 

Thanks for your reply. Do you mean to use style sheets even if I'm not
changing the sizes of the fonts in html, but just using the one size set in
the properties panel?

PS - Forgot to mention, still using MX2004 to author.

Karina

 -Original Message-
 From: Bill Numerick [mailto:[EMAIL PROTECTED] 
 Sent: 17 January 2006 20:29
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] Cross platform text woes
 
 Use styles to control the sizes of the fonts.  I had the same 
 issue on a cd project using system fonts and that solved it.
 
 On 1/17/06, Karina Steffens [EMAIL PROTECTED] wrote:
 
  Hi List,
 
  I'm developing this CD-Rom for schools and it's supposed to work on 
  both PC and the Mac.  The (current..) trouble is, that very 
  occasionally, the dynamic textfield on the Mac doesn't work 
 properly, 
  cutting off some words and sentences in the middle, and 
 either forcing 
  them to the next line or leaving the rest out entirely. At 
 least this 
  is what the client reports.
  This is happening extremely rarely - maybe once or twice -  
 in a very 
  big cd-rom with a huge amount of data, but my client is 
 getting shirty 
  about it.
 
 
  All the text is coming from XML files and edited in Sepy 
 (on the PC). 
  The text fields themselves are using device fonts (_serif) and are 
  html formatted and selectable.
 
  Any ideas what might be causing it?
 
  Thanks,
  Karina
 
 
  Karina Steffens  |  Neo-Archaic
  creative  technical new media design
  http://www.neo-archaic.net/ www.neo-archaic.net
 
  ___
  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] MX 2004 and keyboard shortcuts

2006-01-18 Thread Roman Blöth

Steven Sacks schrieb:

Because they're system level not application level.
Well, I always thought shift-/ctrl-ins IS system level under windows. At 
least it works in any of my programs except macromedia
So it more seems like this not-functioning is due to the application, 
not the system?!



regards,
roman.

--

---
gosub communications gmbh | fredersdorfer str. 10  | 10243 berlin
t [030] 29 66 88 81 | f [030] 29 66 88 84 | http://www.gosub.de
---

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


Re: [Flashcoders] Frame or duration limit on FLV

2006-01-18 Thread Jim Berkey
I've got a project with roughly 150 MPEG videos (anywhere from 3-20 
minutes

each) that I'm preparing to convert to FLV. I'm aware of this tech note
regarding the 16,000 frame limit for .fla/.swf (
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_14437 ) 
but

my client just emailed to say that he'd heard of a duration limit of 8
minutes.

Anyone have any info on this?


If there is a limit, it is very large. On2, the maker of the newest codec, 
has a full length feature film on its website:
http://www.on2.com/video_samples/flix-video-samples/ 


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


RE: [Flashcoders] Frame or duration limit on FLV

2006-01-18 Thread Kabir S Chandhoke
FLV has no frame or time limit. SWF has a maximum frame limit of 16,000.

-kabir

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jim
Berkey
Sent: Wednesday, January 18, 2006 6:29 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Frame or duration limit on FLV

 I've got a project with roughly 150 MPEG videos (anywhere from 3-20 
 minutes
 each) that I'm preparing to convert to FLV. I'm aware of this tech
note
 regarding the 16,000 frame limit for .fla/.swf (
 http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_14437
) 
 but
 my client just emailed to say that he'd heard of a duration limit of 8
 minutes.

 Anyone have any info on this?

If there is a limit, it is very large. On2, the maker of the newest
codec, 
has a full length feature film on its website:
http://www.on2.com/video_samples/flix-video-samples/ 

___
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] Frame or duration limit on FLV

2006-01-18 Thread Weyert de Boer

Kabir S Chandhoke wrote:

FLV has no frame or time limit. SWF has a maximum frame limit of 16,000.

Hmm, that's still around 10 hours ( 16.000 / 25 = n / 60 = ~10.66)

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


[Flashcoders] Documenting my code

2006-01-18 Thread Jobe Makar

Hi guys,

I've recently purchased AS2Doc to generate documentation from my 
ElectroServer class file. The software works pretty well, but it appears the 
Mirell (company that owns it) is now a ghost town or something. There are no 
responses to my support requests at all. Emails to their busdev address 
bounce.


My question is this: does anyone know of a good place where I could find 
support on AS2Doc. Or, can anyone suggest an alternative software that takes 
the java-doc style comments and create documentation?


Jobe Makar
http://www.electrotank.com
http://www.electro-server.com
phone: 919-609-0408
mobile: 919-610-5754
fax: 919-341-8104 



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


[Flashcoders] my old problem... with big loads of swf's

2006-01-18 Thread julian atienza
At least somebody helps me...
I posted my problem here several times, about swf's and big loads in
projector but no solutions. Some helpful and patient words, but i was
beleaving i was going crazy (everybody tolds me here that it wasn't a normal
success)

I posted my question in Creative Cow:


 Hello. I posted my problem several times in several forums (but this is my
first post here)

I haven't found a solution and the time for my project is running so fast
(i'm working hard, mornings, evening, nights, but no solutions for this
problem)

The Scene:
i'm programming a Projector-Flash Project that loads contents in local. It
uses _levels, AS2, and a MovieClipLoader to load contents in each _level
through navigation in the app.
There is some big swf (5Mb) to load, but size must not be a problem in a
local-project (Kiosk CD or DVD project)

The Problem:
when i Load the swf's in the appropiate _level, the previous _level goes
frozen (even a simple animation of time to wait during load).
I also tried a preloader technique in the swf that is being loaded with two
scenes, but the animation of the first scene also is frozen until the
complete load is made.

The Cause:
I think the cause of the problem has the following reason...

When i load in remote (flash web projects), there is a portion of
memo/processor free. So i can make anything during this time.

When i load in local, all the resources are taken to make the load, so
anything is frozen till the load is complete.


DESPERATE:
I've tried all kind of methods (Preloaders, MovieClipLoader (It only gives
me 0% and 100% in events to control load), and so on... no solutions.

Can anybody solve this problem?
Thank u in advance

---
In Creative Cow one person post me the following:
--
 My experience with the projector is it doesn't do a progressive download
like SWFs do on the internet. I've never used the projector to dynamically
load SWFs, but I've made projectors of very large SWFs (20-75MB) and it
seems to me that when you run them, they need to load the full file into
memory before the projector app starts running (except for FLVs, which still
seem to stream fine). It wouldn't surprise me if it were the same for the
dynamically loading assets, which would only be an issue when you have large
files. The fact that it freezes things that are already loaded and running
is somewhat surprising to me, but not entirely unexpected.


I'm still with the same problem. But i hope that it helps to people to NEVER
try to build a big application developed in flash and actionscript (even
Flash 8) without considering that advertisement...

thanks to all people...
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Documenting my code

2006-01-18 Thread eric dolecki
BLDoc for PC
VisDoc for OS X (rocks)

On 1/18/06, Jobe Makar [EMAIL PROTECTED] wrote:

 Hi guys,

 I've recently purchased AS2Doc to generate documentation from my
 ElectroServer class file. The software works pretty well, but it appears
 the
 Mirell (company that owns it) is now a ghost town or something. There are
 no
 responses to my support requests at all. Emails to their busdev address
 bounce.

 My question is this: does anyone know of a good place where I could find
 support on AS2Doc. Or, can anyone suggest an alternative software that
 takes
 the java-doc style comments and create documentation?

 Jobe Makar
 http://www.electrotank.com
 http://www.electro-server.com
 phone: 919-609-0408
 mobile: 919-610-5754
 fax: 919-341-8104


 ___
 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] Documenting my code

2006-01-18 Thread Jobe Makar

Thanks Eric.

I saw BLDoc, but it says its in beta. Is it solid?

Jobe Makar
http://www.electrotank.com
http://www.electro-server.com
phone: 919-609-0408
mobile: 919-610-5754
fax: 919-341-8104
- Original Message - 
From: eric dolecki [EMAIL PROTECTED]

To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Wednesday, January 18, 2006 8:57 AM
Subject: Re: [Flashcoders] Documenting my code


BLDoc for PC
VisDoc for OS X (rocks)

On 1/18/06, Jobe Makar [EMAIL PROTECTED] wrote:


Hi guys,

I've recently purchased AS2Doc to generate documentation from my
ElectroServer class file. The software works pretty well, but it appears
the
Mirell (company that owns it) is now a ghost town or something. There are
no
responses to my support requests at all. Emails to their busdev address
bounce.

My question is this: does anyone know of a good place where I could find
support on AS2Doc. Or, can anyone suggest an alternative software that
takes
the java-doc style comments and create documentation?

Jobe Makar
http://www.electrotank.com
http://www.electro-server.com
phone: 919-609-0408
mobile: 919-610-5754
fax: 919-341-8104


___
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] Documenting my code

2006-01-18 Thread Ian Thomas
We've jsut started using AS2API -
http://www.badgers-in-foil.co.uk/projects/as2api/ - which works fine for us
on Windows (but had issues on Linux, sadly, although I think that's because
our Linux box needs a good cleanup).

Cheers,
  Ian

On 1/18/06, eric dolecki [EMAIL PROTECTED] wrote:

 BLDoc for PC
 VisDoc for OS X (rocks)

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


Re: [Flashcoders] my old problem... with big loads of swf's

2006-01-18 Thread Ramon Tayag
I don't believe there is any way to fix this - just like if you launch
Photoshop while playing an animation, it's gonna stutter.

I wanted to do something like this before.  I had to search through a
large XML, and I didn't want the computer to freeze while the search
took place because the search took about 5 seconds.  I asked around
and came to a conclusion that Flash hogs all the resources of a
computer to do a certain task, and releases it only after it's done.

To fix this it would be better if you further break down the swfs to
smaller files so it only loads when it needs to.

Goodluck

On 1/18/06, julian atienza [EMAIL PROTECTED] wrote:
 At least somebody helps me...
 I posted my problem here several times, about swf's and big loads in
 projector but no solutions. Some helpful and patient words, but i was
 beleaving i was going crazy (everybody tolds me here that it wasn't a normal
 success)

 I posted my question in Creative Cow:
 

  Hello. I posted my problem several times in several forums (but this is my
 first post here)

 I haven't found a solution and the time for my project is running so fast
 (i'm working hard, mornings, evening, nights, but no solutions for this
 problem)

 The Scene:
 i'm programming a Projector-Flash Project that loads contents in local. It
 uses _levels, AS2, and a MovieClipLoader to load contents in each _level
 through navigation in the app.
 There is some big swf (5Mb) to load, but size must not be a problem in a
 local-project (Kiosk CD or DVD project)

 The Problem:
 when i Load the swf's in the appropiate _level, the previous _level goes
 frozen (even a simple animation of time to wait during load).
 I also tried a preloader technique in the swf that is being loaded with two
 scenes, but the animation of the first scene also is frozen until the
 complete load is made.

 The Cause:
 I think the cause of the problem has the following reason...

 When i load in remote (flash web projects), there is a portion of
 memo/processor free. So i can make anything during this time.

 When i load in local, all the resources are taken to make the load, so
 anything is frozen till the load is complete.


 DESPERATE:
 I've tried all kind of methods (Preloaders, MovieClipLoader (It only gives
 me 0% and 100% in events to control load), and so on... no solutions.

 Can anybody solve this problem?
 Thank u in advance

 ---
 In Creative Cow one person post me the following:
 --
  My experience with the projector is it doesn't do a progressive download
 like SWFs do on the internet. I've never used the projector to dynamically
 load SWFs, but I've made projectors of very large SWFs (20-75MB) and it
 seems to me that when you run them, they need to load the full file into
 memory before the projector app starts running (except for FLVs, which still
 seem to stream fine). It wouldn't surprise me if it were the same for the
 dynamically loading assets, which would only be an issue when you have large
 files. The fact that it freezes things that are already loaded and running
 is somewhat surprising to me, but not entirely unexpected.

 
 I'm still with the same problem. But i hope that it helps to people to NEVER
 try to build a big application developed in flash and actionscript (even
 Flash 8) without considering that advertisement...

 thanks to all people...
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



--
Ramon Miguel M. Tayag
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Frame or duration limit on FLV

2006-01-18 Thread Burak KALAYCI

Hi,

FLV format has timestamps in milliseconds in 24 bit unsigned integers. That
should be a limit about 4.66 hours.

Best regards,
Burak
www.asvguy.com

Burak KALAYCI, Manitu Group
http://www.buraks.com
http://www.manitugroup.com

- Original Message - 
From: Kabir S Chandhoke [EMAIL PROTECTED]

To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Wednesday, January 18, 2006 15:01 PM
Subject: RE: [Flashcoders] Frame or duration limit on FLV



FLV has no frame or time limit. SWF has a maximum frame limit of 16,000.

-kabir

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jim
Berkey
Sent: Wednesday, January 18, 2006 6:29 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Frame or duration limit on FLV


I've got a project with roughly 150 MPEG videos (anywhere from 3-20
minutes
each) that I'm preparing to convert to FLV. I'm aware of this tech

note

regarding the 16,000 frame limit for .fla/.swf (
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_14437

)

but
my client just emailed to say that he'd heard of a duration limit of 8
minutes.

Anyone have any info on this?


If there is a limit, it is very large. On2, the maker of the newest
codec,
has a full length feature film on its website:
http://www.on2.com/video_samples/flix-video-samples/

___
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] easy to implement a* flash classes?

2006-01-18 Thread grimmwerks
Thanks all  --

Franto yours is the way I want to go   - but how can I modify your
code for a bigger map?  Meaning I've got a HUGE bitmap that I want to
create a matrix for -- and rather than the 8x8 tile I'm thinking
something much larger, ie 50x50 blocks - so I modified the mc's to be
50x50 -- also changed the code from '_y*8' to *50, but it's all
discombobulatedis it something within th mousedown and the 3
that I have to change?


Also - do the wall blocks HAVE to be there in order for it to function
- or the map.as is enough (was going to make an invisible wall block
if it had to be there)

And finally another question: is there a way off the top of you head
that I could actually use the yellow/drawn line as a guide for an
animation?
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Flash Media Server

2006-01-18 Thread Martin Klasson

Hi Coders.

I guess this is the wrong list to be talking about Flash Media Server.
But I do have serious installation-problems which makes the FMS running
and working, but the samples doesn't. rtmpt works when set in the
source-file, but rtmp didn't, and now neither one works.

Are there any great technical forums in which is for FMS questions?
-I have tried the forum at flashcomguru.com, but that had low traffic
and no help given from there.

You guys know of any good FMS-places?
-macromedia.com is good, but couldn't find the solutions there.

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


Re: [Flashcoders] Flash Media Server

2006-01-18 Thread Jim Armstrong

At 03:40 PM 1/18/2006 +0100, you wrote:


Are there any great technical forums in which is for FMS questions?
-I have tried the forum at flashcomguru.com, but that had low traffic
and no help given from there.


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

hth!

- jim



2112 FX :: Singularity [Business Intelligence][Custom Programming]
Flash Math Blog :: www.2112fx.com/blog


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


Re: [Flashcoders] Documenting my code

2006-01-18 Thread Weyert de Boer

Hi Jobe,

You could consider using Doc-O-Matic it's really nice I use it for all 
my .NET, Delphi projects. It also has generic or javascript support...


Yours,
Weyert de Boer

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


[Flashcoders] voice recognition in flash

2006-01-18 Thread Eduardo Silva
Hi all,

I looked in web this subject, but I did not have success, somebody
knows if it is possible to make voice recognition in flash?

sorry my bad english...

tks,

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


Re: [Flashcoders] Documenting my code

2006-01-18 Thread eric dolecki
Perhaps someone at Adobe will build a great Documenting application that
ships with Flash 9 or something.

Or perhaps Alessandro can build something that bolts onto SEPY? ;)

-edolecki

On 1/18/06, Weyert de Boer [EMAIL PROTECTED] wrote:

 Hi Jobe,

 You could consider using Doc-O-Matic it's really nice I use it for all
 my .NET, Delphi projects. It also has generic or javascript support...

 Yours,
 Weyert de Boer

 ___
 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] voice recognition in flash

2006-01-18 Thread elibol
Most probably not on the web, Actionscript does not provide a way to watch
sound frequencies. Mario Klingemann has written a visualization script that
responds to sound frequencies using 3rd party software which plays mp3s and
passes frequency values to a swf file. This is a desktop application though,
not on the web. I would think that it would be too slow to process on a
server, since the server would have to do much processing with high levels
of traffic.

H

On 1/18/06, Eduardo Silva [EMAIL PROTECTED] wrote:

 Hi all,

 I looked in web this subject, but I did not have success, somebody
 knows if it is possible to make voice recognition in flash?

 sorry my bad english...

 tks,

 etruta
 ___
 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] Application development in flash for MAC

2006-01-18 Thread rishi
Hi 

I want to develop an application in flash which needs to be deployesd at
desktop on a mac operating system. I would like to know about all
options available where I can use flash on the front end on mac and I
can have access to make database operations and Files system moperations
on my offline machine. Any ideas are welcome. 

It will be great if recommendations are other than Zinc , as I am
already using it and facing a lot of problems while using it.


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


Re: [Flashcoders] Application development in flash for MAC

2006-01-18 Thread Flapflap

rishi a écrit :
Hi 


I want to develop an application in flash which needs to be deployesd at
desktop on a mac operating system. I would like to know about all
options available where I can use flash on the front end on mac and I
can have access to make database operations and Files system moperations
on my offline machine. Any ideas are welcome.
  

mProjector is crossplateform now.
You can try XUL with swf embed
Don't know if Screenweaver OS 4 (crossplatform) is here

Good luck ;-)

--
Flapflap

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


Re: [Flashcoders] MX 2004 and keyboard shortcuts

2006-01-18 Thread Jason Lutes
 Well, I always thought shift-/ctrl-ins IS system level under windows. At
  least it works in any of my programs except macromedia
 So it more seems like this not-functioning is due to the application,
 not the system?!

I've also run into a few issues with the custom keyboard shortcuts in
Flash. This leads me to believe that your issue is likely just another
Macromedia oversight in the software.

Example of my own recurring issues: When I assign a shortcut key to a
command, it usually works predictably. However, as soon as I assign a
SHIFT version of the same key to another command, the former shortcut key
often mysteriously becomes forgotten.

The issues aren't only in the custom shortcut keys, but linger in the
native shortcuts too. For example, Paste Frames (CTRL + ALT + V/Command +
Option + V) doesn't work until after the first time you paste frames from
the menu in a given Flash session.

There are others, and I hoped that some of them would be fixed in v.8, but
they weren't.


-
pixelTwiddler, a.k.a. Jason


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


[Flashcoders] Flash mp3 player

2006-01-18 Thread mika
Hello

I'm looking for a simple and efective mp3 player (flashplayer 7). it just
need to load a playlist, play, pause, next, prev, choose a track and voila.
Could you recommand one you used and worked well ?

thx a lot

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


Re: [Flashcoders] my old problem... with big loads of swf's

2006-01-18 Thread Nathan Derksen
Have you tried loading them into movie clips instead of levels? I  
generally try staying away from levels when at all possible. Also,  
you can use the movie clip loader class to make the movie clip loads  
sequential, loading the next movie after the previous movie generates  
an onLoadInit event. Third, you can use setInterval to delay the  
initial load a little bit so that it is not loading during the  
initial startup of the projector exe.


Nathan
http://www.nathanderksen.com


On Jan 18, 2006, at 5:47 AM, julian atienza wrote:


At least somebody helps me...
I posted my problem here several times, about swf's and big loads in
projector but no solutions. Some helpful and patient words, but i was
beleaving i was going crazy (everybody tolds me here that it wasn't  
a normal

success)

I posted my question in Creative Cow:


 Hello. I posted my problem several times in several forums (but  
this is my

first post here)

I haven't found a solution and the time for my project is running  
so fast
(i'm working hard, mornings, evening, nights, but no solutions for  
this

problem)

The Scene:
i'm programming a Projector-Flash Project that loads contents in  
local. It
uses _levels, AS2, and a MovieClipLoader to load contents in each  
_level

through navigation in the app.
There is some big swf (5Mb) to load, but size must not be a problem  
in a

local-project (Kiosk CD or DVD project)

The Problem:
when i Load the swf's in the appropiate _level, the previous _level  
goes

frozen (even a simple animation of time to wait during load).
I also tried a preloader technique in the swf that is being loaded  
with two

scenes, but the animation of the first scene also is frozen until the
complete load is made.

The Cause:
I think the cause of the problem has the following reason...

When i load in remote (flash web projects), there is a portion of
memo/processor free. So i can make anything during this time.

When i load in local, all the resources are taken to make the load, so
anything is frozen till the load is complete.


DESPERATE:
I've tried all kind of methods (Preloaders, MovieClipLoader (It  
only gives

me 0% and 100% in events to control load), and so on... no solutions.

Can anybody solve this problem?
Thank u in advance

---
In Creative Cow one person post me the following:
--
 My experience with the projector is it doesn't do a progressive  
download
like SWFs do on the internet. I've never used the projector to  
dynamically
load SWFs, but I've made projectors of very large SWFs (20-75MB)  
and it
seems to me that when you run them, they need to load the full file  
into
memory before the projector app starts running (except for FLVs,  
which still
seem to stream fine). It wouldn't surprise me if it were the same  
for the
dynamically loading assets, which would only be an issue when you  
have large
files. The fact that it freezes things that are already loaded and  
running

is somewhat surprising to me, but not entirely unexpected.



I'm still with the same problem. But i hope that it helps to people  
to NEVER
try to build a big application developed in flash and actionscript  
(even

Flash 8) without considering that advertisement...

thanks to all people...
___
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] Documenting my code

2006-01-18 Thread Alan MacDougall

Ian Thomas wrote:


We've jsut started using AS2API -
http://www.badgers-in-foil.co.uk/projects/as2api/ - which works fine for us
on Windows (but had issues on Linux, sadly, although I think that's because
our Linux box needs a good cleanup).
 

Perhaps you could share how you got it working? I just tried it with a 
command line like this:


as2api --classpath path/to/swfRoot;path/to/commonLib 
com.alanmacdougall.project.*


(I have all my classes arranged properly at swfRoot/com/etc/etc, with 
utility classes like XFactorStudio's XPath at a common library location.)


First it barfed when it found variable definitions in the style private 
var x:Number, y:Number; -- so I fixed those. But then it started giving 
me huge streams of errors saying Found no definition of type known 
locally as 'MovieClip'.


Again, I think, no problem -- I add flash_home/en/First Run/Classes/FP8 
and flash_home/en/First Run/Classes/MX to the classpath... but without 
success.


Could you post your experiences with as2api, and the command line 
parameters you're using? I'd appreciate it.


Alan

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


Re: [Flashcoders] Documenting my code

2006-01-18 Thread Ian Thomas
Hi Alan,
  That one's pretty simple - we didn't even try. I too get the huge barf of
'no definition' output for the MX classes. But I didn't need to document the
MX classes, so didn't bother looking into how to do so - the output from
as2api _without_ those classes is absolutely fine for what we want.

Sorry I couldn't be of more help!
  Ian

On 1/18/06, Alan MacDougall [EMAIL PROTECTED] wrote:

 Ian Thomas wrote:

 We've jsut started using AS2API -
 http://www.badgers-in-foil.co.uk/projects/as2api/ - which works fine for
 us
 on Windows (but had issues on Linux, sadly, although I think that's
 because
 our Linux box needs a good cleanup).
 
 
 Perhaps you could share how you got it working? I just tried it with a
 command line like this:

 as2api --classpath path/to/swfRoot;path/to/commonLib
 com.alanmacdougall.project.*

 (I have all my classes arranged properly at swfRoot/com/etc/etc, with
 utility classes like XFactorStudio's XPath at a common library location.)

 First it barfed when it found variable definitions in the style private
 var x:Number, y:Number; -- so I fixed those. But then it started giving
 me huge streams of errors saying Found no definition of type known
 locally as 'MovieClip'.

 Again, I think, no problem -- I add flash_home/en/First Run/Classes/FP8
 and flash_home/en/First Run/Classes/MX to the classpath... but without
 success.

 Could you post your experiences with as2api, and the command line
 parameters you're using? I'd appreciate it.

 Alan

 ___
 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] Documenting my code

2006-01-18 Thread Alan MacDougall

Ian Thomas wrote:


Hi Alan,
 That one's pretty simple - we didn't even try. I too get the huge barf of
'no definition' output for the MX classes. But I didn't need to document the
MX classes, so didn't bother looking into how to do so - the output from
as2api _without_ those classes is absolutely fine for what we want.
 

Hm, well, it's fine for me, too -- the multiple pages of errors just 
offends my tender sensibilities. Thanks!


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


RE: [Flashcoders] voice recognition in flash

2006-01-18 Thread Ralph Caraveo
You might want to wait for Flash Player 8.5 and AS3.0  With AS3.0 you
can use the computeSpectrum functionality on an audio file and get a
byteArray of all it's spectrum/frequency data.

-Ralph 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Johan
Lopes
Sent: Wednesday, January 18, 2006 10:00 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] voice recognition in flash

Look into VoiceXML. It would be possible to let a server-side API deal
with the voice recognition part and use the VoiceXML specification as a
bridge between Flash and the API. There are loads of articles on this
subject online. Just google it.

For a while I was very interested in this topic and almost chose it as
my research topic while at University.

/Johan

On 1/18/06, elibol [EMAIL PROTECTED] wrote:
 Most probably not on the web, Actionscript does not provide a way to 
 watch sound frequencies. Mario Klingemann has written a visualization 
 script that responds to sound frequencies using 3rd party software 
 which plays mp3s and passes frequency values to a swf file. This is a 
 desktop application though, not on the web. I would think that it 
 would be too slow to process on a server, since the server would have 
 to do much processing with high levels of traffic.

 H

 On 1/18/06, Eduardo Silva [EMAIL PROTECTED] wrote:
 
  Hi all,
 
  I looked in web this subject, but I did not have success, somebody 
  knows if it is possible to make voice recognition in flash?
 
  sorry my bad english...
 
  tks,
 
  etruta
  ___
  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] voice recognition in flash

2006-01-18 Thread elibol
Oh wow, VoiceXML sounds like the perfect solution. Could it be used to
output mp3 frequencies?

H

On 1/18/06, Johan Lopes [EMAIL PROTECTED] wrote:

 Look into VoiceXML. It would be possible to let a server-side API deal
 with the voice recognition part and use the VoiceXML specification as
 a bridge between Flash and the API. There are loads of articles on
 this subject online. Just google it.

 For a while I was very interested in this topic and almost chose it as
 my research topic while at University.

 /Johan

 On 1/18/06, elibol [EMAIL PROTECTED] wrote:
  Most probably not on the web, Actionscript does not provide a way to
 watch
  sound frequencies. Mario Klingemann has written a visualization script
 that
  responds to sound frequencies using 3rd party software which plays mp3s
 and
  passes frequency values to a swf file. This is a desktop application
 though,
  not on the web. I would think that it would be too slow to process on a
  server, since the server would have to do much processing with high
 levels
  of traffic.
 
  H
 
  On 1/18/06, Eduardo Silva [EMAIL PROTECTED] wrote:
  
   Hi all,
  
   I looked in web this subject, but I did not have success, somebody
   knows if it is possible to make voice recognition in flash?
  
   sorry my bad english...
  
   tks,
  
   etruta
   ___
   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] voice recognition in flash

2006-01-18 Thread elibol
That's way intense Ralph, it sounds like what I've been waiting for my
entire life!

H

On 1/18/06, Ralph Caraveo [EMAIL PROTECTED] wrote:

 You might want to wait for Flash Player 8.5 and AS3.0  With AS3.0 you
 can use the computeSpectrum functionality on an audio file and get a
 byteArray of all it's spectrum/frequency data.

 -Ralph

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Johan
 Lopes
 Sent: Wednesday, January 18, 2006 10:00 AM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] voice recognition in flash

 Look into VoiceXML. It would be possible to let a server-side API deal
 with the voice recognition part and use the VoiceXML specification as a
 bridge between Flash and the API. There are loads of articles on this
 subject online. Just google it.

 For a while I was very interested in this topic and almost chose it as
 my research topic while at University.

 /Johan

 On 1/18/06, elibol [EMAIL PROTECTED] wrote:
  Most probably not on the web, Actionscript does not provide a way to
  watch sound frequencies. Mario Klingemann has written a visualization
  script that responds to sound frequencies using 3rd party software
  which plays mp3s and passes frequency values to a swf file. This is a
  desktop application though, not on the web. I would think that it
  would be too slow to process on a server, since the server would have
  to do much processing with high levels of traffic.
 
  H
 
  On 1/18/06, Eduardo Silva [EMAIL PROTECTED] wrote:
  
   Hi all,
  
   I looked in web this subject, but I did not have success, somebody
   knows if it is possible to make voice recognition in flash?
  
   sorry my bad english...
  
   tks,
  
   etruta
   ___
   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] Application development in flash for MAC

2006-01-18 Thread erixtekila



mProjector is crossplateform now.

Nice.


You can try XUL with swf embed

Very good point.


Don't know if Screenweaver OS 4 (crossplatform) is here

Anyone knows ?

Cheers.

---
erixtekila
http://blog.v-i-a.net/

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


[Flashcoders] Flash and Pop Up Windows

2006-01-18 Thread blists
We are trying to open a new window from flash. But it gets blocked by the 
yahoo toolbar whether we use the getUrl(url,_blank) method or call 
javascript to open the window. How can we get around this?


Brookd


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


RE: [Flashcoders] Flash and Pop Up Windows

2006-01-18 Thread Ralph Caraveo
You really can't control or expect what the user will have installed to
block popups.  Also, some popup blockers have a different level of
tolerance set so I don't think there is a real way to remedy the
situation unfortunately.

Too bad there wasn't a:
forcePopupEvenIfTheyHavePopupBlockerInstalled('url.html'); 

Just kidding I actually hate popups myself and use popup blockers all
the time...Damn porno sites.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of blists
Sent: Wednesday, January 18, 2006 12:08 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Flash and Pop Up Windows

We are trying to open a new window from flash. But it gets blocked by
the yahoo toolbar whether we use the getUrl(url,_blank) method or call
javascript to open the window. How can we get around this?

Brookd


___
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] Flash and Pop Up Windows

2006-01-18 Thread Merrill, Jason
There is no way around it, other than warning your users they need to
allow popups before proceeding - or develop your site in a way that
doesn't require popups.  Popups are kind of becoming bad design now days
anyway because of the proliferation of popup blockers and browsers that
have popup blocking features.  

Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of blists
Sent: Wednesday, January 18, 2006 12:08 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Flash and Pop Up Windows

We are trying to open a new window from flash. But it gets blocked by
the yahoo toolbar whether we use the getUrl(url,_blank) method or call
javascript to open the window. How can we get around this?

Brookd


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

2006-01-18 Thread grimmwerks
Hey - say I've got a repeating setInterval.

If I hit clearInterval() while it's waiting, does it hit that function
one more time or  stop it immediately? I'm having some kind of ghosted
thing happening over here...
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] OT: Saving as MX2004 from v.8

2006-01-18 Thread Jason Lutes
If it's possible, how can I have Flash 8 automatically assume that I want
to save a FLA in the older format?

In other words, we need to be able to hit CTRL+S and have the document
save in MX2004 format.


-
pixelTwiddler, a.k.a. Jason


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


[Flashcoders] FLVPlayback complete event not firing.

2006-01-18 Thread Dan Wade
Hello,

I'm using the flvPlayback component. Then adding listener:

vidPlayBack_cmp.complete = function( evt:Object ):Void {
this._visible = false;
}
vidPlayBack_cmp.addEventListener(complete);


Simple enough. But the event never fires. Any ideas/experience with this?
I'm thinking the actual .flv file has something that flash does not like.


Tia,

-Dan





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


Re: [Flashcoders] OT: Saving as MX2004 from v.8

2006-01-18 Thread Michael Stuhr

Jason Lutes schrieb:

If it's possible, how can I have Flash 8 automatically assume that I want
to save a FLA in the older format?

In other words, we need to be able to hit CTRL+S and have the document
save in MX2004 format.

good luck.

so many people asked for this in fmx2k4. seems none ever listened.

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


Re: [Flashcoders] OT: Saving as MX2004 from v.8

2006-01-18 Thread Johannes Nel
no its not possible. once you do a save as an then do a save as again you
can just press enter, enter (pain in the rear)



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


[Flashcoders] modelChanged Tree component

2006-01-18 Thread Johannes Nel
Hi All

I have a model which dispatches the model change event which in turn gets
caught by the Tree (i have established this by subclassing the tree and
checking if the events come in), but my tree just does not update and to add
insult to injury after that it stops dispatching nodeOpen events in
subnodes.

any tips or tricks that i am missing here?
thanks

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


[Flashcoders] Looking for a guide to mxp, mxi and templetes creation

2006-01-18 Thread Manuel Saint-Victor
Good afternoon Flashcoders.
I'm looking for an online resource to guide me through the creation of an
extension that would install some files in the WindoSWF folder as well as
extract some templates into the template libary in the Flash IDE.  Can
anyone suggest some resources that would start me off in the right
direction.

I have been reading up on JSFL usage in the last few days and am learning
the many uses but am curious if I am headed down the longer path in search
of my solution.  The end goal is to provide our clients with a one-click
install that would add a small list of commands to their command menu, some
components to their components folder, a panel for managing projects that
will contain a swf(I've pretty much figured this part out thanks to the
FlashGuru tutorials) and some templates to their template library.

Just to be clear- I'm not looking for a gimme at all.  Just asking someone
to point me in the right direction to teach me to fish so to speak.

Thanks in advance,

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


Re: [Flashcoders] Flash and Pop Up Windows

2006-01-18 Thread Radley Marx



I'm no expert, but we've had some success reconfiguring pop-ups.

It seem that many blockers sort through the code used for the pop-up.  
There's several parameters you can use (size, scrollbars, etc). If  
all of these (except the URL) are defined in the Javascript on the  
page, the pop-up will usually work. But if you try to define them in  
Flash, the blocker won't trust the pop-up and blocks it.


-radley



On Jan 18, 2006, at 12:07 PM, blists wrote:

We are trying to open a new window from flash. But it gets blocked  
by the yahoo toolbar whether we use the getUrl(url,_blank) method  
or call javascript to open the window. How can we get around this?


Brookd






 
--

Radley Marx
[EMAIL PROTECTED]
310.220.4088
http://www.radleymarx.com
 
--





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


Re: [Flashcoders] Looking for a guide to mxp, mxi and templetes creation

2006-01-18 Thread Johannes Nel
a good start for mxi creation
http://www.muzakdeezign.com/mxi_creator/index.asp

On 1/18/06, Manuel Saint-Victor [EMAIL PROTECTED] wrote:

 Good afternoon Flashcoders.
 I'm looking for an online resource to guide me through the creation of an
 extension that would install some files in the WindoSWF folder as well as
 extract some templates into the template libary in the Flash IDE.  Can
 anyone suggest some resources that would start me off in the right
 direction.

 I have been reading up on JSFL usage in the last few days and am learning
 the many uses but am curious if I am headed down the longer path in search
 of my solution.  The end goal is to provide our clients with a one-click
 install that would add a small list of commands to their command menu,
 some
 components to their components folder, a panel for managing projects that
 will contain a swf(I've pretty much figured this part out thanks to the
 FlashGuru tutorials) and some templates to their template library.

 Just to be clear- I'm not looking for a gimme at all.  Just asking
 someone
 to point me in the right direction to teach me to fish so to speak.

 Thanks in advance,

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




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


[Flashcoders] Flash 8 Mac Projector - Remoting Issue

2006-01-18 Thread Lightmaker (James Laver)
Hi, 

I have stumbled into a problem with the Flash 8 Mac Projector when sending
Remoting calls. 

I've created a VERY simple movie that connects to an equally simple
Coldfusion CFC and returns a result. 

I am developing within Flash 8 for Windows and exporting to swf, exe and hqx
files. 

When running as an EXE on Windows, I am able to send calls and receive the
correct results every time. Also, when running the swf from within a HTML
page, it works perfectly on both Windows and on the Mac.

The problem occurs when I export the movie as a HQX and try and run it on a
Mac Mini (OS X 10.4.4). For no apparent reason the movie is only able to
send and receive 2 calls, after the result of the second call is received,
all subsequent calls never reach the server. Net-Connection debugger
displays an outgoing call, but it's never actually received by the server. 

Has anyone seen this issue before? 

Any help would be greatly appreciated as I am slowly going nuts searching
google for more random combinations of keywords. 

Thanks in advance, 

James.

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


RE: [Flashcoders] Flash 8 Mac Projector - Remoting Issue

2006-01-18 Thread Robert A. Colvin
I have seen this before but it usually has to do with the player GC and
how your declaring crutial vars.   If you can post some code to target
the issue

Cheers
Robert

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Lightmaker (James Laver)
Sent: Wednesday, January 18, 2006 4:34 PM
To: 'Flashcoders mailing list'
Subject: [Flashcoders] Flash 8 Mac Projector - Remoting Issue

Hi, 

I have stumbled into a problem with the Flash 8 Mac Projector when
sending
Remoting calls. 

I've created a VERY simple movie that connects to an equally simple
Coldfusion CFC and returns a result. 

I am developing within Flash 8 for Windows and exporting to swf, exe and
hqx
files. 

When running as an EXE on Windows, I am able to send calls and receive
the
correct results every time. Also, when running the swf from within a
HTML
page, it works perfectly on both Windows and on the Mac.

The problem occurs when I export the movie as a HQX and try and run it
on a
Mac Mini (OS X 10.4.4). For no apparent reason the movie is only able to
send and receive 2 calls, after the result of the second call is
received,
all subsequent calls never reach the server. Net-Connection debugger
displays an outgoing call, but it's never actually received by the
server. 

Has anyone seen this issue before? 

Any help would be greatly appreciated as I am slowly going nuts
searching
google for more random combinations of keywords. 

Thanks in advance, 

James.

___
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] Flash 8 Mac Projector - Remoting Issue

2006-01-18 Thread Lightmaker (James Laver)
Thanks for the reply Robert.

The strangest thing about this problem is that the first two calls work
perfectly; its just any following calls just vanish!

Below is the code we are using for testing:

//import mx.remoting.*;
//import mx.services.*;
//import mx.rpc.*;
import mx.remoting.Service;
import mx.services.NetServices;
import mx.services.Log;
import mx.rpc.RelayResponder;
import mx.rpc.FaultEvent;
import mx.rpc.ResultEvent;
import mx.remoting.PendingCall;
import mx.remoting.RecordSet;
import mx.remoting.debug.NetDebug;
//initialize debugging support
var debug:Boolean = NetDebug.initialize();
var no:Number = 1;
var custinfoLog:Log = new Log(Log.DEBUG, logger1);
custinfoLog.onLog = function(message:String):Void 
{
sendToBox(Connection Log: \n+message+\n);
};
var service:Service = new
Service('http://www.prismone.int/flashservices/gateway', custinfoLog,
'_cfc.model.testRemote.event', null, null);
send_btn.parent = this;
send_btn.onPress = function()
{
sendToBox(Waiting for results :)...\n);
this.parent.makeConnection();
};
function makeConnection():Void
{
var var1:Number = var1_txt.text;
var var2:Number = var1_txt.text;
var var3:Number = var1_txt.text;
sendToBox(call #+no+...\n);


/


/
var pendingCall:PendingCall = service.logEvent(no, var1, var2,
var3);
pendingCall.onResult = function(result)
{
sendToBox(PendingCall object created\n);
sendToBox(Data has been sent with no errors\n+-
+result+\n);
no++;
};
pendingCall.onFault = function(fault)
{
sendToBox(PendingCall object ERROR !!!
+fault.faultstring+\n);
no++;
};
}
function sendToBox(a:String)
{
results_txt.text = a+results_txt.text;
}

EOF

James

 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Robert A.
Colvin
Sent: Wednesday, January 18, 2006 4:41 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Flash 8 Mac Projector - Remoting Issue

I have seen this before but it usually has to do with the player GC and
how your declaring crutial vars.   If you can post some code to target
the issue

Cheers
Robert

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Lightmaker (James Laver)
Sent: Wednesday, January 18, 2006 4:34 PM
To: 'Flashcoders mailing list'
Subject: [Flashcoders] Flash 8 Mac Projector - Remoting Issue

Hi, 

I have stumbled into a problem with the Flash 8 Mac Projector when
sending
Remoting calls. 

I've created a VERY simple movie that connects to an equally simple
Coldfusion CFC and returns a result. 

I am developing within Flash 8 for Windows and exporting to swf, exe and
hqx
files. 

When running as an EXE on Windows, I am able to send calls and receive
the
correct results every time. Also, when running the swf from within a
HTML
page, it works perfectly on both Windows and on the Mac.

The problem occurs when I export the movie as a HQX and try and run it
on a
Mac Mini (OS X 10.4.4). For no apparent reason the movie is only able to
send and receive 2 calls, after the result of the second call is
received,
all subsequent calls never reach the server. Net-Connection debugger
displays an outgoing call, but it's never actually received by the
server. 

Has anyone seen this issue before? 

Any help would be greatly appreciated as I am slowly going nuts
searching
google for more random combinations of keywords. 

Thanks in advance, 

James.

___
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] Looking for a guide to mxp, mxi and templetes creation

2006-01-18 Thread Manuel Saint-Victor
Johannes,
I've been reading that this morning and it's definitely been moving my
progress along.  Thanks.
Any other places that could guide me to including perhaps scripts that would
create a custom folder in the templates panel with some fla files?  I was
researching the lecture that Guy Watson  wrote about using the JSFL file API
to see if that might provide my best solution for that.

Mani



On 1/18/06, Johannes Nel [EMAIL PROTECTED] wrote:

 a good start for mxi creation
 http://www.muzakdeezign.com/mxi_creator/index.asp

 On 1/18/06, Manuel Saint-Victor [EMAIL PROTECTED] wrote:
 
  Good afternoon Flashcoders.
  I'm looking for an online resource to guide me through the creation of
 an
  extension that would install some files in the WindoSWF folder as well
 as
  extract some templates into the template libary in the Flash IDE.  Can
  anyone suggest some resources that would start me off in the right
  direction.
 
  I have been reading up on JSFL usage in the last few days and am
 learning
  the many uses but am curious if I am headed down the longer path in
 search
  of my solution.  The end goal is to provide our clients with a one-click
  install that would add a small list of commands to their command menu,
  some
  components to their components folder, a panel for managing projects
 that
  will contain a swf(I've pretty much figured this part out thanks to the
  FlashGuru tutorials) and some templates to their template library.
 
  Just to be clear- I'm not looking for a gimme at all.  Just asking
  someone
  to point me in the right direction to teach me to fish so to speak.
 
  Thanks in advance,
 
  Mani
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 



 --
 j:pn
 ___
 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] Looking for a guide to mxp, mxi and templetes creation

2006-01-18 Thread Johannes Nel
no use flFile its part of the 7.2 update

On 1/18/06, Manuel Saint-Victor [EMAIL PROTECTED] wrote:

 Johannes,
 I've been reading that this morning and it's definitely been moving my
 progress along.  Thanks.
 Any other places that could guide me to including perhaps scripts that
 would
 create a custom folder in the templates panel with some fla files?  I was
 researching the lecture that Guy Watson  wrote about using the JSFL file
 API
 to see if that might provide my best solution for that.

 Mani



 On 1/18/06, Johannes Nel [EMAIL PROTECTED] wrote:
 
  a good start for mxi creation
  http://www.muzakdeezign.com/mxi_creator/index.asp
 
  On 1/18/06, Manuel Saint-Victor [EMAIL PROTECTED] wrote:
  
   Good afternoon Flashcoders.
   I'm looking for an online resource to guide me through the creation of
  an
   extension that would install some files in the WindoSWF folder as well
  as
   extract some templates into the template libary in the Flash IDE.  Can
   anyone suggest some resources that would start me off in the right
   direction.
  
   I have been reading up on JSFL usage in the last few days and am
  learning
   the many uses but am curious if I am headed down the longer path in
  search
   of my solution.  The end goal is to provide our clients with a
 one-click
   install that would add a small list of commands to their command menu,
   some
   components to their components folder, a panel for managing projects
  that
   will contain a swf(I've pretty much figured this part out thanks to
 the
   FlashGuru tutorials) and some templates to their template library.
  
   Just to be clear- I'm not looking for a gimme at all.  Just asking
   someone
   to point me in the right direction to teach me to fish so to speak.
  
   Thanks in advance,
  
   Mani
   ___
   Flashcoders mailing list
   Flashcoders@chattyfig.figleaf.com
   http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
 
 
 
  --
  j:pn
  ___
  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




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


Re: [Flashcoders] Looking for a guide to mxp, mxi and templetes creation

2006-01-18 Thread Johannes Nel
oh thats the one you are talking about, got confused since guy also had
another unsuported fileAPi in the past

On 1/18/06, Johannes Nel [EMAIL PROTECTED] wrote:

 no use flFile its part of the 7.2 update

 On 1/18/06, Manuel Saint-Victor [EMAIL PROTECTED] wrote:
 
  Johannes,
  I've been reading that this morning and it's definitely been moving my
  progress along.  Thanks.
  Any other places that could guide me to including perhaps scripts that
  would
  create a custom folder in the templates panel with some fla files?  I
  was
  researching the lecture that Guy Watson  wrote about using the JSFL file
  API
  to see if that might provide my best solution for that.
 
  Mani
 
 
 
  On 1/18/06, Johannes Nel [EMAIL PROTECTED] wrote:
  
   a good start for mxi creation
   http://www.muzakdeezign.com/mxi_creator/index.asp
  
   On 1/18/06, Manuel Saint-Victor [EMAIL PROTECTED]  wrote:
   
Good afternoon Flashcoders.
I'm looking for an online resource to guide me through the creation
  of
   an
extension that would install some files in the WindoSWF folder as
  well
   as
extract some templates into the template libary in the Flash
  IDE.  Can
anyone suggest some resources that would start me off in the right
direction.
   
I have been reading up on JSFL usage in the last few days and am
   learning
the many uses but am curious if I am headed down the longer path in
   search
of my solution.  The end goal is to provide our clients with a
  one-click
install that would add a small list of commands to their command
  menu,
some
components to their components folder, a panel for managing projects
   that
will contain a swf(I've pretty much figured this part out thanks to
  the
FlashGuru tutorials) and some templates to their template library.
   
Just to be clear- I'm not looking for a gimme at all.  Just asking
someone
to point me in the right direction to teach me to fish so to
  speak.
   
Thanks in advance,
   
Mani
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
   
  
  
  
   --
   j:pn
   ___
   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
 



 --
 j:pn




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


Re: [Flashcoders] FLVPlayback complete event not firing.

2006-01-18 Thread clark slater
This is caused by a poorly coded flv. I have encountered it before and
finally tracked it down to our client using a desperately underpowered
machine to encode the flv.

On 1/18/06, Dan Wade [EMAIL PROTECTED] wrote:

 Hello,

 I'm using the flvPlayback component. Then adding listener:

 vidPlayBack_cmp.complete = function( evt:Object ):Void {
this._visible = false;
 }
 vidPlayBack_cmp.addEventListener(complete);


 Simple enough. But the event never fires. Any ideas/experience with this?
 I'm thinking the actual .flv file has something that flash does not like.


 Tia,

 -Dan





 ___
 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] Remoting java and HttpSession recovery

2006-01-18 Thread Felipe Fernandez
Hi, my question is:

Is there any way of rescue httpsession in server side java using remoting?

That is, I have a remoting call from flash to flash remoting working
under java and in server side I need some values stored in client
HttpSession?

Is this posible?
Perhaps using Filter in servlet 2.3 API? Any example or link?

Regards and thanks a lot !!!
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Q:Tracing out objects in an array

2006-01-18 Thread bitstreams
Hi
I'm populating an array with objects.
When I trace out the array I get
==[object Object]
Whats the best way to trace out the  contents of the objects once they're in 
the array?


Thansk in advance
Jim Bachalo 


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

...all improvisation is life in search of a style.
 - Bruce Mau,'LifeStyle'
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Documenting my code

2006-01-18 Thread ryanm
Or, can anyone suggest an alternative software that takes the java-doc 
style comments and create documentation?


   Check out NaturalDocs. It's free (open course), and it reads almost any 
style of comments.


ryanm 


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


Re: [Flashcoders] Documenting my code

2006-01-18 Thread Andy Johnston

also could try:
http://www.jellyvision.com/actiondoc/ stand alone and nice


ryanm wrote:

Or, can anyone suggest an alternative software that takes the 
java-doc style comments and create documentation?


   Check out NaturalDocs. It's free (open course), and it reads almost 
any style of comments.


ryanm
___
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] Flash 8 inside Director MX 2004

2006-01-18 Thread Ralph Caraveo
Hey List,
 
Trying to figure out if it's possible to use Flash 8 with the new built
in effects within Director mx 2004?  Has anyone gotten this to work or
is the only solution to just wait and see if Macromedia *feels* like
updating Director?
 
-Ralph

Choice Internet Home Page http://www.choiceinternet.com
Choice Internet
   17785 Center Court Dr. Suite 280  
Cerritos, CA 90703  
Tel: 562 865 6886 x112   Fax: 562.865.6889
M:\emailTemplate\arrowLightBlue.gif www.choiceinternet.com
http://www.choiceinternet.com 
 

  Ralph Caraveo, Senior Programmer [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  

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


Re: [Flashcoders] Flash 8 inside Director MX 2004

2006-01-18 Thread stacey
the flash asset xtra needs to be updated and I'm totally unaware if they
have done that or not.

 Hey List,

 Trying to figure out if it's possible to use Flash 8 with the new built
 in effects within Director mx 2004?  Has anyone gotten this to work or
 is the only solution to just wait and see if Macromedia *feels* like
 updating Director?

 -Ralph

 Choice Internet Home Page http://www.choiceinternet.com
 Choice Internet
17785 Center Court Dr. Suite 280
 Cerritos, CA 90703
 Tel: 562 865 6886 x112   Fax: 562.865.6889
 M:\emailTemplate\arrowLightBlue.gif www.choiceinternet.com
 http://www.choiceinternet.com


   Ralph Caraveo, Senior Programmer   [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]

 ___
 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] Flash 8 inside Director MX 2004

2006-01-18 Thread Ralph Caraveo
In case anyone cares I found this little tidbit of insider information:
http://weblogs.macromedia.com/thiggins/archives/2005/09/flash_8_asset_x.
cfm 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Wednesday, January 18, 2006 4:08 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] Flash 8 inside Director MX 2004

the flash asset xtra needs to be updated and I'm totally unaware if they
have done that or not.

 Hey List,

 Trying to figure out if it's possible to use Flash 8 with the new 
 built in effects within Director mx 2004?  Has anyone gotten this to 
 work or is the only solution to just wait and see if Macromedia 
 *feels* like updating Director?

 -Ralph

 Choice Internet Home Page http://www.choiceinternet.com Choice 
 Internet
17785 Center Court Dr. Suite 280
 Cerritos, CA 90703
 Tel: 562 865 6886 x112   Fax: 562.865.6889
 M:\emailTemplate\arrowLightBlue.gif www.choiceinternet.com 
 http://www.choiceinternet.com


   Ralph Caraveo, Senior Programmer   [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]

 ___
 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] Flash 8 inside Director MX 2004

2006-01-18 Thread Roy Pardi
At 3:59 PM -0800 1/18/06, Ralph Caraveo wrote:
Hey List,

Trying to figure out if it's possible to use Flash 8 with the new built
in effects within Director mx 2004?  Has anyone gotten this to work or
is the only solution to just wait and see if Macromedia *feels* like
updating Director?

From what I understand, an update is in progress but until it is released
we can't use the Flash 8 features in Director.
-- 
-
Studio Blog: http://www.roypardi.com/studio/

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


Re: [Flashcoders] Flash 8 Mac Projector - Remoting Issue

2006-01-18 Thread Chris Velevitch
Although I'm not using Macs, when I do the call to the remote server I always

pendingCall.responder = new RelayResponder(this, onResult, onFault);

According to the AS2 Flash Remoting help [1] , the PendingCall class
has only one property:

 responder: Responder

where Responder is an interface class and RelayResponder implements
that interface.

Try that to see if makes a difference.

[1] 
http://livedocs.macromedia.com/flashremoting/mx2004/actionscript_api_reference/mx/remoting/PendingCall.html



Chris
--
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
www.flashdev.org.au
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] v2 tab component

2006-01-18 Thread Dave Caygill
Hello

 

I'm creating an open source educational app in AS2.0 and need a tab bar
component - ideally one that supports the UIComponent stuff like
setStyles etc...

 

I cant seem to find anything available, only mentions of one in the DRK5
but now you cant buy it anymore.  I also see there is one in flex,
anyone know how to extract that to a swc or something that can be used?

 

Cheers, in advance

 

 

d

 

 

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


RE: [Flashcoders] Q:Tracing out objects in an array

2006-01-18 Thread Andreas Weber
Very convenient: mx.data.binding.ObjectDumper

http://weblogs.macromedia.com/dehaan/archives/2005/04/hidden_componen.cf
m

hth
--
Andreas Weber
motiondraw.com


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Donnerstag, 19. Januar 2006 00:18
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Q:Tracing out objects in an array


Hi
I'm populating an array with objects.
When I trace out the array I get
==[object Object]
Whats the best way to trace out the  contents of the objects once
they're in the array?


Thansk in advance
Jim Bachalo 


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

...all improvisation is life in search of a style.
 - Bruce Mau,'LifeStyle'
___
Flashcoders 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] Flash Developer postion

2006-01-18 Thread Bennie Boone
Flash Developer: ActionScript 2.0 Intensive 

 

AnimationMetentor.com (www.animationmentor.com) is a progressive rapidly 
growing E-Learning school.  We are looking for a talented Sr. Flash Developer 
to fill our full-time Flash/ActionScript 2.0 Developer in our Berkeley office.

 

 

Requirements 

*   Flash 8 
*   ActionScript 2.0 
*   Flash Communication and Media Servers 
*   Event Logging w/ FlashComm and Media Servers 
*   Streaming media w/ FlashComm and Media Server 
*   Solid understanding of live streaming media technologies 
*   3+ years professional experience as a Flash programmer 
*   Basic database experience 
*   Solid experience parsing XML with Flash 
*   Solid experience working with complex data 
*   Solid understanding of Flash performance on multiple browsers  OS's 
*   Excellent problem-solving and communication skills, with good 
documentation habits. 
*   Basic experience with a sever-side technology (ASP, ColdFusion, PHP, 
Perl, Java, etc.) 

Bonuses

*   Experience with Flash Remoting
*   Experience with Flash Webservices
*   Flex - Zorn 
*   ColdFusion 
*   SQLSever 2000

 

Must be eligible to work in the United States, and work onsite in Berkeley.  If 
possible, please supply examples of your work (URL) along with your resume.  
Send to [EMAIL PROTECTED] Please, NO PHONE CALLS.

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


Re: [Flashcoders] Flash mp3 player

2006-01-18 Thread Danger
http://www.thegoldenmean.com/technique/fmx_mp3-3_14.html

On 1/19/06, mika [EMAIL PROTECTED] wrote:
 Hello

 I'm looking for a simple and efective mp3 player (flashplayer 7). it just
 need to load a playlist, play, pause, next, prev, choose a track and voila.
 Could you recommand one you used and worked well ?

 thx a lot

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



--
Danger's Flash Blog
http://www.dengjie.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders