Math functions in server script

Ask a Question related to Macromedia Flash Flashcom, Design and Development.

  1. #1

    Default Math functions in server script

    hello, Does anything know how to use round or trunc functions into a server
    script? If you put it, the script does not run



    Dpto. Programacion Prodigia Consultores Guest

  2. Similar Questions and Discussions

    1. Math functions in form fields - how?
      I have form fields that I need to perform simple math functions on. Addition and multiplication are no problem, they are listed in the drop down list...
    2. Math functions
      I need animate a movieclip doing a specific path; everywhere it apear, it'll go to center of the window. I write some functions using linear...
    3. Math::GMP tests and Crypt::Random fail on Compaq (Math::Pari related ??)
      Hi, I've been compiling Math::GMP for different OS's in order to use Net::SFTP and I have successfully compiled and used it for Solaris,...
    4. [PHP] math functions?
      Perfect! Thanks! On Tue, 26 Aug 2003, CPT John W. Holmes wrote:
    5. math functions?
      I am having trouble finding math functions on php.net. I am also getting "page not found" errors when trying to search. Basically, I'm looking...
  3. #2

    Default Re: Math functions in server script

    In my case I just use a LoadVars call to a php page to do string/numerical
    processing that is outwith what is available in asc.
    I have apache run on a different port so it doesn't interfere with port 80,
    and then call e.g
    my_lv.load("http://127.0.0.1/asc_extend.php?func=somefunction&val=1234
    The php script then returns the neccessary data. There is of course a time
    overhead in returning data this way, so this way of doing things isn't useable
    if instantaneous calculation is required.

    mike hype Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139