The Flash Challenge

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • akir
    New Member
    • Sep 2007
    • 1

    The Flash Challenge

    Before I begin, I would like to highlight that I'm a fairly novice Flash User. I've recently used the website building tool many of you may of heard of called Cabanova. I decided that I wanted to move the entire Flash Workings from this site into another webpage, where it would act as a simple Flash Movie. To achieve this, I :

    used Flash Capture programms - they failed and resulted in a loop of the loading bar screen

    Searched through internet and temporary files, where only individual components could be located

    Searched through the view source code, only to find nothing of use or that I could identifiy

    Is there any other way I could get the entire movie, and move it onto another sever??

    If your interested (but your probably not, so I don't wanna waste your time but wiill anyway) this is for a school project for English in which we are to make a website for a superhero we make up -so don't laugh please-. Btw - the website adress is:

    hero-quest-twilight.cabano va.com

    Please don't spend time reading it - it's embarrasing and weird


    The password for the site is:

    English (this is with a capital "e")



    Okok, thanks for your help - and goodluck with solving my problem - bye!
  • Kelicula
    Recognized Expert New Member
    • Jul 2007
    • 176

    #2
    What's happening is whoever created this page uses javascript to detect weather the "clients" browser, and operating system are advanced enough to display a flash object. You should create an html page put it in the same directory as thatother page on the server, and put this between it's body tags:
    Code:
    <script type="text/javascript">
    			<!--
    			
    			o = new Object();
    			if(navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) o.fscEnabled = 1;
    			o.pageIndex = '1';
    			o.topTimestamp = (new Date).getTime();
    			
    			o.isIntro = 0;
    			o.publishID = '1188113642';
    			
    			showFlash('index.swf?b=1188113642', '840', '600', o, true);
    			
    			//-->
    			</script>
    I assume you know how to create an HTML page. If you don't I can't tell you.
    In keeping with the spirit of this forum, you are encouraged to learn.

    Just type learn html, or html tutorial in Google.

    If the above doesn't work (I just copied and pasted from the source code) then just do away with the browser check and make a regular flash object. Here is the crucial line that contains the flash file and attributes:

    Code:
    showFlash('index.swf?b=1188113642', '840', '600', o, true);
    Have fun!!

    Comment

    Working...