A Flash Developer Resource Site

Search:

Type: Posts; User: HowardTheDuck

Page 1 of 19 1 2 3 4

Search: Search took 0.22 seconds.

  1. Replies
    2
    Views
    711

    mysql has a strict access policy where you can...

    mysql has a strict access policy where you can set which user from which machine can access mysql (and what this user is allowed to do).

    so if admin@localdomainname isn't allowed to login you must...
  2. use images of course like they do: td {...

    use images of course like they do:

    td {
    background-image: url(http://www.ikonboard.com/forums/iB_html/non-cgi/Skin/Default/images/topcell.jpg);
    }

    BTW their code is invalid because they use...
  3. You can use the MSIE proprietary "filter:"...

    You can use the MSIE proprietary "filter:" directive to achieve this effect. This is NOT in the standard of CSS, only MSIE can display it...
    ...
  4. Replies
    5
    Views
    1,452

    I never experienced that. maybe there's some...

    I never experienced that.

    maybe there's some problem with the html code, so that the browser doesn't display it, or diplays white text on white background?

    show us your source maybe it's...
  5. Replies
    5
    Views
    1,452

    use include ("somepage.php"); instead - this will...

    use include ("somepage.php"); instead - this will definitely execute all code in somepage.php and include then into your page (at the position you call include()).

    read the documentation to see...
  6. Yep that's right. Packing everything in OOP...

    Yep that's right. Packing everything in OOP structures is impossible (or at least not maintainable) and not the idea of OOP. the optimal balance should be found, which is probably the most important...
  7. Hi well classes execute "slower" that's right....

    Hi

    well classes execute "slower" that's right. But developing object oriented code ist a lot faster and produces more readable code in the end. Keep in mind that slower doesn't mean it's 3 times...
  8. Replies
    20
    Views
    37,836

    speaking of XML and SVG i forgot to mention...

    speaking of XML and SVG i forgot to mention XSL:FO - Formatting Objects, another XML technology.

    goto http://xml.apache.org and get FOP. It will convert XSL:FO and Images to PDF - creating...
  9. Replies
    20
    Views
    37,836

    I once prepared a similar concept for a customer...

    I once prepared a similar concept for a customer using SVG. I think doing this XML based is perfect for your needs. scripting the layout engine (i don't know how powerful u need this) may get tricky...
  10. Replies
    1
    Views
    702

    i think this could work x_coords(i) =...

    i think this could work

    x_coords(i) = this["coord" + i + "x"];

    but i would send the external variables in a different way. With PHP you can create a string holdin all array values

    echo...
  11. Replies
    3
    Views
    865

    Lookup the Date object in the Actionscript...

    Lookup the Date object in the Actionscript Dictionary that came with flash - there's a whole bunch of functions that will help you with a countdown.
    Yours
    HTD
  12. Replies
    1
    Views
    665

    Hi 1. You can create a certificate on your...

    Hi

    1. You can create a certificate on your own. The only thing is that registering it online costs a lot. These online certs are more trusted (cause they are related to existing companies...) than...
  13. Replies
    2
    Views
    1,458

    it's maybe easier to url-encode like this ...

    it's maybe easier to url-encode like this

    <embed src="movie.swf?site=home.htm">

    (same goes for object) then there's a variable in the flash movie called

    root.site

    that holds the value...
  14. Replies
    2
    Views
    692

    Hi Well NN6.2 should work now... forget about...

    Hi

    Well NN6.2 should work now... forget about NN4.x

    You should program for the HTML standard and not for a specific browser. if a browser can't display valid HTML it's the browsers fault - not...
  15. Replies
    4
    Views
    735

    i believe it's this command in Actionscript: ...

    i believe it's this command in Actionscript:

    fscommand ("exec", "e:\path\to\the.exe");

    Yours
    HTD
  16. Replies
    4
    Views
    735

    hi this is, and this is an very important...

    hi
    this is, and this is an very important security issue, impossible for the browser plugin.

    Only the projector (.exe file) can start external programs, which is, as a virus has proven, also not...
  17. Hi IMHO i wouldn't fork anything -...

    Hi

    IMHO i wouldn't fork anything - multithreading is better. Cause forking has a lot overhead (starting/stopping a new process, needs more memory,...) What programming language are you going to...
  18. Replies
    11
    Views
    661

    This one should work, you used ...

    This one should work, you used <fontcolor> instead of <font color> that's probably why:



    $searchResults .= '<font color="#000000"><b>';
    $searchResults .= $scriptStyle[$count]['Word'];...
  19. Replies
    1
    Views
    723

    Hi Well you could use the ActiveX control...

    Hi

    Well you could use the ActiveX control (windows only) or the netscape plugin interface (cross-platform) by reprogramming a connector to the plugin. (take a look at the mozilla implementation)...
  20. Replies
    2
    Views
    871

    btw - winzip can also uncompress .tar.gz files -...

    btw - winzip can also uncompress .tar.gz files - so there's no need to have it as .zip file.
  21. Replies
    2
    Views
    871

    Hi I recently did research on opensource CMS...

    Hi

    I recently did research on opensource CMS systems. I found Zope - http://www.zope.org - being the most powerful (although this one's being quite more than just a cms...). I'm afraid you can't...
  22. Replies
    3
    Views
    858

    If you just want to know if the text (data,...

    If you just want to know if the text (data, variables, movie or whatever) is loaded use the

    onClipEvent (data)

    handler. this event only happens when the data is fully loaded = text-file is in....
  23. hm - i think there are more than 2 resolutions...

    hm - i think there are more than 2 resolutions out there, resulting in creating more than 2 versions then. i suggest to stick with a resolution you think is best.
    I wouldn't care about people with...
  24. Replies
    1
    Views
    698

    it's quite simple copy the exported html file...

    it's quite simple

    copy the exported html file to your server and link to the html instead of directly the swf file. the swf must also be in the same directory as the html file.

    <p><a...
  25. Replies
    1
    Views
    2,574

    Does that mean you load your full database of...

    Does that mean you load your full database of users and passwords into flash? i don't think this is good idea, for security and speed reasons. people can see passwords of the others then, download...
Results 1 to 25 of 475
Page 1 of 19 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center