[Flashcoders] #3revision:populatingTextFieldsInNestedArray

2006-01-19 Thread cristian

Thanks all for the feed back.I deeply appreciate it.

I revised my code so that:

c = c.createEmptyMovieClip("c", 1);
is now:
c = this.createEmptyMovieClip("c", 1);

and I now have this as well:

/*
//populate each movie clip with an empty text field
*/
sctnNm_array[0][1];
for (j=0; jI think I understand the issue with the lack of reference though I am  
using Flash 8 Player w/ Flash 8, so

if I'm not misunderstanding is the problem here?:

for (k=0; kI'm still trying to figure this out, again thank you all for the tips  
and any further advise


xtian






//create a container called "c"
c = this.createEmptyMovieClip("c", 1);
/*
 
///

//the developer created sctnTxt arrray
 
///

*/
var sctnTxt_array:Array = new Array("news", "philosophy", "about us",  
"excursions", "rentals", "locations", "gallery", "links", "contact");

//trace(sctnTxt_array);
 
///
 
///
 
///

/*
//within c create a new array called "sctnNm_array" of  
(sctnTxt_array.length) number of empty movie clips

*/
function populate() {
for (i=0; i			/ 
///

//populate the textfields with developer 
designated text
			/ 
//

*/
for (k=0; k 


//check it
 
///

*/
sctnNm_array[0][1];
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] NetConnection Debugger not working in Flash 8?

2006-01-19 Thread Grant Cox

Yes, yes, and yes.

And in Flash 7 it works, but not Flash 8.


Steven Sacks wrote:


Did you install Remoting for Flash 8?

Did you put the remoting components on the stage of your movie?

Did you try manually tracing?

NetDebug.trace("Hello world");



 


-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf 
Of Grant Cox

Sent: Thursday, January 19, 2006 9:03 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] NetConnection Debugger not working in Flash 8?

I have just upgraded my workflow to Flash 8 and the latest 
MTASC today, 
and found that while my Remoting calls were working, nothing was 
printing in the NetConnection Debugger.  After some debugging I have 
found that I cannot get anything to print to the 
NetConnection Debugger 
even from within the Flash 8 IDE, and this is with a clean 
reinstall of 
Flash 8 (no previous version of Flash installed) and the Remoting 
components.  I have set the Flash 8 security settings to 
"Always Allow", 
and to trust anything in "C:\".


The follow code, when applied to the first frame of an empty 
movie with 
just the RemotingConnector Component on the stage, works in 
Flash 7, but 
does not work in Flash 8.  The log messages work fine (and 
the remoting 
connection is created and works), but nothing appears in the 
NetConnection Debugger.


Can anyone see a problem with this, or even replicate the error?

Regards,
Grant Cox


///
import mx.remoting.Service;
import mx.services.Log;
import mx.remoting.debug.NetDebug;

NetDebug.initialize();

var myLogger:Log = new Log(Log.DEBUG, "logger1");
myLogger.onLog = function(message:String) {
   trace("NetConnection LOG: " + message);
};

var gatewayURL:String = "http://localhost/myproject/gateway.php";;
  
var userService:Service = new Service ( gatewayURL, myLogger, 
"Users", 
null, null );

trace("gateway at: " + gatewayURL + " user service: " + userService );
NetDebug.trace("testing testing testing");

stop();
___
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] how to deal with user-choosable skinning

2006-01-19 Thread Steven Sacks
It's easy to do with vector or bitmap graphics.  For bitmap, make your
buttons color free transparent PNGs, using semi-transparent greyscale
shading and shaping.  Under the button, mask a movieclip with a rectangle in
it - have the button shape be the mask (usually works, you might need to
play with it to get it just right).  Have that movieclip listen to a style
class - just make one movieclip in the library to do this.  Do not make
components out of these unless you want your movie to run slow. Assign said
movieclip to a particular style group, and then send the event onStyleUpdate
or whatever, passing the color and the group which that color belongs to,
which you then apply using standard movieclip color transform scripts.
Done.

HTH,
Steven

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf 
> Of Chad Royer
> Sent: Thursday, January 19, 2006 11:23 AM
> To: flashcoders@chattyfig.figleaf.com
> Subject: [Flashcoders] how to deal with user-choosable skinning
> 
> Hi all,
> I've been planning a flash ria for a while, and there are a few  
> things I'd like to do with the interface that I still haven't quite  
> figured out, maybe you can help.
> 
> The main puzzle I'm trying to work out is how I can set up a  
> selection of alternate graphical "skins" for the entire site 
> that the  
> end user can choose at runtime.  Ultimately, I'd want to have all of  
> my base graphic elements (button over and under states, arrows,  
> whatever) externalized in a library/movieClip that I can duplicate  
> and alter, then import based on a userPrefs variable on the  
> initialization of the site, and apply the graphic elements to the  
> rest of the movieclips in the app.  Has anyone done this sort of  
> setup before?  It seems like it should be easy enough, but I can't  
> find anything about it.
> 
> any help is mucho appreciated.
> chad
> 
> ___
> 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] NetConnection Debugger not working in Flash 8?

2006-01-19 Thread Steven Sacks
Did you install Remoting for Flash 8?

Did you put the remoting components on the stage of your movie?
 
Did you try manually tracing?

NetDebug.trace("Hello world");



> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf 
> Of Grant Cox
> Sent: Thursday, January 19, 2006 9:03 PM
> To: flashcoders@chattyfig.figleaf.com
> Subject: [Flashcoders] NetConnection Debugger not working in Flash 8?
> 
> I have just upgraded my workflow to Flash 8 and the latest 
> MTASC today, 
> and found that while my Remoting calls were working, nothing was 
> printing in the NetConnection Debugger.  After some debugging I have 
> found that I cannot get anything to print to the 
> NetConnection Debugger 
> even from within the Flash 8 IDE, and this is with a clean 
> reinstall of 
> Flash 8 (no previous version of Flash installed) and the Remoting 
> components.  I have set the Flash 8 security settings to 
> "Always Allow", 
> and to trust anything in "C:\".
> 
> The follow code, when applied to the first frame of an empty 
> movie with 
> just the RemotingConnector Component on the stage, works in 
> Flash 7, but 
> does not work in Flash 8.  The log messages work fine (and 
> the remoting 
> connection is created and works), but nothing appears in the 
> NetConnection Debugger.
> 
> Can anyone see a problem with this, or even replicate the error?
> 
> Regards,
> Grant Cox
> 
> 
> ///
> import mx.remoting.Service;
> import mx.services.Log;
> import mx.remoting.debug.NetDebug;
> 
> NetDebug.initialize();
> 
> var myLogger:Log = new Log(Log.DEBUG, "logger1");
> myLogger.onLog = function(message:String) {
> trace("NetConnection LOG: " + message);
> };
> 
> var gatewayURL:String = "http://localhost/myproject/gateway.php";;
>
> var userService:Service = new Service ( gatewayURL, myLogger, 
> "Users", 
> null, null );
> trace("gateway at: " + gatewayURL + " user service: " + userService );
> NetDebug.trace("testing testing testing");
> 
> stop();
> ___
> 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] revised 5:34:18 PM EST Q: populating Text Fields in nested Array

2006-01-19 Thread John Grden
1. what's c?  it's not defined as far as I can tell.  I set it to "this"
thinking you might be extending the MovieClip class.
2. you weren't calling populate()
3. you don't need that third nested clip (k), in fact, you don't need the
second one either

4. you were setting the created text field to sctnTxt_array[k]; which
resulted in all of them being set to "contact"
http://www.acmewebworks.com/admintool/images/xray_textfieldsCreated.png

5. After I got that straightened out, I could see with Xray that you weren't
actually creating your textfields inside of the individual movieclips, they
were all being created on "c"'s timeline.  I set the value to a prop "mc"
and used that when calling createTextField().
http://www.acmewebworks.com/admintool/images/xray_textfields_created_in_c.png

6. I eventually took out the J loop as it was creating multiple textfields
with the same value
http://www.acmewebworks.com/admintool/images/xray_textfields_created_in_clips_tooMany.png

7. moved the scope of sctnNm_array outside the populate method's scope so
you'd still have it after it was done ;)
http://www.acmewebworks.com/admintool/images/xray_textfields_created_in_clips_arrayScoped.png

this seems to work:
c = this.createEmptyMovieClip("c", 1);

var sctnTxt_array:Array = new Array("news", "philosophy", "about us",
"excursions", "rentals", "locations", "gallery", "links", "contact");

var sctnNm_array:Array = new Array();

