A Flash Developer Resource Site

Search:

Type: Posts; User: Musicman

Page 1 of 20 1 2 3 4

Search: Search took 8.21 seconds.

  1. Replies
    1
    Views
    4,189

    Hi, first of all - are you sure that the php...

    Hi,

    first of all - are you sure that the php file is called with a valid http:// address from the swf
    Can you test the php from a browser? If your movie is sending vars like name, email, message...
  2. Replies
    11
    Views
    9,359

    Hi dynamic 1a: when the banner loads, it calls...

    Hi

    dynamic 1a: when the banner loads, it calls a server for the current count ... but does not update (so if someone stares at the banner for a while, it would not change). Requires crossdomain...
  3. Replies
    5
    Views
    4,567

    it might be worth trying with an arbitrary...

    it might be worth trying with an arbitrary website url too, to find out whether it is the hosting company blocking things, or twitter. The url I tried DID return a valid http result, but the result...
  4. Replies
    5
    Views
    4,567

    Hi, what happens when you add a few test...

    Hi,

    what happens when you add a few test printouts?


    <?
    echo "starting<br>";
    $content = file_get_contents("http://....");
    echo "after reading<br>";
    echo $content;
  5. Replies
    5
    Views
    4,567

    Hi, the _current_ way of doing things in php...

    Hi,

    the _current_ way of doing things in php would be


    <?
    $content = file_get_contents("http://....");
    echo $content;
    ?>
  6. Replies
    1
    Views
    4,174

    Hi, you are using "From $email" as header when...

    Hi,

    you are using "From $email" as header when sending to the person. So in practice this would mean that somebody with an address
    like me@hotmail.com would eventually receive a message that can...
  7. Hi, it seems that the author can be reached...

    Hi,

    it seems that the author can be reached via facebook and twitter....
  8. Replies
    8
    Views
    15,714

    Hi, curl is a program that is available from...

    Hi, curl is a program that is available from haxx.se. It is a command line tool that simply grabs something from the server (in this case your xml dataset) and saves it as a file.
    So you can inspect...
  9. Replies
    8
    Views
    15,714

    Hi, to make sure it is not the browser fooling...

    Hi,

    to make sure it is not the browser fooling you, how about trying a different tool to capture the output? I am using curl quite often, and believe it is available for windows too

    BTW: when I...
  10. Replies
    1
    Views
    3,522

    Hi, I dont believe that javascript orphp are...

    Hi,

    I dont believe that javascript orphp are the ways to go. I think it is worth trying to evaluate whether loading one of those swf into a container could add the features.
    Also, there is...
  11. Hi, I just tried insert into test1 (nam)...

    Hi,

    I just tried


    insert into test1 (nam) values ('John'), ('Mark'), ('Mary');

    I guess it would not like an extra comma after the last set of values, so you should probable code
  12. Replies
    2
    Views
    4,710

    Hi, I do not have a real example for you (and...

    Hi,

    I do not have a real example for you (and it depends on which version flash/actionscript you are using),
    but even this simple project makes sense to build in stages.
    So here is the php stage...
  13. Thread: Learning PHP

    by Musicman
    Replies
    9
    Views
    13,616

    Hi Mushrambo, sorry that I cannot really help....

    Hi Mushrambo,

    sorry that I cannot really help. When I was in your situation, I started with a book (no idea what that was, but probably not in english), the php online manual and a task to solve...
  14. Hi, on the flash side the byte array supports...

    Hi,

    on the flash side the byte array supports zlib compression, so you should probably look for zlib on the java side as well
    If the bytearray is completely compressed, as3 is just
    ...
  15. Hi, in case it does not work (you are telling...

    Hi,

    in case it does not work (you are telling the browser to reload the html/php part, not the flash part), there are three options
    a) modify name of your swf - perhaps add some ?version=47 to...
  16. Replies
    4
    Views
    4,612

    Hi, in order to install something other than a...

    Hi, in order to install something other than a conventional web application on a server, you probably need to run your one box ... could be a virtual one for a cheaper solution.

    Maybe you can find...
  17. Replies
    1
    Views
    3,523

    Hi, this does not look basically wrong......

    Hi,

    this does not look basically wrong...
    First of all, there is
    $low
    etc. in your php rather than $_REQUEST['low']
    This means you either need to have a very old php version running, or one...
  18. Hi, you should probably double-check that...

    Hi,

    you should probably double-check that $session contains what you expect

    Musicman
  19. Thread: Weather Feed

    by Musicman
    Replies
    2
    Views
    3,893

    Hi, I have fp 11.1 installed, but get an...

    Hi,

    I have fp 11.1 installed, but get an "install flash" page when I try to look at the live version :(

    Musicman
  20. Replies
    5
    Views
    5,536

    Hi, this is a php error message: ...

    Hi,

    this is a php error message:


    <br />
    <font size='1'><table class='xdebug-error' dir='ltr'% 20border='1' cellspacing='0' cellp adding='1'>
    <tr><th align='l eft' bgcolor='#f57900'...
  21. Replies
    5
    Views
    5,536

    Hi, I have checked the php code, and it looks...

    Hi,

    I have checked the php code, and it looks fine. However, I think it is many years ago I had to use session_register('varname');
    Maybe you have more luck with just a sole session_start() near...
  22. Replies
    5
    Views
    5,536

    Hi, where in the flash are you actually...

    Hi,

    where in the flash are you actually talking to the server?

    Musicman
  23. Replies
    2
    Views
    3,680

    Hi, to be absolutely sure they are the same, I...

    Hi,

    to be absolutely sure they are the same, I would probably add another --- after the second variable

    Musicman
  24. Replies
    11
    Views
    6,738

    Hi, the only thing I could suggest without...

    Hi,

    the only thing I could suggest without actually seeing your site is a bit of server trickery: if the site is running on an Apache webserver, and you are allowed to use mod_rewrite, you could...
  25. Hi, you could try to get a list of received...

    Hi,

    you could try to get a list of received variables.
    If you have access to system log file,

    for($_REQUEST as $key => $val) user_error("$key => $val");
    Otherwise, create a file

    $fp =...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center