You always compare "implicit getter/settter" with "explicit getter/setter".
Just a thought of mine is to compare "implicit getter/setter" with
public variables.
When you use someClass, that was written by someone else, you do not
know if the following code uses "implicit getter/setter" or is just
Sorry mate, but you missed the boat. It's been out for ages ;-) But have
fun!
On 2/13/07, Daniel Freeman <[EMAIL PROTECTED]> wrote:
WHERE DID YOU GET IT!?
You can't believe how much excitement and
disappointment this thread has caused me. I assumed
that the flash 9 prototype had been released
I thought I saw this discussed recently, but I couldn't find it in the
archives. Apologies if I'm repeating something.
Has anyone ever had a situation using MovieClipLoader where, when
loading a SWF, the onLoadComplete handler gets called but the
onLoadInit handler does? I've verified that the ac
How could the settings of data bindings be cleared up? My problem is
reproduced by the followings:
1. Place two CheckBox compontnent instances named "checkBox0" and
"checkBox1".
2. Open the [Component Inspecter] and select the [Bindings] tab.
3. Select "checkBox1" and click the [Add binding] butt
http://labs.adobe.com/technologies/flash9as3preview/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Brought to you by Fig Leaf Software
Premier A
WHERE DID YOU GET IT!?
You can't believe how much excitement and
disappointment this thread has caused me. I assumed
that the flash 9 prototype had been released on Adobe
labs. I couldn't connect to labs yesterday, which
sent my excitement through the roof! I assumed that
everyone was downloadi
One of the few reasons to use explicit getters/setters in AS2 is as
part of an interface. AS2 does not allow implicit property getters and
setters in interfaces.
// Will not work in AS2:
interface Ratio {
function get percent():Number;
}
// Will work in AS2:
interface Ratio {
function getPer
You should absolutely feel comfortable and fine using prototype to add
functions to the String native object if you want. I say if it works,
use it. Just because they skimped on String and Array methods that MOST
other languages have doesn't mean you should have to write a bunch of
extra code to
I use implicit getter/setters all the time when it involves a single property
of an object:
width, height, visible, etc..
I use explicit getter/setters when one or more parameters are required:
getItemAt(index), setSize(w, h)
Implict getter/setters are also invoked before the constructor, which
Related to the suggestion of using an application MXML tag that Mike
Chambers suggested in that post, Ted Patrick recently posted an article
in his blog on Code Behind in Flex 2:
http://www.onflex.org/ted/
Jason Merrill
Bank of America
Learning & Organizational Effectiveness
>>---
http://chattyfig.figleaf.com/pipermail/flashcoders/2006-July/169075.html
Curious to know if anyone has actually done it, but it sounds like it's, at
the very least, not straightforward. Any reason why you don't want to set
it up as an mxml project?
Phil
-Original Message-
From: [EMAIL P
U mean u publish them for player 8 with AS1?
I did published my 6 player games from 8 flash as for 6 player too. Cua they
didnt work when publish to 8 player but I thought it was cuz I used ../: /:
instead of _parent and _root
On 2/14/07, Søren Christensen <[EMAIL PROTECTED]> wrote:
Now speaki
JOR wrote:
Below is my test class of trying to pragmatically add a set of radio
buttons to an ActionScript 3.0 project. Do you see anything I may
have done incorrectly? When I run it, I don't get any compile errors
but I also don't see any radio buttons.
If memory serves, in Flex, the applica
COOL!!
On Feb 13, 2007, at 4:22 PM, Ron Wheeler wrote:
It would seem to be alright.
If the computer opening the socket is accepting messages from
Flash, why would the FlashPlayer care about that. It can not
possibly tell if the person who wrote the server application at the
other end of t
Now speaking about flash 9 -
I am experiencing some odd behaviors with fp9 player:
flash 6 to 8 swf files with as1 or keyframe animation just performs
slower.
If i want my animations to move just as smooth in the fp9 i need to
export them with more or less the double framete before fp9 sh
well utf8 support is taking care of that already :-)
On Feb 13, 2007, at 2:09 PM, dan wrote:
I wish apon a star that flash 9 will have RTL text for us non
English people
:)
shalom
___
Flashcoders@chattyfig.figleaf.com
To change your subscription
Below is my test class of trying to pragmatically add a set of radio
buttons to an ActionScript 3.0 project. Do you see anything I may have
done incorrectly? When I run it, I don't get any compile errors but I
also don't see any radio buttons.
-- James
package
{
import flash.display.Spri
Just thought of another use for properties: component parameters.
With properties you can do something like this:
[Inspectable]
public function get percent():Number {
return _percent;
}
public function set percent(value:Number):Void {
_percent = normalizePercentage(value);
}
private var _perc
Get/set is useful when creating a visual object class, as well as for
setting private variables on set. It's also useful when you don't want
the variable that is being set to be getted, as well.
For instance, I have an application which allows a user to type in the
day, month and year into three
It would seem to be alright.
If the computer opening the socket is accepting messages from Flash, why
would the FlashPlayer care about that. It can not possibly tell if the
person who wrote the server application at the other end of the socket
has compromised the server
The server administrator
On 2/13/07, Holth, Daniel C. <[EMAIL PROTECTED]> wrote:
I was wondering what people's thoughts were on the use of "get" and
"set" functions. I personally have felt that creating functions such
as:
public function get theLetterA(){
return "a";
}
so the user can simply call someObject.t
The biggest complaint that I have seen is the issue of speed. If you do
"var foo: String = obj.theLetterA" you expect that to be a hash
lookup/dereference/something fast. If you do "var foo: String =
obj.getSomething()" and you are thinking about speed, you go and look at
what getSomething() is doi
I'll try and shoot real straight with you here. I don't know what the
data is on your other end. I don't know WDSL or SOAP packets that well.
In my world, we develop in C# .NET and formulate objects and arrays.
The c# developer sends me an object, which has arrays, strings, numbers,
etc. Since C
Just to fuel your query, how does it affect the user to know whether
they are 'get'-ing from a variable or a function call, encapsulation
considered?
P.
>> -Original Message-
>> From: [EMAIL PROTECTED] [mailto:flashcoders-
>> [EMAIL PROTECTED] On Behalf Of Holth, Daniel C.
>> Sent: Tuesda
Hi Jason,
Thanks again,
One last try,
The snippet of code I gave you were the raw WSDL, when looking at it through
the web browser, but I'll give you the structure of it how it looks
returning into flash using the wsconn instead of writing the complete as
code it for now. This is the first nav it
I was wondering what people's thoughts were on the use of "get" and
"set" functions. I personally have felt that creating functions such
as:
public function get theLetterA(){
return "a";
}
so the user can simply call someObject.theLetterA are confusing because
the user doesn't know if t
>> [Identities:( [Name] =>
>>IDENTITIES [SubNav] => Array ( [0] => Array ( [Name] => ME
>>[SubNav] => Array ( ) ) [1] => Array ( [Name] => PUBLIC
>>MESSAGES [SubNav] => Array ( ) ) ) ),
I'm lost translating that to an Actionscript object based on that
description, sorry. Perhaps you can do a l
Once you download the stand-alone player, double-click on it to launch
it. That should then be the default stand-alone player for the system.
Steve
On 2/13/07, Richard Helgor <[EMAIL PROTECTED]> wrote:
I hope this isn't a dumb question, but I've searched the internet for
hours and can't find an
Hi Jason,
Thanks for your quick reply,
Example would be like: from their side,
[navigation] => Array ( [Identities] => Array ( [Name] => IDENTITIES
[SubNav] => Array ( [0] => Array ( [Name] => ME [SubNav] => Array ( ) ) [1]
=> Array ( [Name] => PUBLIC MESSAGES [SubNav] => Array ( ) ) ) ),
(This
>>in Flash 8/9?
Definitely not 8. Compile with the Flash 9 IDE and it might work. The
components you need are included in the Flex 2 swf, but I don't know if
there are document level conflicts.
Jason Merrill
Bank of America
Learning & Organizational Effectiveness
>>-Original M
You need to know the structure of the array and objects they are
returning. Likely, they are handing you an array of objects with
properties - and you can grab the data by navigatinging the array object
like,
myData[3].nav[2].name or something. But they can structure that object
you get from the
Hi,
Is it possible to use a swf generated with the Flex 2.0 framework/Flex
Builder 2.0 in Flash 8/9? Id specifically like to embed/link a Chart mc
created with the Flex charting components in to Flash, and then create a
Flash projector (thus bypassing the need for the latest flash player).
I h
Hi everybody!
I have a problem that I don't know if it's even possible to solve!
1. I want to create a menu that holds a main Nav and Sub Nav (Horizontal),
no problem with that, but upon my clients request they want to use a web
service call to get the data from the server (works fine, triggering
I see, thanx to all.
P.
>> -Original Message-
>> From: [EMAIL PROTECTED] [mailto:flashcoders-
>> [EMAIL PROTECTED] On Behalf Of eka
>> Sent: Tuesday, February 13, 2007 2:21 PM
>> To: Flashcoders mailing list
>> Subject: Re: [Flashcoders] Adding a function to the String prototype
>>
>> He
Hello :)
If you use the strict typing with "var s:String" you use the AS2 class
interpretor and you must override the String.as file in the
en/firstRun/classes/FP8 directory in your flash install path.
The intrinsic of the String core class must be changed by default in AS2.
The String class isn
Modifying native object prototypes is a hack. Try extending the String
class instead:
class myPackage.MyString extends String {
public function traceFoo():Void {
trace("foo");
}
}
// ...
import myPackage.MyString;
var s:MyString = new MyString();
s.traceFoo();
If you absolutely must
I thought this was as easy as:
String.prototype.traceFoo = function():Void {
trace("foo");
}
var s:String = new String();
s.traceFoo();
But that results in an error, "There is no method with the name
'traceFoo'." Well, duh, traceFoo doesn't exist until the code executes,
but how do you
cheers - i'll give it a bash...
On 13/02/07, Mick G <[EMAIL PROTECTED]> wrote:
You're probably better off appending them manually so you can defined
exactly which vars to send...
on (release) {
var1 = "append=this_to_be_appended_to_URL";
getURL(clickTag+var1, "_blank", "GET");
trace (var
Try the Flexcoders list @ Yahoo.
Jason Merrill
Bank of America
Learning & Organizational Effectiveness
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listi
I hope this isn't a dumb question, but I've searched the internet for
hours and can't find an answer
I'm building a Flash based application, which is kind of a kiosk type
app, and is designed to run specifically on 20" iMac's (1680 x 1050).
The machine's I have to build and test on are
Not in AS2, unfortunately. That's one of the main drawbacks. And one
of the best improvements in AS3.
There are a few tricks you can pull to almost get there:
1) If it's a static image (i.e. a JPG, PNG or non-animated
single-frame SWF) and you're using Flash 8 you can extract the
BitmapData from
I'm using Flex, with an ActionScript project. I added the libraries to the
source path. This is not the issue, because it wouldn't have compiled if it
couldn't find the classes. Thanks, A
On 2/13/07, Merrill, Jason <[EMAIL PROTECTED]> wrote:
Are you doing this in the Flash 9 preview IDE or Flex
No way in AS 2 at least. But when u make loadmovie once next time it loads
from buffer so I guess it's pretty same then.
On 2/13/07, Jason Lutes <[EMAIL PROTECTED]> wrote:
Is it possible to attach a symbol (using attachMovie and a valid linkage
ID) within a movie, but from the Library of a movi
Are you doing this in the Flash 9 preview IDE or Flexbuilder 2? If
you're in Flash, make sure you have a TextArea component in your
library.
Jason Merrill
Bank of America
Learning & Organizational Effectiveness
>>-Original Message-
>>From: [EMAIL PROTECTED]
>>[mailto:[EMAIL
Jonathan.
Please trim your posts!
Ian
On 2/13/07, Jonathan <[EMAIL PROTECTED]> wrote:
Flash 9???
THE BEST
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/
Thanks Muzak. I didn't realize capitals would make a difference. The
ampersand was rendering fine without using & - I wouldn't have
caught that mistake either.
Darren - Thanks, I will keep that in mind if I ever use frames.
--
Thuy Nguyen
Web Designer
Angus Journal
816.383.5228
__
The code is in a class extending Sprite.. The Sprite is in the display list
because there are bunch of graphics (bitmaps and such) that I'm adding using
"addChild" right next to it and these are showing up...
Thanks,
A
On 2/13/07, T. Michael Keesey <[EMAIL PROTECTED]> wrote:
Where is this cod
I didn't see the "append=". Let me try again...
on (release) {
var1 = "append=this_to_be_appended_to_URL";
getURL(clickTag+"?"+var1, "_blank");
trace (var1);
}
On 2/13/07, Mick G <[EMAIL PROTECTED]> wrote:
You're probably better off appending them manually so you can defined
exactly whic
You're probably better off appending them manually so you can defined
exactly which vars to send...
on (release) {
var1 = "append=this_to_be_appended_to_URL";
getURL(clickTag+var1, "_blank", "GET");
trace (var1);
}
if you need the var names as part of the URL string you may need...
on (releas
Is it possible to attach a symbol (using attachMovie and a valid linkage ID)
within a movie, but from the Library of a movie that loads in that movie (using
loadMovie)? I did a simple test that didn't seem to work, so maybe I already
have my answer. Before I work around it the hard way, has anyo
Flash 9???
THE BEST
- Original Message -
From: <[EMAIL PROTECTED]>
To:
Sent: Tuesday, February 13, 2007 2:00 PM
Subject: [!! SPAM] Flashcoders Digest, Vol 25, Issue 35
Send Flashcoders mailing list submissions to
flashcoders@chattyfig.figleaf.com
To subscribe or unsubscrib
Where is this code placed?
On 2/13/07, August Gresens <[EMAIL PROTECTED]> wrote:
Hello
I'm trying to use an mx.controls.TextArea in my ActionScript 3.0 project.
var textArea:TextArea = new TextArea();
textArea.text = "foo";
addChild(textArea);
Nothing shows up - I suspect there is more to usi
I have an application on my computer which is simply a socket
listening for a connection on "127.0.0.1" port 5824.
So, in AS3 I created a swf with the following code
var sock:XMLSocket = new XMLSocket();
sock.connect("127.0.0.1",5824);
and uploaded it to my server.
Now, when I go to the web
Isn't there a flash newbie list?
On Feb 13, 2007, at 8:33 AM, Arseniy Shklyaev wrote:
Ah Craig List. that u mean about I have no money yet :D lol
Yeah. Really. It fits. The only thing could make u think I m not
trying to
catcha that u can look into a games I made myself. And I will take
G
> Could this community help me more than flashkit boards?
This is another world. I would advise against any further comparison.
> So actually I hate not flash/AS1,2,3 itself but my progress around >_<
There isnt anything you can do about this other than read more and try and
work with more peop
http://www.martijndevisser.com/blog/article/imageloader-class-for-flash-8
On 2/13/07, Henry Cooke <[EMAIL PROTECTED]> wrote:
Hey all,
It it possible to load an image (PNG/JPG) directly into memory or (even
better) a BitmapData object without having to faff about loading it into a
MovieClip fir
Hello :)
you must load with loadMovie or MovieClipLoader you external picture ... not
solution in AS2 to load a dynamic picture in the BitmapData class only.
EKA+ :)
2007/2/13, Henry Cooke <[EMAIL PROTECTED]>:
Hey all,
It it possible to load an image (PNG/JPG) directly into memory or (even
b
Hey all,
It it possible to load an image (PNG/JPG) directly into memory or (even
better) a BitmapData object without having to faff about loading it into a
MovieClip first, in AS2? I've been poking about a bit, but nothing seems
immediately obvious (disclaimer: I am recovering from a nasty bout o
Please post a solution if you ever figure it out. I was trying the same
thing with Radio Buttons and finally gave up after a few hours.
I did figure out that you need to reference the framework.swc and
framework_rb.swc in the build library for Flex Builder 2 to find the
classes but I'm guessi
I have a DataGrid Component that has it's dataProvider property set to a
RecordSet that has been returned from the server via Flash Remoting. All
goes well untill I try to display more than 20 results in the DataGrid,
when it will display all except for the last one. I've traced the length
of th
I m in AS 1,2 yet. But I guess maybe it cuz of font not embeded or text
field width height not specifeid?
On 2/13/07, August Gresens <[EMAIL PROTECTED]> wrote:
Hello
I'm trying to use an mx.controls.TextArea in my ActionScript 3.0 project.
var textArea:TextArea = new TextArea();
textArea.text
Hello
I'm trying to use an mx.controls.TextArea in my ActionScript 3.0 project.
var textArea:TextArea = new TextArea();
textArea.text = "foo";
addChild(textArea);
Nothing shows up - I suspect there is more to using flex controls in an AS3
project.
Can anyone point me to some info about this?
Without Flash 9 and Actionscript 3 your beloved Flash would
fade away ... looking ahead to Big M and their WPF/E stuff.
Adobe/Macromedia had to speed up the Flash runtime and
so they compel the flash developer to have more programming
skills.
cheers,
masu
On 2/13/07, Arseniy Shklyaev <[EMAIL PR
Ah Craig List. that u mean about I have no money yet :D lol
Yeah. Really. It fits. The only thing could make u think I m not trying to
catcha that u can look into a games I made myself. And I will take GFX SFX
music part on myself.
Could this community help me more than flashkit boards?
I even afr
*hangs a large "Do Not Feed The Troll" sign on this thread.*
On 2/13/07, Arseniy Shklyaev <[EMAIL PROTECTED]> wrote:
I m not easy person but my ideas much better than most of games out there.
Also this is good to be offensive for director/producer I guess.
_
I m not easy person but my ideas much better than most of games out there.
Also this is good to be offensive for director/producer I guess.
On 2/13/07, dan <[EMAIL PROTECTED]> wrote:
I wish apon a star that flash 9 will have RTL text for us non English
people
:)
shalom
__
I wish apon a star that flash 9 will have RTL text for us non English people
:)
shalom
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Brought t
> Those could help me.
> I m just found it yestarday. If I post here looking for
> coders can I found someone?
> I tried to find some ppl in Russia but even if I found I dont
> like them anyone.
> So does this is not under rules to post here of looking for
> ppl to make games with or hire someo
an interesting post ;)
http://positionrelative.wordpress.com/2007/01/23/craigs-pissed/
>.. looking for coders..dont have enough money to hire ppl yet..
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
Those could help me.
I m just found it yestarday. If I post here looking for coders can I found
someone?
I tried to find some ppl in Russia but even if I found I dont like them
anyone.
So does this is not under rules to post here of looking for ppl to make
games with or hire someone(dont have enou
Hi all,
I am really in a bind with regards providing keyboard shortcuts within
my flash movie.
Problem seems to be the application polls a database every couple of
seconds for status information.
I use the xml sendAndLoad function.
Problem is that if i shortcut to a component ((i.e) Ctrl + t , gi
ditto :)
Matthias Dittgen wrote:
We love Flash! And we hate Flash!
That's why we read [Flashcoders]. :-)
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/
We love Flash! And we hate Flash!
That's why we read [Flashcoders]. :-)
2007/2/13, Arseniy Shklyaev <[EMAIL PROTECTED]>:
Anyone hate flash 9 already?
--
-Arseniy Shklyaev
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or se
Dont like drugs BTW.
Sure. I know. A lirical one. It is bout coding too tho. There was answers
bout coding so it is OK
On 2/13/07, Johannes Nel <[EMAIL PROTECTED]> wrote:
drugs help
On 2/13/07, Arseniy Shklyaev <[EMAIL PROTECTED]> wrote:
>
> BTW. I dont know why I hate things. For example I ha
for depression. it might make you like something again
On 2/13/07, Johannes Nel <[EMAIL PROTECTED]> wrote:
drugs help
On 2/13/07, Arseniy Shklyaev <[EMAIL PROTECTED]> wrote:
>
> BTW. I dont know why I hate things. For example I hate my parents and I
> dont
> know why.
>
> On 2/13/07, Arseniy S
drugs help
On 2/13/07, Arseniy Shklyaev <[EMAIL PROTECTED]> wrote:
BTW. I dont know why I hate things. For example I hate my parents and I
dont
know why.
On 2/13/07, Arseniy Shklyaev <[EMAIL PROTECTED]> wrote:
>
> I guess I just tired of it. I m wrong perhaps. I m tired of coding for
> sure. I
> Well you have some reason and you don't mind asking others questions, so
> we'd like to know what it is that is making you think like that!
>
Actually, no we don't.
> Is it that you're getting fed up of flash in general, or what is it
> specifically about flash 9 that irritates you?
>
This li
BTW. I dont know why I hate things. For example I hate my parents and I dont
know why.
On 2/13/07, Arseniy Shklyaev <[EMAIL PROTECTED]> wrote:
I guess I just tired of it. I m wrong perhaps. I m tired of coding for
sure. I m more designer/composer and I code my games just cuz who else do
it.
On
I guess I just tired of it. I m wrong perhaps. I m tired of coding for sure.
I m more designer/composer and I code my games just cuz who else do it.
On 2/13/07, Paul Andrews <[EMAIL PROTECTED] > wrote:
Well you have some reason and you don't mind asking others questions, so
we'd like to know wh
Well you have some reason and you don't mind asking others questions, so
we'd like to know what it is that is making you think like that!
Is it that you're getting fed up of flash in general, or what is it
specifically about flash 9 that irritates you?
If people hate something they generally know
No. No I don't. I think it's come on in leaps and bounds. Especially
for games. Here are a couple of immediate headliners which make Flash
9 so much better for game coding:
- Speed. AS3 is _fast_.
- Sensible display list/tree. No more attachMovie/removeMovieClip, no
more worrying about copying thi
Hello :)
Flash 9 ? or AS3 ?
Flash 9 is only in alpha version... We can't hate Flash9 because don't exist
lol
AS3 is the best solution for the moment to develop web & richmedia
application for me ! But we can't compare FP9, flash9 and AS3 ...
EKA+ :)
2007/2/13, Arseniy Shklyaev <[EMAIL PROTECT
Why to be specific in such a question?
I just dont like flash more and more. Intuitive feel.
Perhaps cuz I do only games...
On 2/13/07, Alias™ <[EMAIL PROTECTED]> wrote:
Could you be more specific as to why one might do so?
Curious,
Alias
On 13/02/07, Arseniy Shklyaev <[EMAIL PROTECTED]> wrot
Hey there
Does anyone know how to append variables to an .aspx URL via a clickTag
button on a banner ad?
I haven't a clue (just a designer pretending to be a coder ;)
At the moment the script I have on the button is:
on (release) {
var1 = "append=this_to_be_appended_to_URL";
getURL(clickT
Could you be more specific as to why one might do so?
Curious,
Alias
On 13/02/07, Arseniy Shklyaev <[EMAIL PROTECTED]> wrote:
Anyone hate flash 9 already?
--
-Arseniy Shklyaev
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options
-
Grant Skinner did some nice stuff with Palm Graffiti style recognition
in flash: http://www.gskinner.com/blog/archives/2005/03/gesture_recogni.html
Tom Jackson wrote:
does anyone know if theres a class out there that has anything to do
with mouse gestures like those that detect whether y
Anyone hate flash 9 already?
--
-Arseniy Shklyaev
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Brought to you by Fig Leaf Software
Premier Aut
does anyone know if theres a class out there that has anything to do
with mouse gestures like those that detect whether you've drawn the
mouse in a circle or L shapes and other things, sorry if this is a bit
vague I'm just looking for any thoughts really :)
I didn't create the new array beforse using it ... arg. nd I'm still
using get and set methods for the data. It's just to search the data in
model to determine which data should be sent to the view. Not that works.
Thanks a lot :-)
___
Flashcoders@ch
89 matches
Mail list logo