function populate()
{
for (i=0; i wrote:
>
> Hello- I'm still having trouble trying to populating empty Text
> Fields with another array of strings. I have looked through the
> archives with no goal reaching luck. Any help would be appreciated.
>
> Thanks in advance
>
> xtianim
>
> This is my revised code that although continues with no syntax
> errors, and still does not show anything in the swf created
> ***this is the AS from the first frame of a test.fla > a section of a
> class I'm trying to develop
>
>
> //create a container called "c"
> c = c.createEmptyMovieClip("c", 1);
> /*
> 
> ///
> //the developer created sctnTxt arrray
> 
> ///
> */
> var sctnTxt_array:Array = new Array("news", "philosophy", "about us",
> "excursions", "rentals", "locations", "gallery", "links", "contact");
> //trace(sctnTxt_array);
> 
> ///
> 
> ///
> 
> ///
> /*
> //within c create a new array called "sctnNm_array" of
> (sctnTxt_array.length) number of empty movie clips
> */
> function populate() {
> for (i=0; i var sctnNm_array:Array = new Array();
> sctnNm_array[i] = c.createEmptyMovieClip("sctnNm"+i, i);
> /*
> //populate each movie clip with an empty text field
> */
> for (j=0; j sctnNm_array[i][j] = c.createTextField("sctnNmTxt"+j, j, 10, j*20,
> 100, 30);
> sctnNm_array[i][j].autoSize = true;
> sctnNm_array[i][j].border = true;
> /*
> 
> 
> //populate the textfields with developer designated text
> 
> ///
> */
> for (k=0; k sctnNm_array[i][j].text = sctnTxt_array[k];
> }
> }
> }
> }
> /*
> 
> 
> //check it
> 
> ///
> */
> sctnNm_array[0][1];
>
> ___
> 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


RE: [Flashcoders] revised 5:34:18 PM EST Q: populating Text Fields innested Array

2006-01-19 Thread John Berzy


createTextField()
Returns
TextField - Flash Player 8 returns a reference to the TextField object that 
is created. Flash Player versions earlier than 8 return void.


If your using a player earlier then flash 8 then your problem is 
createTextFeild does not return a reference to that newly created TextField


try this below


for (j=0; j
From: cristian <[EMAIL PROTECTED]>
Reply-To: Flashcoders mailing list 
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] revised 5:34:18 PM EST Q: populating Text Fields 
innested Array Date: Fri, 20 Jan 2006 01:19:10 -0500


Hello- I'm still having trouble trying to populating empty Text  Fields 
with another array of strings. I have looked through the  archives with no 
goal reaching luck. Any help would be appreciated.


Thanks in advance

xtianim

This is my revised code that although continues with no syntax  errors, and 
still does not show anything in the swf created
***this is the AS from the first frame of a test.fla > a section of a  
class I'm trying to develop



//create a container called "c"
c = c.createEmptyMovieClip("c", 1);
/*
 
///

//the developer created sctnTxt arrray
 
///

*/
var sctnTxt_array:Array = new Array("news", "philosophy", "about us",  
"excursions", "rentals", "locations", "gallery", "links", "contact");

//trace(sctnTxt_array);
 
///
 
///
 
///

/*
//within c create a new array called "sctnNm_array" of  
(sctnTxt_array.length) number of empty movie clips

*/
function populate() {
for (i=0; isctnNm_array[i][j] = c.createTextField("sctnNmTxt"+j, j, 10, j*20,  100, 
30);

sctnNm_array[i][j].autoSize = true;
sctnNm_array[i][j].border = true;
/*
 


//populate the textfields with developer designated text
 
///

*/
for (k=0; k 


//check it
 
///

*/
sctnNm_array[0][1];

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


_
Don't just Search. Find! http://search.sympatico.msn.ca/default.aspx The new 
MSN Search! Check it out!


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


Re: [Flashcoders] revised 5:34:18 PM EST Q: populating Text Fields innested Array

2006-01-19 Thread pixelassembly
Just a quick one, 

are you sure about the very first line ?
where are you creating the movieclip ?

maybe it should be 

this.createEmptyMovieClip(...
or
someOther_mc.this.createEmptyMovieClip(...




glenn





//create a container called "c"
c = c.createEmptyMovieClip("c", 1);
/*
 
///
//the developer created sctnTxt arrray
 
///
*/
var sctnTxt_array:Array = new Array("news", "philosophy", "about us",  
"excursions", "rentals", "locations", "gallery", "links", "contact");
//trace(sctnTxt_array);
 
///
 
///
 
///
/*
//within c create a new array called "sctnNm_array" of  
(sctnTxt_array.length) number of empty movie clips
*/
function populate() {
for (i=0; ihttp://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] revised 5:34:18 PM EST Q: populating Text Fields in nested Array

2006-01-19 Thread cristian
Hello- I'm still having trouble trying to populating empty Text  
Fields with another array of strings. I have looked through the  
archives with no goal reaching luck. Any help would be appreciated.


Thanks in advance

xtianim

This is my revised code that although continues with no syntax  
errors, and still does not show anything in the swf created
***this is the AS from the first frame of a test.fla > a section of a  
class I'm trying to develop



//create a container called "c"
c = c.createEmptyMovieClip("c", 1);
/*
 
///

//the developer created sctnTxt arrray
 
///

*/
var sctnTxt_array:Array = new Array("news", "philosophy", "about us",  
"excursions", "rentals", "locations", "gallery", "links", "contact");

//trace(sctnTxt_array);
 
///
 
///
 
///

/*
//within c create a new array called "sctnNm_array" of  
(sctnTxt_array.length) number of empty movie clips

*/
function populate() {
for (i=0; isctnNm_array[i][j] = c.createTextField("sctnNmTxt"+j, j, 10, j*20,  
100, 30);

sctnNm_array[i][j].autoSize = true;
sctnNm_array[i][j].border = true;
/*
 


//populate the textfields with developer designated text
 
///

*/
for (k=0; k 


//check it
 
///

*/
sctnNm_array[0][1];

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


Re: [Flashcoders] Q:Class relationship puzzle

2006-01-19 Thread John Grden
I guess it depends on the role of Local to GlobalA - is the information that
Local provides necessary for GlobalA to do it's job?

On 1/20/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> Hi
> I have several Classes, lets call these GlobalA, GlobalB, GlobalC that are
> referenced by global variables and instantiated by a main or Application
> class .
>
> I also have another class, lets call it Local, that references one of
> these Global classes and passes an Object to one of its' (let's say GlobalA)
> public methods.
>
> If I were to use UML, how would i illustrate the relationship between
> GlobalA and Local??
>
> It's sort of a dependency, but I don't really think it's composition...any
> ideas??
>
> [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
>



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


[Flashcoders] Q:Class relationship puzzle

2006-01-19 Thread bitstreams
Hi
I have several Classes, lets call these GlobalA, GlobalB, GlobalC that are 
referenced by global variables and instantiated by a main or Application class .

I also have another class, lets call it Local, that references one of these 
Global classes and passes an Object to one of its' (let's say GlobalA) public 
methods.

If I were to use UML, how would i illustrate the relationship between GlobalA 
and Local??

It's sort of a dependency, but I don't really think it's composition...any 
ideas??

[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] NetConnection Debugger not working in Flash 8?

2006-01-19 Thread Grant Cox
I have just upgraded my workflow to Flash 8 and the latest MTASC today, 
and found that while my Remoting calls were working, nothing was 
printing in the NetConnection Debugger.  After some debugging I have 
found that I cannot get anything to print to the NetConnection Debugger 
even from within the Flash 8 IDE, and this is with a clean reinstall of 
Flash 8 (no previous version of Flash installed) and the Remoting 
components.  I have set the Flash 8 security settings to "Always Allow", 
and to trust anything in "C:\".


The follow code, when applied to the first frame of an empty movie with 
just the RemotingConnector Component on the stage, works in Flash 7, but 
does not work in Flash 8.  The log messages work fine (and the remoting 
connection is created and works), but nothing appears in the 
NetConnection Debugger.


Can anyone see a problem with this, or even replicate the error?

Regards,
Grant Cox


///
import mx.remoting.Service;
import mx.services.Log;
import mx.remoting.debug.NetDebug;

NetDebug.initialize();

var myLogger:Log = new Log(Log.DEBUG, "logger1");
myLogger.onLog = function(message:String) {
   trace("NetConnection LOG: " + message);
};

var gatewayURL:String = "http://localhost/myproject/gateway.php";;
  
var userService:Service = new Service ( gatewayURL, myLogger, "Users", 
null, null );

trace("gateway at: " + gatewayURL + " user service: " + userService );
NetDebug.trace("testing testing testing");

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


RE: [Flashcoders] v2 tab component

2006-01-19 Thread Bjorn Schultheiss
I've got my own standalone framework for a tab system with display panels.
Though you need to build the tab button with library symbols.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dave Caygill
Sent: Thursday, 19 January 2006 12:26 PM
To: Flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] v2 tab component

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


RE: [Flashcoders] NetStream.pause(false) sometimes pauses ??

2006-01-19 Thread Bjorn Schultheiss
One idea may be to disable 1b if the playback is paused
And disable 1c if it is playing.

That way they is no confusion

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Friday, 20 January 2006 5:34 AM
To: Flashcoders Mailing List
Subject: [Flashcoders] NetStream.pause(false) sometimes pauses ??

Hello good people,

I'll start with the direct question, then give some details.

Is there a trick to making sure NetStream.pause(false) never pauses your
FLV?

I'm using Flash 8, exporting to player 8 format.  When I use NetStream's
pause()
function with "false" for the argument, it pauses my video.  But the
argument
"false" is supposed to mean "don't pause." right?  example:

var connection_nc:NetConnection = new NetConnection();
connection_nc.connect(null);
var stream_ns:NetStream = new NetStream(connection_nc);
my_video.attachVideo(stream_ns);
button1.onRelease = function() {
stream_ns.play("video.flv");
};
button1b.onRelease = function() {
stream_ns.pause(true);
};
button1c.onRelease = function() {
stream_ns.pause(false);
};

Here is what happens for me.  I'd really like to know if anyone else has the
same result.

button1 plays the video. (good)
button1b pauses the video. (good)
button1c resumes the video. (good)
button1c again pauses the video. (bad)
No amount of pressing button1b and button1c will resume playback. (bad)
I have to press button1 to get playback again.

According to Macromedia docs, NetStream.pause(false) should always result
with
the video playing, not paused.  Or am I missing something?

Hopefully someone out there has run into this and has the perfect quickfix
for
me!

Thanks in advance
David Lanier
___
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] addEventListener - MovieClip wants to pass event tocontaining class

2006-01-19 Thread Bjorn Schultheiss
Or you could use delegate to deal with any scope issues
And if Element extends MovieClip you may want to place them in onLoad for
good practice.
Public function onLoad( event : Object ) : Void
{
mc.addEventListener("ALL", Delegate.create( this, handlerMethodName
))
}

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Lanny McNie
Sent: Friday, 20 January 2006 9:40 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] addEventListener - MovieClip wants to pass event
tocontaining class

Thats not how EventDispatcher works.

Firstly, you need a movieclip whose class has EventDispatcher tied into it
(like the v2 components do).  Once that's working, the correct syntax is:

mc.addEventListener("click", this);
function click() {
  // do stuff
}



On 1/19/06, Steve Warren <[EMAIL PROTECTED]> wrote:
>
> Hey folks,
>
> I'm having a little trouble getting addEventListener to work.  I've tried
> a
> bunch of combinations, but have yet to find the right one.  I'm trying to
> assign onRelease functions to a bunch of buttons in my LanguageChooser
> class.  All I want to do is call a function inside LanguageChooser,
> telling
> it which button was clicked.  Can I do it simply like this, or do I need
> to
> create a separate class for the button MovieClips?
>
>//THIS IS THE PART THAT'S NOT WORKING
> english.onRelease = french.onRelease = german.onRelease =
> spanish.onRelease =
> addEventListener(this, languageClicked);
>
> Thanks in advance for any help!
>
> -steve
>
> import mx.utils.Delegate;
> import mx.events.EventDispatcher;
> import com.mosesSupposes.fuse.Fuse;
> import com.mosesSupposes.fuse.ZigoEngine;
> import com.myClient.Element;
> import com.myClient.Language;
>
> class LanguageChooser extends Element
> {
> //movieclip children
> private var english:MovieClip;
> private var french:MovieClip;
> private var german:MovieClip;
> private var spanish:MovieClip;
>
> public var addEventListener:Function;
> public var removeEventListener:Function;
> public var dispatchEvent:Function
>
> public function LanguageChooser()
> {
> super();
> position();
> setup();
> transitionIn();
> }
>
> private function setup(Void) : Void
> {
>//THIS IS THE PART THAT'S NOT WORKING
> english.onRelease = french.onRelease = german.onRelease =
> spanish.onRelease =
> addEventListener(this, languageClicked);
>
> english.onRollOver = french.onRollOver = german.onRollOver =
> spanish.onRollOver =
> function() {ZigoEngine.removeTween(this); ZigoEngine.doTween
> (this,
> "_y", -4, 0.08, "linear");};
> english.onRollOut = french.onRollOut = german.onRollOut =
> spanish.onRollOut =
> english.onReleaseOutside = french.onReleaseOutside =
> german.onReleaseOutside = spanish.onReleaseOutside =
> function() {ZigoEngine.removeTween(this); ZigoEngine.doTween
> (this,
> "_y", 0, 0.5, "easeOutCubic");};
> }
>
> private function languageClicked(eventObj:Object){
> trace(eventObj.target + ": " + eventObj.type);
> Language.setLanguage(eventObj._name);
> }
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



--
-
Lanny McNie
___
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] Mixing SMX and MM V2 Components

2006-01-19 Thread Bjorn Schultheiss
Without being experienced with SMX components I would say I doubt it.
You might want to place the code below inside the mm components parent
onLoad handler.
Methods do not clash when they are in separate classes



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dave Caygill
Sent: Friday, 20 January 2006 3:18 PM
To: [EMAIL PROTECTED]
Cc: Flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Mixing SMX and MM V2 Components

Hiya,

 

Is it possible to mix SMX components and MM's v2 components?  I seem to
be having trouble detecting events after adding SMX components.  Even a
simple test of adding a MM button (btn) to the stage and using the
following to add an event listener:

 

lo = {};

lo.click = function(evt){

trace('target:'+evt.target);

}

btn.addEventListener("click",lo);

 

Will suddenly fail if you drop the SMXTabPane tab component onto the
stage!  IS this because the smx.core.SMXobject has a function
addEventListener?

 

Thanks,

 

Dave

___
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] Mixing SMX and MM V2 Components

2006-01-19 Thread Dave Caygill
Hiya,

 

Is it possible to mix SMX components and MM's v2 components?  I seem to
be having trouble detecting events after adding SMX components.  Even a
simple test of adding a MM button (btn) to the stage and using the
following to add an event listener:

 

lo = {};

lo.click = function(evt){

trace('target:'+evt.target);

}

btn.addEventListener("click",lo);

 

Will suddenly fail if you drop the SMXTabPane tab component onto the
stage!  IS this because the smx.core.SMXobject has a function
addEventListener?

 

Thanks,

 

Dave

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


Re: [Flashcoders] Documenting my code

2006-01-19 Thread Ron Wheeler

Thanks

Ron

Johan Lopes wrote:


Hi Ron,

Here's a link to download from my Dev server (file size ~14K)

http://www.statik1.com/FlashCoders/DoxyFile.zip

Cheers,

/Johan

On 1/19/06, Ron Wheeler <[EMAIL PROTECTED]> wrote:
 


If you want to share your config, perhaps you could post it to this
thread. There are a number of us using Doxygen and its Eclipse plug-in.

I would like to see someone write a Doxygen pre-filter for AS. That is
all that is required to get full ActionScipt support in Doxygen. Filters
have been written for other languages that are much further away from
Java than ActionScript.

Ron

Johan Lopes wrote:

   


I've used Doxygen for a while to document several high-profile
projects and I love it.



 


The output I got from it indicated that Doxygen didn't understand AS2, and was
trying to parse the .as files as if they were Java (i.e. class names were
com.something.MyClass rather than just MyClass - that sort of behaviour).


   


True. If the OPTIMIZE_OUTPUT_JAVA tag is set to YES. Doxygen will then
generate output that is more tailored for Java. For instance,
namespaces will be presented as packages, qualified scopes will look
different, etc. If you just run it with all the default parameters,
the packages will look very weird (at least to my Java eyes) i.e.
com::MyCompanyName::MyProjectName::MyClassName. I like it when it's
dot-syntaxed.

Currently, Doxygen doesn't officially support AS. It works best when
set to treat AS as a Java-like language, but there's some minor issues
with postcolon syntax (:Void etc) especially when you turn on  the
"show-source-in-the-documentation-feature" <--- it's called something
else but you get the idea.

I've used most of the documentation tools mentioned on this list and
there's always trade-offs, even with commercial ones. I know Doxygen
doesn't support AS but I (and most of my clients) love the UML-like
diagrams it spits out so I can live with it's other quirks.

I used to use VisDoc but not anymore cause it only runs on Macs. Used
BLDOC for a while and find it stops generating beyond 5000 line of
code (correct me if I'm wrong). My projects are way too big for it and
then I have draw the diagrams with packages such as Poseidon, ArgoUML
or gModeler (looks good but not useful on large commercial projects).

In Doxygen, have you tried turning HIDE_SCOPE_NAMES to YES. It's on NO
by default.

'
If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
will show members with their full class and namespace scopes in the
documentation. If set to YES the scope will be hidden.

'

Mail me off-list if you're interested and I'll share my Doxyfile
(though I'm not running cron jobs).

Time permitting I'm myself very interested to see how easy it would be
to mold Doxygen to parse AS classes in a proper fashion. After all the
source code is there. It's all open-source and well documented!

Another thing to note is that there was a mention at the Spark
Conference in Europe that MM-Adobe is considering releasing the
documentation tool their Dev team uses internally. We'll see, perhaps
with the next big release of the Flash IDE? :)

HTH,

/Johan
___
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] Slice-9 weirdness

2006-01-19 Thread eric dolecki
are you publishing to flash 8?


On 1/19/06, Troy Rollins <[EMAIL PROTECTED]> wrote:
>
> On Jan 19, 2006, at 4:49 PM, Charles Parcell wrote:
>
> > Is there some magic voodoo mantra that I did not read about?? Is there
> > something that breaks them? Are others having issues with it?
>
> Well, it only shows in test movie, you know that right?
>
> --
> Troy
> RPSystems, Ltd.
> http://www.rpsystems.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


Re: [Flashcoders] Documenting my code

2006-01-19 Thread Duncan Reid
Not sure if this has been mentioned but there is also ZenDoc written in php
that has multiple output modes based on templates, i've played a little with
the demo and it looks promising, plus it's free and open as far as i can
tell...

http://www.senocular.com/projects/?project=ZenDoc&page=demo

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


Re: [Flashcoders] BitmapData question

2006-01-19 Thread Ramon Tayag
Here, force to bitmap class that I made:

http://www.flashkit.com/board/showthread.php?t=659163&highlight=force+bitmap

On 1/20/06, Matt Muller <[EMAIL PROTECTED]> wrote:
> Hi, does anyone know if its possible to use getPixel or something like that
> to take a snapshot of a movieclip that contains some vectors and dynamic
> text fields and return that as a bitmap image to use elsewhere in the site,
> say as a reflection?
>
> Thanks
>
> MaTT
> ___
> 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] Slice-9 weirdness

2006-01-19 Thread Troy Rollins


On Jan 19, 2006, at 4:49 PM, Charles Parcell wrote:


Is there some magic voodoo mantra that I did not read about?? Is there
something that breaks them? Are others having issues with it?


Well, it only shows in test movie, you know that right?

--
Troy
RPSystems, Ltd.
http://www.rpsystems.net


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


Re: [Flashcoders] Flash mp3 player

2006-01-19 Thread mika
thx a lot for the input, the flam player looks just great.
I found http://www.radioblogclub.com/ to be very promising. A little heavy
on the cpu, lacks skins, but stilll a good player.

2006/1/19, Danger <[EMAIL PROTECTED]>:
>
> 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
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread elibol
That's a great article Claus, I appreciate it alot.

cheers,

H

On 1/19/06, Claus Wahlers <[EMAIL PROTECTED]> wrote:
>
> > Is there any way to index Flash content without that risk?
>
> http://wahlers.com.br/claus/blog/seffs-to-flash-or-not-to-flash/
> cheers,
> claus.
> ___
> 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] populating Text Fields in nested Array

2006-01-19 Thread Adrian Lynch
I didn't know that. Thanks for the heads up.

If that is the case, use the string reference to fill the array up

c.createTextField("sctnNmTxt"+sctnNmTxt_d, sctnNmTxt_d, sctnNmTxt_x,
sctnNmTxt_y, sctnNmTxt_w, sctnNmTxt_h);

sctnNm_array[1] = c["sctnNmTxt"+sctnNmTxt_d];

I think.

Adrian

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Lanny
McNie
Sent: 19 January 2006 22:47
To: Flashcoders mailing list
Subject: Re: [Flashcoders] populating Text Fields in nested Array


Unless your using Flash8, createTextField doesn't return a reference.  You
might be dealing with a bunch of undefined elements in your array


On 1/19/06, cristian <[EMAIL PROTECTED]> wrote:
>
> Hey - Im having trying to populating empty Text Fields with an array
> of strings: Any help would be appreciated.
> Thanks in advance
> xtian
>
> This is my code that although has no syntax errors doesn't show
> anything in the swf created
>
> //create a container called "c"
> c = c.createEmptyMovieClip("c", 1);
> /*
> */
> //within c create an array holding mcs that in turn hold empty
> textfields
> var sctnNm_array:Array = new Array();
> //
> sctnNm_array[0] = c.createEmptyMovieClip("sctnNm"+sctnNm_d,
> sctnNm_d); //-***depth 0
> sctnNm_array[1] = c.createTextField("sctnNmTxt"+sctnNmTxt_d,
> sctnNmTxt_d, sctnNmTxt_x, sctnNmTxt_y, sctnNmTxt_w,
> sctnNmTxt_h); //-***depth 1
> /*
> */
> /*
> //create a function to add text to the empty textfields
> */
> var sctnTxt_array :Array = new Array("news", "philosophy","about
> us","excursions","rentals","locations","gallery","links","contact");
> /*
> */
> function addTextNames (){
> sctnNm_array[1].text = sctnTxt_array;
> }
> //check
> function showFields() {
> trace(sctnNm_array);
> }

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


Re: [Flashcoders] populating Text Fields in nested Array

2006-01-19 Thread Lanny McNie
Unless your using Flash8, createTextField doesn't return a reference.  You
might be dealing with a bunch of undefined elements in your array


On 1/19/06, cristian <[EMAIL PROTECTED]> wrote:
>
> Hey - Im having trying to populating empty Text Fields with an array
> of strings: Any help would be appreciated.
> Thanks in advance
> xtian
>
> This is my code that although has no syntax errors doesn't show
> anything in the swf created
>
> //create a container called "c"
> c = c.createEmptyMovieClip("c", 1);
> /*
> */
> //within c create an array holding mcs that in turn hold empty
> textfields
> var sctnNm_array:Array = new Array();
> //
> sctnNm_array[0] = c.createEmptyMovieClip("sctnNm"+sctnNm_d,
> sctnNm_d); //-***depth 0
> sctnNm_array[1] = c.createTextField("sctnNmTxt"+sctnNmTxt_d,
> sctnNmTxt_d, sctnNmTxt_x, sctnNmTxt_y, sctnNmTxt_w,
> sctnNmTxt_h); //-***depth 1
> /*
> */
> /*
> //create a function to add text to the empty textfields
> */
> var sctnTxt_array :Array = new Array("news", "philosophy","about
> us","excursions","rentals","locations","gallery","links","contact");
> /*
> */
> function addTextNames (){
> sctnNm_array[1].text = sctnTxt_array;
> }
> //check
> function showFields() {
> trace(sctnNm_array);
> }
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



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


Re: [Flashcoders] clearInterval question

2006-01-19 Thread Lanny McNie
The function will not run again.

On 1/18/06, Jason Lutes <[EMAIL PROTECTED]> wrote:
>
> > 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...
>
> The following is about all you can do. In my experience it works
> immediately, every time.
>
> clearInterval(intervalVariable);
> intervalVariable = null;
>
> You can put a trace statement inside of the function called by setInterval
> to verify that the interval really does cancel as expected (it stops
> tracing).
>
>
> -
> pixelTwiddler, a.k.a. Jason
>
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



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


Re: [Flashcoders] addEventListener - MovieClip wants to pass event to containing class

2006-01-19 Thread Lanny McNie
Thats not how EventDispatcher works.

Firstly, you need a movieclip whose class has EventDispatcher tied into it
(like the v2 components do).  Once that's working, the correct syntax is:

mc.addEventListener("click", this);
function click() {
  // do stuff
}



On 1/19/06, Steve Warren <[EMAIL PROTECTED]> wrote:
>
> Hey folks,
>
> I'm having a little trouble getting addEventListener to work.  I've tried
> a
> bunch of combinations, but have yet to find the right one.  I'm trying to
> assign onRelease functions to a bunch of buttons in my LanguageChooser
> class.  All I want to do is call a function inside LanguageChooser,
> telling
> it which button was clicked.  Can I do it simply like this, or do I need
> to
> create a separate class for the button MovieClips?
>
>//THIS IS THE PART THAT'S NOT WORKING
> english.onRelease = french.onRelease = german.onRelease =
> spanish.onRelease =
> addEventListener(this, languageClicked);
>
> Thanks in advance for any help!
>
> -steve
>
> import mx.utils.Delegate;
> import mx.events.EventDispatcher;
> import com.mosesSupposes.fuse.Fuse;
> import com.mosesSupposes.fuse.ZigoEngine;
> import com.myClient.Element;
> import com.myClient.Language;
>
> class LanguageChooser extends Element
> {
> //movieclip children
> private var english:MovieClip;
> private var french:MovieClip;
> private var german:MovieClip;
> private var spanish:MovieClip;
>
> public var addEventListener:Function;
> public var removeEventListener:Function;
> public var dispatchEvent:Function
>
> public function LanguageChooser()
> {
> super();
> position();
> setup();
> transitionIn();
> }
>
> private function setup(Void) : Void
> {
>//THIS IS THE PART THAT'S NOT WORKING
> english.onRelease = french.onRelease = german.onRelease =
> spanish.onRelease =
> addEventListener(this, languageClicked);
>
> english.onRollOver = french.onRollOver = german.onRollOver =
> spanish.onRollOver =
> function() {ZigoEngine.removeTween(this); ZigoEngine.doTween
> (this,
> "_y", -4, 0.08, "linear");};
> english.onRollOut = french.onRollOut = german.onRollOut =
> spanish.onRollOut =
> english.onReleaseOutside = french.onReleaseOutside =
> german.onReleaseOutside = spanish.onReleaseOutside =
> function() {ZigoEngine.removeTween(this); ZigoEngine.doTween
> (this,
> "_y", 0, 0.5, "easeOutCubic");};
> }
>
> private function languageClicked(eventObj:Object){
> trace(eventObj.target + ": " + eventObj.type);
> Language.setLanguage(eventObj._name);
> }
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



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


[Flashcoders] populating Text Fields in nested Array

2006-01-19 Thread cristian
Hey - Im having trying to populating empty Text Fields with an array  
of strings: Any help would be appreciated.

Thanks in advance
xtian

This is my code that although has no syntax errors doesn't show  
anything in the swf created


//create a container called "c"
c = c.createEmptyMovieClip("c", 1);
/*
*/
//within c create an array holding mcs that in turn hold empty  
textfields

var sctnNm_array:Array = new Array();
//
sctnNm_array[0] = c.createEmptyMovieClip("sctnNm"+sctnNm_d,  
sctnNm_d); //-***depth 0
sctnNm_array[1] = c.createTextField("sctnNmTxt"+sctnNmTxt_d,  
sctnNmTxt_d, sctnNmTxt_x, sctnNmTxt_y, sctnNmTxt_w,  
sctnNmTxt_h); //-***depth 1

/*
*/
/*
//create a function to add text to the empty textfields
*/
var sctnTxt_array :Array = new Array("news", "philosophy","about  
us","excursions","rentals","locations","gallery","links","contact");

/*
*/
function addTextNames (){
sctnNm_array[1].text = sctnTxt_array;
}
//check
function showFields() {
trace(sctnNm_array);
}
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] addEventListener - MovieClip wants to pass event to containing class

2006-01-19 Thread Steve Warren
Hey folks,

I'm having a little trouble getting addEventListener to work.  I've tried a
bunch of combinations, but have yet to find the right one.  I'm trying to
assign onRelease functions to a bunch of buttons in my LanguageChooser
class.  All I want to do is call a function inside LanguageChooser, telling
it which button was clicked.  Can I do it simply like this, or do I need to
create a separate class for the button MovieClips?

   //THIS IS THE PART THAT'S NOT WORKING
english.onRelease = french.onRelease = german.onRelease =
spanish.onRelease =
addEventListener(this, languageClicked);

Thanks in advance for any help!

-steve

import mx.utils.Delegate;
import mx.events.EventDispatcher;
import com.mosesSupposes.fuse.Fuse;
import com.mosesSupposes.fuse.ZigoEngine;
import com.myClient.Element;
import com.myClient.Language;

class LanguageChooser extends Element
{
//movieclip children
private var english:MovieClip;
private var french:MovieClip;
private var german:MovieClip;
private var spanish:MovieClip;

public var addEventListener:Function;
public var removeEventListener:Function;
public var dispatchEvent:Function

public function LanguageChooser()
{
super();
position();
setup();
transitionIn();
}

private function setup(Void) : Void
{
   //THIS IS THE PART THAT'S NOT WORKING
english.onRelease = french.onRelease = german.onRelease =
spanish.onRelease =
addEventListener(this, languageClicked);

english.onRollOver = french.onRollOver = german.onRollOver =
spanish.onRollOver =
function() {ZigoEngine.removeTween(this); ZigoEngine.doTween(this,
"_y", -4, 0.08, "linear");};
english.onRollOut = french.onRollOut = german.onRollOut =
spanish.onRollOut =
english.onReleaseOutside = french.onReleaseOutside =
german.onReleaseOutside = spanish.onReleaseOutside =
function() {ZigoEngine.removeTween(this); ZigoEngine.doTween(this,
"_y", 0, 0.5, "easeOutCubic");};
}

private function languageClicked(eventObj:Object){
trace(eventObj.target + ": " + eventObj.type);
Language.setLanguage(eventObj._name);
}
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread Claus Wahlers
> Is there any way to index Flash content without that risk?

http://wahlers.com.br/claus/blog/seffs-to-flash-or-not-to-flash/
cheers,
claus.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Slice-9 weirdness

2006-01-19 Thread Charles Parcell
I am attempting to use 9-slice a.k.a. scale9Grid for some components I am
updating. Problem is, I can't seem to get it to work at all.

I have even created a new MovieClip, made a simple circle within it, and
turned on 9-slice via the UI. This gives me the exact same results as if I
didn't have it on.

I have been to several web sites that give step by step examples on how it
works and I have followed them to a T with no luck.

Is there some magic voodoo mantra that I did not read about?? Is there
something that breaks them? Are others having issues with it?

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


Re: [Flashcoders] clearInterval question

2006-01-19 Thread Jason Lutes
> 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...

The following is about all you can do. In my experience it works
immediately, every time.

clearInterval(intervalVariable);
intervalVariable = null;

You can put a trace statement inside of the function called by setInterval
to verify that the interval really does cancel as expected (it stops
tracing).


-
pixelTwiddler, a.k.a. Jason


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


Re: [Flashcoders] Documenting my code

2006-01-19 Thread Judah Frangipane

Hi Jobe,

I just wrote up a document for using this.

Here it is below:
Email me offlist to get the template file I created.

***

Packaging a component can be quite troublesome. Here are some steps to 
help you get the most out of it.







- Create a directory called Release 1.0.0 (replace 1.0.0 with the 
current version number) in the directory of your component.


- Copy the AS2Doc config file to the component root directoy. Rename it 
to fit your component.



AS2DOC Section

Open AS2DOC and open your as2doc.xml file.

Project Tab
- In the projects tab type in a new description. Be sure to save your 
file at each step.


- When you save it delete the file that is there before because 
sometimes it does not get saved.



Source Tab

- Switch to the Source tab and select the correct path to your class 
file or class directory. For example, select the directory that contains 
all your classes, "com" or select the main component class, 
"MyComponent.as". Sometimes duplicate files are listed when you select a 
directory. This happens when you have a copy of the file and leave it in 
the same directory, "Copy of myComponent.as". Remove this backup to 
another location.



Output Tab

- In the output directory select the Release 1.0.0/documentation directory.

- In the stylesheet section select "Flash MX 2004 Documentation"

- In the stylesheet information section click the configure button.

- In the configuration screen check the checkbox "Omit file tags for .as 
sources".

- Enter footer information, "© ACME 2005 - 2006".
- In MXI Title enter "ACME Inc. Component".
- In MXI Version enter the version "1.0.0".
- In MXI Type enter "Flash Component".
- In MXI Author type your name or company name
- In MXI Description enter component description, "ACME XYZ component 
for Flash MX 2004 and Flash 8"
- In MXI UI Access describe how to get to the component in the Flash 
IDE, "After installing the extension, you can access it under Components 
> ACME > MyComponent. Help can be found in the Help Panel under ACME > 
MyComponent"



Options Tab

- In the options tab check the Public Members checkbox.
- Go back and save your file again.


Log Tab

- Press the generate button.

Now goto the Release 1.0.0\documentation\HelpPanel\Help\myComponent 
directory and open the introduction.html page in a browser.


This allows you to read your help documentation as if you were reading 
it from within the Flash IDE. Take the time now to read through the 
documentation following the built in links.


- As you read through the introduction page go to the Project tab and 
change any part of the description you need to.


- As you read through the help documentation open up your class file and 
make changes as you need to.


- All comments that contain "< pre >" tag enclosed code should be 
indented one tab.

For example,
   
   somecode
   


Now that you've made the changes you need to regenerate the help docs 
again. Go into the directory Release 
1.0.0\documentation\HelpPanel\Help\myComponent and delete all the files 
there.


Go back into AS2Doc and press the generate button again.

***



Jobe Makar 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] Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread John Dowdell

elibol wrote:

I don't expect that our clients would like their sites
searchabe only by appending filetype:swf with every search.


No, you wouldn't need to... the use of the "filetype:" term in my search 
query just meant that you wouldn't see all the other web content in your 
results. It's not required to access SWFs.


The example proves that Google knows about and databases the text within 
a SWF. Gaining visibility within any search (ie, being in the first page 
of results) still requires the normal search-optimization techniques of 
good TITLE and metadata info, excellent inbound links from authoritative 
sources, use of search terms that you have a realistic hope of achieving 
good placement on (eg, "flowers" is hosed, but "san francisco corsages" 
might be attainable, etc).


Recap: Google knows the text in your SWFs.

(I didn't follow the parts you wrote about redirection... you may have 
another way to complicate search processes that way.)


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

2006-01-19 Thread Judah Frangipane
There are a lot of JavaDoc documentation products but very little that 
produce the mxi, custom actions and flash help. This takes up a huge 
development time. If you have a developer doing "Flash Help" thank him. 
It's actually a lot of work. It's like going back to hand coding html 
pages when you've got Dreamweaver 8 on your desktop.


I do not know of any good ones out right now but AS2Doc is close. The 
problem with AS2Doc is that the developer has vanished. No emails I have 
ever sent to support have been returned and the company that sells his 
product can no longer get hold of him. This would have been a great 
circumstance for a source code escrow service. I've just downloaded 
BLDocs but they've been in beta for a ~year?? So I'm not sure where they 
are at.


Judah
PS I will post my notes on how I have got AS2Doc to work for me.

Johannes Nel wrote:


i would much rather them work on releasing a good product than building
stuff like editors(zorn is nice however) and documentation applications when
there are a aready numerous things out there.

On 1/19/06, Judah Frangipane <[EMAIL PROTECTED]> wrote:
 


Let's all get on MM-Adobe wish list and ask for this! This has been such
a huge issue in every project I've worked on that it puts me back months
to do documentation.

http://www.macromedia.com/cfusion/mmform/index.cfm?name=wishform

Judah


Johan Lopes wrote:

   


Another thing to note is that there was a mention at the Spark
Conference in Europe that MM-Adobe is considering releasing the
documentation tool their Dev team uses internally. We'll see, perhaps
with the next big release of the Flash IDE? :)

HTH,

/Johan
___
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



 



___
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-19 Thread John Grden
You can also just use the XrayTrace class if you'd like and modify it to
your liking.  One thing that it has built in is recursion checking - ie -
you won't hit a 256 levels of recursion error, which wasn't addressed in the
above mentioned methods.  If you have an array with objects or pointers that
would cause a circular reference, you'd get the 256 level error.

Example:

var obj = new Object();
obj.myObjRef = obj;

function searchMe(obj):Void
{
for(var items:String in obj)
{
if(typeof(obj[items]) == "object") searchMe(obj[items]);
}
}

searchMe(this);

This may seem like a rediculouse scenario, and it is, but it's to illustrate
situations where you register object references with other objects etc (ever
looked through any of the v2 components with Xray? that's a great example).
Recursion can get messy real fast.

If you have questions on the way I did the checking (IE: why not loop and
store object references?) I'd be glad to answer up ;)  I've been down this
road a million times with Xray and would LOVE to find different methods for
attacking this very issue.  So far, the current implementation is fast and
solid.

https://secure.sourcesecure.co.uk/trac/osflash/xray/browser/DEV_Source/xray/classes/com/blitzagency/xray/XrayTrace.as

Tanks!

On 1/19/06, Chris Allen <[EMAIL PROTECTED]> wrote:
>
> Try using Xray http://osflash.org/xray
>
> It comes with a tt(YourObject) method that will recursively trace your
> objects.  It also allows you to inspect objects, MovieClips or whatever is
> in your Flash movie and manipulate them with a GUI at run-time.  It's
> freaking great!
>
> -Chris
> ___
> 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


Re: [Flashcoders] Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread Johannes Nel
>>I would assume that the indexing method follows patterns that are similiar
to domains that abuse SEO, and so, like a virus scanner would, the domain is
flagged the same as an abusing domain is flagged. I think this distinction
is important, as to not assume that google is exclusively targeting the
project, or flash content. The Ripple toolkit is written to redirect the
google agent; this is probably a common SEO abuse technique.

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


[Flashcoders] Q:Creating a full spectrum 'rainbow' Gradient

2006-01-19 Thread bitstreams
Hi
I'm developing a class that would allow creation and manipulation of gradients 
programmatically.

creating a two colour gradient is simple but
how would you create a 'full spectrum rainbow' gradient??


Is this possible??
Thanks
Jim Bachalo


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

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


Re: [Flashcoders] Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread elibol
> peter hall (the owner of the project) was told this by google in person 5
> months ago.


I would assume that the indexing method follows patterns that are similiar
to domains that abuse SEO, and so, like a virus scanner would, the domain is
flagged the same as an abusing domain is flagged. I think this distinction
is important, as to not assume that google is exclusively targeting the
project, or flash content. The Ripple toolkit is written to redirect the
google agent; this is probably a common SEO abuse technique.

> Just checking... you're aware that Google already reads text inside a
> SWF, right? (Try a search term like "contrary evidence filetype:swf" to
> confirm.)


Hi John,
I'm aware, but I don't expect that our clients would like their sites
searchabe only by appending filetype:swf with every search. Another problem
is that the only way to get the page to initialize correctly is to detect
the agent that's accessing the swf file. This is necessary to properly
redirect it to the page it's embedded in, otherwise the link would launch
the swf file without the markup page it was designed to be launched in.
Passing an initialization query string to the swf when it's launched from
the proper markup page would do the trick too; where all other agents that
access the swf directly would be redirected, but, again, you get the google
smack down if you redirect the agent. It's unfortunate that it doesn't
suffice to satisfy our clients.

I think the bottom line is that either Adobe, Google, or both need to do
something about this situation; it's a big pain in the ass.

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


[Flashcoders] (Re-re-post) Desperate Plea for HELP: Php data exchange worked in F7, breaks in F8

2006-01-19 Thread Marc Hoffman


[Re-re-posting. Please, can anyone help with this before I've lost my 
hair and my livelihood? Thanks!]


This is a case where data exchange works in Flash 7 but not in Flash 
8. I've seen lots of articles on this, but they're either extremely 
complicated or don't quite seem applicable (in part due to my 
ignorance, I'm sure). Can someone please point me toward a specific 
fix? Please read on to understand the exact circumstances.


I inherited a Flash site that exchanges data with an apache server 
via php, using sendLoad(). In the swfs, users select features for a 
product and their order is placed in one of several vendor databases. 
Everything is on the same domain, but the vendor databases are on 
subdomains such as vendorA.acmeSales.com, vendorB.acmeSales.com, etc. 
My client and the vendor can access the data using a Flash to display 
the features the user selected.


This worked in Flash 7, but Flash 8 will not exchange data with the database.

I've tried setting security via System and putting crossdomain.xml 
files but I either have the syntax wrong or put them in the wrong location(s).


Do I need cross-domain xml files on the server? If so, what to write 
and where to put them?


Do I need to set permissions in the Flash movies? If so, in just the 
root movie or in all loaded movies? What is the necessary code?


Anything else?

thanks,
Marc Hoffman


___
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-19 Thread Chris Allen
Try using Xray http://osflash.org/xray

It comes with a tt(YourObject) method that will recursively trace your
objects.  It also allows you to inspect objects, MovieClips or whatever is
in your Flash movie and manipulate them with a GUI at run-time.  It's
freaking great!

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


RE: [Flashcoders] expanding a second array given values of thefirstarray

2006-01-19 Thread Merrill, Jason
Yes, perfect - thank you!

Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com










>>-Original Message-
>>From: [EMAIL PROTECTED] [mailto:flashcoders-
>>[EMAIL PROTECTED] On Behalf Of Andreas Weber
>>Sent: Thursday, January 19, 2006 3:15 PM
>>To: 'Flashcoders mailing list'
>>Subject: RE: [Flashcoders] expanding a second array given values of
thefirstarray
>>
>>Like so?
>>
>>taskSet = [2,1,5,1,3];
>>taskSetExpanded = new Array();
>>
>>
>>for(var i=0, len=taskSet.length; i>  for(j=0; j>  if(!j){
>>  var res = 0;
>>  for(k=0; k<=i; k++){
>>  res += taskSet[k];
>>  }
>>  }
>>  taskSetExpanded.push(res);
>>  }
>>}
>>
>>trace(taskSetExpanded);
>>
>>// output: 2,2,3,8,8,8,8,8,9,12,12,12
>>
>>hth
>>--
>>Andreas Weber
>>motiondraw.com
>>
>>
>>-Original Message-
>>From: [EMAIL PROTECTED]
>>[mailto:[EMAIL PROTECTED] On Behalf Of
Merrill,
>>Jason
>>Sent: Donnerstag, 19. Januar 2006 21:02
>>To: Flashcoders mailing list
>>Subject: [Flashcoders] expanding a second array given values of the
>>firstarray
>>
>>
>>Should be pretty straightforward, but I am having trouble wrapping my
>>head around it. I want to create an array of N length, which is
expanded
>>according to the values of another array.  What I mean is, for
example:
>>
>>taskSet = [2,1,5,1,3] //values of how much the new array should expand
>>
>>I want to, based on the values of the taskSet array, make a running
>>add-up total of the values of taskSet & repeat that number in the
final
>>array taskSet[n] times in the new taskSetExpanded array.  I do not
mean
>>just add up the values of taskSet which I already know how to do
(though
>>by so doing, I know that also shows the length of the final array).
>>
>>So (and this may be the easiest way to explain) given the array:
>>
>>taskSet = [2,1,5,1,3];
>>
>>The taskSetExapanded array would then become an array with these exact
>>values:
>>
>>[2,2,3,8,8,8,8,8,9,12,12,12]
>>
>>...where for example, the number 8 as seen in the array(8 comes from
the
>>running total of 2+1+5 from TaskSet) is repeated 5 times (where 5 is
the
>>value of taskSet[3])
>>
>>..and where for example the number 9 as seen in the array (9 comes
from
>>the running total of 2+1+5+1 from TaskSet) is repeated 1 time (where 1
>>is the value of taskSet[4])
>>
>>Etc.
>>
>>Make sense?  Perhaps I over explained. I have tried numerous for loops
>>and never been able to get the final result I need.  Any help is
>>appreciated. Thanks!
>>
>>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
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] expanding a second array given values of the firstarray

2006-01-19 Thread Dimitrios Bendilas

Hi there,

Try this

a = [2,1,5,1,3];

var l:Number = a.length;
var i:Number = -1;
var b:Array = [];
var sum:Number = 0;
while (++i < l) {
sum += a[i];
trace(sum);

var tmp:Array = [];
var n:Number = a[i];
while (--n >= 0) {
 tmp [n] = sum;
}
b = b.concat(tmp);
}
trace(b);


Regards,
Dimitrios Bendilas


- Original Message - 
From: "Merrill, Jason" <[EMAIL PROTECTED]>

To: "Flashcoders mailing list" 
Sent: Thursday, January 19, 2006 10:01 PM
Subject: [Flashcoders] expanding a second array given values of the 
firstarray



Should be pretty straightforward, but I am having trouble wrapping my
head around it. I want to create an array of N length, which is expanded
according to the values of another array.  What I mean is, for example:

taskSet = [2,1,5,1,3] //values of how much the new array should expand

I want to, based on the values of the taskSet array, make a running
add-up total of the values of taskSet & repeat that number in the final
array taskSet[n] times in the new taskSetExpanded array.  I do not mean
just add up the values of taskSet which I already know how to do (though
by so doing, I know that also shows the length of the final array).

So (and this may be the easiest way to explain) given the array:

taskSet = [2,1,5,1,3];

The taskSetExapanded array would then become an array with these exact
values:

[2,2,3,8,8,8,8,8,9,12,12,12]

...where for example, the number 8 as seen in the array(8 comes from the
running total of 2+1+5 from TaskSet) is repeated 5 times (where 5 is the
value of taskSet[3])

..and where for example the number 9 as seen in the array (9 comes from
the running total of 2+1+5+1 from TaskSet) is repeated 1 time (where 1
is the value of taskSet[4])

Etc.

Make sense?  Perhaps I over explained. I have tried numerous for loops
and never been able to get the final result I need.  Any help is
appreciated. Thanks!

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] Public examples of Business RIAs

2006-01-19 Thread John Dowdell

matt stuehler wrote:

I'd like to develop a
showcase of a RIAs developed in Flash.


More here:
http://www.macromedia.com/showcase

Choose "Rich Internet Applications" from the "Project Type" listbox... 
twenty-five case studies there. (Not all of them may have live examples 
on-web, but there's production info available.)


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] expanding a second array given values of the firstarray

2006-01-19 Thread Andreas Weber
Like so?

taskSet = [2,1,5,1,3];
taskSetExpanded = new Array();


for(var i=0, len=taskSet.length; imailto:[EMAIL PROTECTED] On Behalf Of Merrill,
Jason
Sent: Donnerstag, 19. Januar 2006 21:02
To: Flashcoders mailing list
Subject: [Flashcoders] expanding a second array given values of the
firstarray


Should be pretty straightforward, but I am having trouble wrapping my
head around it. I want to create an array of N length, which is expanded
according to the values of another array.  What I mean is, for example:

taskSet = [2,1,5,1,3] //values of how much the new array should expand

I want to, based on the values of the taskSet array, make a running
add-up total of the values of taskSet & repeat that number in the final
array taskSet[n] times in the new taskSetExpanded array.  I do not mean
just add up the values of taskSet which I already know how to do (though
by so doing, I know that also shows the length of the final array).  

So (and this may be the easiest way to explain) given the array:

taskSet = [2,1,5,1,3];

The taskSetExapanded array would then become an array with these exact
values:

[2,2,3,8,8,8,8,8,9,12,12,12]

...where for example, the number 8 as seen in the array(8 comes from the
running total of 2+1+5 from TaskSet) is repeated 5 times (where 5 is the
value of taskSet[3])

..and where for example the number 9 as seen in the array (9 comes from
the running total of 2+1+5+1 from TaskSet) is repeated 1 time (where 1
is the value of taskSet[4])

Etc.

Make sense?  Perhaps I over explained. I have tried numerous for loops
and never been able to get the final result I need.  Any help is
appreciated. Thanks!

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


[Flashcoders] TextFormat input text

2006-01-19 Thread Bill Napier
It was defined with var myStyle but you're right it had to be 
b_txt.setNewTextFormat(myStyle);
to pick it up.

Thanks,
Bill


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


[Flashcoders] expanding a second array given values of the first array

2006-01-19 Thread Merrill, Jason
Should be pretty straightforward, but I am having trouble wrapping my
head around it. I want to create an array of N length, which is expanded
according to the values of another array.  What I mean is, for example:

taskSet = [2,1,5,1,3] //values of how much the new array should expand

I want to, based on the values of the taskSet array, make a running
add-up total of the values of taskSet & repeat that number in the final
array taskSet[n] times in the new taskSetExpanded array.  I do not mean
just add up the values of taskSet which I already know how to do (though
by so doing, I know that also shows the length of the final array).  

So (and this may be the easiest way to explain) given the array:

taskSet = [2,1,5,1,3];

The taskSetExapanded array would then become an array with these exact
values:

[2,2,3,8,8,8,8,8,9,12,12,12]

...where for example, the number 8 as seen in the array(8 comes from the
running total of 2+1+5 from TaskSet) is repeated 5 times (where 5 is the
value of taskSet[3])

..and where for example the number 9 as seen in the array (9 comes from
the running total of 2+1+5+1 from TaskSet) is repeated 1 time (where 1
is the value of taskSet[4])

Etc.

Make sense?  Perhaps I over explained. I have tried numerous for loops
and never been able to get the final result I need.  Any help is
appreciated. Thanks!

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] Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread John Dowdell

elibol wrote:
> I want to know how todo this to build a toolkit for making
> flash sites indexable.

Just checking... you're aware that Google already reads text inside a 
SWF, right? (Try a search term like "contrary evidence filetype:swf" to 
confirm.)


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] Re: Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread Johannes Nel
peter hall (the owner of the project) was told this by google in person 5
months ago.

On 1/19/06, Ian Thomas <[EMAIL PROTECTED]> wrote:
>
> Um. Why?
>
> And have you any concrete examples of that sort of ban?
>
> Just seems like an extremely odd decision by Google.
>
> Cheers,
>   Ian
>
> On 1/19/06, Johannes Nel <[EMAIL PROTECTED]> wrote:
> >
> > a word of caution. google can ban you for using ripple.
> >
> >
> ___
> 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] Re: Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread Ian Thomas
Um. Why?

And have you any concrete examples of that sort of ban?

Just seems like an extremely odd decision by Google.

Cheers,
  Ian

On 1/19/06, Johannes Nel <[EMAIL PROTECTED]> wrote:
>
> a word of caution. google can ban you for using ripple.
>
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] how to deal with user-choosable skinning

2006-01-19 Thread Chad Royer

Hi all,
I've been planning a flash ria for a while, and there are a few  
things I'd like to do with the interface that I still haven't quite  
figured out, maybe you can help.


The main puzzle I'm trying to work out is how I can set up a  
selection of alternate graphical "skins" for the entire site that the  
end user can choose at runtime.  Ultimately, I'd want to have all of  
my base graphic elements (button over and under states, arrows,  
whatever) externalized in a library/movieClip that I can duplicate  
and alter, then import based on a userPrefs variable on the  
initialization of the site, and apply the graphic elements to the  
rest of the movieclips in the app.  Has anyone done this sort of  
setup before?  It seems like it should be easy enough, but I can't  
find anything about it.


any help is mucho appreciated.
chad

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


Re: [Flashcoders] Re: Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread elibol
Thanks alot Johannes, you've been a big help.

H

On 1/19/06, Johannes Nel <[EMAIL PROTECTED]> wrote:
>
> somwthing we have discussed which is not based on a redirect but is as
> inelegeant as anything is to tap into user driven events (mouseover and
> the
> like) to rewrite the body of the html page from the html content to a swf.
> this however will cause 2 loads (unless you cache the swf somehow) but
> won't
> affect search engine spiders
>
> On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
> >
> > Is there any way to index Flash content without that risk?
> >
> > On 1/19/06, Johannes Nel <[EMAIL PROTECTED]> wrote:
> > >
> > > a word of caution. google can ban you for using ripple.
> > >
> > > On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
> > > >
> > > > Nevermind...
> > > >
> > > > http://osflash.org/ripple/overview
> > > >
> > > > H
> > > >
> > > > On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
> > > > >
> > > > > Hi,
> > > > >
> > > > > EGO7's Flash CMS, CMSmx, allows for deep linking and search engine
> > > > > indexable flash content. I would like to know how this is done,
> > > without
> > > > > breaking any search engine optimization rules.
> > > > >
> > > > > I looked at one of the indexed pages, and it looks like the
> content
> > > > that's
> > > > > loaded into flash is also loaded into a hidden frame as just html
> > > text.
> > > > > Technically, I know how to do these things, I am just totally lost
> > > when
> > > > it
> > > > > comes to understanding how search engines spider websites,
> > especially
> > > > when
> > > > > there is dynamic content and query strings involved. I want to
> know
> > > how
> > > > to
> > > > > do this to build a toolkit for making flash sites indexable. I
> will
> > be
> > > > using
> > > > > this tool for building indexable sites for our clients, it will
> also
> > > be
> > > > an
> > > > > open source toolkit that I will distribute, because I believe that
> a
> > > > strong
> > > > > future for flash content on the web includes indexable content,
> with
> > > as
> > > > much
> > > > > browser support as can be implemented (browser back/forward
> > > > functionality,
> > > > > and deep linking), and so, I believe that it's important to
> provide
> > > > flash
> > > > > developers with a toolkit that streamlines these features.
> > > > >
> > > > > Check it out:
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
> http://www.google.com/search?hs=1Xv&hl=en&lr=&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&q=strength+is+our+exclusive+talent+pool+deeply+committed+to+engineering&btnG=Search
> > > > >
> > > > > It's the first result, and it will even take you to the page when
> > you
> > > > > click on it! I must admit, EGO7 has done a great job, however, I
> > feel
> > > > like
> > > > > it's no secret to the flash coders list. Only the hardest core
> post
> > > > here!
> > > > >
> > > > > Thanks for taking the time to read my post. If there is any
> insight
> > at
> > > > all
> > > > > that you could provide, please do. If there are any theories, I'd
> > love
> > > > to
> > > > > hear them.
> > > > >
> > > > > H
> > > > >
> > > > ___
> > > > 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
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread Johannes Nel
somwthing we have discussed which is not based on a redirect but is as
inelegeant as anything is to tap into user driven events (mouseover and the
like) to rewrite the body of the html page from the html content to a swf.
this however will cause 2 loads (unless you cache the swf somehow) but won't
affect search engine spiders

On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
>
> Is there any way to index Flash content without that risk?
>
> On 1/19/06, Johannes Nel <[EMAIL PROTECTED]> wrote:
> >
> > a word of caution. google can ban you for using ripple.
> >
> > On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
> > >
> > > Nevermind...
> > >
> > > http://osflash.org/ripple/overview
> > >
> > > H
> > >
> > > On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
> > > >
> > > > Hi,
> > > >
> > > > EGO7's Flash CMS, CMSmx, allows for deep linking and search engine
> > > > indexable flash content. I would like to know how this is done,
> > without
> > > > breaking any search engine optimization rules.
> > > >
> > > > I looked at one of the indexed pages, and it looks like the content
> > > that's
> > > > loaded into flash is also loaded into a hidden frame as just html
> > text.
> > > > Technically, I know how to do these things, I am just totally lost
> > when
> > > it
> > > > comes to understanding how search engines spider websites,
> especially
> > > when
> > > > there is dynamic content and query strings involved. I want to know
> > how
> > > to
> > > > do this to build a toolkit for making flash sites indexable. I will
> be
> > > using
> > > > this tool for building indexable sites for our clients, it will also
> > be
> > > an
> > > > open source toolkit that I will distribute, because I believe that a
> > > strong
> > > > future for flash content on the web includes indexable content, with
> > as
> > > much
> > > > browser support as can be implemented (browser back/forward
> > > functionality,
> > > > and deep linking), and so, I believe that it's important to provide
> > > flash
> > > > developers with a toolkit that streamlines these features.
> > > >
> > > > Check it out:
> > > >
> > > >
> > > >
> > >
> >
> http://www.google.com/search?hs=1Xv&hl=en&lr=&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&q=strength+is+our+exclusive+talent+pool+deeply+committed+to+engineering&btnG=Search
> > > >
> > > > It's the first result, and it will even take you to the page when
> you
> > > > click on it! I must admit, EGO7 has done a great job, however, I
> feel
> > > like
> > > > it's no secret to the flash coders list. Only the hardest core post
> > > here!
> > > >
> > > > Thanks for taking the time to read my post. If there is any insight
> at
> > > all
> > > > that you could provide, please do. If there are any theories, I'd
> love
> > > to
> > > > hear them.
> > > >
> > > > H
> > > >
> > > ___
> > > 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] Re: Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread Johannes Nel
don't know about anything except ripple.

On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
>
> Also, would you say that the EGO7 solution takes this risk as well?
>
> H
>
> On 1/19/06, Johannes Nel <[EMAIL PROTECTED]> wrote:
> >
> > a word of caution. google can ban you for using ripple.
> >
> > On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
> > >
> > > Nevermind...
> > >
> > > http://osflash.org/ripple/overview
> > >
> > > H
> > >
> > > On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
> > > >
> > > > Hi,
> > > >
> > > > EGO7's Flash CMS, CMSmx, allows for deep linking and search engine
> > > > indexable flash content. I would like to know how this is done,
> > without
> > > > breaking any search engine optimization rules.
> > > >
> > > > I looked at one of the indexed pages, and it looks like the content
> > > that's
> > > > loaded into flash is also loaded into a hidden frame as just html
> > text.
> > > > Technically, I know how to do these things, I am just totally lost
> > when
> > > it
> > > > comes to understanding how search engines spider websites,
> especially
> > > when
> > > > there is dynamic content and query strings involved. I want to know
> > how
> > > to
> > > > do this to build a toolkit for making flash sites indexable. I will
> be
> > > using
> > > > this tool for building indexable sites for our clients, it will also
> > be
> > > an
> > > > open source toolkit that I will distribute, because I believe that a
> > > strong
> > > > future for flash content on the web includes indexable content, with
> > as
> > > much
> > > > browser support as can be implemented (browser back/forward
> > > functionality,
> > > > and deep linking), and so, I believe that it's important to provide
> > > flash
> > > > developers with a toolkit that streamlines these features.
> > > >
> > > > Check it out:
> > > >
> > > >
> > > >
> > >
> >
> http://www.google.com/search?hs=1Xv&hl=en&lr=&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&q=strength+is+our+exclusive+talent+pool+deeply+committed+to+engineering&btnG=Search
> > > >
> > > > It's the first result, and it will even take you to the page when
> you
> > > > click on it! I must admit, EGO7 has done a great job, however, I
> feel
> > > like
> > > > it's no secret to the flash coders list. Only the hardest core post
> > > here!
> > > >
> > > > Thanks for taking the time to read my post. If there is any insight
> at
> > > all
> > > > that you could provide, please do. If there are any theories, I'd
> love
> > > to
> > > > hear them.
> > > >
> > > > H
> > > >
> > > ___
> > > 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] Re: Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread elibol
Also, would you say that the EGO7 solution takes this risk as well?

H

On 1/19/06, Johannes Nel <[EMAIL PROTECTED]> wrote:
>
> a word of caution. google can ban you for using ripple.
>
> On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
> >
> > Nevermind...
> >
> > http://osflash.org/ripple/overview
> >
> > H
> >
> > On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
> > >
> > > Hi,
> > >
> > > EGO7's Flash CMS, CMSmx, allows for deep linking and search engine
> > > indexable flash content. I would like to know how this is done,
> without
> > > breaking any search engine optimization rules.
> > >
> > > I looked at one of the indexed pages, and it looks like the content
> > that's
> > > loaded into flash is also loaded into a hidden frame as just html
> text.
> > > Technically, I know how to do these things, I am just totally lost
> when
> > it
> > > comes to understanding how search engines spider websites, especially
> > when
> > > there is dynamic content and query strings involved. I want to know
> how
> > to
> > > do this to build a toolkit for making flash sites indexable. I will be
> > using
> > > this tool for building indexable sites for our clients, it will also
> be
> > an
> > > open source toolkit that I will distribute, because I believe that a
> > strong
> > > future for flash content on the web includes indexable content, with
> as
> > much
> > > browser support as can be implemented (browser back/forward
> > functionality,
> > > and deep linking), and so, I believe that it's important to provide
> > flash
> > > developers with a toolkit that streamlines these features.
> > >
> > > Check it out:
> > >
> > >
> > >
> >
> http://www.google.com/search?hs=1Xv&hl=en&lr=&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&q=strength+is+our+exclusive+talent+pool+deeply+committed+to+engineering&btnG=Search
> > >
> > > It's the first result, and it will even take you to the page when you
> > > click on it! I must admit, EGO7 has done a great job, however, I feel
> > like
> > > it's no secret to the flash coders list. Only the hardest core post
> > here!
> > >
> > > Thanks for taking the time to read my post. If there is any insight at
> > all
> > > that you could provide, please do. If there are any theories, I'd love
> > to
> > > hear them.
> > >
> > > H
> > >
> > ___
> > 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] Re: Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread elibol
Is there any way to index Flash content without that risk?

On 1/19/06, Johannes Nel <[EMAIL PROTECTED]> wrote:
>
> a word of caution. google can ban you for using ripple.
>
> On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
> >
> > Nevermind...
> >
> > http://osflash.org/ripple/overview
> >
> > H
> >
> > On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
> > >
> > > Hi,
> > >
> > > EGO7's Flash CMS, CMSmx, allows for deep linking and search engine
> > > indexable flash content. I would like to know how this is done,
> without
> > > breaking any search engine optimization rules.
> > >
> > > I looked at one of the indexed pages, and it looks like the content
> > that's
> > > loaded into flash is also loaded into a hidden frame as just html
> text.
> > > Technically, I know how to do these things, I am just totally lost
> when
> > it
> > > comes to understanding how search engines spider websites, especially
> > when
> > > there is dynamic content and query strings involved. I want to know
> how
> > to
> > > do this to build a toolkit for making flash sites indexable. I will be
> > using
> > > this tool for building indexable sites for our clients, it will also
> be
> > an
> > > open source toolkit that I will distribute, because I believe that a
> > strong
> > > future for flash content on the web includes indexable content, with
> as
> > much
> > > browser support as can be implemented (browser back/forward
> > functionality,
> > > and deep linking), and so, I believe that it's important to provide
> > flash
> > > developers with a toolkit that streamlines these features.
> > >
> > > Check it out:
> > >
> > >
> > >
> >
> http://www.google.com/search?hs=1Xv&hl=en&lr=&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&q=strength+is+our+exclusive+talent+pool+deeply+committed+to+engineering&btnG=Search
> > >
> > > It's the first result, and it will even take you to the page when you
> > > click on it! I must admit, EGO7 has done a great job, however, I feel
> > like
> > > it's no secret to the flash coders list. Only the hardest core post
> > here!
> > >
> > > Thanks for taking the time to read my post. If there is any insight at
> > all
> > > that you could provide, please do. If there are any theories, I'd love
> > to
> > > hear them.
> > >
> > > H
> > >
> > ___
> > 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] OT: CFM and Remoting Hosting

2006-01-19 Thread clark slater
I recommend FusionLink. Very CF friendly, excellent network connectivity and
a great control panel for configuring directory permissions for tags like
 and . We've done a lot of remoting development with
this host over the last year+ and it has been great:

http://www.fusionlink.com

Clark

On 1/19/06, Corban Baxter <[EMAIL PROTECTED]> wrote:
>
> Hey guys I am getting ready to start on little venture and I need some
> good hosting for Coldfusion and Flash Remoting. I found this company
> ViUX who has some very reasonable plans. I was wondering one if anyone
> had experience with them and two does anyone have any other
> recommendations. Thanks and below is the link to the plan I am looking
> at let me know what you all might think. Appreciate it!
>
> http://hosting.viux.com/webhosting/plan-advanced.asp
>
> Corban Baxter
>
>
> ___
> 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] NetStream.pause(false) sometimes pauses ??

