ActionScript 3.0 :: Flash Closed Captioning For Flash WITHOUT FLV

Feb 29, 2012

I have created a tutorial for users that will register to use an application. I am used to using Adobe Captivate, but that is not available to me at my current job. So, I am doing my best in Flash. I couldn't figure out how to create a rewind button, so I cut up my tutorial into scenes that are based on what screen the user would see when registering.

Because of this, my audio will be cut into the scenes. I have created pseudo Closed Captioning by hiding and showing text when a user clicks on a Show or Hide button. That's great except, when the movie goes to Scene 2, the closed captioning returns to an off state and the user would need to click Show again. I want to know if there is a way to set a variable when the user clicks Show that can carry into subsequent scenes to then continue showing the Closed Captions. Alternatively, is there a way to make a rewind button or another way to handle Closed Captions? I am very new to ActionScript (3 or otherwise) and must have Closed Captions to meet federal law.

[CODE]...

View 4 Replies


Similar Posts:


Implement Closed Captioning Into FLVs?

Feb 29, 2008

implement closed captioning into my FLVs. I have successfully set up the FLVplayback component, and the FLVplaybackCaptioning component to work. That's not the issue. The issue is, once I have my swf, flv, and xml files (needed to successfully use CC in a FLV), I need to insert that .swf into my captivate project.

It appears to insert/import OK, but once I publish the project, the swf does not appear, and in fact the FLV icon sits on the slide rapidly blinking. Neither the video plays, nor can I even see the playback component/closed caption component (swf) that holds the FLV.

All paths are relative, so the only things I can think of that may be causing the issue are:

a)Captivate doesn't support CS3 FLVPlayback or
FLVPlaybackCaptioning components

b)Since Captivate allows importing of FLV files directly, running the FLV through the component's swf is a problem

c)The hierarchy of files needed for the Closed Captioning FLV (xml, flv, swf), interfere with compiling the new Captivate .swf
upon publishing I've also been told that the FLV captioning component only works in Actionscript 3.0 which runs on Adobe Virtual Machine 2.Captivate publishes .swf files using Actionscript 2.0 which runs on Adobe Virtual Machine 1. Therefore, what I need to do will not work.

View 4 Replies

ActionScript 3.0 :: Making For Timing Out Closed Captioning?

Jun 16, 2011

I have a simple mp3 player I'm making for timing out closed captioning. It plays one mp3 based on an ExternalInterface call, updates a text field with the position and allows for pausing and jumping the position back a bit. It will have a scrubber, but that code isn't in there yet. There is no complex code anywhere in the file, but it is still getting confused with btnPlay.visible or btnPause.visible, depending on which is visible first.

[Code]...

View 4 Replies

ActionScript :: Cue Points For Closed Captioning In Video Control?

Sep 7, 2010

I am using using Flash Builder to create an AS3 video player which needs to support Closed Captioning. However, I am not using the FLVPlayback component. Is there a way of doing something like addASCuePoint() to flash.media.Video;, or is my only option using Flash' Timer to do my own check?

View 2 Replies

ActionScript 3.0 :: Add Closed Captioning To Video Being Played Via Netstream?

Sep 19, 2011

I am looking to add closed captioning to video being played via Netstream. The "cuePoints" and text-data would be pulled from an external XML file. I am tinkering around with different libraries/add-ins but not having much luck. I've read that you cannot add cuePoints to a netstream programmatically.

View 7 Replies

Media Server :: Closed Captioning And Pause Video File

Jun 10, 2011

I currently have a problem with captioning on a video file that I am streaming from Flash Media Server. For some reason, the first time the video is viewed, the captioning pauses right around 6 mins. I've verified this happens from multiple computers, from different physical locations and on different networks. The video continues to play, but the pause button on the playbar also looses functionality and the captioning does not progress.

I've created a total of 11 videos all using the Flash CC plugin with a custom button for show/hide captions and minimal playbar which only includes the pause button and the mute button. This only happens in this one particular file, but they are all setup the same. From what I can tell, the xml is constructed correctly (TT XML generated by contractor).

The code I've written works fine on all the other files. The only thing I can see that's different among the files is possibly the size of the movie I'm streaming. Its the longest. If the viewer refreshes the page and watches the movie again, the pause does not happen. Is it possible that a setting may need to be changed on the Flash Media Server?

View 1 Replies

Flash - How To Detect When SWF Is Closed In AS2

Jul 2, 2011

Is there a script in AS2 that will call a function when the SWF is closed? I found solutions, but they're all in AS3.

View 1 Replies

Flash :: Embed Code Closed?

Dec 14, 2010

ok so i got a embed code which is hosted on another sitei enter the script to my page but now it makes my html validation fail with errors like this one h_id=cfe4b9038d67c69a9016a223b1040583&watermark=0&clickTag=null" width="1000"they all mainly apply to this part of it&watermark=0&clickTag=null"and the validator says i need a /> but when i change it from > to /> dreamweaver says it invaid <param name="allowFullScreen" value="true"><param name="wmode" value="transparent"><param name="allowScriptAccess" value="always">i dont know this code is there away to change it and still work? i deleted it from the end but then the watermark appears again.

