A Flash Developer Resource Site

Search:

Type: Posts; User: rdoyle720

Page 1 of 20 1 2 3 4

Search: Search took 0.60 seconds.

  1. Replies
    2
    Views
    1,734

    The best way to get the smallest file size is to...

    The best way to get the smallest file size is to build it in Flash itself. Unless there's something you're doing that REQUIRES After Effects, it would be best to rebuild in Flash.
  2. Replies
    1
    Views
    1,082

    There aren't types of javascript. There are other...

    There aren't types of javascript. There are other types of script which can be compiled to javascript (both Microsoft and Google have their own versions), and there are Javascript frameworks that can...
  3. Replies
    1
    Views
    1,396

    CS3 Depends on what exactly you want to do, who your...

    Depends on what exactly you want to do, who your audience is, etc.

    Generally speaking, if you want to show something on the web, it's not a good idea to use Flash. You're locking out a lot of...
  4. Replies
    2
    Views
    1,802

    And the problem you're having is...? Is the file...

    And the problem you're having is...? Is the file not loading, or...?
  5. Replies
    3
    Views
    1,441

    Most browsers support the new tags just fine. IE8...

    Most browsers support the new tags just fine. IE8 and below have issues styling them, which you can cure with the html5 shiv: http://code.google.com/p/html5shiv/

    Here's a good source for finding...
  6. https://www.google.com/search?q=flash+on+top

    https://www.google.com/search?q=flash+on+top
  7. Replies
    3
    Views
    1,852

    Well there's a lot here, but I can give you a...

    Well there's a lot here, but I can give you a couple of tips.

    First, avoid repeating yourself in the CSS. For example, in your web.css sheet you tell the font to be Trebuchet MS 8 times. Define...
  8. Replies
    3
    Views
    1,852

    Personally I've always used media queries and...

    Personally I've always used media queries and they've worked just fine. Not sure exactly what you mean by "the viewport method". If you're running into issues, I'd suggest you giving some specifics...
  9. Replies
    1
    Views
    865

    You'll need to share more detail, there's a lot...

    You'll need to share more detail, there's a lot to something like this. Surely you're not asking someone to write down every single step? What have you tried? Where are you stuck?

    At the very...
  10. What exactly are you trying to accomplish that...

    What exactly are you trying to accomplish that you think dynamically changing publish settings is the solution?
  11. Replies
    1
    Views
    1,336

    You can't. Anything that's being loaded in a page...

    You can't. Anything that's being loaded in a page will stop if you leave the page.

    I don't follow why you're trying to preload a .swf that's only fonts?
  12. Replies
    2
    Views
    1,817

    Generally speaking it's a good practice to use...

    Generally speaking it's a good practice to use CSS and media queries to reformat a single page to display differently on different devices.

    Detecting screen size isn't particular difficult,...
  13. Replies
    3
    Views
    927

    I'm missing the part that tells it to actually go...

    I'm missing the part that tells it to actually go anywhere. Calling play() will just make the timeline play through...Do you mean to have something like gotoAndPlay(navTo)?
  14. Replies
    4
    Views
    1,784

    It really doesn't matter. XHTML has more strict...

    It really doesn't matter. XHTML has more strict rules for code compliance. HTML5 throws away most of those rules and lets you code as you like. Whatever you do, make use of an HTML validator to make...
  15. Replies
    15
    Views
    3,964

    I'm afraid you're barking up the wrong tree, my...

    I'm afraid you're barking up the wrong tree, my friend. The momentum in the industry is away from Flash, not toward it. Even more strongly now that Adobe has stopped developing the mobile version of...
  16. Replies
    15
    Views
    3,964

    True, some Android devices do have Flash. The...

    True, some Android devices do have Flash. The problem being of course that Adobe has stopped developing the mobile version of the plugin. (Not to mention cutting back their Linux development,...
  17. Thread: FLV on iPad

    by rdoyle720
    Replies
    4
    Views
    16,233

    iPad only plays H.264 encoded video (usually...

    iPad only plays H.264 encoded video (usually .mp4). The Adobe Media Encoder can generate those for you.
  18. Replies
    1
    Views
    961

    The first thing you might ask yourself is how...

    The first thing you might ask yourself is how many of the sites you visit every day use frames? Not many? Probably a reason for that, wouldn't you think?

    Frames are officially deprecated, meaning...
  19. Replies
    3
    Views
    3,911

    And changing LIMIT 1 to LIMIT 5 doesn't do it?

    And changing LIMIT 1 to LIMIT 5 doesn't do it?
  20. Replies
    6
    Views
    1,221

    var modal_dim="dialogWidth:"+winWidth+"px;...

    var modal_dim="dialogWidth:"+winWidth+"px; dialogHeight:"+winHeight+"px; center:yes";
  21. Replies
    6
    Views
    1,221

    function createModal() { var...

    function createModal()
    {
    var url_source="https://www.facebook.com/login.php"; /* define if you want a page popped into it */
    var winWidth=screen.width*.5;
    var winHeight=screen.height*.5;
    var...
  22. If you're willing to only support newer browsers,...

    If you're willing to only support newer browsers, you can experiment with the background-size attribute:



    HTML:
    <div class="background"></div>
    CSS:
    HTML, BODY {margin: 0; padding: 0; width:...
  23. Replies
    6
    Views
    1,221

    I'd suggest you avoid working with frames to...

    I'd suggest you avoid working with frames to teach yourself. They're deprecated, and have a host of usability issues. I'd also suggest avoiding opening new windows. New windows also have usability...
  24. I'm not sure I'm following the problem, the...

    I'm not sure I'm following the problem, the gradient seems to fill the entire background. What do you want to do differently?
  25. Do you want it to stretch, or do you want it to...

    Do you want it to stretch, or do you want it to repeat? Only newer browsers give you the option to stretch it, though you could fake it with a workaround.

    If you want it to repeat, that'll happen...
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