2006-01-19 Thread mailinglists
Hello good people,

I'll start with the direct question, then give some details.

Is there a trick to making sure NetStream.pause(false) never pauses your FLV?

I'm using Flash 8, exporting to player 8 format.  When I use NetStream's pause()
function with "false" for the argument, it pauses my video.  But the argument
"false" is supposed to mean "don't pause." right?  example:

var connection_nc:NetConnection = new NetConnection();
connection_nc.connect(null);
var stream_ns:NetStream = new NetStream(connection_nc);
my_video.attachVideo(stream_ns);
button1.onRelease = function() {
stream_ns.play("video.flv");
};
button1b.onRelease = function() {
stream_ns.pause(true);
};
button1c.onRelease = function() {
stream_ns.pause(false);
};

Here is what happens for me.  I'd really like to know if anyone else has the
same result.

button1 plays the video. (good)
button1b pauses the video. (good)
button1c resumes the video. (good)
button1c again pauses the video. (bad)
No amount of pressing button1b and button1c will resume playback. (bad)
I have to press button1 to get playback again.

According to Macromedia docs, NetStream.pause(false) should always result with
the video playing, not paused.  Or am I missing something?

Hopefully someone out there has run into this and has the perfect quickfix for
me!

Thanks in advance
David Lanier
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Q:creating and animating a gradient?

