A Flash Developer Resource Site

Results 1 to 10 of 10

Thread: How do I make my flash site show/work as normal html site?

  1. #1
    Member
    Join Date
    Mar 2004
    Posts
    88

    How do I make my flash site show/work as normal html site?

    Is there a way to make my Flash site show/work as normal html site?

    Flash CS4

    Thanks

  2. #2
    Registered User
    Join Date
    Mar 2013
    Posts
    2
    3o min later it will be ok

  3. #3
    Member
    Join Date
    Mar 2004
    Posts
    88
    Anybody?

  4. #4
    Dignitary rynoe's Avatar
    Join Date
    Jan 2003
    Location
    Earth
    Posts
    760
    I believe the question is too general to answer with any clarity. In what way do you want it to work that you need html and not flash?
    [SIGPIC][/SIGPIC]

  5. #5
    Member
    Join Date
    Mar 2004
    Posts
    88
    Well for example.... there's people who try to visit the site with their iPhones. And iPhones don't support flash. But if the site was to appear as html instead of flash, more devices would be able to support it.

  6. #6
    Dignitary rynoe's Avatar
    Join Date
    Jan 2003
    Location
    Earth
    Posts
    760
    Most large sites redirect to a mobile site even without flash on their main site.

    JavaScript can detect if visiting in mobile:
    PHP Code:
    function detectmob() { 
     if( 
    navigator.userAgent.match(/Android/i)
     || 
    navigator.userAgent.match(/webOS/i)
     || 
    navigator.userAgent.match(/iPhone/i)
     || 
    navigator.userAgent.match(/iPad/i)
     || 
    navigator.userAgent.match(/iPod/i)
     || 
    navigator.userAgent.match(/BlackBerry/i)
     || 
    navigator.userAgent.match(/Windows Phone/i)
     ){
        return 
    true;
      }
     else {
        return 
    false;
      }

    [SIGPIC][/SIGPIC]

  7. #7
    Member
    Join Date
    Mar 2004
    Posts
    88
    And then what? I have to make a mobile site?

  8. #8
    Dignitary rynoe's Avatar
    Join Date
    Jan 2003
    Location
    Earth
    Posts
    760
    Depending on the client and the scope of the project, I have to not only create different sites for mobile and PC, I also have to create different sites for different browser types on both.

    In the past the beauty of flash was that one plugin sees all. You can thank Apple for ending that.
    [SIGPIC][/SIGPIC]

  9. #9
    Member
    Join Date
    Mar 2004
    Posts
    88
    Yeah, it sucks when I can't view my website on my iPhone So let me get this straight. I make a Flash site, and then use the code above to redirect in case a phone is viewing?

  10. #10
    Junior Member
    Join Date
    Mar 2013
    Location
    Barcelona
    Posts
    5
    I don't worked with that, but... how about exporting the movie to HTML5 with Flash CS6?

    Is the resulting HTML simmilar enough to SWF movies? Is it well rendered in mobile (Apple) devices?

Posting Permissions

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




Click Here to Expand Forum to Full Width

HTML5 Development Center