A Flash Developer Resource Site

Search:

Type: Posts; User: e_tit

Page 1 of 8 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    221
    Views
    17,745

    Yep ;)

    Yep ;)
  2. Replies
    221
    Views
    17,745

    Deepak>deepakflash...

    Deepak>deepakflash>Fu_king>FK_me>e_tit
  3. Replies
    221
    Views
    17,745

    Obama-Disclosure-Presence of Extraterrestrial...

    Obama-Disclosure-Presence of Extraterrestrial Intelligence: http://www.disclosureproject.org/EmailUpdateOctober242009.htm

    Obama-Extraterrestrial existence and Secret Files:...
  4. Replies
    9
    Views
    5,458

    wow!!

    wow!!
  5. Flash8 You can not display strings inside a 'Var'. Give...

    You can not display strings inside a 'Var'. Give your textbox an instance name. Use this instance name to display
    _root["gameAnswerCounterA"+this.i] inside your dynamic textbox.
  6. Flash8 for(var i=1;i

    for(var i=1;i<=50;i++){
    _root.game["movieclipA"+i].onRelease = bClick;
    }

    function bClick(){
    var id=this._name.substr(10); // Here, '10' is the length of the text "movieclipA"
    _root.answerBox...
  7. Flash8 You mean like this???? var myvariable=1;...

    You mean like this????



    var myvariable=1; // You can replace 1 by any number you wish
    var yourbanana="banana"+myvariable;
    trace(yourbanana);


    By changing value of "myvariable", your...
  8. Replies
    2
    Views
    601

    Do you want the song to continue playing when you...

    Do you want the song to continue playing when you jump to another scene(from where it was in your previous scene)? If so, you can put the song in a seperate swf file and load the swf into your...
  9. Replies
    2
    Views
    525

    Initialise your array outside 'onLoad' handler

    var xmlArray=new Array();
    var myxml=new XML();
    myxml.onLoad=function(success){
    if(success){
    xmlArray.push(your_node_value); // or whatever
    }
    }
    myxml.load("xmlfile.xml");
    trace(xmlArray); //...
  10. Replies
    5
    Views
    820

    thank you so much :)

    thank you so much :)
  11. Replies
    5
    Views
    820

    Thanks taco. I went through the paypal site....

    Thanks taco. I went through the paypal site. Hmm.. So first i need to get registered

    Once i get registered, I should be able to send a variable(amount) into paypal site from flash, saying this...
  12. Flash8 Try this

    var xmlarray = new Array("dog", "cat", "bull", "car", "man");
    var yourarray = new Array("cycle", "aeroplane", "wind", "bull", "cat");
    var perCount = 0;
    for (var i = 0; i<xmlarray.length; i++) {...
  13. Replies
    5
    Views
    820

    Money to my account

    I am totally new to this stuff. I want money(say $5) to get credited to my bank account when the user fills up a form and presses 'submit' button. What all user inputs do I need other than credit...
  14. Replies
    7
    Views
    1,039

    Thanks :) I will check it out and let you know.

    Thanks :) I will check it out and let you know.
  15. Replies
    2
    Views
    1,997

    CS3 Use javascript (FlashVars)

    www.yourwebsite.com?indexvariable=hello


    <head>
    <script src="AC_RunActiveContent.js" language="javascript"></script>
    </head>
    <body>
    <script language="javascript">
    var...
  16. Replies
    7
    Views
    1,039

    Thanks for your suggestion.. I tried that, but...

    Thanks for your suggestion.. I tried that, but doesn't seem to work :(
  17. Replies
    7
    Views
    1,039

    Why doesn't flash show up fully?

    :confused::confused:
  18. Thread: 'Or' Problem

    by e_tit
    Replies
    3
    Views
    586

    MX04 if (50

    if (50<(_root.bl1p-_root.rl1p) || 50<(_root.bl2p-_root.rl2p) || 50<(_root.bl3p-_root.rl3p) || 50<(_root.bl4p-_root.rl4p) || 50<(_root.bl5p-_root.rl5p)) {
    // do something
    }
  19. Replies
    7
    Views
    1,039

    Anyone.. please??? :confused:

    Anyone.. please??? :confused:
  20. Worked :) Thank you

    Worked :)

    Thank you
  21. Replies
    7
    Views
    1,039

    Hmm.. I managed to get the swf sit on top of html...

    Hmm.. I managed to get the swf sit on top of html content(using negative value for 'top', no need of z-index), but some portion of swf (stage) is getting cut.. Why is it?

    This is the new sample...
  22. Replies
    7
    Views
    1,039

    Flash on top of html content

    I am trying to make my flash swf sit on top of other html content..

    I have my 'wmode' set to transparent and 'z-index' set to 100.. Still doesn't seem to work.

    Here is the sample
    Javascript...
  23. yeah, but how do I get the xml string echo'd back...

    yeah, but how do I get the xml string echo'd back to flash if I use LoadVars? It doesn't seem to work when I tried it before :confused:
  24. Got it working

    Thanks Taco :)


    var myxml=new XML();
    myxml.ignoreWhite = true;

    function xmlparser(theXml) {
    if (theXml.firstChild.nodeName == "noteblog_source" && theXml.firstChild.childNodes.length == 2)...
  25. That loops only once. Its just to read...

    That loops only once. Its just to read blogcontent of one particular user... I even traced the output to confirm :)

    I also tried changing the Collation from Latin to Utf-8 in my sql table

    Now...
Results 1 to 25 of 200
Page 1 of 8 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center