2006-01-19 Thread bitstreams

Hi
Can someone point me to a tutorial on creating and animating a gradient in 
Flash 8?
Didn't see anything in the dev on Macromedia(I mean Adobe) site.
Thanks
Jim Bachalo

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

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


RE: [Flashcoders] BitmapData question

2006-01-19 Thread Scott Hyndman
Read the documentation on BitmapData.draw()

Scott


-Original Message-
From:   [EMAIL PROTECTED] on behalf of Matt Muller
Sent:   Thu 1/19/2006 12:58 PM
To: Flashcoders mailing list
Cc: 
Subject:[Flashcoders] BitmapData question

Hi, does anyone know if its possible to use getPixel or something like that
to take a snapshot of a movieclip that contains some vectors and dynamic
text fields and return that as a bitmap image to use elsewhere in the site,
say as a reflection?

Thanks

MaTT
___
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] BitmapData question

2006-01-19 Thread Ralph Caraveo
You can snapshot any movieclip and get a reference to it's bitmapData
and then use that.  The techniques posted everywhere on the web.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matt
Muller
Sent: Thursday, January 19, 2006 9:59 AM
To: Flashcoders mailing list
Subject: [Flashcoders] BitmapData question

Hi, does anyone know if its possible to use getPixel or something like
that to take a snapshot of a movieclip that contains some vectors and
dynamic text fields and return that as a bitmap image to use elsewhere
in the site, say as a reflection?

