[Flashcoders] Problem with Inline Images and Href in a Text Field

2009-09-02 Thread Ashim D'Silva
Hi, AS2 problem from an old site I've had to edit. Having trouble with inline images used as HTML hyperlinks in flash. A snipet of the HTML looks like this: p a href=asfunction:_root.showLightBox img src=gallery/t2.jpg align=left / /a font size=14Person's Name/fontbrLorem ipsum dolor sit amet,

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-02 Thread Ian Thomas
I'm sorry, Steven, that's just not true. Test out the following code: package { public class A { public function A() { trace(A Constructor); } } } package { public class B extends A {

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-02 Thread Muzak
Meanwhile, I would like to say that, I am not writing anything in my FLA. (I guess thats the best practice, is it correct?) Yup, that's correct. So, ONlything I do in the FLA is declare ClassA as my document root class. Could that be the problem? Nope. I modified ClassA and made it the

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-02 Thread Steven Sacks
You're right. I'm wrong. Sajid is doing something else incorrectly. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Fullscreen wierdness

2009-09-02 Thread Joe Cutting
Hello, I'm having some problems with full screen mode. I've got a game which really needs to be played in fullscreen mode. So users have to press a button at the start which sets fullscreen mode. They can close it at any time by pressing a close button which makes it smaller again but

Re: [Flashcoders] Fullscreen wierdness

2009-09-02 Thread Ian Thomas
You're definitely doing something peculiar - in Chrome, after I click to go fullscreen on your movie, nothing is clickable at all! I have to press Esc to get out of full screen. In Firefox it seems to work okay. Looking at the HTML source, you've got some very complicated Flash and browser

[Flashcoders] fullscreen weirdness

2009-09-02 Thread Joe Cutting
You're definitely doing something peculiar - in Chrome, after I click to go fullscreen on your movie, nothing is clickable at all! I have to press Esc to get out of full screen. In Firefox it seems to work okay. I'd switch to using SWFObject for embedding your movie in HTML; that's what I use,

Re: [Flashcoders] Can I display slanted quotes in a textField?

2009-09-02 Thread Paul Freedman
Karl - ... somehow. Eg: quote; http://www.w3schools.com/TAGS/ref_entities.asp That did it! quote; turned out to be in HTML Other Entities, way down the list, past the Math Symbols and the Greek Symbols: #8216; #8217; #8220; #8221;. I'd never have found it without the w3schools link, there.

[Flashcoders] smoothly rotating a dynamic loaded image with AS2

2009-09-02 Thread Isaac Alves
Hello list, i-d like to smoothly rotate an image loaded in an as2 swf file. no tween, just rotate and leave it there. it doesn´t work. i´ve tried lot of things and no success. actually i-m used to as2, i don´t understand as2 very well. here is the code:

[Flashcoders] making a right to left horizontal content scroller

2009-09-02 Thread thomas horner
ok this is more of a maths issue, which i'm bloody useless at! i have a horizontal left to right scroller and basically want it to do the opposite and scroll from right to left, i have positioned my content holder at stage.stageWidth and am position my content in the loop by subtracting.

Re: [Flashcoders] making a right to left horizontal content scroller

2009-09-02 Thread Steven Sacks
Invert your equation. If your scrollbar has a percentage from 0-1 where 0 is left and 1 is right, then do this: content.x = content.width * (1 - scrollbar.perc); This is just for example. Obviously you would need to account for content not starting at 0. But you get the idea. It's pretty

[Flashcoders] Security.showSettings() freak-out : solved

2009-09-02 Thread Alan Watts
It turns out that setting a low '-default-script-limits' in mxmlc was causing the freaking out. Strange. Alan ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Security.showSettings() freak-out

2009-09-02 Thread Alan Watts
Hi all, I'm building an audio recording app and the Security settings window is acting totally bizarre. http://podaroo.org/record/ This swf is a direct build of the SecurityExample from the SecurityPanel class documentation in the AS3/Flex Language Reference. I downloaded the latest