A Flash Developer Resource Site

Search:

Type: Posts; User: ddlam

Page 1 of 7 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    2,806

    Photo of Russia Playground

    http://na.cx/pWa
    http://board.flashkit.com/board/
    http://board.flashkit.com/board/
    http://na.cx/pWd
    http://na.cx/pWe

    that's why Russia girl looks lovely
    http://na.cx/pWG
  2. AS 2 fixed on (rollOver) { mv.gotoAndPlay(2); }...

    fixed
    on (rollOver) {
    mv.gotoAndPlay(2);
    }
    on (rollOut) {
    mv.gotoAndStop(1);
    }
  3. AS 2 Simple RollOver fail to work before clicked once

    Hi, I have a simple rollover failed. Let say I have a movie clip "mv"

    mv, frame 1, stop();
    mv, frame 10, gotoAndPlay(2);

    and I have and button "btn", I right click and press F9 and added the...
  4. Replies
    3
    Views
    454

    Ctrl+SHIFT+Enter

    Ctrl+SHIFT+Enter
  5. Thread: LoadVars problem

    by ddlam
    Replies
    2
    Views
    418

    try: var get_lv:LoadVars = new LoadVars();...

    try:
    var get_lv:LoadVars = new LoadVars();
    get_lv.load("http://localhost/testing.php");
    get_lv.onLoad = function(success){
    trace(get_lv.ip);
    }
  6. Replies
    5
    Views
    525

    http://www.flashkit.com/board/showthread.php?t=641...

    http://www.flashkit.com/board/showthread.php?t=641450
  7. Replies
    2
    Views
    5,188

    here is a interesting approach: Open...

    here is a interesting approach:

    Open
    C:\Program Files\Macromedia\Flash MX 2004\en\Configuration\ComponentFLA\HaloTheme.fla

    Drag the scrollbar folder to your new FLA and edit the theme
  8. Replies
    2
    Views
    513

    Wow, that's cool. It have read it and learnt so...

    Wow, that's cool. It have read it and learnt so much.
  9. Replies
    2
    Views
    513

    Create own component

    Hi :doughnut: I want to new a flash component and make it long-lasting.
    That means let the guest downloading it from my web site.

    However, it is a big challenge for me. I know nothing about...
  10. Replies
    1
    Views
    294

    this case may be caused by the script running...

    this case may be caused by the script running before getting the txt
    try:
    onClipEvent(data){
    trace(yourField.maxscroll());
    }
  11. Replies
    2
    Views
    302

    you can't use number as instance name. try to add...

    you can't use number as instance name. try to add a word befor the variable. for exp. "word"+(i++)
  12. i is an instance name You are moving...

    i is an instance name
    You are moving _root["pad"+padNo] but not move i individually.
    All MC in _root["pad"+padNo] will be also moved.
  13. Replies
    8
    Views
    483

    prevScene() is only for the timeline on scene in...

    prevScene() is only for the timeline on scene in MX
  14. _root["p"+p].attachMovie("a", i, i)Where does it actually loaded?

    padNo = 1;
    i = 1;
    _root.createEmptyMovieClip("pad"+padNo, 0);
    _root["pad"+padNo].attachMovie("abc", i, i);
    _root["pad"+padNo].i._x = 400;//wrong location _root["pad"+padNo].i


    Hi, I wrote...
  15. Replies
    1
    Views
    333

    Try: if(this.hitTest(_root["ball"+x])){ }...

    Try:


    if(this.hitTest(_root["ball"+x])){
    }
    //OR
    if(_root["ball"+x].hitTest(this)){
    }
  16. Replies
    3
    Views
    391

    it sounds like flash player error:yarr: if you...

    it sounds like flash player error:yarr:
    if you use integer only, change
    if(neo1<12)
    to
    if(neo1<=11)
  17. Replies
    1
    Views
    377

    HTML experts please come and see htmlText

    quoted from the AS dictionary - Preserving rich text formatting

    The following HTML tags are supported in text fields: <A>, <B>, <FONT COLOR>, <FONT FACE>, <FONT SIZE>, <I>, <P>, and <U>.

    The...
  18. Replies
    1
    Views
    495

    this error come up becasue I have placed the file...

    this error come up becasue I have placed the file in "®Ã*_±"
  19. Replies
    1
    Views
    495

    window projector(*.exe) open TXT

    Hi,
    I have a txt file and *.exe file place in same folder.
    but there are path error when I use getURL() to open the file.
    How to open txt in projector?
  20. Replies
    2
    Views
    418

    thank a lot but I want to simplify the scripts by...

    thank a lot but I want to simplify the scripts by fewer words.
    Does there have any way to simplify the above scripts to little words?
  21. Replies
    2
    Views
    418

    Simplify the scripts

    Does there have any way to simplify the scripts below?


    if(Key.getCode()==Key.DOWN){
    this._y+=a;
    action="1";
    }
    if(Key.getCode()==Key.UP){
    this._y-=a;
    action="13";
  22. Replies
    2
    Views
    304

    Load txt data without signing var=

    Hi, I have a txt file and have written below:


    a|b|c|d
    It will be splited by "|" and then put into array.

    Can I achieve them in client side?
    If yes, which language can I use, action script,...
  23. Thread: Flash+java

    by ddlam
    Replies
    9
    Views
    728

    I didn't try calling js through fscommand. but...

    I didn't try calling js through fscommand.
    but here are some metarial may help:
    Usage 2: To use the fscommand action to send a message to a scripting language such as JavaScript in a web browser,...
  24. Thread: multiline

    by ddlam
    Replies
    3
    Views
    327

    yeah~ alright now! thanks you two very much

    yeah~
    alright now!
    thanks you two very much
  25. Thread: multiline

    by ddlam
    Replies
    3
    Views
    327

    multiline

    How can I set multiline with a textfield by using AS?
    I type below but it is sigle line as before.


    _root.createEmptyMovieClip("newMC", 1);
    with (_root.newMC) {
    createTextField("character",...
Results 1 to 25 of 156
Page 1 of 7 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center