Thanks

MaTT
___
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-19 Thread Chris Allen
On 1/19/06, Karina Steffens <[EMAIL PROTECTED]> wrote:
>
>
> Nope, you're not wrong. I understand that the limitation is there so that
> when they're done with the beta they can start charging for the pro
> version,
> and keep the community version free. I prefer to keep my classes small and
> many, so it hasn't been an issue for me yet. Btw, I thought it was 5000
> lines of code per class, not for the whole project? I'm not sure anymore.


Nope it's 5000 lines for your whole project. :-)  Thus it doesn't work for
me either.

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


[Flashcoders] BitmapData question

2006-01-19 Thread Matt Muller
Hi, does anyone know if its possible to use getPixel or something like that
to take a snapshot of a movieclip that contains some vectors and dynamic
text fields and return that as a bitmap image to use elsewhere in the site,
say as a reflection?

Thanks

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


[Flashcoders] OT: CFM and Remoting Hosting

2006-01-19 Thread Corban Baxter
Hey guys I am getting ready to start on little venture and I need some
good hosting for Coldfusion and Flash Remoting. I found this company
ViUX who has some very reasonable plans. I was wondering one if anyone
had experience with them and two does anyone have any other
recommendations. Thanks and below is the link to the plan I am looking
at let me know what you all might think. Appreciate it!

http://hosting.viux.com/webhosting/plan-advanced.asp

Corban Baxter


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


Re: [Flashcoders] Re: Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread Johannes Nel
a word of caution. google can ban you for using ripple.

On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
>
> Nevermind...
>
> http://osflash.org/ripple/overview
>
> H
>
> On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
> >
> > Hi,
> >
> > EGO7's Flash CMS, CMSmx, allows for deep linking and search engine
> > indexable flash content. I would like to know how this is done, without
> > breaking any search engine optimization rules.
> >
> > I looked at one of the indexed pages, and it looks like the content
> that's
> > loaded into flash is also loaded into a hidden frame as just html text.
> > Technically, I know how to do these things, I am just totally lost when
> it
> > comes to understanding how search engines spider websites, especially
> when
> > there is dynamic content and query strings involved. I want to know how
> to
> > do this to build a toolkit for making flash sites indexable. I will be
> using
> > this tool for building indexable sites for our clients, it will also be
> an
> > open source toolkit that I will distribute, because I believe that a
> strong
> > future for flash content on the web includes indexable content, with as
> much
> > browser support as can be implemented (browser back/forward
> functionality,
> > and deep linking), and so, I believe that it's important to provide
> flash
> > developers with a toolkit that streamlines these features.
> >
> > Check it out:
> >
> >
> >
> http://www.google.com/search?hs=1Xv&hl=en&lr=&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&q=strength+is+our+exclusive+talent+pool+deeply+committed+to+engineering&btnG=Search
> >
> > It's the first result, and it will even take you to the page when you
> > click on it! I must admit, EGO7 has done a great job, however, I feel
> like
> > it's no secret to the flash coders list. Only the hardest core post
> here!
> >
> > Thanks for taking the time to read my post. If there is any insight at
> all
> > that you could provide, please do. If there are any theories, I'd love
> to
> > hear them.
> >
> > H
> >
> ___
> 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] Q:Tracing out objects in an array

2006-01-19 Thread zwetan
>
> toSource toschmorze.
>

Meaning ?


> Array.prototype.trace = function() {
>   var retString = "Array contents:"+newline;
>   for (var i = 0; i   retString+=i+": ";
>   if (typeof (this[i]) == "object") {
>   for(var prop in this[i]){
>   retString+=prop+" = "+this[i][prop]+newline;
>   }
>   retString+=newline;
>   }else{
>   retString+=this[i];
>   retString+=newline;
>   }
>   }
>   trace(retString);
> };
> //usage
> arr = ["lol", {horse:"yes",donkey:"no"}];
> arr.trace();
>
> Just an example.
>

Here another one

arr = [
"humm",["I",{wonder:["where","you","learned",{to:"indent",so:["badly"]}]}]
];

trace

Array contents:
0: humm
1: trace = [type Function]
1 = [object Object]
0 = I


Now let's try core2
#include "core2_v1.0.1_AS.as1"

trace( arr.toSource( 0 ) );

trace

[
"humm",
[
"I",
{
wonder:
[
"where",
"you",
"learned",
{
to:"indent",
so:
[
"badly"
]
}
]
}
]
]



You could also try that for some more fun