View 1 Replies

ActionScript 3.0 :: Flash Do Stuff After The Swf Is Closed?

Feb 4, 2012

I'm writing a Flash game for a class that is supposed to test elementary kids' math skills. After each activity is completed, Flash sends the results to our database (e.g., that 8/10 math problems were answered correctly). If the user is in the middle of an activity and hits our Logout button, we'll send what results they had to the database anyway. But if the user closes out of the browser in the middle of an activity, is there a way to quickly send stuff to the database before the swf dies?

View 2 Replies

ActionScript 3.0 :: Call This Fscommand When The Flash Player Is Being Closed?

Apr 22, 2009

i have a flash application that calls a .bat file using fscommand.is there a way to call this fscommand when the flash player is being closed?

View 1 Replies

Flash - Closing Child NativeWindows When Main App Gets Closed (via OS)?

Mar 14, 2012

I have been going crazy over this! I have an Air (2.6) app which, when running opens up a pop up NativeWindow, to handle alerts.

public var _alertWindow:NativeWindow;
_alertWindow = new NativeWindow(windowOptions);
_alertWindow.stage.scaleMode = StageScaleMode.NO_SCALE;
_alertWindow.stage.align = StageAlign.TOP_LEFT;

[code]....

I have had no problems with this across all platforms. But in Windows7, when right click on the taskbar and selecting 'close-window' only closes the main app and not its child NativeWindow. ( This keeps the app running in the background - so when a user tries to access it again it does't run ) I have tried adding event listeners like Event.CLOSING, and various other methods but have failed.how to close windows from the 'close window' option in windows7.

View 1 Replies

ActionScript 2.0 :: Detecting Flash/html Window Closed?

Jan 9, 2007

is it possible for flash to detect when a user closes an html window with a swf embeded in it?

I want to record a user session time and need to be able to call a function and serverside script from within flash when a user closes the window...is there a way?

(I thought I might be able to do it with onUnload, but that will only work for unloading movieclips, not closing the main swf.)

View 1 Replies

Compile Flash Project From Brightcove Closed Caption Module?

Feb 24, 2012

I'm following the instructions here URL... to learn how to modify a closed caption plugin for the bright cove video player.I started by downloading the closed caption module code here:URL...After I downloaded it and unzipped it, I modified the file src/ClosedCaptionsModule.as.Now the instructions tell me to compile this into a SWF file.I looked at all the top menu items in Adobe Flash CS4, but I don't see any Build or Compile command.The Debug movie and Test movie actions are grayed out.

View 1 Replies

ActionScript 3.0 :: NetStream.Connect.Closed - Know Which NetStream Has Been Closed

Aug 2, 2010

A NetStatusEvent with info.code of "NetStream.Connect.Closed" is dispatched by NetConnection when a NetStream is closed. This seems kind of weird, shouldn't the NetStream dispatch the event? how do I know which NetStream has been closed if I have more than one running (which I do)? I need to know so I can cleanup the now dead stream.

View 1 Replies

Professional :: FLV Playback Captioning XML Styling?

May 27, 2011

I'm creating accessible content for a html elearning module. I'm including video, which I have successfully imported into flash, and added captions to by linking a XML document.The issue I am having is that my styling in the XML isn't working in flash, and my captions play in a tiny horrible font, making it very difficult for people to read, therefore not making it accessible content.I've used two tutorials online to create these styles in XML but neither are working.I'm using CS5 Flash and Dreamweaver.XML content is as follows: (I have removed my content for the script)
 
<?xml version="1.0" encoding="UTF-8"?><tt xml:lang="en" xmlns="http://www.w3.org/2006/04/ttaf1"  xmlns:tts="http://www.w3.org/2006/04/ttaf1#styling"><head><styling><style id="1"

[code]....

View 3 Replies

ActionScript 3.0 :: FLVPlayback Captioning Hide Captions?

Sep 13, 2008

I'm using the flvPlayback and Captioning component/skin for some videos. Works great, but I can't figure out how to have the captions off by default, and use the caption button to turn them on for users who want to see the caption buttons.

flvCaption.showCaptions=false;

--hides the captions, but also disables the captionButton in the skin, so there is no way to toggle showing and hiding the captions.

View 1 Replies

Actionscript 3 :: Does The OSMF Captioning Plugging Support Audio

Dec 13, 2011

I'm setting up a simple little OSMF-based media player, and I have hooked up the org.osmf.captioning plugin found in the samples. It is working just groovy with video, but I also have audio files to play with captions, and it doesn't seem to do anything for those. On initial inspection, I can't see anything in the plugin that ties it to a specific type of media. Nor can I find any indication that the timeline metadata used for captioning is only relevant to certain types of media. Does the captioning plugin support audio playback? Might I have set it up incorrectly?

View 1 Replies

ActionScript 2.0 :: Display A Message In Flash "we Are Open" Or "we Are Closed" Based Upon Time?

Jun 4, 2004

I would like to display a message in flash "we are open" or "we are closed" based upon time. Naturally I can do this for the users local time on their system, but is it possible to work out if their time is different to UK time (GMT) and display those messages accordingly. Afterall I don't want a user to see a message "we are open" at 1pm their time - they could be in Japan and it'd be about 4am UK time.Is this possible to work out the time difference on any system?

View 1 Replies

ActionScript 3.0 :: Closed Caption With No Component?

Jul 8, 2010

what the subject says: Closed Caption for Video Flv. Every documentation on internet speak about FlvPlaybackCaptioning.. I would like to made a flv player with caption on my own...
 
I also found an interesting component called CCForFlashAs3, but I'm not able to use it...

View 3 Replies

ActionScript 3.0 :: Sound Keeps Playing After Swf Closed

Mar 27, 2009

I'm building a web site that uses swf's as pages. The menu.swf has 5 buttons one for each page. When I press a button it loads a page with addChildAt (page, 0); so that the menu is always a level above the currently loaded page. When one of the pages open it plays a mp3 in a loop. The music keeps playing when another page loads. The page that was playing the music was also on level 0 so it's gone yet the music keeps playing. How do I make it so the music stops when another page loads?

View 3 Replies

IDE :: Character Disappears Right After The Browser Closed?

Dec 3, 2009

[url] i first thought they were using a socket server for this but if they were using socket server, i can only login one per ip address right? but if i open up two different browser, i can log in with two different character interacting each other.what i really dont understand is, how the character dispears right after the browser closed, without using a socket server.

View 2 Replies

Media Server :: User Is Not Getting Disconnected From FMS On Using IE Until IE Is Closed

Sep 9, 2009

FMS: 3.5..User is not getting disconnected from FMS on IE until IE is closed. While it works on Firefox and Chrome.When a user logs out on Firefox and Chrome, the user connection of FMS is getting updated. But it doesn't work on IE until IE is closed.

View 10 Replies

ActionScript 3.0 :: Popup FLVPlayer - Cannot Connect After Once Closed

Oct 4, 2011

I am trying to popup (addChild) a movieclip with a close button, which has FLVPlayback component in it. When hit close button, movieclip is removed from the scene and flv is stopped. But when popup the same movieclip again, flv is not correctly loaded into player and progress continues forever.vance.

View 1 Replies

ActionScript 3.0 :: Restore A Movie Clip After Closed The Swf

Dec 7, 2011

Can you restore the state of a movie clip after you have closed it?

View 8 Replies

Flex :: Detect Whether A Window Is Hidden (cmd-h) Vs Closed (cmd-w) - Mac

Feb 4, 2010

I'm developing an AIR application which uses multiple windows. I'm running into an issue where I want to open new windows (toaster notifications for example) when the primary application window is not visible, but the behavior is different depending on how the window is closed.

When a user hides all application windows with CMD-H, opening a new window causes all application windows to come back to the foreground (instead of just that new window, like I would expect). If the user closed a window with CMD-W, however, that window does not become visible when I open a new window.

Is there a way to either 1) tell when the user uses cmd-h to hide all windows OR 2) tell whether a window is hidden using cmd-h vs. closed cmd-w?

