A Flash Developer Resource Site

Search:

Type: Posts; User: Endoplasmic

Page 1 of 7 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    2
    Views
    458

    Here is your problem: function...

    Here is your problem:

    function bgPrevious(event:MouseEvent):void{
    bg_mc.gotoAndStop(prevFrame);
    }

    bg_mc (which I assume is on the BUTTON and you're not targeting something that's on the...
  2. If you are loading the image from your server...

    If you are loading the image from your server (ie. you don't have access to put a crossdomain file on the other host) then you can just "redraw" the image.

    I do this now and it works great for...
  3. [AIR] Resizing Windows but keeping aspect ratio

    I've run into a bit of an issue when trying to re-size an initiated NativeWindow within my AIR app.

    The math and everything is correct, but when I'm re-szizing the window is glitching all over the...
  4. If you are using Tweener you gotta use the...

    If you are using Tweener you gotta use the onComplete parameter...

    so you example would look like this:

    Tweener.addTween( container, { y: 1200, time: 0.6, transition:"easeInExpo",...
  5. Here's where I came to tonight (not gonna lie...

    Here's where I came to tonight (not gonna lie it's pretty bananas):



    private static function checkURL(text:String):String {
    //match up [url] [url=xxxxx]
    var url:String = text;
    var...
  6. Well basically I want to be able to find case #1...

    Well basically I want to be able to find case #1 and #3 and NOT #2. That way I can wrap the <a href> stuff around the URLs like normal.

    I'm starting to wonder if regular expressions are not the...
  7. Grabbing a URL via a Regular Expression (special cases)

    After 2 nights of *almost* getting it I realized that Flash's RegExp doesn't support lookbehinds.

    So I'm wondering if anyone could help point me in the right direction that is away from this wall...
  8. Replies
    5
    Views
    1,881

    Update: JFlash only works on Windows pre-Vista....

    Update: JFlash only works on Windows pre-Vista. So Vista, Mac and Linux users are out.

    There are some others out there that I've found, but I guess we'll see what the java guy can do with them.
  9. If you don't mind using something like Arial you...

    If you don't mind using something like Arial you don't have to embed the glyphs at all. The text display isn't as nice, but depending on the content, you may not need to just through the embeding...
  10. Replies
    5
    Views
    1,881

    JFlash was something I was looking at as well....

    JFlash was something I was looking at as well. I'll have to send it to the Java guy to see if he can get a demo or something. I'm scared at how much this bad boy costs though :(

    Thanks for looking...
  11. Replies
    5
    Views
    1,881

    LOL, I *did* Google it and when I didn't find an...

    LOL, I *did* Google it and when I didn't find an answer I tried here :D

    From what I've read from your link, it looks like a Java library to create SWF files from Java (without using the Flash IDE)...
  12. Replies
    5
    Views
    1,881

    [CS3] embed flash java applet

    (I meant the title to say "Embed Flash in a Java Applet, but I was searching the boards before and it was in my clipboard)

    I'm looking for a way to present Flash content in a Java applet *without*...
  13. Figured it out. Basically what you want to do...

    Figured it out.

    Basically what you want to do is take the scale of the container dived by 1 (or 100%).

    eg.

    Box has a scaleX of 2 and a scaleY of 3.

    Circle INSIDE (or a child of) the box...
  14. [RESOLVED] showing default values for child added to a container that has been modified

    What I'm trying to is use 1 background for a bunch of different areas on my stage.

    Each background has a different width and height.

    What I'm trying to do is add a child that should appear to...
  15. Thanks nez and wvx ( I ended up using the concat...

    Thanks nez and wvx ( I ended up using the concat method ) that worked out great.
  16. Thanks for the reply, just sucks that reverse()...

    Thanks for the reply, just sucks that reverse() is destructive instead of creating a new reference. I had to write some lame loop to re-write the array backwards which seemed pretty stupid. Oh well.
  17. Replies
    10
    Views
    20,389

    Why don't you search and replace? When you want a...

    Why don't you search and replace? When you want a hard break make something like ":br:" and after flash is done parsing the xml before text output search for ":br:" and replace with "<br>".
    ...
  18. [RESOLVED] Array.reverse() is changing a constant!

    Alright maybe I'm on the short-bus here, but I thought the whole purpose of a constant variable was so that it doesn't change.

    Now I can work around the issue, but I thought it was important to...
  19. Thought I'd toss in an update. Basically the...

    Thought I'd toss in an update.

    Basically the issue was that the attached MovieClip had more than 1 frame (which I had to jump to for this particular function) and that things don't render...
  20. Just as an update in my quest to target the...

    Just as an update in my quest to target the textfield.

    I've learned that in order to be able to target anything in an "attached" MovieClip I need to declare each thing a public var.

    That's fine...
  21. I'm not to sure what you mean, but I have a class...

    I'm not to sure what you mean, but I have a class that has a function that fires which is set to trigger the opening of my dialog box.

    Like I said, I've managed to get it on the screen and to go...
  22. Accessing/Changing a TextField within a MovieClip

    Well I've been trying to figure this one out while getting on the AS3 boat.

    I've created a nicely laid out set of graphics and text fields and make it all a movieclip. I've thrown that into the...
  23. Replies
    1
    Views
    4,398

    Best bet would be to make a function and then...

    Best bet would be to make a function and then call that function from Flash.

    on on the HTML side you'd have something like

    function popWin(url){...
  24. Replies
    0
    Views
    848

    Using Anti-Aliasing with System Fonts

    I'll make this short and sweet. The only reason why I'm even writing a post was that I thought I had a small ray of hope when I was reading some Adobe docs that said that you could use the...
  25. Replies
    8
    Views
    1,603

    I'm gonna dig up this thread because I'm having...

    I'm gonna dig up this thread because I'm having the exact same problem. I need to know if there is a layer library for Flash that will encrypt/decrypt my XML socket connection over SSL. I realize...
Results 1 to 25 of 151
Page 1 of 7 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center