_global.walk = {the:{path:{of:{the:{object:{}};

trace( GetObjectPath( walk.the.path.of.the.object ) );

trace

walk.the.path.of.the.object


trace( "walk:" + walk.toSource( 1, "**" ) );

trace

walk:
{
the:
**{
**path:
{
of:
**{
**the:
{
object:
**{
**__path__:"walk.the.path.of.the.object"
**}
}
**}
}
**}
}



trace( String.format( "{0,40:_}", GetObjectPath( walk ) ) );
trace( String.format( "{0,40:_}", GetObjectPath( walk.the ) ) );
trace( String.format( "{0,40:_}", GetObjectPath( walk.the.path ) ) );
trace( String.format( "{0,40:_}", GetObjectPath( walk.the.path.of ) ) );
trace( String.format( "{0,40:_}", GetObjectPath( walk.the.path.of.the ) ) );
trace( String.format( "{0,40:_}", GetObjectPath( walk.the.path.of.the.object
) ) );

trace

walk
walk.the
___walk.the.path
walk.the.path.of
walk.the.path.of.the
_walk.the.path.of.the.object



Do you understand *now* the difference between a library
and a single function ?


zwetan



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


[Flashcoders] Re: Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread elibol
Nevermind...

http://osflash.org/ripple/overview

H

On 1/19/06, elibol <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> EGO7's Flash CMS, CMSmx, allows for deep linking and search engine
> indexable flash content. I would like to know how this is done, without
> breaking any search engine optimization rules.
>
> I looked at one of the indexed pages, and it looks like the content that's
> loaded into flash is also loaded into a hidden frame as just html text.
> Technically, I know how to do these things, I am just totally lost when it
> comes to understanding how search engines spider websites, especially when
> there is dynamic content and query strings involved. I want to know how to
> do this to build a toolkit for making flash sites indexable. I will be using
> this tool for building indexable sites for our clients, it will also be an
> open source toolkit that I will distribute, because I believe that a strong
> future for flash content on the web includes indexable content, with as much
> browser support as can be implemented (browser back/forward functionality,
> and deep linking), and so, I believe that it's important to provide flash
> developers with a toolkit that streamlines these features.
>
> Check it out:
>
>
> http://www.google.com/search?hs=1Xv&hl=en&lr=&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&q=strength+is+our+exclusive+talent+pool+deeply+committed+to+engineering&btnG=Search
>
> It's the first result, and it will even take you to the page when you
> click on it! I must admit, EGO7 has done a great job, however, I feel like
> it's no secret to the flash coders list. Only the hardest core post here!
>
> Thanks for taking the time to read my post. If there is any insight at all
> that you could provide, please do. If there are any theories, I'd love to
> hear them.
>
> H
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Documenting my code

2006-01-19 Thread Karina Steffens

> I used to use VisDoc but not anymore cause it only runs on 
> Macs. Used BLDOC for a while and find it stops generating 
> beyond 5000 line of code (correct me if I'm wrong). My 
> projects are way too big for it and then I have draw the 
> diagrams with packages such as Poseidon, ArgoUML or gModeler 
> (looks good but not useful on large commercial projects).

Nope, you're not wrong. I understand that the limitation is there so that
when they're done with the beta they can start charging for the pro version,
and keep the community version free. I prefer to keep my classes small and
many, so it hasn't been an issue for me yet. Btw, I thought it was 5000
lines of code per class, not for the whole project? I'm not sure anymore.

Karina

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


Re: [Flashcoders] Documenting my code

2006-01-19 Thread Johannes Nel
i would much rather them work on releasing a good product than building
stuff like editors(zorn is nice however) and documentation applications when
there are a aready numerous things out there.

On 1/19/06, Judah Frangipane <[EMAIL PROTECTED]> wrote:
>
> Let's all get on MM-Adobe wish list and ask for this! This has been such
> a huge issue in every project I've worked on that it puts me back months
> to do documentation.
>
> http://www.macromedia.com/cfusion/mmform/index.cfm?name=wishform
>
> Judah
>
>
> Johan Lopes wrote:
>
> >Another thing to note is that there was a mention at the Spark
> >Conference in Europe that MM-Adobe is considering releasing the
> >documentation tool their Dev team uses internally. We'll see, perhaps
> >with the next big release of the Flash IDE? :)
> >
> >HTH,
> >
> >/Johan
> >___
> >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] Documenting my code

2006-01-19 Thread Johan Lopes
Good idea!

/Johan

On 1/19/06, Judah Frangipane <[EMAIL PROTECTED]> wrote:
> Let's all get on MM-Adobe wish list and ask for this! This has been such
> a huge issue in every project I've worked on that it puts me back months
> to do documentation.
>
> http://www.macromedia.com/cfusion/mmform/index.cfm?name=wishform
>
> Judah
>
>
> Johan Lopes wrote:
>
> >Another thing to note is that there was a mention at the Spark
> >Conference in Europe that MM-Adobe is considering releasing the
> >documentation tool their Dev team uses internally. We'll see, perhaps
> >with the next big release of the Flash IDE? :)
> >
> >HTH,
> >
> >/Johan
> >___
> >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-19 Thread Johan Lopes
Hi Ron,

Here's a link to download from my Dev server (file size ~14K)

http://www.statik1.com/FlashCoders/DoxyFile.zip

Cheers,

/Johan

On 1/19/06, Ron Wheeler <[EMAIL PROTECTED]> wrote:
> If you want to share your config, perhaps you could post it to this
> thread. There are a number of us using Doxygen and its Eclipse plug-in.
>
> I would like to see someone write a Doxygen pre-filter for AS. That is
> all that is required to get full ActionScipt support in Doxygen. Filters
> have been written for other languages that are much further away from
> Java than ActionScript.
>
> Ron
>
> Johan Lopes wrote:
>
> >I've used Doxygen for a while to document several high-profile
> >projects and I love it.
> >
> >
> >
> >> The output I got from it indicated that Doxygen didn't understand AS2, and 
> >> was
> >>trying to parse the .as files as if they were Java (i.e. class names were
> >>com.something.MyClass rather than just MyClass - that sort of behaviour).
> >>
> >>
> >
> >True. If the OPTIMIZE_OUTPUT_JAVA tag is set to YES. Doxygen will then
> >generate output that is more tailored for Java. For instance,
> >namespaces will be presented as packages, qualified scopes will look
> >different, etc. If you just run it with all the default parameters,
> >the packages will look very weird (at least to my Java eyes) i.e.
> >com::MyCompanyName::MyProjectName::MyClassName. I like it when it's
> >dot-syntaxed.
> >
> >Currently, Doxygen doesn't officially support AS. It works best when
> >set to treat AS as a Java-like language, but there's some minor issues
> >with postcolon syntax (:Void etc) especially when you turn on  the
> >"show-source-in-the-documentation-feature" <--- it's called something
> >else but you get the idea.
> >
> >I've used most of the documentation tools mentioned on this list and
> >there's always trade-offs, even with commercial ones. I know Doxygen
> >doesn't support AS but I (and most of my clients) love the UML-like
> >diagrams it spits out so I can live with it's other quirks.
> >
> >I used to use VisDoc but not anymore cause it only runs on Macs. Used
> >BLDOC for a while and find it stops generating beyond 5000 line of
> >code (correct me if I'm wrong). My projects are way too big for it and
> >then I have draw the diagrams with packages such as Poseidon, ArgoUML
> >or gModeler (looks good but not useful on large commercial projects).
> >
> >In Doxygen, have you tried turning HIDE_SCOPE_NAMES to YES. It's on NO
> >by default.
> >
> >'
> >If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
> >will show members with their full class and namespace scopes in the
> >documentation. If set to YES the scope will be hidden.
> >
> >'
> >
> >Mail me off-list if you're interested and I'll share my Doxyfile
> >(though I'm not running cron jobs).
> >
> >Time permitting I'm myself very interested to see how easy it would be
> >to mold Doxygen to parse AS classes in a proper fashion. After all the
> >source code is there. It's all open-source and well documented!
> >
> >Another thing to note is that there was a mention at the Spark
> >Conference in Europe that MM-Adobe is considering releasing the
> >documentation tool their Dev team uses internally. We'll see, perhaps
> >with the next big release of the Flash IDE? :)
> >
> >HTH,
> >
> >/Johan
> >___
> >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-19 Thread Judah Frangipane
Let's all get on MM-Adobe wish list and ask for this! This has been such 
a huge issue in every project I've worked on that it puts me back months 
to do documentation.


http://www.macromedia.com/cfusion/mmform/index.cfm?name=wishform

Judah


Johan Lopes wrote:


Another thing to note is that there was a mention at the Spark
Conference in Europe that MM-Adobe is considering releasing the
documentation tool their Dev team uses internally. We'll see, perhaps
with the next big release of the Flash IDE? :)

HTH,

/Johan
___
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] Anyone help me with this?

2006-01-19 Thread Johnny Zen
Hi all

I have a preloader displays ok in Firefox but not in IE

In IE I just get a red X frame which stays until the flashmovie has
completly loaded.

Can anyone suggest why it does this?

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


Re: [Flashcoders] Documenting my code

2006-01-19 Thread Ron Wheeler
If you want to share your config, perhaps you could post it to this 
thread. There are a number of us using Doxygen and its Eclipse plug-in.


I would like to see someone write a Doxygen pre-filter for AS. That is 
all that is required to get full ActionScipt support in Doxygen. Filters 
have been written for other languages that are much further away from 
Java than ActionScript.


Ron

Johan Lopes wrote:


I've used Doxygen for a while to document several high-profile
projects and I love it.

 


The output I got from it indicated that Doxygen didn't understand AS2, and was
trying to parse the .as files as if they were Java (i.e. class names were
com.something.MyClass rather than just MyClass - that sort of behaviour).
   



True. If the OPTIMIZE_OUTPUT_JAVA tag is set to YES. Doxygen will then
generate output that is more tailored for Java. For instance,
namespaces will be presented as packages, qualified scopes will look
different, etc. If you just run it with all the default parameters,
the packages will look very weird (at least to my Java eyes) i.e.
com::MyCompanyName::MyProjectName::MyClassName. I like it when it's
dot-syntaxed.

Currently, Doxygen doesn't officially support AS. It works best when
set to treat AS as a Java-like language, but there's some minor issues
with postcolon syntax (:Void etc) especially when you turn on  the
"show-source-in-the-documentation-feature" <--- it's called something
else but you get the idea.

I've used most of the documentation tools mentioned on this list and
there's always trade-offs, even with commercial ones. I know Doxygen
doesn't support AS but I (and most of my clients) love the UML-like
diagrams it spits out so I can live with it's other quirks.

I used to use VisDoc but not anymore cause it only runs on Macs. Used
BLDOC for a while and find it stops generating beyond 5000 line of
code (correct me if I'm wrong). My projects are way too big for it and
then I have draw the diagrams with packages such as Poseidon, ArgoUML
or gModeler (looks good but not useful on large commercial projects).

In Doxygen, have you tried turning HIDE_SCOPE_NAMES to YES. It's on NO
by default.

'
If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
will show members with their full class and namespace scopes in the
documentation. If set to YES the scope will be hidden.

'

Mail me off-list if you're interested and I'll share my Doxyfile
(though I'm not running cron jobs).

Time permitting I'm myself very interested to see how easy it would be
to mold Doxygen to parse AS classes in a proper fashion. After all the
source code is there. It's all open-source and well documented!

Another thing to note is that there was a mention at the Spark
Conference in Europe that MM-Adobe is considering releasing the
documentation tool their Dev team uses internally. We'll see, perhaps
with the next big release of the Flash IDE? :)

HTH,

/Johan
___
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] Search engine indexable Flash content; anyone with insight please help!

2006-01-19 Thread elibol
Hi,

EGO7's Flash CMS, CMSmx, allows for deep linking and search engine indexable
flash content. I would like to know how this is done, without breaking any
search engine optimization rules.

I looked at one of the indexed pages, and it looks like the content that's
loaded into flash is also loaded into a hidden frame as just html text.
Technically, I know how to do these things, I am just totally lost when it
comes to understanding how search engines spider websites, especially when
there is dynamic content and query strings involved. I want to know how to
do this to build a toolkit for making flash sites indexable. I will be using
this tool for building indexable sites for our clients, it will also be an
open source toolkit that I will distribute, because I believe that a strong
future for flash content on the web includes indexable content, with as much
browser support as can be implemented (browser back/forward functionality,
and deep linking), and so, I believe that it's important to provide flash
developers with a toolkit that streamlines these features.

Check it out:

http://www.google.com/search?hs=1Xv&hl=en&lr=&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&q=strength+is+our+exclusive+talent+pool+deeply+committed+to+engineering&btnG=Search

It's the first result, and it will even take you to the page when you click
on it! I must admit, EGO7 has done a great job, however, I feel like it's no
secret to the flash coders list. Only the hardest core post here!

Thanks for taking the time to read my post. If there is any insight at all
that you could provide, please do. If there are any theories, I'd love to
hear them.

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


Re: [Flashcoders] amfphp, flash 8 and netdebug

2006-01-19 Thread erixtekila
Hey, we just finished a gig with amfphp and Xray did a great job in 
helping

us debug the live data.  We were able to trace out the remoting objects
after creating them to make sure they were instantiated correctly as 
well as

look at them through the treeview at runtime.  When data returned, we
through it through Xray's trace and it just spit out the entire object 
for

us.

when you consider all we have to do to use Xray is put it on stage and
publish with our main swf, I think that's a bit easier than NetDebug ;)


Amazing tool !
Kudos to you.

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

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


RE: [Flashcoders] Stolen content

2006-01-19 Thread Adrian Lynch
I disagree. One link on it's own, such as http://www.google.com might not
be, but a list of lots of search engines certainly is.

Now please end this thread :OD

Ade

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Alias
Sent: 19 January 2006 14:42
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Stolen content


Links are not content.

Please end this thread.

Alias

On 1/19/06, franto <[EMAIL PROTECTED]> wrote:
> sure, you right, it was not my examples,
> it's content of my blog, link which i collected from many sites,
> digging, storing, writing then to the post, 1 update of post when I
> add 1 link last 30 mins, because there were many sites linking to that
> post
>
> I dont tell examples is mine...  my Collected examples are not same as
> Collected my examples :)
>
> Hopefully you know what I mean
>
> Franto
>
> On 1/19/06, erixtekila <[EMAIL PROTECTED]> wrote:
> >
> > Le 19 janv. 06, à 11:50, franto a écrit :
> >
> > > I just want to know, that there are such practics, i know you know :)
> > > but i hate it
> > > so just want to let you know thieves :)
> > >
> > > http://www.franto.com/blog2/stolen-content-collected-links-to-
> > > maelstrom-examples
> >
> >
> > Well, franto, did you really said : "my" content ?
> > "It's sad, i've found my content on other sites. Do not know about
> > other content, but it seems that my Collected links to Maelstrom
> > examples"
> >
> > I thought it was examples of the new features developped by others.
> > Could you clarify a bit ?
> >
> > Thanks.
> > ---
> > erixtekila
> > http://blog.v-i-a.net/
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
>
>
> --
> --

---
> Franto
>
> http://blog.franto.com
> http://www.flashcoders.sk
> ___
> 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] Stolen content

2006-01-19 Thread Alias
Links are not content.

Please end this thread.

Alias

On 1/19/06, franto <[EMAIL PROTECTED]> wrote:
> sure, you right, it was not my examples,
> it's content of my blog, link which i collected from many sites,
> digging, storing, writing then to the post, 1 update of post when I
> add 1 link last 30 mins, because there were many sites linking to that
> post
>
> I dont tell examples is mine...  my Collected examples are not same as
> Collected my examples :)
>
> Hopefully you know what I mean
>
> Franto
>
> On 1/19/06, erixtekila <[EMAIL PROTECTED]> wrote:
> >
> > Le 19 janv. 06, à 11:50, franto a écrit :
> >
> > > I just want to know, that there are such practics, i know you know :)
> > > but i hate it
> > > so just want to let you know thieves :)
> > >
> > > http://www.franto.com/blog2/stolen-content-collected-links-to-
> > > maelstrom-examples
> >
> >
> > Well, franto, did you really said : "my" content ?
> > "It's sad, i've found my content on other sites. Do not know about
> > other content, but it seems that my Collected links to Maelstrom
> > examples"
> >
> > I thought it was examples of the new features developped by others.
> > Could you clarify a bit ?
> >
> > Thanks.
> > ---
> > erixtekila
> > http://blog.v-i-a.net/
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
>
>
> --
> -
> Franto
>
> http://blog.franto.com
> http://www.flashcoders.sk
> ___
> 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] how does ExternalInterface behave in Flash 7 and earlier

2006-01-19 Thread Manuel Saint-Victor
I've been Googling for a statement about this that I am comfortable with.  I
am wondering if the externalInterface is an IDE thing or player specific
thing.  If a user has Flash Player 7 installed does that mean no use of the
externalInterface and if so how are people dealing with this?  Are you guys
waiting for a greater penetration of the Flash8 player?

The current project is not open source and I believe that means that I can't
use the Flash-Javascript integration kit.

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


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

2006-01-19 Thread Lightmaker (James Laver)
Thanks for the reply,

I will try adding the relay responder object to the pendingCall. 

I assume it could be a problem with the version of the SA Flash Player for
MAC installed with Flash 8. Maybe the web player and the windows projector
player are slightly newer releases than the MAC.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Chris
Velevitch
Sent: Wednesday, January 18, 2006 8:21 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Flash 8 Mac Projector - Remoting Issue

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


Re: [Flashcoders] Documenting my code

2006-01-19 Thread Johan Lopes
I've used Doxygen for a while to document several high-profile
projects and I love it.

>  The output I got from it indicated that Doxygen didn't understand AS2, and 
> was
> trying to parse the .as files as if they were Java (i.e. class names were
> com.something.MyClass rather than just MyClass - that sort of behaviour).

True. If the OPTIMIZE_OUTPUT_JAVA tag is set to YES. Doxygen will then
generate output that is more tailored for Java. For instance,
namespaces will be presented as packages, qualified scopes will look
different, etc. If you just run it with all the default parameters,
the packages will look very weird (at least to my Java eyes) i.e.
com::MyCompanyName::MyProjectName::MyClassName. I like it when it's
dot-syntaxed.

Currently, Doxygen doesn't officially support AS. It works best when
set to treat AS as a Java-like language, but there's some minor issues
with postcolon syntax (:Void etc) especially when you turn on  the
"show-source-in-the-documentation-feature" <--- it's called something
else but you get the idea.

I've used most of the documentation tools mentioned on this list and
there's always trade-offs, even with commercial ones. I know Doxygen
doesn't support AS but I (and most of my clients) love the UML-like
diagrams it spits out so I can live with it's other quirks.

I used to use VisDoc but not anymore cause it only runs on Macs. Used
BLDOC for a while and find it stops generating beyond 5000 line of
code (correct me if I'm wrong). My projects are way too big for it and
then I have draw the diagrams with packages such as Poseidon, ArgoUML
or gModeler (looks good but not useful on large commercial projects).

In Doxygen, have you tried turning HIDE_SCOPE_NAMES to YES. It's on NO
by default.

'
If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
will show members with their full class and namespace scopes in the
documentation. If set to YES the scope will be hidden.

'

Mail me off-list if you're interested and I'll share my Doxyfile
(though I'm not running cron jobs).

Time permitting I'm myself very interested to see how easy it would be
to mold Doxygen to parse AS classes in a proper fashion. After all the
source code is there. It's all open-source and well documented!

Another thing to note is that there was a mention at the Spark
Conference in Europe that MM-Adobe is considering releasing the
documentation tool their Dev team uses internally. We'll see, perhaps
with the next big release of the Flash IDE? :)

HTH,

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


Re: [Flashcoders] Stolen content

2006-01-19 Thread franto
sharing knowledge for sure, paying hosting is just second nice feature-to-have
i dont want blame anyone, and i dont copy paste content...

On 1/19/06, erixtekila <[EMAIL PROTECTED]> wrote:
>
> Le 19 janv. 06, à 14:16, franto a écrit :
>
> > sure, but when you try to get visitors to your site and such, google
> > penalize such sites, where same content is on many sites...
> >
> > from this post, my uniques visitors per day raise from 300 to 1700,
> > post was viewed by more then 100 000 unique visitors (at least
> > Wordpress admins tell me this :) and then I can pay my hosting from
> > Google Adsense, you know, everything is worth something :)
>
> What was your real motivation making your collection :
> - sharing knowledge ?
> - relaying content ressources to get your hosting payed ?
>
> I get you : http://www.franto.com/blog2/flash-collections-for-you/
>
>
> Thus, you can blame others that follow your way…
> ---
> erixtekila
> http://blog.v-i-a.net/
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>


