ActionScript 3.0 :: Type The Name Of Some Video Albums In Order To Be Displayed In The SWF File?
Nov 20, 2011
I have the following script and I would like to modify it: 1.On this file I need to type the name of some video Albums in order to be displayed in the SWF file. 2. What I wanr is that this file read the specific folder and read the directories which they will be the names of the Albums
How can I do this?One more thing is that this file was created to work with Flas CS3 and I am trying to test it with CS5.
[code]...
View 7 Replies
Similar Posts:
Apr 23, 2010
I did a lot of reading and made my own AS3 class for a streaming video player. The class seems to work, i'm getting debug output from the player and hear the sound but the video is not being displayed on the stage. My AS3 code :
ActionScript Code:
//
package net.edje{
import flash.display.*;
[Code].....
View 1 Replies
Apr 14, 2010
I was working through the example AS code in Adobe's documentation[url]..
Usually, when working with video, I use the FLVPlaybackComponent, but for this project I don't really need any fancy skins/features, I just need to load and play an external video.
Anyway, I have a .MP4 video that when I right-click and look at its properties... its dimension is 640x480.However, when I try and test the [code]...
View 4 Replies
Mar 2, 2010
I have in my page a movie that i call with :
<object width="500" height="405"><param value="http://www.youtube.com/v/_wKFwii6LF0&hl=fr_FR&fs=1&color1=0x2b405b&color2=0x6b8ab6&border=1" name="movie"></object>
In Chrome it is displayed, in IE and Mozilla, there is an error.How can i debug.(For info, this is the link to the real page :[URL]At the bottom:
Chrome : plays the video
IE: shows a placeholder with error
Mozilla: shows nothing...
View 1 Replies
Mar 10, 2006
anyone know of a good tutorial with more albums, slideshow on/off, setting timer, and maybe transitions. Could some off this also be set in a config.file?
View 1 Replies
Jul 19, 2006
I wanted to use your gallery tut to create my own gallery for my website [URL] But I need to add a simple album section, how could I do that. For example you click on a textlink beside the gallery and the gallery will be filled with the images from the album, and if I add a new album folder this folder should appear
as a link beside the gallery. [URL]
View 1 Replies
Aug 20, 2011
I am currently getting Error 1046: Type was not found or was not a compile-time constant:HTMLLoader.The main problem I am having is that I removed all references to HTMLLoader earlier (because I know HTMLLoader only works with AIR). I don't know why I am still getting this error. This is my code:
Code:
package
{
[code].....
View 3 Replies
Apr 15, 2012
I am currently getting Error 1046: Type was not found or was not a compile-time constant: HTMLLoader.The main problem I am having is that I removed all references to HTMLLoader earlier (because I know HTMLLoader only works with AIR). I don't know why I am still getting this error. [code]
View 4 Replies
Sep 20, 2011
I just had a simple question, is it possible to display a user's facebook photo albums on flash?
I have a flash site where i would like to include my albums, i knwo this means that the viewer needs to have a facebook account logged in
View 1 Replies
Jan 14, 2009
I'm sure most have seen [URL], my question is how does one go about creating the text from user input, and getting it displayed over an image/video?
View 1 Replies
Dec 6, 2009
I have text been displayed from an xml file been generated from server side. The tags that are been used in the server side text forum add tags for underline in the below forum
[Code]...
View 11 Replies
Sep 14, 2011
I have tried all manner of AS3 scripts to no avail. Most scripts that are listed on the internet either loads them and displays them at the same time (simlutaneously) or I get script errors.
View 1 Replies
Jan 31, 2004
if i have a a database how can i get info from it show up in a flash document in a dyanamic text box
View 3 Replies
Jan 31, 2004
if i have a a database how can i get info from it show up in a flash document in a dyanamic text box
View 3 Replies
Mar 11, 2010
I currently pull an html file into our site via iframe. (due to various factors, I cannot host the information in the html on our site and need to host it elsewhere). Is it possible to use a loader or other method to pull this information into flash?
View 2 Replies
Jun 13, 2007
I am creating a video gallery off of the demo action script 3, video gallery, that is shown on this site. I have updated the XML file that contains the link to the thumbnails and videos to the appropriate url. When I test the project out, I get the following error:
TypeError: Error #1085: The element type "video" must be terminated by the matching end-tag "</video>". at
fvg::FlashVideoGallery/fvg:FlashVideoGallery::onDataHandler()
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchE ventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/flash.net:URLLoader::onComplete()
View 2 Replies
Jan 27, 2009
How can I detect when a FLV video is ended in order to dispatch an event?
View 3 Replies
Mar 12, 2010
Why doesn't this code go through the XML file in order? It should go through the XML file and display the images/comments as they are ordered in the XML file.
[Code]...
View 3 Replies
Feb 8, 2010
Is there any way to determine a file type from a url when the file extension is not a reliable indicator? Since there are different APIs for playing video, audio, or displaying images, you need to know the filetype beforehand.
View 5 Replies
May 24, 2009
I would like to change tag order in my xml file... based on the tag <order> for example I have xml file
Quote:
<?xml version="1.0" encoding="UTF-8"?>
<list>
<material>
<title>Something 2</title>
[code]....
View 8 Replies
Aug 4, 2011
know if there's any order associated with getDirectoryListing()? I have a need to always grab the latest image from a folder. It looks like getDirectoryListing() always places the latest file last in the array it returns, but I'd like to verify if possible.
View 2 Replies
Aug 17, 2004
I am creating an order form for my flash site. I have never done this before in flash but I have in visual basic. I have a few questions:
1. Is assigning variable names to checkboxes and radio buttons the same as in visual basic? I mean i know that you probably assign them in the properties. ex..say i name a radio button 'radio1', to run a check in my actionscript whether radio1 was checked or not would it be something like if(radio1){}
2. After the person fills out the form I would like to have the results of the order sent to a pre-specified email adress in a certain format. What would be a good way to do this?
View 3 Replies
Sep 14, 2010
I try to load 4 pictures. Loading is fine but the order is reverse.This is the code:
function showThumbnail(id:String, xmllist:XMLList):void{
var pics:XMLList = xmllist.(@name == id).*;
for each(var i:XML in pics.pic){
var loader:Loader = new Loader();
[code]....
The "I" is the picture index. I think the order should be 1.png 2.png 3.png 4.png just like the order of the xml ~~This is the output:
I:1 mc.x:11 mc.y:27 file:///D|/works/Flash/thumbnails/4.png I:2 mc.x:11 mc.y:210 file:///D|/works/Flash/thumbnails/3.png I:3 mc.x:11 mc.y:393 file:///D|/works/Flash/thumbnails/2.png I:4 mc.x:11 mc.y:576 file:///D|/works/Flash/thumbnails/1.png
View 4 Replies
Dec 8, 2009
i would like to load a flash file in order to use it's functions and classes. i would like that this file will be never cached. how can i do that ?
View 1 Replies
Nov 9, 2010
Trying to use Flash Media Streaming Server for a long week on a Windows Server 2003,All is actually OK with the installation of FMS.I learned how to put a video to make a vod, how to create an instance, but the major problem is that I can't read my VOD on my website.Videos are runing on windows server, I take the embed code (above the player), i put it on my web site (which is not on the same server but another one), but the video refuse to play on it.I am doubting about a lots of point, for example, do I have to let the server in LocalHost or put the windows server IP adress ?I am actually runing a Windows Media Service on this server, and all is working great on port 8080.
View 2 Replies
Jun 15, 2010
sorting number Ascending Order and Descending Order tutorial with out useing sort property[Array sorting like 91,3,5,4,6,8,3,6,1,0]
View 6 Replies
Jun 16, 2010
[code]how to do Ascending Order and Descending Order this array merge(don't use sort property)
View 1 Replies
Oct 1, 2010
I am developing a Flash Application, I which user can upload video files on server. User can upload any kind of Video file, Further my requirement is to convert the user uploaded videos into Flv.My flash application is hosted on Windows Server.[URL] i can use to conver user uploaded videos into FLV format, on window server ?
View 0 Replies
Mar 28, 2010
loading 2 external swfs into one main file using 1 preloader, I have figured out how to get the preloader to handle the correct # of bytes loaded and such but my 1st swf I want to load onto the stage is a video file and I want it as the background but I don't want it to start until after they are both (the video and main file - 2 external swfs) loaded and then I want to start the video and place it on the stage first, then place the main swf on the stage.
I can get the order right if I place them into my load complete function but then my buttons don't work on the main file.
Here is the code:
var bytesLoadedVidBG:Number = new Number();var bytesTotalVidBG:Number = new Number();var loader0:Loader = new Loader(); // load video BGvar loadedSWF0:Object;loader0.load(new
[Code]......
View 3 Replies
Aug 7, 2011
I'm trying to create a custom order form(for a printing company) where the user can select their product, enter their credit card details and then upload the file. I've created the combo box & user input text fields. Now what I want is that when user clicks the submit button:
1. A mail is sent to the admin which contain all the details about the form that was filled by the user.
2. The file that is uploaded by the user should also be sent as attachment in the same mail. I'm not able to figure out how to add the feature of file upload in ActionScript.
3. This one is optional, but will add value to me if possible. The website is developed in Wordpress. Can we have a feature where a logged in user can save his order and come again later and retrieve his order form.
View 6 Replies