A Flash Developer Resource Site

Search:

Type: Posts; User: bobajobrob

Page 1 of 16 1 2 3 4

Search: Search took 0.17 seconds.

  1. Is this what you are trying to do .. ?

    Is this what you are trying to do .. ?



    <%
    Dim s : s = oRS("item")
    If len(s) > 0 Then
    'content in the record
    Else
    'no content in the record
  2. Replies
    1
    Views
    700

    try using javascript: ...

    try using javascript:


    <map name="Map2">
    <area shape="rect" coords="74,133,249,176" href="javascript:window.open('architectenbestand.html','','width=100,height=100');void(0);">
    </map>


    when...
  3. Replies
    1
    Views
    986

    Here's 2 simple workarounds for you: #1 ...

    Here's 2 simple workarounds for you:

    #1


    <form style="margin:0px">
    <!-- the form -->
    </form>
  4. Replies
    9
    Views
    2,359

    Sams 'PHP and MySql web development' is another...

    Sams 'PHP and MySql web development' is another good one, although it tries to be both a tutorial and a reference in places. Some would argue that's a bad thing but I think they pulled it off well. I...
  5. Replies
    1
    Views
    2,370

    Hello It's normal practice to use a counter...

    Hello

    It's normal practice to use a counter variable along with the MOD (remainer of division) function. eg.




    Dim iCount, iBreak
    iBreak = 5
  6. Replies
    1
    Views
    978

    Hi, There's a built in javascript method...

    Hi,

    There's a built in javascript method called parseFloat to convert other types to floats. It's probably more robust.




    var s = "3.1412";
    var f = parseInt(s);
    if(f == "NaN")
  7. Replies
    1
    Views
    2,073

    Hi, I don't know any way to wrap that because...

    Hi,

    I don't know any way to wrap that because it contains no white space. The workaround I would use is like this:



    <DIV style="overflow:hidden">

    lots of ************* s
  8. Replies
    3
    Views
    780

    I had the same problem when I was at uni - I...

    I had the same problem when I was at uni - I remember reading it was a bug in flash 5. Have a look at this : http://www.macromedia.com/support/flash/ts/documents/cantdrag.htm

    it seems to offer a...
  9. Yes, it's possible, but the only way to do it is...

    Yes, it's possible, but the only way to do it is to use javascript. Have a look at: http://www.moock.org/webdesign/flash/fscommand/#2directions
  10. Replies
    9
    Views
    3,614

    Yes you're quite right - I quite often miss the...

    Yes you're quite right - I quite often miss the point.

    I've got mandrake on my laptop but I never got round to testing the site in question :P I suppose it's quite reasonable to have platform...
  11. Java is probably the easiest and most robust way...

    Java is probably the easiest and most robust way to develop a chat server application, depending on your outlook, but PHP and PERL have socket functionality that you can use and will be adequate for...
  12. Replies
    9
    Views
    3,614

    Kickbin, If you stick to web standards there...

    Kickbin,

    If you stick to web standards there shouldn't be any problems. IE isn't available for Linux so people using Linux use Konqueror, Opera or Mozilla. Of these, Opera and Mozilla are...
  13. Replies
    3
    Views
    1,791

    Try this: function...

    Try this:




    function incrementTxtField(nameOfTxtField)
    {
    var value;
    value = parseInt(document[nameOfTxtField].value);
    if(value == 'NaN')
  14. Replies
    3
    Views
    630

    There's nothing you can do without the .fla - an...

    There's nothing you can do without the .fla - an EXE is platform dependent machine code.
  15. Replies
    48
    Views
    7,302

    If you can afford a Mac, get one with OSX -...

    If you can afford a Mac, get one with OSX - anything prior is second rate (memory leaks, crashes etc.). OSX is a beautiful work of art that is based on unix, the de-facto multi-tasking OS.

    If you...
  16. Replies
    125
    Views
    8,802

    Small sites that talk about "we" when it's quite...

    Small sites that talk about "we" when it's quite obvious there's only one sad git involved.
  17. Your ftp client should have a command called...

    Your ftp client should have a command called CHMOD. With cuteFTP, it is under commands -> file actions.
  18. Replies
    4
    Views
    962

    a very simple method is like this: ...

    a very simple method is like this:

    window.onblur = window.focus();
  19. if you want to communicate between two movies in...

    if you want to communicate between two movies in different frames, you can use javascript as the go-between. You need to alter your html code to include 'id' and 'name' attributes in the object (for...
  20. getURL('javascript:window.open("page.html","","wid...

    getURL('javascript:window.open("page.html","","width=400,height=300,noresize=1")');
  21. Replies
    2
    Views
    526

    It won't work that way because the 'stage' is not...

    It won't work that way because the 'stage' is not redrawn until all actions have finished.

    It could be an idea to create a 'process clip' that will perform animation on enter/exitframe events.
  22. Replies
    11
    Views
    2,454

    max is used for many things - mostly video...

    max is used for many things - mostly video animation and game design. Take shrek the movie, that was made using maya, a program similar to max. The characters from quake 3 probably started out in...
  23. Replies
    2
    Views
    775

    I know i've read something somewhere, but i can't...

    I know i've read something somewhere, but i can't remember where. Have you tried doing a full search here and checking the 'scripting and backend' forum?
  24. Replies
    10
    Views
    708

    try:

    try:

    <a href="asfunction:_level0.gotoAndPlay,10">go to frame 10</a>

    (just in case your text box is inside a movie clip)
  25. There's no fast and easy way to do this in flash....

    There's no fast and easy way to do this in flash. If you were to use director, there are xtras available to grab the grab the stage and save it to a file (not sure if they work with shockwave...
Results 1 to 25 of 392
Page 1 of 16 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center