ActionScript 3.0 :: Display Buffering Message Netsream
Feb 16, 2011how would I display a buffering animation whilst a netsream object was downloading video data?
View 0 Replieshow would I display a buffering animation whilst a netsream object was downloading video data?
View 0 RepliesI have a flv placed in a swf and i'm trying to add a loading or buffering bar to the flv so that users know that is happening.here is my code that holds my actions for the flv.
Code:
stop();
var flvPlayer:mx.video.FLVPlayback;
[code]......
I have a flv placed in a swf and i'm trying to add a loading or buffering bar to the flv so that users know that is happening. this here is my code that holds my actions for the flv.
Code:
stop();
var flvPlayer:mx.video.FLVPlayback;
flvPlayer.contentPath = "http://67.227.133.42/flv/TCC30.flv";
var cuePt:Object = new Object();
[Code].....
I'm new to Flex and currently working on the Video Component in Flex. The problem is:Buffering starts only after the specified time. So, if i have specified the Buffer Time to be 2 s, then the video buffers for sometime, gets the data for the 2s and then plays it and then again buffers. The point is it is not buffering in parallel to playing. Is there any way of making this possible in Flex 3? Or is it already there in newer versions of Flex?
View 1 RepliesI am trying to use Flex Video Display as a preview player. The player is streaming the video from the server.While The buffering is not complete, if we try to drag the play head to an area beyond buffered region, the player will drag the playhead back to the current playing position. I need to implement the player like you tube video player which allows to drag to anywhere in the track even when data is not fully buffered.Is there a way for doing this.
View 1 RepliesHow would I display a buffering animation whilst a netsream object was downloading video data? Using Actionscript 3.0 in Flash.
View 1 RepliesI am fairly new to FMS and really am trying to learn about it. My question is simple I hope;
I would like a message to pop up to a client when they connect that the max users has been reached. I have it set for 5 users and so I would like when the 6th user tries to connect to watch the video, a little box will pop up and say "Sorry, Max users has been reached. Please try again in a few minutes."
I was able to develop something and get it output through trace commands by following a tutorial I saw online, but I could never get any sort of message box I built to pop up.
How do I make my flash website detect if someone tries to view my website using an iphone?My need is to display a message for iphone users.
View 1 RepliesHaving a problem with SWFObject reporting the correct error message for users running OSX 10.5 and below. (Currently getting the "Unsupported Operating System" swf loaded with links for the user to update there flash player) The problem with this is proceeding to the default links provided causes conflict with OSX 10.5 and below since Adobe directs them to update to Flash 11. Which will not work on that os! So what I'm trying to figure out is, IF I can detect OSX 10.5 and below with SWFobject and direct them to a 'noflash' method (ie: if you would have no flash installed to begin with).
View 1 Replieshow to display the message properly, and I am not sure if it is my for loop that is running into problems or the way I set up my message. Here is the code:
ActionScript Code:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
[code]...
What I try to accomplish here is to have it display the "combination of the options correctly." For example, if I select 1,2 and red, I would like the output to give me
1 Red
2 Red
and not red 1 2.
i need to display a message with some design(i.e) a movieclip on press of the fullscreen mode btn.I have created a full scren mode for a button event.. now i need to attach a movieclip with some message on press of the btn fullscreen mode event..is it possible to do? or is there any other way for my problem
View 1 RepliesI am new in AS3. I am using net stream video player with xml. How can i get videos dimension (Width and Height).
if suppose i get the dimension of the video and i will change the video size with aspect ratio.
I'm trying to display a message on my web pages home page to notify all viewers on some info, I need it to open automatically when the page is accessed then disapper or fade automatically.I'm trying to avoid making this a pop up because most people deativate thier pop ups.
View 1 RepliesHow do I make my flash website detect if someone tries to view my website using an iphone? My need is to display a message for iphone users.
View 1 RepliesI am using net stream video player with xml. How can i get videos dimension (Width and Height).if suppose i get the dimension of the video and i will change the video size with aspect ratio.
View 1 RepliesApple is obviously rejecting Flash to protect it's 'App' revenue. I've been on Android phones that run Flash and display all my content perfectly smooth. It can be quite frustrating how they are trying to bury it when I still have yet to see HTML5 replicate the type of interactive content Flash is capable of producing. Is there any way to display a message on the iPad when the Flash player is not found? I'd like it to says something along the lines of: "Unfortunately the Apple iPad does not support the Flash player because their business interests do not want it taking away from their App revenue. Did you know that the Dell Streak, HTC Flyer, Blackberry Playbook, Motorola Xoom, Samsung Galaxy Tab, Toshiba Thrive, and HP Touchpad all support the Flash player?"
[Code].....
so apparently with the new update in IE8, it starts up with NO add-ons. Since I cannot program a code to turn on add-ons in a browser, I need to show a message when this occurs. Much like an image has alternative text in the event the image doesn't load...how can I add a message that states:
You are using Internet Explorer 8+ and need to turn on your add-ins like FLASH Player. This site is optimized for Mozilla Firefox or Google Chrome.
I am developing a static flex application which does not have a database connection, all the values are hardcoded(its just a prototype for the original app). Now when I click the save button, i need to get a message like saving in progress... please wait, I need to display this message for 3 seconds.
View 3 Replieshow in Flex can I display a message within a Spark List component that states that the List is empty. For example if I have a List showing number of jobs outstanding, if my List is empty then I want a message displayed across the List stating "there are no jobs to perform".
I'd rather not use an Item Renderer because then it's an Item (the list is not empty) and the item can be selected.
I have a message and its visible property is false how can i make it so it becomes true when the user types anything but a number. So there input textfield and a send button if the user types hello when they click send i want the message to become true. How would you do it? restrict?
View 2 RepliesHow do I get Flash to display an echo message that comes from a php file?
View 2 RepliesI can load HTML inside AS3. My problem is to have a way to display an error message if the path is incorrect and does not exist.
Here is my code:
var path:String = "http://www.eyerix.net/pt/w/teste";
// this will load the HTML page
function textLoadComplete(event:Event):void
[Code]....
I'm creating an exercise where I have five movieclips that at first their alpha are at 0% and then they are shown randomly and I want to verify if they are all visible (100%) a text message (a dynamic text field) will be displayed. What I want you to explain me is how do I do this verification. Do I need to do this with an IF condition?
View 4 RepliesHow to show success message in frontend....when a record is inserted in backend.
View 2 RepliesI have 12 display monitors installed in different floors in a building. These monitors display announcements that will be update once in a day. I'm retrieving these announcements from db and storing in an array and displaying it all day long. In addition to this, I have a requirement to display emergency alert messages on the monitors. My Server is a windows 2000 server. I'm using asp for creating the JSON object.
For the emergency alert I am thinking of doing this:
Create a page in asp that lets user to enter emergency msg and save to db.
Create a page in asp that will check if there an emergency msg in db and show it in a asp page in json.
Create a timer that pings this json page every 1 second. If it's available then show it.
Is there any other sophisticated method available to poll the server or to send messages from server to client?
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 RepliesWhy doesnt my Array work? I get this message:
"Scene 1, Layer 'Actions', Frame 1, Line 83 1067: Implicit coercion of a value of type Array to an unrelated type flash.display:MovieClip."
PHP Code:
var boxArray:Array= new Array();boxArray.push(WallLeft);boxArray.push(WallLeft2);
PHP Code:[code]...
i am new to flash (yet i have been using it for years) by that i mean, i struggle with it a lot. i was hoping someone could help me with the "incompatible override" error message and the "duplicate function definition" message.
[Code]...
i setup the development versionof fms 3.5 server on windows 2003 server and it worked great in my tests.so we bought the server and are putting it in production now.the only problem is i never "tested" large FLV files.now if i put a large 50+megabytes flv file in the server it constantly buffers on the client.Is there a setting that defines the buffer size to increase the amount of buffer data that gets sent to the client?if i use a small flv file it works flawlessly but for large files it says "buffering" every 2-5seconds on the client.the client is just opening the test page that comes with the server the server has 3000mb/s to the internet and the client has a 20mb/s connection so i don't think bandwidth is an issue...
View 1 RepliesI'm trying to use NetStream events from an FMS 3.5.4 server but am having trouble. I'd like to simply know when a video is playing, buffering, or idle. I know about Play.Start and Play.Stop, but these can mean the video is playing, or the video is buffering. Buffer.Full and Buffer.Flush can occur when a video is paused, playing, stopped, seeking, etc. I'm scouring over every event I get, but I really see no good way to determine what the exact state of a NetStream is at a given time.
View 1 Replies