Matt,
There was a thread back in 2006 that may be helpful:
http://www.mail-archive.com/flashcoders@chattyfig.figleaf.com/msg14071.html
The code is AS2 but looks to be easily converted to AS3.
HTH
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
Keith
On Oct 18, 2011 11:03 PM, "Karl DeSaulniers" wrote:
> Just checking, but you don't happen to have save bitmap as cache set to
> your image being animated do you? As it will be cached every move.
>
> JAT
>
> Karl
>
> Sent from losPhone
>
> On
var pets:XML =
dog
snake
cat
mouse
var parentT:XMLList = pets..t.(elements().contains(cat)).@n;
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
;
my_tweens_array[2] = new
Tween(my_label,"alpha",Strong.easeOut,1,0,1,true);
*/
}
function onFadeOut(e:TweenEvent):void {
trace("\nonFadeOut::",e.currentTarget.obj);
e.currentTarget.obj.visible = false;
//my_im
> Won't the image and corresponding desc both
> be scrambled in an array since I
> want to display them together?
Christopher,
Have you considered adding each textfield as a child of each image
container?
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.ho
adComplete(e:Event):void{
_assetLib = e.target.loader.contentLoaderInfo.content as MovieClip;
trace("_assetLib =",_assetLib);
_assetLib.callInitAssets();
}
Regards,
Keith Reinfeld
Home Page: http://keithreinf
> I can't quite manage to get rid
> of the black rim around the flames.
The problem was with the palette.
<http://keithreinfeld.home.comcast.net/~keithreinfeld/Demos/Fire/Fire.html>
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld
the threshold values, but these are working.
If anyone is interested, the original source files can be found here:
<http://wonderfl.net/c/3g08>
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
__
Have you specified a fontWeight and a fontStyle?
[Embed(
source='../fonts/Garamond3/GaramThrBolItaOsF.ttf',
fontName='Garam3BoldItalicEmbedded',
fontWeight='bold',
fontStyle = 'italic',
embedAsCFF='false&
Kerry,
I suggest that you try doing the Font.registerFont(Garam3BoldItalicEmbedded)
in your 'embedded font swf'. Load the swf into your 'downloader' then simply
use it in your showText().
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
>
before but, based on the code you have shown, this
discrepancy in arguments should cause an error:
addFormatting( treatmentTimeInfo , STD_LABEL_FONT_SIZE , WHITE);
function addFormatting(tField:TextField):void{
trace("addFormatting function called");
// more code
tField.defaultTextFormat = format;
tField.embedFonts = true;
tField.setTextFormat( format );
tField.text = "some_text"
}
HTH
Regards,
Keith Rei
Okay. Flashcoders disabled my account due to excessive bounces. I am just
trying to track down the cause.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-
Am I bouncing?
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
st you use a shared font library instead.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
h.
> Always trying to learn!
Actually, you are.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
addChild(tf);
tf.rotation = 300;
}
}
}
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
You can try adding "true" for transparent as the BitmapData's 3rd parameter.
var myBitmapData:BitmapData = new BitmapData(tf.width, tf.height,true);
myBitmapData.draw(tf);
var bmp:Bitmap = new Bitmap(myBitmapData);
bmp.smoothing = true;
bmp.rotation = 300;
addChild(bmp);
On 7/6/2010 8:13 AM,
You will need to 'break apart' the text in order to use it as a mask this
way.
Select the textfield and use Ctrl+B twice. (Modify > Break Apart)
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
> -Original Message-
> Fro
The Adobe rep, with whom I conducted an online chat when I had this issue,
said policy. And wouldn't budge.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcod
de
to approve your request.
It may take a couple weeks but watch your credit card statement to see that
they have reversed the charge off your account.
Good luck!
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
> -Original Message-
>
products.
You can upgrade from an individual 'point' product to a bundled product but
not from a bundled product to an individual product.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing li
x27; product, i.e. Studio 8 to just Flash CS4. I
had to "return" Flash CS4 and upgrade to a bundled suite. (It would have
cost more to buy Flash CS4 alone!)
I suggest that you contact an Adobe rep directly to be certain what their
current policy is.
Regards,
Keith Reinfeld
Home Pag
;ve no idea whether this is a known issue or a bug or whatever.
Good luck!
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
myList.setRendererStyle("textFormat", tfList);
Works.
Are you sure tfList is a valid TextFormat?
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:fla
dren > 1){
container_left.removeChildAt(1);
}
trace(" - container_left.numChildren
=",container_left.numChildren);
}
// load the first image
doNext();
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
> -Original Mess
Don't remove container_middle at all. Instead add/remove its children:
container_middle.addChildAt(newImage, 0);
container_middle.removeChildAt(1);
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flash
Glad I could help. Good luck!
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-
> boun...@chattyfig.figleaf.com] On Behalf Of Donald Talcott
> Sent: Wedne
ation in the desired (randomized) order.
If you use the if/else block (from the code in my previous post) to manage
the index then the animations will repeat, continuously.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flash
he structure of your
file.
HTH
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> gotoAndPlay(mOnemTwo);
You need to pass just one element of the mOnemTwo array rather than the
entire array.
So:
gotoAndPlay(mOnemTwo[index]);
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flashco
> 100
There's a whole lotta shakin' goin' on...
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
)
{
shakable.main.rotation+=Math.random()*8-4;
shakable.main.x+=Math.random()*8-4;
shakable.main.y+=Math.random()*8-4;
}
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flashcoders-boun...@chattyfig.figle
> sorry - jumped the gun - I worked it out with:
>
> xmlLoader.addEventListener(Event.COMPLETE, function(e:event):viod {
> var xml:XML = new XML)e.target.data);
> function(xml);
> });
Interesting...
How are you able to removeEventListener with that syntax?
Regard
> I need to find a way to get around this can I call the function
> without e:Event?
Yes:
function (parseXML(e:Event=null) {
...
parseXML(ixml);
}
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comca
dler(e:MouseEvent):void{
e.currentTarget.getChildAt(0).backgroundColor = 0x0E778A;
// Navigate.to(e.currentTarget.linkURL);
}
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@cha
I think "Susan" has gone back to the boat with "Victor."
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.
_star = new Star();
}
}
}
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-
> boun...@chattyfig.figleaf.com] On Behalf Of Susan D
>
> What's odd to me is that all of this CPU is getting used even though
> these movie clips are completely invisible.
>
Invisible as in visible = false, or alpha = 0? Rendering alpha at anything
under 100% is quite cpu intensive.
Regards,
Keith Reinfel
thread, you do not have 'addChild(l)' anywhere. This
omission could very well be the cause of a null reference error. Try that.
If that doesn't work then I guess you have more digging to do.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
> -Origi
>
> Yes, except instead of referencing a problem with the preloader, it
> references a problem with the *.as that will load after the preloader.
>
I think you need to examine '*.as' then.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
&
);
// do stuff
}
}
}
HTH
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
s from loader
>
Steven,
I'm curious about the try-catch block. It seems unnecessary since,
presumably, this code would be called within an onLoadComplete function and
the URLStream would no longer be open. Is there a scenario where this would
not be the case?
Regards,
Keith Reinfeld
Hom
Steven,
Thanks for the backup.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-
> boun...@chattyfig.figleaf.com] On Behalf Of Steven Sacks
> Sent: Tuesday,
ankABrat(barMom, "barBrat3");
trace("barMom.numChildren =",barMom.numChildren);// 8
eightySixBrats(barMom);
trace("barMom.numChildren =",barMom.numChildren);// 0
Jason:
Doesn't storing them in an array create a set of references that
addChildAt(child:DisplayObject, index:int)
So:
this.addChildAt(barMom, 0);
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-
> boun...@chattyfig.figleaf.com]
dly when you can set
'myBevel' once and just use that?
displayObject.filters = [myBevel];
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfi
You could parent them.
Var barMom:Sprite = new Sprite();
addChild(barMom);
function createBars():void
{
for (var i:int=0; ihttp://keithreinfeld.home.comcast.net
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-
> boun...@chattyfig.figleaf.co
bf.type = BitmapFilterType.OUTER;
bf.distance = 10;
bf.highlightColor = 0xFF;
bf.shadowColor = 0x00;
bf.blurX = 20;
bf.blurY = 20;
return bf;
}
// apply Bevel filter
displayObject.filters = [myBevel];
Regards,
Keith Reinfeld
ayObject = e.currentTarget.loader.content;
Your images are unlikely to load in the same order indicated by the switch
statement.
Your images are likely to display one top of the other, making it seem like
you are only getting one.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.com
Loader object is preserved in a separate element of the array.
Don't forget to remove your listeners.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
Actions Panel:
import DesertSands;
var ds:DesertSands = new DesertSands();
addChild(ds);
or
Set DesertSands.as as the fla's Document Class.
In the fla Properties Panel Class field type:
DesertSands
HTH
Regards,
Keith Reinfeld
Home Page: http://keithreinfel
er,
y:Number):Matrix {
var m:Matrix = new Matrix();
m.b = Math.tan(x * Math.PI / 180);
m.c = Math.tan(y * Math.PI / 180);
return m;
}
}
}
Regards,
Keith Rein
g
your transform to 'target' which not only no longer has 'fontContainer' as a
child (along with its child 'coName') but has not, itself, been added to the
display list.
Your original post said that certain vars were defined outside the function.
I guess I assu
Sorry, you will also need 'coName.embedFonts = true;'
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Keith
Reinfeld
Se
Remove the line 'addChild(fontContainer);'
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Susan Day
Sent: Monday, F
else the next pageflip you load the
mouselistener will not work.
Worth knowing?
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of
Your xml is malformed.
an artist
Should be:
an artist
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Mendelsohn,
Michael
heart.name = "heart"+timer.currentCount;
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Matt S.
Sent: Friday, February
"I do and do and do for you kids, and this is the thanks I get."
- David Letterman catchphrase candidate, circa: back in the day.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders ma
(e.currentTarget.currentCount == e.currentTarget.repeatCount){
e.currentTarget.removeEventListener(TimerEvent.TIMER,
onTimer);
}
}
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders
var timer:Timer = new Timer(5000, 1000);
The second param limits the number of times it can fire.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun
humbBottom.
I hope I haven't made it too easy for you.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
Character.as (document class)
package {
import flash.events.Event;
import flash.display.
Naw... The bobblehead and googlie-eyes was something I did for fun. beno has
been trying to work out the business with the hands.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
beno,
Is this anything like what you are after?
http://keithreinfeld.home.comcast.net/~keithreinfeld/Testing/Main.html
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders
.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
The problem must be with some other code that you are not showing.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of beno -
Sent
te picking
up my garbage after I put it outside for them.
-- Keith H --
www.keith-hair.net
Steven Sacks wrote:
No, it's not true. You're misunderstanding how weak listeners work,
how anonymous functions work (you shouldn't use those anyway), and
you're also misunderstan
May = 4 not 5. January = 0, February = 1, etc.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of ACE Flash
Sent: Friday, October 30
Thanks Hans,
I'm not saying a given OP needs to respond to every post in a thread, but
this was so blatant.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders
That's the third time you've ignored me...
I'm done.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Isaac,
>> http://clientes.agenciahive.com.br/acoriana/index.php
>> the swf gets loaded but the links doesn´t work
Check the xml file(s) for proper LINK attribute values.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home
orums/actionscript/40k-byte-size-limit-on-localconnection-56395.html
...hope that leads you in the way you want to go.
-- Keith H --
www.keith-hair.net
Hans Wichman wrote:
Hi list,
as I understand it, there is a send/receive limit of 40k to the
localconnection object in actionscript2.
Mostl
trace("\nthumbFinished() called",mc.name,mc2.name);
//Remove the preloader
mc.removeChild(mc2);
}
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chat
It seems you need to place the SkinUnderAllNoFullNoCaption.swf skin file on
the server as well.
Regards,
Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net
-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com
paste the code into frame 1 of the actions layer.
/*
FrameLabelNav.fla Example
Author: Keith Reinfeld
FlashPlayer 9, AS3
Structure:
Main Timeline:
Three layers: actions
buttons
textfields
actions layer: five blank keyframes
frame 1: Action
Maybe the lettercase of a property is causing an error.
myTF.wordwrap = true; //Need to be "wordWrap"
-- Keith H --
www.keith-hair.net
Joel Stransky wrote:
I'm encountering an odd problem in as3/fp9-10 when dealing with embedded
fonts, condensed whitespace, style sheet obj
if (Number(bool) == 0) {
return false;
}
}
if (bool == "true") {
return true;
}
if (bool == "false") {
return false;
}
return false;
}
return bool;
}
-- Keith H --
www.keith-hair.net
Back when I was using AS2 and Javascript "||" operator was useful to me.
I was so glad when AS3 brought default parameters.
var value:String = foo || bar;
-- Keith H --
www.keith-hair.net
Steven Sacks wrote:
Dave, come on. Take a stand on the issue. Stop straddling the fence.
P
Thanks.
That is a better way to write the check. (Clever! you escaped from using
"null" once again LOL)
BTW I just put the "try/catch" there to demonstrate error.
-- Keith H --
www.keith-hair.net
Steven Sacks wrote:
Here's the best way to write that. No try
catch (e:Error) {
trace(e.message);
}
-- Keith H --
www.keith-hair.net
Steven Sacks wrote:
I don't understand why you would not want to write a single line of
code in the class where it would provide the most clarity, and instead
write MORE code in another class obscuring the
container.prevFrame();
//container.gotoAndStop(2);
}
if (e.target.name == "btn_next"){
trace ("next. cf: " + container.currentFrame);
//container.gotoAndStop(container.currentFrame + 1);
container.nextFrame();
//contai
trace (buttonsArray.indexOf(e.target.name));
Looking at the aboveyour "buttonsArray" is an Array containing
Objects.
And you are using the "indexOf" method looking for a String.
Take off the ".name" property and you should see a difference.
--
ermine whether DST is in effect.
Regards,
-Keith
http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Elsewhere currently in DST?
Regards,
-Keith
http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
is already written, where's the hassle?
Muzak,
> So it's not really a bug, just a (very) bad decision.
How is 'a (very) bad decision' not a bug when it impacts functionality like
this?
Regards,
-Keith
http://keithreinfeld.home.comcast.net
> -Or
trace("customTA.selectable =",customTA.selectable);
}
}
}
HTH
Regards,
-Keith
http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-
> boun...@ch
st to just use a TextField with a UIScrollBar.
Regards,
-Keith
http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> How to create img2 correctly?
The same way you created img:
duplicateMovieClipImage(mc,img2);
img2._xscale=50;
img2._yscale=50;
Regards,
-Keith
http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flashcoders-boun...@chattyfig.fi
Cor,
A recent thread on the Flexcoders list had this to say:
(see below)
What the heck, give it a try.
Regards,
-Keith
http://keithreinfeld.home.comcast.net
--- In flexcod...@yahoogroups.com, "huu...@..." wrote:
>
> This *is* possible.
>
> In your html-template
Hi Cor,
Which key presses does it not accept?
Regards,
-Keith
http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-
> boun...@chattyfig.figleaf.com] On Behalf Of Cor
> Sent: Friday, Februar
You're welcome, Gus. No problem.
Regards,
-Keith
http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-
> boun...@chattyfig.figleaf.com] On Behalf Of Gustavo Duenas LRS
> Sent: Wednesday, Fe
Gustavo,
In your for loop:
// The item's name property needs to be set
var itemNames:String = names[i];
item.name = itemNames;
Then in your rollOverHandler:
trace("event.target.name =",event.target.name);
HTH
Regards,
-Keith
http://keithreinfeld.h
Interesting, I'll have to give it a whirl. Thanks.
Regards,
-Keith
http://keithreinfeld.home.comcast.net
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-
> boun...@chattyfig.figleaf.com] On Behalf Of Matt S.
> Sent: Wedn
ing:String = "Lorem ipsom yadda yadda...";
myTextField.htmlText = tString;
myTextField.DC0.txt.text = "Z";
Regards,
-Keith
http://keithreinfeld.home.comcast.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Matt,
You need to set the img tag's id attribute:
var tString:String = "Lorem ipsom yadda yadda...";
Then it's:
myTextField.htmlText = tString;
myTextField.DC0.txt.text = "Z";
HTH
Regards,
-Keith
http://keithreinfeld.home.comcast.net
>
Joel,
Ah, yes, of course. Well that clears it up for me.
Thanks.
Regards,
-Keith
http://keithreinfeld.home.comcast.net
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:flashcoders-
> [EMAIL PROTECTED] On Behalf Of Joel Stransky
> Sent: Friday, November 1
Cor,
addChildAt() -- Tested:
Any index 0 thru numChildren (inclusive) = No RangeError.
Any index greater than numChildren = RangeError.
That's why I thought 'bug'.
Just an observation. Just trying to help.
So, Cor, howyabin?
Regards,
-Keith
http://keithreinfeld.h
Hi Cor,
Right. I know all that. The question is why doesn't
stage.addChildAt(customCursor, stage.numChildren);
trigger a RangeError?
Regards,
-Keith
http://keithreinfeld.home.comcast.net
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:flashcoder
n - 1);
still produces the desired result.
If this is a bug then 'stage.numChildren - 1' would be the safe way to go.
Regards,
-Keith
http://keithreinfeld.home.comcast.net
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:flashcoders-
> [EMAIL PROTECTED] On
1 - 100 of 248 matches
Mail list logo