A Flash Developer Resource Site

Search:

Type: Posts; User: kaptainkory

Page 1 of 12 1 2 3 4

Search: Search took 0.26 seconds.

  1. Replies
    0
    Views
    496

    Merry Christmas ... Interactive Card

    Here is my Christmas Card for 2002. I make one for my friends each year, but thought I'd share... Enjoy.

    http://www.untilhello.com/clipart_comics/

    Kaptain
  2. Replies
    27
    Views
    1,803

    Documentation seems to indicate that...

    Documentation seems to indicate that 0.000000000000000 IS possible, but getting this EXACT number is 1 in 1,000,000,000,000,000. The number 0.999999999999999 IS possible, too, but NOT...
  3. Replies
    27
    Views
    1,803

    //get random integer of 1, 2, 3, or 4 var reps...

    //get random integer of 1, 2, 3, or 4

    var reps = 1000;

    // Math.round()
    for (i=0;i<reps;i++) {
    n = Math.round(Math.random()*5);
    switch (n) {
    case 1:
    n1++;
  4. Thread: Confused

    by kaptainkory
    Replies
    4
    Views
    408

    Just to be safe, try: ...

    Just to be safe, try:

    Number(Number(s)*Number(t));

    :)
  5. Replies
    4
    Views
    449

    I don't think this is a Flash issue. I think you...

    I don't think this is a Flash issue. I think you just mistyped the path or something. Post your getURL() function AS YOU ARE USING IT. And also post the FULL path to the file you want to open. ...
  6. Replies
    13
    Views
    704

    Copy and paste your PHP script...let us take a...

    Copy and paste your PHP script...let us take a look at was is in error (or at least in "notice").
  7. Replies
    7
    Views
    622

    MovieClip.loadMovie();

    MovieClip.loadMovie();
  8. Replies
    1
    Views
    366

    You can load image PATHS from a text file, but...

    You can load image PATHS from a text file, but NOT images themselves.

    Read about:

    loadVariablesNum() and loadMovie()
  9. Replies
    13
    Views
    704

    Forget the Flash movie for a minute... Just...

    Forget the Flash movie for a minute...

    Just type the address to the script in the browser address place and click "go":
    ...
  10. Thread: Confused

    by kaptainkory
    Replies
    4
    Views
    408

    This kind of error is almost always the result of...

    This kind of error is almost always the result of mistyping by Flash...and no, I don't mean mistyping on a typewriter...hehehe...

    Flash does some guessing about what type of variable you INTEND:
    ...
  11. Basically, you'll need some kind of middle-ware...

    Basically, you'll need some kind of middle-ware to talk between Flash and MySQL. PHP works great, but if your hero is Bill Gates, you could use ASP, I suppose...

    Reading is the easier part:
    1)...
  12. Replies
    13
    Views
    704

    getURL() loadMovieNum()

    getURL()
    loadMovieNum()
  13. Replies
    10
    Views
    1,433

    Sending variables is no problem, but the return...

    Sending variables is no problem, but the return output from the guestbook will be all but impossible to parse. It really needs to look something like this:
    ...
  14. Replies
    11
    Views
    713

    Kind of a mute point now...here is the corrected...

    Kind of a mute point now...here is the corrected code:



    // Test...Load Array and Variables
    inputFields="Name!Age!Sex";
    inputData="Dan!27!m~Fred!30!m~Bob!39!m";

    field =...
  15. Replies
    11
    Views
    713

    mmm...okay...here goes.... I think your code...

    mmm...okay...here goes....

    I think your code is slightly overcomplicated. This is what I used for testing purposes with the desired results:



    // Test...Load Array and Variables...
  16. Replies
    11
    Views
    713

    These kinds of arrays are best built ALONG WITH...

    These kinds of arrays are best built ALONG WITH the split/deliminator dealings... Let us see what you have so far for the splitting and we'll help you get the arrays in there!
  17. Replies
    1
    Views
    391

    Unfortunately, Javascript and Flash communication...

    Unfortunately, Javascript and Flash communication doesn't work as seemlessly across platforms and browsers as one would like.

    These are *mostly* cross-everything solutions (for probably 5+...
  18. Replies
    11
    Views
    713

    I'm not really understanding why you need...

    I'm not really understanding why you need "field", "data", AND "record". Wouldn't just "record" do what you need?



    data_total = 3;

    record = new Array();

    for(var i=0; i<data_total; i++) {...
  19. Replies
    10
    Views
    1,433

    With all due respect, this is more hassle than...

    With all due respect, this is more hassle than its worth. Any webserver worth anything nowadays lets you run PHP. Drop the sorry outfit you're with and get a real web server! You'll regret not...
  20. Replies
    5
    Views
    517

    I'm thinking you can't directly input variables...

    I'm thinking you can't directly input variables into an array from an external file. You'll probably have to try something like this (untested):

    &topics_0=hello1&topics_1=hello2&topics_2=hello3
    ...
  21. http://www.kaptainkorysworld.com/world_tour/tutori...

    http://www.kaptainkorysworld.com/world_tour/tutorials/search_and_replace.html
  22. Replies
    4
    Views
    602

    Pick your favorite PHP, Perl, or ASP counter...

    Pick your favorite PHP, Perl, or ASP counter program from http://www.hotscripts.com .

    Install the script and thoroughly test it FIRST with HTML.

    Now, go into the code of the script and find the...
  23. Replies
    8
    Views
    817

    I always like to throw in a dynamic text box...

    I always like to throw in a dynamic text box right on top of everything else and call it "debug". This makes it easy to tell when variables are changing.


    _root.debug =...
  24. Replies
    8
    Views
    817

    Actually, there is a lot you can do, BUT Flash is...

    Actually, there is a lot you can do, BUT Flash is very little more *secure* than HTML...so don't put any passwords into your ActionScript and such.

    If put together correctly, Flash, PHP, and MySQL...
  25. Replies
    8
    Views
    817

    As far I know (and I've worked quite a bit with...

    As far I know (and I've worked quite a bit with Flash and PHP), you can call PHP SCRIPTS from Flash BUT NOT functions inside a PHP SCRIPT.

    You can fudge this a bit by indicating to the script...
Results 1 to 25 of 294
Page 1 of 12 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center