Flash fading movies and sound-HELP NEEDED

hey guys i need some help
firstly if u want to help me could u please visit this site
http://www.thetimemovie.com/
this site is what i want to do
notice the fading pictures that can be controlled and the
sound bar at the bottom on the left
Any help would b aprreciated GREATLY
thanks in advance
BUTCH101
PS: email [email protected] if u have any info
thanks

What I see in the sample site is that the "sound bars" aren't
sync'd at all. They are just a looping clip that stops in diagonal
shape when clicked. And, the sound is not actually being stopped
when you click the bars. Rather, the actionscript is actually
turning the volume down, gradually. The sound is still continually
playing, you just can't hear it. This is evident in the fact that
when you restart the sound, it picks up not where you left off, but
at the point where it would have been anyway, had you not clicked
the button.
I believe that the sound is set to streaming and as such can
be dealt with frame by frame. So, your real quest is to have
someone (more knowledgable than me) provide sample code that would
begin reducing the volume of the sound object in increments as the
movie moves through frames. Something like:
onFrame (95){
mySound.setVolume(80);
onFrame (110){
mySound.setVolume(60);
onFrame (120){
mySound.setVolume(40);
onFrame (130){
mySound.setVolume(20);
onFrame (140){
mySound.setVolume(10);
onFrame (150){
mySound.setVolume(0);
Obviously, you wouldn't use frame numbers, but a variable
representing the current frame relative to the frame the movie was
in when you clicked the button.

Similar Messages

  • My Multiple Saves On A Flash File Gone? [URGENT HELP NEEDED]

    Hey guys,
    I am very disappointed with the fact that I've been working on a school project on a Flash file for numerous days, and yesterday, I was close to completetion when I found out that none my saves were updated. Basically, I spent hours working on the project and I saved my Flash file multiple times; however, I just opened my Flash file today and found out that all of the updates that I had made on the file were gone. Is there any way I can still recover the file/updates through cache possible, and what may have gone wrong?
    What I have Tried To Solve The Issue:
    - I have done a full scan of the computer but only found the non-updated file.
    - I had dragged the saved file onto my USB the previous day before I turned off the computer, but the Flash file on the USB is the non-updated file as well.
    - Try to find a cache, unsuccessfully.
    - Browsed this forum but found nothing.
    - I even checked my Recycling Bin.
    Other Info:
    - I am using Flash CS3.
    - The folder which contained my Flash file has all of the images that I had edited with PhotoShop CS3, as well as the images that I had downloaded online. It's only the Flash file that is old.
    Please help me out on this as soon as possible as it's a school project. My hours worth of time is gone and I really don't want to have to start again while there may be a solution to this out there. Thank you very much.

    You best bet is to get your san folks to give you some disk space for a mount point on the last node in the cluster. Once they assign the lun (not raw) have your SAs make it a mounted file system such as /dbbackup.
    Run all of your rman backups on your last node on the cluster. The only draw back is, if that node dies, then you will not be able to run backups. but your backups would be safe as they are on the san.
    Only way to have a mounted file system on all nodes in your cluser is to have some sort of third party file system cluster ware .. such as veritas or OCFS2 - then all nodes could see it.
    I feel the first node in the cluster (the primary node) is the most busy out of the rest .. so thats why the suggestion of running rman on the last node in the cluster.

  • Flash Audio Player in Blog Help Needed

    Hello...
    I am a Mac user, OS X 10.4.11.
    I use Flash Audio Players on my web pages to stream my radio station. I installed the Flash Player on my Blog, but after a month or so it stopped working. I have tried countless versions of the player and varying code, but cannot get it to work.
    Note, I host my own Flash Player so visitors don't need to install it. Further, I use a free audio streaming service which requires their ad code be activated on the web page for the audio to stream. (Anytime, the stream server is reset or interrupted the web page must be refreshed to reactivate the audio stream. A bit of a hassle, but you can't beat FREE!) I have installed this code at the bottom of any of my web pages streaming audio and at the bottom of my Blog. And again, initially the Flash Player streamed the audio fine on the Blog.
    Here are the web pages to visit to review situation:
    Stevo In Yr Stereo Radio "Mind-Altering Music" This is where you can view the source for the code I use to stream audio with the Flash Player.
    Nightmare City Halloween Blog This is where the code is no longer working.
    I stream audio with the following IP & Port: 87.98.170.118:8424
    When the Flash Player HTML Code ask for the "MP3 URL" how might I configure the IP & Port to work on the Blog?
    Finally, I do use a redirect URL when necessary via DynDNS.com, but even my redirect URL fails to work in the Blog.
    Any insight and assistance regarding this matter is greatly appreciated. Thank you.
    Stevo

    If I'm in the wrong place asking this question can anyone direct me to the proper place to ask where I will encounter someone with a solution? Thank you.

  • [Mostly Sorted] Extracting tags - regexp_substr and count help needed!

    My original query got sorted, but additional regexp_substr and count help is required further on down!
    Hi,
    I have a table on a 10.2.0.3 database which contains a clob field (sql_stmt), with contents that look something like:
    SELECT <COB_DATE>, col2, .... coln
    FROM   tab1, tab2, ...., tabn
    WHERE tab1.run_id = <RUNID>
    AND    tab2.other_col = '<OTHER TAG>'(That's a highly simplified sql_stmt example, of course - if they were all that small we'd not be needing a clob field!).
    I wanted to extract all the tags from the sql_stmt field for a given row, so I can get my (well not "mine" - I'd never have designed something like this, but hey, it works, sorta, and I'm improving it as and where I can!) pl/sql to replace the tags with the correct values. A tag is anything that's in triangular brackets (eg. <RUNID> from the above example)
    So, I did this:
    SELECT     SUBSTR (sql_stmt,
                       INSTR (sql_stmt, '<', 1, LEVEL),
                       INSTR (substr(sql_stmt, INSTR (sql_stmt, '<', 1, LEVEL)), '>', 1, 1)
                       ) tag
    FROM       export_jobs
    WHERE      exp_id =  p_exp_id
    CONNECT BY LEVEL <= (LENGTH (sql_stmt) - LENGTH (REPLACE (sql_stmt, '<')))Which I thought would be fine (having tested it on a text column). However, it runs very poorly against a clob column, for some reason (probably doesn't like the substr, instr, etc on the clob, at a guess) - the waits show "direct path read".
    When I cast the sql_stmt as a varchar2 like so:
    with my_tab as (select cast(substr(sql_stmt, instr(sql_stmt, '<', 1), instr(sql_stmt, '>', -1) - instr(sql_stmt, '<', 1) + 1) as varchar2(4000)) sql_stmt
                    from export_jobs
                    WHERE      exp_id = p_exp_id)
    SELECT     SUBSTR (sql_stmt,
                       INSTR (sql_stmt, '<', 1, LEVEL),
                       INSTR (substr(sql_stmt, INSTR (sql_stmt, '<', 1, LEVEL)), '>', 1, 1)
                       ) tag
    FROM       my_tab
    CONNECT BY LEVEL <= (LENGTH (sql_stmt) - LENGTH (REPLACE (sql_stmt, '<')))it runs blisteringly fast in comparison, except when the substr'd sql_stmt is over 4000 chars, of course! Using dbms_lob instr and substr etc doesn't help either.
    So, I thought maybe I could find an xml related method, and from this link:get xml node name in loop , I tried:
    select t.column_value.getrootelement() node
      from (select sql_stmt xml from export_jobs where exp_id = 28) xml,
    table (xmlsequence(xml.xml.extract('//*'))) tBut I get this error: ORA-22806: not an object or REF. (It might not be the way to go after all, as it's not proper xml, being as there are no corresponding close tags, but I was trying to think outside the box. I've not needed to use xml stuff before, so I'm a bit clueless about it, really!)
    I tried casting sql_stmt into an xmltype, but I got: ORA-22907: invalid CAST to a type that is not a nested table or VARRAY
    Is anyone able to suggest a better method of trying to extract my tags from the clob column, please?
    Message was edited by:
    Boneist

    I don't know if it may work for you, but I had a similar activity where I defined sql statements with bind variables (:var_name) and then I simply looked for witch variables to bind in that statement through this query.
    with x as (
         select ':var1
         /*a block comment
         :varname_dontcatch
         select hello, --line comment :var_no
              ''a string with double quote '''' and a :variable '',  --:variable
              :var3,
              :var2, '':var1'''':varno'',
         from dual'     as string
         from dual
    ), fil as (
         select string,
              regexp_replace(string,'(/\*[^*]*\*/)'||'|'||'(--.*)'||'|'||'(''([^'']|(''''))*'')',null) as res
         from x
    select string,res,
         regexp_substr(res,'\:[[:alpha:]]([[:alnum:]]|_)*',1,level)
    from fil
    connect by regexp_instr(res,'\:[[:alpha:]]([[:alnum:]]|_)*',1,level) > 0
    /Or through these procedures
         function get_binds(
              inp_string in varchar2
         ) return string_table
         deterministic
         is
              loc_str varchar2(32767);
              loc_idx number;
              out_tab string_table;
         begin
              --dbms_output.put_line('cond = '||inp_string);
              loc_str := regexp_replace(inp_string,'(/\*[^*]*\*/)'||'|'||'(--.*)'||'|'||'(''([^'']|(''''))*'')',null);
              loc_idx := 0;
              out_tab := string_table();
              --dbms_output.put_line('fcond ='||loc_str);
              loop
                   loc_idx := regexp_instr(loc_str,'\:[[:alpha:]]([[:alnum:]]|_)*',loc_idx+1);
                   exit when loc_idx = 0;
                   out_tab.extend;
                   out_tab(out_tab.last) := regexp_substr(loc_str,'[[:alpha:]]([[:alnum:]]|_)*',loc_idx+1);
              end loop;
              return out_tab;
         end;
         function divide_string (
              inp_string in varchar2
              --,inp_length in number
         --return string_table
         return dbms_sql.varchar2a
         is
              inp_length number := 256;
              loc_ind_1 pls_integer;
              loc_ind_2 pls_integer;
              loc_string_length pls_integer;
              loc_curr_string varchar2(32767);
              --out_tab string_table;
              out_tab dbms_sql.varchar2a;
         begin
              --out_tab := dbms_sql.varchar2a();
              loc_ind_1 := 1;
              loc_ind_2 := 1;
              loc_string_length := length(inp_string);
              while ( loc_ind_2 < loc_string_length ) loop
                   --out_tab.extend;
                   loc_curr_string := substr(inp_string,loc_ind_2,inp_length);
                   dbms_output.put(loc_curr_string);
                   out_tab(loc_ind_1) := loc_curr_string;
                   loc_ind_1 := loc_ind_1 + 1;
                   loc_ind_2 := loc_ind_2 + length(loc_curr_string);
              end loop;
              dbms_output.put_line('');
              return out_tab;
         end;
         function execute_statement(
              inp_statement in varchar2,
              inp_binds in string_table,
              inp_parameters in parametri
         return number
         is
              loc_stat dbms_sql.varchar2a;
              loc_dyn_cur number;
              out_rows number;
         begin
              loc_stat := divide_string(inp_statement);
              loc_dyn_cur := dbms_sql.open_cursor;
              dbms_sql.parse(c => loc_dyn_cur,
                   statement => loc_stat,
                   lb => loc_stat.first,
                   ub => loc_stat.last,
                   lfflg => false,
                   language_flag => dbms_sql.native
              for i in inp_binds.first .. inp_binds.last loop
                   DBMS_SQL.BIND_VARIABLE(loc_dyn_cur, inp_binds(i), inp_parameters(inp_binds(i)));
                   dbms_output.put_line(':'||inp_binds(i)||'='||inp_parameters(inp_binds(i)));
              end loop;
              dbms_output.put_line('');
              --out_rows := DBMS_SQL.EXECUTE(loc_dyn_cur);
              DBMS_SQL.CLOSE_CURSOR(loc_dyn_cur);
              return out_rows;
         end;Bye Alessandro
    Message was edited by:
    Alessandro Rossi
    There is something missing in the functions but if there is something that may interest you you can ask.

  • I can't install Flash Player to my Imac, help needed!!!!!!!!

    hi all,
    Why it is not possible to install flash player to Imac (Yosemite V. 10.10.2) I have tried many things but nothing is working. I have even deleted the existing flash player which didn't work.
    I hope some one can help me.
    best regards
    Hakan

    This morning we resolved a problem that prevented Flash Player installations from completing for some of our Macintosh users.
    If you encountered this problem, please delete any previously downloaded Flash Player installer and either:
    1.)      Download the installer again from https://get.adobe.com/flashplayer
    2.)      Download the stand-alone installer from  http://fpdownload.macromedia.com/pub/flashplayer/latest/help/install_flash_player_osx.dmg

  • Dreamweaver and PHP Help Needed!

    If there is anyone out there who can help, I am working with
    a back-end secured website that is in php and need to manipulate
    and change pageson-the-fly. I'm not sure how to view and actually
    see in Design View my PHP page, as I can best work in Design View.
    Can anyone help out there?
    The website I need help with is
    http://www.businesscreditbuilder.com
    Help needed as soon as possible...
    Thank you...
    If you want to help, I can compensate you for helping with an
    immediate page..

    Thank you for writing. I do need your help, and here's the
    scenario. I work for a company that deals with business credit. In
    the previous post at
    http://www.businesscreditbuilder.com
    there is a login. Once logged in, there is a home page for the
    members. That first page I need to change as soon as possible for
    over 40,000 members. All the members will see the same home page
    inside the members area. You're welcome to login as "makaiman",
    password is "1143mak" to see the first page that comes inside the
    members area I need to change just a little. PHP is installed on a
    remote server running on Windows. I need help or guidance on this
    immediately but I have to sleep right now as it is 1130pm pacific
    and need to have this done by sometime tomorrow morning. I
    appreciate all of your help so very much... any advice would be so
    much appreciated...
    m

  • Various Direct Debit and Billing Help Needed

    FAILURE TO DELIVER BILL IN PAPER FORMAT: Firstly when I discovered that my account number was encrypted in the email and that I could not pay the bill online, without having the whole account number in full - I contacted BT who told me that they would post my bill and it would arrive in paper form.  A week later, no sign of it so phoned again and again I was told that another paper copy would be sent out - waited another week - still no sign! Got a reminder email that my bill had not been paid - doh! I knew that but I was trying to get that sorted out! So phoned again today and the guy in India or wherever the heck he is, told me that he would setup a profile on BT.com for me and this would allow me to pay online.
    TEMPORARY ACCESS TO BT.COM?: The email address which this member of staff had set up on BT.com for me was identical to my old btinternet.com account minus a number! The new email address with this new account is somewhat different and when I try to edit simple information on the profile page, it does not allow me to do so.  Can anyone explain why?
    UNABLE TO SET UP DIRECT DEBIT:  I log-in to My BT (whether it's temp. access or not) and then click on Bills and Payments but instead of more options I get a graphic which has got "Ugrade to an online account" on one side and "Help with Billing and Payments" on the other side.  When I click on "see all billing and payments help" nothing happens and in fact NONE of the links work.
    Would it be the better idea to re-register with BT.com and this time put the correct BT email address in, the one that i was given with this account - see if it works that way?
    PLEASE HELP!!!

    This is essentially a customer to customer help forum; I could make one or two suggestions which might explain things but would be equally likely to complicate the matter. It all looks a bit messy and you need to get BT's help in sorting it out. The moderators who oversee this forum are jolly good at that and you can contact them here: Contact BT Care Team.
    They are busy and may take a few days to respond but will contact you by email or phone, and will have access to your account in order to put things straight.
    [Edit: My daughter turned up in the middle of writing this and by the time I posted it KB had replied in similar vein.]
    You can click the white star next to this message if you think it was helpful.

  • Flash layer problem and sound problem - PLEASE HELP

    http://www.alamofireworks.com/echo/flash.html
    I am having an issue with the pulldown menu is going behind
    the flash file. I have already tried the param wmode and z-index
    and can't figure it out.
    Also the when you hit stop sound and the video loops the
    sounds comes back and i am not sure how to control.
    Any help would be appreciated.

    http://www.alamofireworks.com/echo/flash.html
    I am having an issue with the pulldown menu is going behind
    the flash file. I have already tried the param wmode and z-index
    and can't figure it out.
    Also the when you hit stop sound and the video loops the
    sounds comes back and i am not sure how to control.
    Any help would be appreciated.

  • What is going on with Flash Player 9 and sound?

    I'm getting really upset and fed up with this. No matter what
    I do I can't get sound with the Adobe Flash Player 9. My computer
    is working perfectly fine; there is nothing wrong with the sound on
    any other program that I use. There is some glitch with the current
    flash player that keeps me from playing any kind of sound. Either
    tell me where to find a patch for the player or tell me how to fix
    it.

    Please follow the instructions on the following two FAQs:
    Enabling Flash Player in Internet Explorer 9
    ActiveX Filtering in Internet Explorer 9
    Those usually help fix people up.
    Chris

  • SWF and FLV - help needed

    Hi,
    I'm finding flash very difficult, i've read tutorials and i still find it confussing. What i'm trying to do is embed my FLV video into my website that keeps my XHTML 1.0 Transitional page vaild.
    I download swfobject 2.2 and i have a FLV file that i exported from premiere pro CS3, from what i understand i need SWF file to go with the FLV.
    When i import my FLV into Flash CS3, choose the skin i want  then export everything. I then have three files; FLV, skin and the player. What i don't understand is, i've seen certain skins that are two in one, both the skin and the player.
    Could someone please tell me what are the main files that i require in order to get my flash on my html page.
    I've spent hours trying different embed codes and nothing seems to work.
    I've created a lot of websites, but when it comes to flash i'm puzzled.
    Any help is much appreciated, thanks.

    Thanks for your reply.
    I eventually got everything working with swfobject.
    I think i'm finally getting the hang of flash, well the basic stuff anyway, lol.

  • W530 SSD and Memory help needed for high performanc​e systems.

    Hi Guys,
    After dealing with lots of laptops that got destroyed by daily use, our organizations is considering ordering 25 Thinkpad W530 laptops from Lenovo and we hope that they last a little longer.
    Our main usage is video editing and design so we have chosen the best that Lenovo has to offer as far as hardware.
    Since Lenovo charges arm and a leg for SSD and 16GB memories, we have decided to purchase these separately and upgrade ourselves.
    Knowing the high need for performance, what would you recommend for 128GB SSD and 16GB memory?
    The laptops are all coming with 7200 RPM drives for storage so the SSD is mainly for programs and the OS.
    For the drive bay, does this part sound right to you? http://shop.lenovo.com/us/itemdetails/0A65623/460/​89555ADB1CE946DA80E0E5D6FE77B164
    This would be used for the HDD and the SSD would be moved to main HDD location.
    Is there anything else we should know about these laptops?
    Thank you in advanced for your time and all suggestions are welcomed.
    Cheers,
    Chris
    Solved!
    Go to Solution.

    I installed 32GB (4x8GB) of Corsair Vengeance RAM, and it has been working wonderfully since day 1.
    Thinkpad W530, i7-3720QM, 1920x1080 screen, 32GB RAM, dual SSDs (Samsung 830, Crucial M4 mSATA), Quadro K2000M, 9-cell battery, DVD burner, backlit keyboard, Bluetooth, Intel 6300 wireless card

  • Safari movies and preview help

    When I go to a website that has a movie preview or something of that kind I am not able to watch the movie. i have QuickTime Player but that doesnt help. I was wondering if anyone knows anything that i can do to fix this problem.

    i have the same problem so i use firefox and that runs fine :s not sure what the problem could be, have tried a reset and computer and router reset, no help

  • OS X Yosemite and CS6 help needed.

    Hello,
    I have a MacBook Pro (2013) which I want to update to OS X Yosemite but I have one question about CS6.
    When I update my Mac system to OS X Yosemite do I have to remove and reinstall CS6? Or can I leave the program on my Mac and update it when OS X Yosemite is ready?
    I'm quite worried about this because I'm a student who needs CS6 every day to make my homework. Any help would really be appricated!

    @runtimer
    @JasonBrimer
    Thank you for your reply both. I will wait for a weeks before I update to Yosemite.
    This has helped me a lot and ease my worries.
    @runtimer
    @Rockwellsulcata
    @gener7  
    @Nancy O.  
    I would appicate if you guys would take the other question to another discussion, because I keep getting alerts on my phone which is really annoying. My answer got answered so there is no reason to keep continue this,

  • Full HD movies and sound

    How good is the new MBA for watching full HD movies? I'm one step away from buying the new MBA and I want to be sure that full HD movies wont run sluggishly or have dropped frames.
    Also how loud is the sound?

    cloverng wrote:
    Are all HD movies from iTunes DD 5.1? If not why?
    no. "selected" HD movies have DD.
    look for the DD logo in the itunes store.
    again, this is most likely a movie studio restriction

  • IPhone 5s and iTunes Help Needed - NEW PC

    Hi, I got the iPhone 5s back in October (1st ever Apple product) and transfered my music and photos onto it via iTunes.
    What I need help with is as my laptop is in for repair (complete system restore) can I download  iTunes on mums laptop and put a few songs and pics on my iPhone WITHOUT clearing the  curent files and leaving me without nothing on it.
    Thanks
    James

    Use these instructions to open the library from its location on the external hard drive...
    How to open an alternate iTunes Library file or create a new one
    http://docs.info.apple.com/article.html?artnum=304447
    This assumes that everything needed for an iTunes library is on the external hard drive which includes the data base files that contain the info you are concerned about (playlists, counts, ratings, etc.).
    Patrick

Maybe you are looking for

  • How to add tags to a number of pdfs?

    It seems that batch processing does not support adding tags. I'm wondering if there is an automatical way to add tags to multiple pdfs. Or I have to use javascript to do? Or there is a third party tool to do so?

  • How system determines Valuation strategy in PP order confirmation.

    Hello Experts, i have maintained in valuation variant for valuation variant 006 and 007 strategies are 1st  standard price  2nd moving price and 3rd plan price. We have maintained two prices in material master one according to price indicator That is

  • Home Interface Load Balancing with user transactions

    Hi           Im running the following Client scenario:           * gets initial context           * lookup for Home Interface.           * save the Home Interface.           * Begin User Transaction           * Home.findByPrimaryKey(pk)           * a

  • How to run Struts program with the help of tomcat

    Hello Everybody This is Adesh.I am a newcomer of java and facing a problem with struts, so if any one know how to set the path of struts and how to run struts program, so plz inform me. THX in Advance.............................................

  • ALV Grid - Cell merging

    Hi Experts, I want to merge cells for columns having similar records.Is their any functionality in fieldcatlog. Simran