--
-
Franto

http://blog.franto.com
http://www.flashcoders.sk
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] amfphp, flash 8 and netdebug

2006-01-19 Thread John Grden
Hey, we just finished a gig with amfphp and Xray did a great job in helping
us debug the live data.  We were able to trace out the remoting objects
after creating them to make sure they were instantiated correctly as well as
look at them through the treeview at runtime.  When data returned, we
through it through Xray's trace and it just spit out the entire object for
us.

when you consider all we have to do to use Xray is put it on stage and
publish with our main swf, I think that's a bit easier than NetDebug ;)

public static function getData(id:Number):Void
{
remotingObj = new Service("
http://www.clientproductionserver.com/remoting/gateway.php",null,"serviceName";,
null, null);

_global.tt("create service?", remotingObj);

pc = remotingObj.getCYMData(id);
pc.responder = new RelayResponder(CardData, "onGetDataSuccess",
"onGetDataFailure");
}

// traced in Xray:
(1071) create service?:
  __responder = null
  __serviceName = serviceName
  _allowRes = true
  __conn = [object Object]
  contentType = application/x-fcs

  log = null

public static function onGetDataSuccess(p_return:Object):Void
{
_global.tt("onSubmitDataSuccess", p_return);
}

// traced in Xray:
(1316) onSubmitDataSuccess:
  __result = [object Object]
  serviceName = undefined
  drawing =
space~142|166,143|166~144|164|1.42,145|164~146|162|1.47,147|160~149|158|1.46,154|154~156|150|3.03,165|139~170|133|5.02,174|127~183|114|7,189|107~190|106|7.45,191|105~192|105|6.33,193|107~196|111|4.94,198|117~202|127|6.8,207|140~213|150|8.91,226|174~232|181|9.03,244|188~248|188|9.41,252|186~260|182|7.69,268|175~274|171|7.86,277|165~289|148|8.15,301|131~316.95|117|10.4295,
327.95|111~332.95|110|8.5195,333.95|110~334.95|111|7.3995,
335.95|113~336.95|117|6.0795,338.95|121~341.95|125|4.5795,
342.95|131~345.95|137|6.2195,351.95|145~353.95|146|6.6595,
354.95|147~356.95|147|5.4795,360.95|144~362.95|143|4.0695,
365.95|140~367.95|136|4.0595,374.95|131~380.95|127|5.9395
  27 = 374.95|131~380.95|127|5.9395
  26 = 365.95|140~367.95|136|4.0595
  25 = 360.95|144~362.95|143|4.0695
  24 = 354.95|147~356.95|147|5.4795
  23 = 351.95|145~353.95|146|6.6595
  22 = 342.95|131~345.95|137|6.2195
  21 = 338.95|121~341.95|125|4.5795
  20 = 335.95|113~336.95|117|6.0795
  19 = 333.95|110~334.95|111|7.3995
  18 = 327.95|111~332.95|110|8.5195
  17 = 301|131~316.95|117|10.4295
  16 = 277|165~289|148|8.15
  15 = 268|175~274|171|7.86
  14 = 252|186~260|182|7.69
  13 = 244|188~248|188|9.41
  12 = 226|174~232|181|9.03
  11 = 207|140~213|150|8.91
  10 = 198|117~202|127|6.8
  9 = 193|107~196|111|4.94
  8 = 191|105~192|105|6.33
  7 = 189|107~190|106|7.45
  6 = 174|127~183|114|7
  5 = 165|139~170|133|5.02
  4 = 154|154~156|150|3.03
  3 = 147|160~149|158|1.46
  2 = 145|164~146|162|1.47
  1 = 143|166~144|164|1.42
  0 = space~142|166

  caption = testing the caption
  musicChoice = Jason Mraz – Life is Wonderful|wonderful
  personalMessage = TEST
  friendsEmail = [EMAIL PROTECTED]
  friendsName = JP
  yourEmail = [EMAIL PROTECTED]
  yourName = John Grden

public static function onGetDataFailure(obj:Object):Void
{
_global.tt("onSubmitDataFailure", remotingObj, obj);
}

www.osflash.org/xray

hth,

John

On 1/19/06, Gavin Lilley <[EMAIL PROTECTED]> wrote:
>
> Did anyone solve this problem?
>
> I ask as I have the same problem following an upgrade to Flash 8. :-(
>
> I seem to have 3 isntances of classes installed at various locations on my
> hard drive, but nothing is repsonding and the ncd is vital to
> troubleshooting - but how do I trouble shoot the ncd?!?
>
> cheers,
>
> --
> Gavin Lilley
>
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Stolen content

2006-01-19 Thread erixtekila


Le 19 janv. 06, à 14:16, franto a écrit :


sure, but when you try to get visitors to your site and such, google
penalize such sites, where same content is on many sites...

from this post, my uniques visitors per day raise from 300 to 1700,
post was viewed by more then 100 000 unique visitors (at least
Wordpress admins tell me this :) and then I can pay my hosting from
Google Adsense, you know, everything is worth something :)


What was your real motivation making your collection :
- sharing knowledge ?
- relaying content ressources to get your hosting payed ?

I get you : http://www.franto.com/blog2/flash-collections-for-you/


Thus, you can blame others that follow your way…
---
erixtekila
http://blog.v-i-a.net/

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


Re: [Flashcoders] Stolen content

2006-01-19 Thread franto
Thanks John, this is I want to point out :)
1 of them thanks me and add links, at least one, and I thanks him

Franto

On 1/19/06, John Grden <[EMAIL PROTECTED]> wrote:
> commercial or not, it sucks to see people just copy and paste your efforts
> without at least saying "Thank you" or "hey do you mind" and giving at least
> a link back to where you got your information.
>
> It's obvious they were capitalizing on Franto's good work.  I think that
> sucks personally.
>
> On 1/19/06, franto <[EMAIL PROTECTED]> wrote:
> >
> > sure, but when you try to get visitors to your site and such, google
> > penalize such sites, where same content is on many sites...
> >
> > from this post, my uniques visitors per day raise from 300 to 1700,
> > post was viewed by more then 100 000 unique visitors (at least
> > Wordpress admins tell me this :) and then I can pay my hosting from
> > Google Adsense, you know, everything is worth something :)
> >
> >
> > On 1/19/06, Nick Weekes <[EMAIL PROTECTED]> wrote:
> > > Yeah, looks like frantos links have been copied and pasted into other
> > blogs.
> > >
> > >
> > > I can see the frustration, but it's a blog, not a commercial piece of
> > > software etc.
> > >
> > > -Original Message-
> > > From: [EMAIL PROTECTED]
> > > [mailto:[EMAIL PROTECTED] On Behalf Of Ramon
> > Tayag
> > > Sent: 19 January 2006 13:00
> > > To: Flashcoders mailing list
> > > Subject: Re: [Flashcoders] Stolen content
> > >
> > > Sorry I really don't understand what you mean..
> > >
> > > Someone got your links?
> > >
> > > On 1/19/06, franto <[EMAIL PROTECTED]> wrote:
> > > > sure, you right, it was not my examples,
> > > > it's content of my blog, link which i collected from many sites,
> > > > digging, storing, writing then to the post, 1 update of post when I
> > > > add 1 link last 30 mins, because there were many sites linking to that
> > > > post
> > > >
> > > > I dont tell examples is mine...  my Collected examples are not same as
> > > > Collected my examples :)
> > > >
> > > > Hopefully you know what I mean
> > > >
> > > > Franto
> > > >
> > > > On 1/19/06, erixtekila <[EMAIL PROTECTED]> wrote:
> > > > >
> > > > > Le 19 janv. 06, à 11:50, franto a écrit :
> > > > >
> > > > > > I just want to know, that there are such practics, i know you know
> > :)
> > > > > > but i hate it
> > > > > > so just want to let you know thieves :)
> > > > > >
> > > > > > http://www.franto.com/blog2/stolen-content-collected-links-to-
> > > > > > maelstrom-examples
> > > > >
> > > > >
> > > > > Well, franto, did you really said : "my" content ?
> > > > > "It's sad, i've found my content on other sites. Do not know about
> > > > > other content, but it seems that my Collected links to Maelstrom
> > > > > examples"
> > > > >
> > > > > I thought it was examples of the new features developped by others.
> > > > > Could you clarify a bit ?
> > > > >
> > > > > Thanks.
> > > > > ---
> > > > > erixtekila
> > > > > http://blog.v-i-a.net/
> > > > > ___
> > > > > Flashcoders mailing list
> > > > > Flashcoders@chattyfig.figleaf.com
> > > > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > > > >
> > > >
> > > >
> > > > --
> > > >
> > >
> > 
> > >
> > 
> > > -
> > > > Franto
> > > >
> > > > http://blog.franto.com
> > > > http://www.flashcoders.sk
> > > > ___
> > > > 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
> > >
> > >
> > > ___
> > > Flashcoders mailing list
> > > Flashcoders@chattyfig.figleaf.com
> > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > >
> >
> >
> > --
> >
> > -
> > Franto
> >
> > http://blog.franto.com
> > http://www.flashcoders.sk
> > ___
> > 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
>


--
-
Franto

http://blog.frant

RE: [Flashcoders] Stolen content

2006-01-19 Thread Mike Mountain
At least one of the sites did give credit (the french one if I recall) although 
it was pretty much a cut and paste job... 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf 
> Of John Grden
> Sent: 19 January 2006 13:34
> To: Flashcoders mailing list
> Subject: Re: [Flashcoders] Stolen content
> 
> commercial or not, it sucks to see people just copy and paste 
> your efforts without at least saying "Thank you" or "hey do 
> you mind" and giving at least a link back to where you got 
> your information.
> 
> It's obvious they were capitalizing on Franto's good work.  I 
> think that sucks personally.
> 
> On 1/19/06, franto <[EMAIL PROTECTED]> wrote:
> >
> > sure, but when you try to get visitors to your site and 
> such, google 
> > penalize such sites, where same content is on many sites...
> >
> > from this post, my uniques visitors per day raise from 300 to 1700, 
> > post was viewed by more then 100 000 unique visitors (at least 
> > Wordpress admins tell me this :) and then I can pay my hosting from 
> > Google Adsense, you know, everything is worth something :)
> >
> >
> > On 1/19/06, Nick Weekes <[EMAIL PROTECTED]> wrote:
> > > Yeah, looks like frantos links have been copied and pasted into 
> > > other
> > blogs.
> > >
> > >
> > > I can see the frustration, but it's a blog, not a 
> commercial piece 
> > > of software etc.
> > >
> > > -Original Message-
> > > From: [EMAIL PROTECTED]
> > > [mailto:[EMAIL PROTECTED] On Behalf Of 
> > > Ramon
> > Tayag
> > > Sent: 19 January 2006 13:00
> > > To: Flashcoders mailing list
> > > Subject: Re: [Flashcoders] Stolen content
> > >
> > > Sorry I really don't understand what you mean..
> > >
> > > Someone got your links?
> > >
> > > On 1/19/06, franto <[EMAIL PROTECTED]> wrote:
> > > > sure, you right, it was not my examples, it's content 
> of my blog, 
> > > > link which i collected from many sites, digging, 
> storing, writing 
> > > > then to the post, 1 update of post when I add 1 link 
> last 30 mins, 
> > > > because there were many sites linking to that post
> > > >
> > > > I dont tell examples is mine...  my Collected examples are not 
> > > > same as Collected my examples :)
> > > >
> > > > Hopefully you know what I mean
> > > >
> > > > Franto
> > > >
> > > > On 1/19/06, erixtekila <[EMAIL PROTECTED]> wrote:
> > > > >
> > > > > Le 19 janv. 06, à 11:50, franto a écrit :
> > > > >
> > > > > > I just want to know, that there are such practics, 
> i know you 
> > > > > > know
> > :)
> > > > > > but i hate it
> > > > > > so just want to let you know thieves :)
> > > > > >
> > > > > > 
> http://www.franto.com/blog2/stolen-content-collected-links-to-
> > > > > > maelstrom-examples
> > > > >
> > > > >
> > > > > Well, franto, did you really said : "my" content ?
> > > > > "It's sad, i've found my content on other sites. Do not know 
> > > > > about other content, but it seems that my Collected links to 
> > > > > Maelstrom examples"
> > > > >
> > > > > I thought it was examples of the new features 
> developped by others.
> > > > > Could you clarify a bit ?
> > > > >
> > > > > Thanks.
> > > > > ---
> > > > > erixtekila
> > > > > http://blog.v-i-a.net/
> > > > > ___
> > > > > Flashcoders mailing list
> > > > > Flashcoders@chattyfig.figleaf.com 
> > > > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > > > >
> > > >
> > > >
> > > > --
> > > >
> > >
> > 
> --
> > --
> > >
> > 
> --
> > --
> > > -
> > > > Franto
> > > >
> > > > http://blog.franto.com
> > > > http://www.flashcoders.sk
> > > > ___
> > > > 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
> > >
> > >
> > > ___
> > > Flashcoders mailing list
> > > Flashcoders@chattyfig.figleaf.com
> > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > >
> >
> >
> > --
> >
> > 
> --
> > 
> --
> > -
> > Franto
> >
> > http://blog.franto.com
> > http://www.flashcoders.sk
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> 
> 
> 
> --
> John Grden - Blitz
> ___
> Flashcoders mailing list
> Flashcoders@cha

Re: [Flashcoders] Stolen content

2006-01-19 Thread John Grden
commercial or not, it sucks to see people just copy and paste your efforts
without at least saying "Thank you" or "hey do you mind" and giving at least
a link back to where you got your information.

It's obvious they were capitalizing on Franto's good work.  I think that
sucks personally.

On 1/19/06, franto <[EMAIL PROTECTED]> wrote:
>
> sure, but when you try to get visitors to your site and such, google
> penalize such sites, where same content is on many sites...
>
> from this post, my uniques visitors per day raise from 300 to 1700,
> post was viewed by more then 100 000 unique visitors (at least
> Wordpress admins tell me this :) and then I can pay my hosting from
> Google Adsense, you know, everything is worth something :)
>
>
> On 1/19/06, Nick Weekes <[EMAIL PROTECTED]> wrote:
> > Yeah, looks like frantos links have been copied and pasted into other
> blogs.
> >
> >
> > I can see the frustration, but it's a blog, not a commercial piece of
> > software etc.
> >
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On Behalf Of Ramon
> Tayag
> > Sent: 19 January 2006 13:00
> > To: Flashcoders mailing list
> > Subject: Re: [Flashcoders] Stolen content
> >
> > Sorry I really don't understand what you mean..
> >
> > Someone got your links?
> >
> > On 1/19/06, franto <[EMAIL PROTECTED]> wrote:
> > > sure, you right, it was not my examples,
> > > it's content of my blog, link which i collected from many sites,
> > > digging, storing, writing then to the post, 1 update of post when I
> > > add 1 link last 30 mins, because there were many sites linking to that
> > > post
> > >
> > > I dont tell examples is mine...  my Collected examples are not same as
> > > Collected my examples :)
> > >
> > > Hopefully you know what I mean
> > >
> > > Franto
> > >
> > > On 1/19/06, erixtekila <[EMAIL PROTECTED]> wrote:
> > > >
> > > > Le 19 janv. 06, à 11:50, franto a écrit :
> > > >
> > > > > I just want to know, that there are such practics, i know you know
> :)
> > > > > but i hate it
> > > > > so just want to let you know thieves :)
> > > > >
> > > > > http://www.franto.com/blog2/stolen-content-collected-links-to-
> > > > > maelstrom-examples
> > > >
> > > >
> > > > Well, franto, did you really said : "my" content ?
> > > > "It's sad, i've found my content on other sites. Do not know about
> > > > other content, but it seems that my Collected links to Maelstrom
> > > > examples"
> > > >
> > > > I thought it was examples of the new features developped by others.
> > > > Could you clarify a bit ?
> > > >
> > > > Thanks.
> > > > ---
> > > > erixtekila
> > > > http://blog.v-i-a.net/
> > > > ___
> > > > Flashcoders mailing list
> > > > Flashcoders@chattyfig.figleaf.com
> > > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > > >
> > >
> > >
> > > --
> > >
> >
> 
> >
> 
> > -
> > > Franto
> > >
> > > http://blog.franto.com
> > > http://www.flashcoders.sk
> > > ___
> > > 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
> >
> >
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
>
>
> --
>
> -
> Franto
>
> http://blog.franto.com
> http://www.flashcoders.sk
> ___
> 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


Re: [Flashcoders] amfphp, flash 8 and netdebug

2006-01-19 Thread Gavin Lilley
Did anyone solve this problem?

I ask as I have the same problem following an upgrade to Flash 8. :-(

I seem to have 3 isntances of classes installed at various locations on my
hard drive, but nothing is repsonding and the ncd is vital to
troubleshooting - but how do I trouble shoot the ncd?!?

cheers,

--
Gavin Lilley



On 12/2/05, Alfonso Florio <[EMAIL PROTECTED]> wrote:
>
> hi to all
>
> i'm trying to use the remoting with amfphp in flash 8
> i'm trying to use also the netdebug with the netconnection debugger...
>
> here's the syntax I use to import the classes
>
> import mx.remoting.NetServices
> import mx.remoting.debug.NetDebug;
> NetDebug.initialize();
>
> if I just import Netservices remoting works with two errors...
> no way to see the events into the netconnection debugger
>
> if I open a pre-compiled swf in flash 8 i can see events in netconnection
> debugger!!
>
> here's all my code and the errors I get
>
> any help would be appreciated!!!
>
> import mx.remoting.NetServices;
> import mx.remoting.debug.NetDebug;
> NetDebug.initialize();
> listDir_Result = function (message) {
> for (i=0; i trace(i+" "+message.nomefile[i]);
> }
> };
> listDir_Status = function (message) {
> trace("STATUS");
> };
> var conn =
> NetServices.createGatewayConnection("http://xxx/aulavirtuale/gateway.php";)
> ;
> var myService = conn.getService("formToText", this);
> myService.listDir("./");
>
>
> **Error** C:\Documents and Settings\fonzie admin\Local
> Settings\Application
> Data\Macromedia\Flash
> 8\en\Configuration\Classes\mx\remoting\NetServiceProxy.as: Line 62: Type
> mismatch.
> arguments.unshift(new
> NetServiceProxyResponder(this, methodName));
>
> **Error** C:\Documents and Settings\fonzie admin\Local
> Settings\Application
> Data\Macromedia\Flash
> 8\en\Configuration\Classes\mx\remoting\NetServiceProxy.as: Line 67: Type
> mismatch.
> arguments.unshift(new
> NetServiceProxyResponder(this, methodName));
>
> Total ActionScript Errors: 2 Reported Errors: 2
>
> ___
> 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] Stolen content

2006-01-19 Thread franto
sure, but when you try to get visitors to your site and such, google
penalize such sites, where same content is on many sites...

from this post, my uniques visitors per day raise from 300 to 1700,
post was viewed by more then 100 000 unique visitors (at least
Wordpress admins tell me this :) and then I can pay my hosting from
Google Adsense, you know, everything is worth something :)


On 1/19/06, Nick Weekes <[EMAIL PROTECTED]> wrote:
> Yeah, looks like frantos links have been copied and pasted into other blogs.
>
>
> I can see the frustration, but it's a blog, not a commercial piece of
> software etc.
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Ramon Tayag
> Sent: 19 January 2006 13:00
> To: Flashcoders mailing list
> Subject: Re: [Flashcoders] Stolen content
>
> Sorry I really don't understand what you mean..
>
> Someone got your links?
>
> On 1/19/06, franto <[EMAIL PROTECTED]> wrote:
> > sure, you right, it was not my examples,
> > it's content of my blog, link which i collected from many sites,
> > digging, storing, writing then to the post, 1 update of post when I
> > add 1 link last 30 mins, because there were many sites linking to that
> > post
> >
> > I dont tell examples is mine...  my Collected examples are not same as
> > Collected my examples :)
> >
> > Hopefully you know what I mean
> >
> > Franto
> >
> > On 1/19/06, erixtekila <[EMAIL PROTECTED]> wrote:
> > >
> > > Le 19 janv. 06, à 11:50, franto a écrit :
> > >
> > > > I just want to know, that there are such practics, i know you know :)
> > > > but i hate it
> > > > so just want to let you know thieves :)
> > > >
> > > > http://www.franto.com/blog2/stolen-content-collected-links-to-
> > > > maelstrom-examples
> > >
> > >
> > > Well, franto, did you really said : "my" content ?
> > > "It's sad, i've found my content on other sites. Do not know about
> > > other content, but it seems that my Collected links to Maelstrom
> > > examples"
> > >
> > > I thought it was examples of the new features developped by others.
> > > Could you clarify a bit ?
> > >
> > > Thanks.
> > > ---
> > > erixtekila
> > > http://blog.v-i-a.net/
> > > ___
> > > Flashcoders mailing list
> > > Flashcoders@chattyfig.figleaf.com
> > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > >
> >
> >
> > --
> >
> 
> 
> -
> > Franto
> >
> > http://blog.franto.com
> > http://www.flashcoders.sk
> > ___
> > 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
>
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>


--
-
Franto

http://blog.franto.com
http://www.flashcoders.sk
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Stolen content

2006-01-19 Thread Nick Weekes
Yeah, looks like frantos links have been copied and pasted into other blogs.


I can see the frustration, but it’s a blog, not a commercial piece of
software etc.   

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ramon Tayag
Sent: 19 January 2006 13:00
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Stolen content

Sorry I really don't understand what you mean..

Someone got your links?

On 1/19/06, franto <[EMAIL PROTECTED]> wrote:
> sure, you right, it was not my examples,
> it's content of my blog, link which i collected from many sites,
> digging, storing, writing then to the post, 1 update of post when I
> add 1 link last 30 mins, because there were many sites linking to that
> post
>
> I dont tell examples is mine...  my Collected examples are not same as
> Collected my examples :)
>
> Hopefully you know what I mean
>
> Franto
>
> On 1/19/06, erixtekila <[EMAIL PROTECTED]> wrote:
> >
> > Le 19 janv. 06, à 11:50, franto a écrit :
> >
> > > I just want to know, that there are such practics, i know you know :)
> > > but i hate it
> > > so just want to let you know thieves :)
> > >
> > > http://www.franto.com/blog2/stolen-content-collected-links-to-
> > > maelstrom-examples
> >
> >
> > Well, franto, did you really said : "my" content ?
> > "It's sad, i've found my content on other sites. Do not know about
> > other content, but it seems that my Collected links to Maelstrom
> > examples"
> >
> > I thought it was examples of the new features developped by others.
> > Could you clarify a bit ?
> >
> > Thanks.
> > ---
> > erixtekila
> > http://blog.v-i-a.net/
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
>
>
> --
>


-
> Franto
>
> http://blog.franto.com
> http://www.flashcoders.sk
> ___
> 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


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


Re: [Flashcoders] Stolen content

2006-01-19 Thread Ramon Tayag
Sorry I really don't understand what you mean..

Someone got your links?

On 1/19/06, franto <[EMAIL PROTECTED]> wrote:
> sure, you right, it was not my examples,
> it's content of my blog, link which i collected from many sites,
> digging, storing, writing then to the post, 1 update of post when I
> add 1 link last 30 mins, because there were many sites linking to that
> post
>
> I dont tell examples is mine...  my Collected examples are not same as
> Collected my examples :)
>
> Hopefully you know what I mean
>
> Franto
>
> On 1/19/06, erixtekila <[EMAIL PROTECTED]> wrote:
> >
> > Le 19 janv. 06, à 11:50, franto a écrit :
> >
> > > I just want to know, that there are such practics, i know you know :)
> > > but i hate it
> > > so just want to let you know thieves :)
> > >
> > > http://www.franto.com/blog2/stolen-content-collected-links-to-
> > > maelstrom-examples
> >
> >
> > Well, franto, did you really said : "my" content ?
> > "It's sad, i've found my content on other sites. Do not know about
> > other content, but it seems that my Collected links to Maelstrom
> > examples"
> >
> > I thought it was examples of the new features developped by others.
> > Could you clarify a bit ?
> >
> > Thanks.
> > ---
> > erixtekila
> > http://blog.v-i-a.net/
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
>
>
> --
> -
> Franto
>
> http://blog.franto.com
> http://www.flashcoders.sk
> ___
> 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] Stolen content

2006-01-19 Thread franto
sure, you right, it was not my examples,
it's content of my blog, link which i collected from many sites,
digging, storing, writing then to the post, 1 update of post when I
add 1 link last 30 mins, because there were many sites linking to that
post

I dont tell examples is mine...  my Collected examples are not same as
Collected my examples :)

Hopefully you know what I mean

Franto

On 1/19/06, erixtekila <[EMAIL PROTECTED]> wrote:
>
> Le 19 janv. 06, à 11:50, franto a écrit :
>
> > I just want to know, that there are such practics, i know you know :)
> > but i hate it
> > so just want to let you know thieves :)
> >
> > http://www.franto.com/blog2/stolen-content-collected-links-to-
> > maelstrom-examples
>
>
> Well, franto, did you really said : "my" content ?
> "It's sad, i've found my content on other sites. Do not know about
> other content, but it seems that my Collected links to Maelstrom
> examples"
>
> I thought it was examples of the new features developped by others.
> Could you clarify a bit ?
>
> Thanks.
> ---
> erixtekila
> http://blog.v-i-a.net/
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>


--
-
Franto

http://blog.franto.com
http://www.flashcoders.sk
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Documenting my code

2006-01-19 Thread Ian Thomas
Hi Martin,
  Rather like you - all I have is a script which runs once nightly as a cron
job, does an update from SVN, then calls the doc tool and copies the
generated docs into a folder hosted by the webserver. Nothing complicated.

  I'd be interested in seeing a decent AS2 config for Doxygen too. The
output I got from it indicated that Doxygen didn't understand AS2, and was
trying to parse the .as files as if they were Java (i.e. class names were
com.something.MyClass rather than just MyClass - that sort of behaviour).

Cheers,
  Ian

On 1/19/06, Martin Wood <[EMAIL PROTECTED]> wrote:

>
> out of curiosity how are going about this on the linux box?
>
> I implemented a system a while ago to do nightly documentation builds on
> a linux box, but my system was based around CVS / Doxygen.
>
> Basically, I wrote a python script that was called as a cron job which
> checked out all the projects from CVS, ran doxygen on them and copied
> the output to a local web server..
>
> Unfortunately i dont have access to the code anymore because it was
> built for my previous employer but im keen on getting something working
> for myself that uses SVN and produces docs for AS2 code (as well as
> Java, even if that means using seperate tools..)
>
> the nice thing about using doxygen (after a bit of configuration work)
> was that the documentation for seperate projects was linked together.
> e.g. If project B depended on project A (a library) then you could
> follow links from B to the relevant places in A. (and you got diagrams
> for free..)
>
> I'd be interested to see if anyone has some configs for doxygen that
> work well with AS2, or if you think that a specific AS2 module for
> doxygen is needed..
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Stolen content

2006-01-19 Thread erixtekila


Le 19 janv. 06, à 11:50, franto a écrit :


I just want to know, that there are such practics, i know you know :)
but i hate it
so just want to let you know thieves :)

http://www.franto.com/blog2/stolen-content-collected-links-to- 
maelstrom-examples



Well, franto, did you really said : "my" content ?
"It's sad, i've found my content on other sites. Do not know about  
other content, but it seems that my Collected links to Maelstrom  
examples"


I thought it was examples of the new features developped by others.
Could you clarify a bit ?

Thanks.
---
erixtekila
http://blog.v-i-a.net/
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Documenting my code

2006-01-19 Thread Martin Wood

I hope that NaturalDocs does get around to supporting JavaDoc, because in my
test of doc tools over the last week or so it looks like the best fit for me
- it actually runs on my Linux server, whereas most other things are either
Mac or PC based or, like as2api, just cause me server errors. I'm trying to
integrate a doc-tool in to our SVN setup (so that nightly up-to-date docs
are built) and am having no luck at all. At the moment I'm having to run
something scheduled on my Windows box to achieve it.


out of curiosity how are going about this on the linux box?

I implemented a system a while ago to do nightly documentation builds on 
a linux box, but my system was based around CVS / Doxygen.


Basically, I wrote a python script that was called as a cron job which 
checked out all the projects from CVS, ran doxygen on them and copied 
the output to a local web server..


Unfortunately i dont have access to the code anymore because it was 
built for my previous employer but im keen on getting something working 
for myself that uses SVN and produces docs for AS2 code (as well as 
Java, even if that means using seperate tools..)


the nice thing about using doxygen (after a bit of configuration work) 
was that the documentation for seperate projects was linked together.
e.g. If project B depended on project A (a library) then you could 
follow links from B to the relevant places in A. (and you got diagrams 
for free..)


I'd be interested to see if anyone has some configs for doxygen that 
work well with AS2, or if you think that a specific AS2 module for 
doxygen is needed..


thanks,

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


Re: [Flashcoders] Documenting my code

2006-01-19 Thread Ian Thomas
The keywords @param, @see, @return all have special meaning to JavaDoc based
tools (as well as a host of other @commands). In my limited tests of
NaturalDocs it looks like it doesn't support those special meanings- which
is why the front page of the NaturalDocs site says that JavaDoc is still to
be supported (the Roadmap section).

By not supported I mean that it looks like NaturalDocs - if it does anything
with them at all - just copies them verbatim, without using them for
crossreferencing or anything.

I hope that NaturalDocs does get around to supporting JavaDoc, because in my
test of doc tools over the last week or so it looks like the best fit for me
- it actually runs on my Linux server, whereas most other things are either
Mac or PC based or, like as2api, just cause me server errors. I'm trying to
integrate a doc-tool in to our SVN setup (so that nightly up-to-date docs
are built) and am having no luck at all. At the moment I'm having to run
something scheduled on my Windows box to achieve it.

We're not going to switch to NaturalDocs 'natural' commenting style over the
JavaDoc style for the simple reason that more tools, longterm, will support
the JavaDoc tags and I want to retain the flexibility to switch doc tools.
And we've already got a load of code commented in this style. :-)

I used to use Doxygen for this in Java - but to be honest Doxygen's output
for AS2 seems pretty poor - unless I'm missing a config trick somewhere...

Ian

On 1/19/06, ryanm <[EMAIL PROTECTED]> wrote:
>
> > As far as I can see from the front page (Roadmap panel) it doesn't yet
> > support JavaDoc as a style, which is a shame...
> >
> What doesn't it support?
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Documenting my code

2006-01-19 Thread Cédric Muller

I second VisDoc (rocks)


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] Q:Tracing out objects in an array

2006-01-19 Thread Andreas Rønning

toSource toschmorze.

Array.prototype.trace = function() {
var retString = "Array contents:"+newline;
for (var i = 0; izwetan wrote:

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?




There are different ways

It could be as simple as

trace( myArray.toSource( 0 ) );

for more info see:
http://www.burrrn.com/projects/core2.html

http://www.burrrn.com/documentation/core2/files/buRRRn/core2/Array-es.html#A
rray.toSource

http://live.burrrn.com/browser/ECMA-262/core2/branches/core2_v1.0.x/src/buRR
Rn/core2/Array.es#L710


HTH
zwetan






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


--

- Andreas Rønning

---
Flash guy
Rayon Visual Concepts, Oslo, Norway
---
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Stolen content

2006-01-19 Thread franto
I just want to know, that there are such practics, i know you know :)
but i hate it
so just want to let you know thieves :)

http://www.franto.com/blog2/stolen-content-collected-links-to-maelstrom-examples

-
Franto

http://blog.franto.com
http://www.flashcoders.sk
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Documenting my code

2006-01-19 Thread ryanm

As far as I can see from the front page (Roadmap panel) it doesn't yet
support JavaDoc as a style, which is a shame...


   What doesn't it support?

This is cut and pasted directly from the NaturalDocs documentation:

--
/*
* Function: Multiply
* Multiplies two integers and returns the result.
*/

and

/*
  Function: Multiply

  Multiplies two integers.

  Parameters:

 x - The first integer.
 y - The second integer.

  Returns:

 The two integers multiplied together.

  See Also:

 
*/
--

   This was cut and pasted directly from the Sun spec on javadoc comments:

--
   /**
* Registers the text to display in a tool tip.   The text
* displays when the cursor lingers over the component.
*
* @param text  the string to display.  If the text is null,
*  the tool tip is turned off for this component.
*/
--

   The whole idea of NaturalDocs is that it doesn't care what style of 
comments you use, it will work with almost any style.


   All that said, if you look around I'm sure you can find a number of open 
source documentation generators based on the javadoc comment style.


ryanm 


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


  1   2   >