Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by paradisewolf

  1. paradisewolf

    How To MUTE A Sound Embedded In A Timeline Layer

    I am developing a flash web site using ACTIONSCRIPT 3. There is a menu of small icons that, when one of them is clicked, the program loads the correspondent SWF into a loader and then presents it in a “virtual screen” ( a rectangular area ) in the web page. The problem is that some of these...
  2. paradisewolf

    Problem found on creating elements dynamically in a “for” loop

    In the below code, the created link element (ap) correctly displays the right customer number in the instruction “ap.href="javascript:CallCustomer("+i+")";” but it displays the wrong icon number in the instruction “ap.onmouseover= function(){ t.innerHTML = "icon " + i};”. It always shows the...
  3. paradisewolf

    Animation works on IE but not on Firefox

    I made a scale animation that works on IE 7 but it does not work on Firefox 3. The button toggles between scaling up and down. In Firefox , it shows a weird behavior: it starts the loop for scaling up but it is quickly interrupted and return to its original scale. What should I change in the...
  4. paradisewolf

    Can I control a SWF (AS3) behavior through external Javascript ?

    I just found out that Firefox does not allow to run a code in a local sandbox. Thank you anyway.
  5. paradisewolf

    Can I control a SWF (AS3) behavior through external Javascript ?

    I used the code example that uses the ExternalInterface class from this site: http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/external/ExternalInterface.html It only works on IE 7.0 when 1) I set value to “always” in <param name="allowScriptAccess" value="always" /> in the...
  6. paradisewolf

    Can I control a SWF (AS3) behavior through external Javascript ?

    Good link ! Thank you, oldnewbie.
  7. paradisewolf

    Can I control a SWF (AS3) behavior through external Javascript ?

    I am planning to build a web page where external buttons using javascript commands like this <a onClick="javascript:Load_SWF( 1 ) …>< img … > and their code would instruct a SWF parent object ( embedded in the html code ) to load the desired interactive SWF child ( and replace a previous SWF...
  8. paradisewolf

    Code for Percentage Display of Loading Own Content

    I just gave up, kenneth. Instead, I am going to create a separate swf for the main content and then use a Loader to load it into a preloader. Thank you anyway.
  9. paradisewolf

    What Are All The Current Uses of Flash ?

    I tried to figure out what the current potential uses of flash are. So here is my list: a) Ad banners for Web sites. b) User interfaces for Web sites. c) Games for Web sites. d) Artistic interfaces for Web sites. e) Media ( video, music, slide show, etc ) presentations for Web sites. f)...
  10. paradisewolf

    Code for Percentage Display of Loading Own Content

    I already have a code that goes embedded in first frame of a fla file and it works. The fla has two scenes, one called “preloader” and the other just “scene”. In the “preloader” scene I have this code in the first frame: import flash.events.ProgressEvent; function LoadingProgress(e...
  11. paradisewolf

    Code for Percentage Display of Loading Own Content

    I need an AS3 code for an external AS file that would provide the percentage of loading the content of its own swf ( library assets, etc ) and not external files. And then, after the loading is complete, it should add an instance of the main MovieClip ( from the library) into the stage. ( So...
  12. paradisewolf

    Problem: Only the first instruction is executed

    Hi ninjadeathmonkey They are asp.net web controls. Here is the code: ~~~~~~~~~~~~~~~~~~~~~~~~~ <body> <form id="form1" runat="server"> <div> <asp:Label ID="Label1" runat="server" Text="Click the Button to Start Download"></asp:Label> <br /> <br />...
  13. paradisewolf

    Problem: Only the first instruction is executed

    Why this function executes the first intruction but not the second one ? If I invert their order, again only the first one in the order is executed and the second one don’t. What am I missing here ? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <script language="javascript"...
  14. paradisewolf

    Javascript Code for Browsing Folders Does Not Work

    Thank you very much, dwarfthrower.

Part and Inventory Search

Back
Top