View 2 Replies

Flex :: Detect When The Security Panel Has Been Closed?

Oct 11, 2010

Is there a way to detect this in Flash?

View 1 Replies

ActionScript 3.0 :: Execute A Function When Window Is Closed?

Feb 7, 2010

I was wondering if you can make an eventlistener to trigger to execute a function when the window/tab viewing the swf is closed. I searched around, and there seems to be a way to do this with flash.external class and javascript, but some users have javascript disabled, so is there a way to achieve this without javascript?

View 3 Replies

ActionScript 3.0 :: Call A Function Before The Flex App Is Closed?

Oct 10, 2010

I was wondering if flex has some events that can call before I close the whole application or close browser. Since I would like to send a httpservice to a php before the swf is closed. I tried this before:

<mx:Application xmlns:mx="" creationComplete="init()" remove="clearHistroy()">

But it didn't work.

View 1 Replies

ActionScript 2.0 :: Menu 1 Open, The Rest Closed?

Nov 2, 2005

I have an animated dropdown menu with 7 buttons. Each button slides down it's submenu.They're setup so that they open when you click them, but automatically close when you move the mouse out of the area of the given menu/submenu. If i permitted for more than one submenu to be open at a time, then size of the menu in total would be too big.Ok what I need is that, in plain language, when menu 1 is open - the rest is closed. But the menu 1 will close when you click menu 2, not before. OK, if my explanation was too lame here's the real thing, so you can get the idea of what i want:

View 1 Replies

ActionScript 2.0 :: Loading MovieClip If Target Has Been Closed!?

Jul 10, 2003

I have 9 btns and one target to load submenus. The target has to close first and them load the selected one. Actually the target goes up and when it reaches y=x it loads the selected one.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved