A Flash Developer Resource Site

Search:

Type: Posts; User: foo2

Page 1 of 8 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    375

    ... or something like this: picArr =...

    ... or something like this:



    picArr = ["picA", "picB", "picC"];
    while (picArr.length>0) {
    trace("picArrLength "+picArr.length);
    randomID = Math.round(Math.random()*(picArr.length-1));...
  2. Thread: [F8] Stage Color

    by foo2
    Replies
    3
    Views
    682

    You have to change Stage color in html. Use...

    You have to change Stage color in html.
    Use getUrl to call a javascript.

    http://www.echoecho.com/flashjavascript.htm
  3. LocalConnection.

    LocalConnection.
  4. Thread: [F8] Syntax Error

    by foo2
    Replies
    2
    Views
    1,037

    Hi, 'add' is deprecated in flash player 8 ...

    Hi,

    'add' is deprecated in flash player 8

    http://livedocs.adobe.com/flash/8/main/wwhelp/wwhimpl/js/html/wwhelp.htm?href=00001815.html
  5. Replies
    4
    Views
    921

    No, I check it out...thx

    No, I check it out...thx
  6. Replies
    4
    Views
    921

    Wengo is not an option: The woman who uses the...

    Wengo is not an option:
    The woman who uses the phone is 60 years old. I connected it to a normal phone with this box: http://www.avm.de/en/Produkte/FRITZBox/FRITZ_Box_Fon_WLAN/index.html
  7. Replies
    4
    Views
    921

    Need French Sip Provider

    I use a German-Sip-Provider, its works pretty good but the outgoing Number is German.
    I pay 9€ per Month for Euro flat. I’m searching something similar with a French Number.

    Any suggestions...
  8. ... newMenuItem.onRollOut = function() {...

    ...
    newMenuItem.onRollOut = function() {
    if (this != _root.selectedMC) {
    scale(this, 100);
    //scale back to original size
    }
    };
    newMenuItem.onRelease = function() {...
  9. An example in AS1: ...

    An example in AS1:

    http://www.webwasp.co.uk/tutorials/b07-tsunami/index.php
  10. if (myInit == false) { while (i

    if (myInit == false) {
    while (i<=endnum) {
    _root["textY"+i] = _root["text"+i]._y;
    i++;
    }
    i = startnum;
    myInit = true;
    }
  11. Replies
    1
    Views
    459

    Poll: I would loop it. for (var i:Number = 0;...

    I would loop it.



    for (var i:Number = 0; i<251; i++) {
    if (!this.hitTest(_root.somthing["object"+i])) {
    //do something
    }
    }
  12. Replies
    8
    Views
    497

    Ups.. much better, i'm old school. :)

    Ups.. much better, i'm old school. :)
  13. Replies
    8
    Views
    497

    Solution: var n:String = "00000080001";...

    Solution:


    var n:String = "00000080001";
    function noneOctal(num:String):Number {
    var temp:String;
    for (var i = 0; i<num.length; i++) {
    if (num.charAt(i) != "0") {
    temp = num.slice(i,...
  14. Replies
    8
    Views
    497

    First Number 0 = Octal First Number 0x = Hexa

    First Number 0 = Octal
    First Number 0x = Hexa
  15. Replies
    7
    Views
    531

    sorry i have edited my last post: ......

    sorry i have edited my last post:



    ...
    wait = setInterval(function () {
    clearInterval(wait);
    app();
    }, 4000);
    ...
  16. Replies
    7
    Views
    531

    You have to call a function in the script like......

    You have to call a function in the script like...



    wait = setInterval(function () {
    clearInterval(wait);
    app();
    }, 4000);
  17. Replies
    7
    Views
    531

    wait = setInterval(function () {...

    wait = setInterval(function () {
    clearInterval(wait);
    }, 4000);
  18. Replies
    1
    Views
    535

    function moveClip(target) { // float: Name of...

    function moveClip(target) {
    // float: Name of moving MovieClip
    if (target._x-float._x>0) {
    dir = 1;
    } else {
    dir = -1;
    }
    this.onEnterFrame = function() {
    b1 =...
  19. The Site works perfect in IE7 , very nice...

    The Site works perfect in IE7 , very nice pictures.
  20. Replies
    7
    Views
    513

    this.createEmptyMovieClip("tester_mc", 1); var...

    this.createEmptyMovieClip("tester_mc", 1);
    var mclListener:Object = new Object();
    mclListener.onLoadInit = function(target_mc:MovieClip) {
    trace("movie loaded");
    //SWF play at a certain...
  21. Replies
    2
    Views
    392

    var str:String = "this,that,other"; var...

    var str:String = "this,that,other";
    var arr:Array=str.split(",")
    trace(arr[1])
  22. Replies
    2
    Views
    449

    Write a function with your piece of code and call...

    Write a function with your piece of code and call it when you need it.


    function callCode() {
    trace("You call me!");
    }
    callCode();
  23. Replies
    2
    Views
    1,932

    Local-Connection

    Local-Connection
  24. Replies
    40
    Views
    4,436

    It's a nice car first published in 1998, but I...

    It's a nice car first published in 1998, but I think too expensive for what you get.
    The smart is a tiny Mercedes with a little Swatch-Design.
  25. Replies
    8
    Views
    560

    Sorry, www.flashdevelop.org.

    Sorry, www.flashdevelop.org.
Results 1 to 25 of 196
Page 1 of 8 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center