A Flash Developer Resource Site

Search:

Type: Posts; User: marlopax

Page 1 of 13 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    1
    Views
    1,166

    function get_target(p,c) { if...

    function get_target(p,c) {
    if (!p.getChildByName(c) ) {
    return;
    }
    return p.getChildByName(c);
    }
    function target_path(str,sep) {
    var obj:Array=str.split(sep);
    var...
  2. Replies
    4
    Views
    4,164

    I have done a small test of exactly same format...

    I have done a small test of exactly same format that you posted, and all works for me.



    <?PHP
    function insert(){
    $connect=mysql_connect("localhost","root","")or die("mysql_error");...
  3. Replies
    4
    Views
    4,164

    I noticed some of the things that should taken...

    I noticed some of the things that should taken care of:

    1. If ID is AI, then you don't have to put any data in your $allRecords .= "('','$allLinesArray[$i][1]', the first empty string not needed....
  4. Replies
    3
    Views
    1,477

    First frame Code: stop(); function...

    First frame Code:



    stop();

    function look_up(location) {
    gotoAndStop(location);
    }
    function btnLocations(evt:MouseEvent):void {
  5. Replies
    3
    Views
    2,400

    Though I gave you the previous solution, this is...

    Though I gave you the previous solution, this is more right approach to do what you are trying:

    Document Class



    package {
    import flash.display.MovieClip;
    import flash.events.Event;...
  6. Replies
    3
    Views
    2,400

    package { import flash.display.MovieClip;...

    package {
    import flash.display.MovieClip;
    import flash.events.Event;
    import flash.text.TextField;
    import ClickLearnModel.*;
    public class Click_Learn extends MovieClip {

    public static...
  7. MX function zeroFill(str, start, end) { var...

    function zeroFill(str, start, end) {
    var fill:String = "";
    for (var i = 0; i<length(end)-length(start); i++) {
    fill += str;
    }
    return (fill);
    }

    var num = 100;
    var zero = "0";
  8. Replies
    9
    Views
    2,160

    var my_array:Array = new Array("a", "a", "a",...

    var my_array:Array = new Array("a", "a", "a", "b", "a", "a", "a", "a", "a", "v", "a", "a", "a", "a", "a", "a", "a");

    function count_by_search(data_arr:Array, str:String) {
    Array.prototype.copy =...
  9. Replies
    9
    Views
    2,160

    var my_array:Array = new...

    var my_array:Array = new Array("a","c","b","n","b","v","b","b","d","a","s","c","a","b","b","a","s","a","b","c","b","a","b","a");

    function count_by_search(data_arr:Array, str:String) {
    ...
  10. Replies
    9
    Views
    2,160

    var my_array:Array = new Array("blah", "blah",...

    var my_array:Array = new Array("blah", "blah", "blah2", "blah3", "blah2", "blah", "blah3", "blah4");

    function count_duplicate(data_arr:Array, str:String) {
    Array.prototype.copy =...
  11. var arr = 1; switch (arr) { case int(arr) :...

    var arr = 1;

    switch (arr) {
    case int(arr) :
    if (arr==1||arr==2||arr==6) {
    common();
    }
    break;
    }
  12. Replies
    8
    Views
    15,727

    read SimpleXMLElement in php.net marlopax

    read SimpleXMLElement in php.net


    marlopax
  13. This thread is a great example and also a...

    This thread is a great example and also a teaching lesson for the forum administrators.

    Its always an Original Poster of a thread creates a New Thread willing to get solutions of his/her current...
  14. Replies
    14
    Views
    26,516

    Right now in my browser it looks messy, lots of...

    Right now in my browser it looks messy, lots of useless space which should be more compact.

    This forum should have to gain a bold and compact look and feel so members can quickly navigate.

    Me...
  15. Replies
    14
    Views
    26,516

    Forum Should Looks Clean

    FlashKit has changed its look and feel but to me it should have to be more clean.

    Just a Sketch:

    http://board.flashkit.com/board/attachment.php?attachmentid=73773&d=1346685873
  16. Replies
    4
    Views
    770

    private function catCollision(event:Event):void{...

    private function catCollision(event:Event):void{
    // for (var i:int = 0; i < cats.length; i++) {
    if (cats[0].hitTestObject(cats[1])) {
    trace("meow");...
  17. Thread: I need work.

    by marlopax
    Replies
    13
    Views
    5,621

    Time to Start Your Own Business. Hopefully...

    Time to Start Your Own Business.

    Hopefully with small games or apps for online clients.



    marlopax
  18. Replies
    16
    Views
    1,481

    My opinion is don't hate languages. If you...

    My opinion is don't hate languages.

    If you stick with AS2, you can always with your supported version of Flash. Adobe will not take it way from you and give you the latest upgrade.

    BTW: You can...
  19. Welcome here AajKaal. ...

    Welcome here AajKaal.

    http://www.actionscript.org/forums/showpost.php3?p=1131813&postcount=55

    I gave you an example over there.


    marlopax
  20. Thread: I got nothing

    by marlopax
    Replies
    1
    Views
    2,627

    Hope you will have in next couple of days. ...

    Hope you will have in next couple of days.

    What about mine?



    marlopax
  21. Replies
    2
    Views
    4,233

    Welcome Techcrunch1 Good to know this truth. ...

    Welcome Techcrunch1

    Good to know this truth.

    But what it proves on your first POST?



    marlopax
  22. may I ask you a question? What is the OS of...

    may I ask you a question?

    What is the OS of your 10" Tablet?

    My suggestion is to develop native Application with Native Languages.



    marlopax
  23. Replies
    4
    Views
    15,813

    package { import flash.display.MovieClip;...

    package {
    import flash.display.MovieClip;
    import flash.events.KeyboardEvent;

    public class DocumentClass extends MovieClip {
    private var car:Car;
    public function DocumentClass() {
    //...
  24. I assume that you are in danger. If this is...

    I assume that you are in danger.

    If this is going on, you might never noticed what you did at the entry of that frame every time after visiting the link page.

    I am sure you are not aware of...
  25. AS 2 import flash.external.*; var...

    import flash.external.*;

    var isAvailable:Boolean = ExternalInterface.available;
    var txt = this.createTextField("txt", 0, 10, 10, 50, 20);
    txt.autoSize = "left";

    if (isAvailable==false) {...
Results 1 to 25 of 324
Page 1 of 13 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center