Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

My flash website should automatically redirect another html website once it detects mobile page

Contributor ,
Sep 23, 2015 Sep 23, 2015

this is my flash website  http://www.edgewaterpictures.com/

the website working fine in pc. no issue .

but once it detects mobile browser . it should automatically redirect

long island NY video production

TOPICS
ActionScript
286
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 23, 2015 Sep 23, 2015
LATEST

within your html's head tags

<script type="text/javascript">

            if(navigator.mimeTypes["application/x-shockwave-flash"]==undefined){

                location.replace("whatever");

            }

        </script>

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines