ActionScript 3.0 :: Presentation With Dynamic Content

Jul 3, 2009

A client asked me to make him a flash presentation file in order to put it on a cdrom and distribute it to his clients.He asked me also to make the presentation file dynamic so it is easy for him to update the content of the presentation and distribute it anew, when there is a change of the content.If it was a web based presentation, I could use php to read folders and populate the data in his presentation file (I had in mind to put folders relative to the file with the content in it ("client_description.txt", photos, "work_description.txt", etc.)). But now that the file he needs is a presentation file. Is it possible to have as3 read the folders of the cdrom?Do you have another proposition to make in order for the making of a dynamic presentation file?

View 5 Replies


Similar Posts:


ActionScript 2.0 :: Edit Dynamic Content And Modify The Content And Save It All Within Flash?

Oct 1, 2007

how it is possible to edit dynamic content and modify the content and save it, all within flash.I have tried some experiments in the past and have got the text to change etc which is easy but i need a way to save the content so the next time anybody sees the flash it will have the latest content until i change it again.

View 2 Replies

Arrays :: Sorting Order Of Series Of Flash Slides Into Dynamic Presentation

Feb 21, 2011

I'm not quite sure how to do this - I'm building an admin interface to sort the order of a series of flash slides into a dynamic presentation. The admin interface pulls the slides from xml and displays each as a thumbnail. The thumbnails, when dragged, reorder themselves in the array appropriately. The problem is, I want the actual array of slides to reorganize itself accordingly. My code is this:

function onThumbPress( e:MouseEvent ):void {
e.target.startDrag();
} function onThumbRelease( e:MouseEvent ):void {
e.currentTarget.stopDrag();
sortSlides();
[Code] .....

So what I want to do is take the change in the array (say 0 moves in front of 1 in project_thumbs_array) - and make sure that my other array (project_clips_array) moves item 0 in front of 1 as well. I thought something like this might work but it doesn't:
project_clips_array.sortOn ('project_thumbs_array.x',Array.NUMERIC);

View 1 Replies

Flash :: Silverlight - MVVM - Presentation Model In Flex Vs Presentation Model In Silverlight: Advantages And Disadvantages?

Apr 10, 2011

As it is said here: [URL] "If you do a Google search today for "MVVM and Flex", the first post is by somebody who claims that MVVM is not a good fit for Flex. I couldn't disagree more. Out of the box, the Flex framework makes it much easier to implement a Presentation Model than similar MVVM implementations in Silverlight. That is not to say that there aren't good third-party libraries that make it easier in Silverlight, but without any help, it is easier to do in Flex." So MVVM as LOGICAL CONCEPT can be implemented in both but the way it is implemented in Silverlight requires more Plumbing than Flex.

What prevents Silverlight MVVM to be implemented like Flex ? Doesn't Silverlight have same capability in event system to do the same? If yes why does Silverlight do things more complicated what's the advantages then ? Is it about using Class Interfaces which are more strongly typed? What are the disadvantages also ? For example as for implementing MULTIPLE VIEWS for 1 View-Model does Flex implementation make it also more obvious?

View 2 Replies

ActionScript 2.0 :: Dynamic Content To A MC?

Jun 13, 2006

On the main timeline I have

_root.float.page_body = '';
loadVariables("content/flash/color_studies.txt", _root.float.page_body);

and I'm using it to pass a txt file to a dynamic text field ( page_body ) inside a MC ( float ). When the text field was on the main timeline, this approach worked great, but now all that appears in the text field is:

View 5 Replies

ActionScript 3.0 :: Have The Swf Content Dynamic?

May 27, 2010

Currently I already have a swf which is pulling parameters from a xml file. Just wondering if an asp cms can rewrite this xml file, so that the swf file is controlled by the cms. Or I should have the CMS directly provide parameters to the swf file, in other words, there is no xml file inbetweet swf and cms. Or there will be other methods..?

View 5 Replies

ActionScript 2.0 :: CS3 Dynamic Content From ASP Page

Aug 5, 2009

I am attempting to dynamically display a series of questions with answers in my flash movie from an existing ASP page. Initially, the dynamic questions imported from an ASP page appear on the Flash page (question 1, 2, 3, etc.). When the user clicks on a question, the flash movie advances a frame and displays the answer. I can display the questions properly, but I am having a difficult time carrying over the question ID to the next frame so that the appropriate answer will display.

The current database fields look like this:

-QuestionID
-Question
-AnswerID
-Answer

This is very simple to do in ASP or PHP but I am having a tough time trying to tie everything together in Flash. Should I create two separate ASP pages, one to query the questions and one to query the answers? How do I carry the QuestionID to the next frame in Flash?

View 4 Replies

Load Dynamic Content Outside Of Flash?

Feb 9, 2011

I would like to create a Flash menu but want to load HTML inside a targeted div on the same page dynamically without refreshing. I've seen several people say iframes can be used but I would prefer to stay away from iframes and use divs if possible. I'm guessing some fancy javascript would be required?

View 1 Replies

ActionScript 3.0 :: Add Dynamic Content To ScrollPane

Dec 16, 2008

I have created a Address Class that uses Remote Hosting to get addresses for site locations and creates the appropriate listings in a MovieClip.

I am trying to use this class as the source for a scroll pane inside another movie clip.

I get the site locations to show up in the scrollPane but they will not scroll.

I believe I need to pause some how in the constructor until I have all the site addresses created. how to get the scrollpane to scroll.


Here are some snippets

The container MovieClip

import FlashCFMXApplication.AL_Addresses;
import fl.containers.ScrollPane;
var scrollPane:ScrollPane;

[Code].....

View 3 Replies

ActionScript 3.0 :: Masking Dynamic Content?

Feb 3, 2009

I'm loading images into an otherwise empty MovieClip called container_mc using UILoaders and spacing them horizontally. I also have the image names as TextFields below the images all within the container. I'm masking the container clip using the following syntax:

container_mc.cacheAsBitmap = true;
mask_mc.cacheAsBitmap = true;
container_mc.mask = mask_mc;

This USUALLY works, but for some reason when I load over 20 images into the container -- the mask no longer works. At first it appears as though it's working but then the text disappears and when I mouse over the images to scroll them horizontally, the mask (which is magenta) appears and disappears -- flickering strangely. Should I be caching? I was under the impression I had to for the dynamic text to show up. Maybe it's the where I placed the code (load-order)?

View 0 Replies

ActionScript 3.0 :: How To Scroll Dynamic Content

Jun 29, 2009

I'm using CS3 and i wrote a in actionscript 3 an .as file that sends a request to a server and gets as a response an xml file. After loading the xml i create dynamically i big number of questions each one of them with some possible choices for the user to select(Radio buttons). The problem is that i have about 40 questions with about 120 radio buttons to show the user but only 5 fit the screen and the others are not visible. Can anyone give me a help using scrollpane or something else so i can give the user a way to see all of the questions and radio buttons available?

View 0 Replies

ActionScript 3.0 :: Creating Dynamic MC With Different Content?

Jul 22, 2010

I know the Post Title is not much explicative but I didn't know how to summarize my problem. Here it is in full version: I'm making a card game, and I have all the vectorial graphics for the cards. I have a class named Deck and one named Card. When I create a new Deck I have this constructor

[Code]...

View 9 Replies

ActionScript 3.0 :: Dynamic Content In Scrollpane

Oct 4, 2010

ActionScript Code:
import fl.controls.ProgressBar;
import fl.transitions.Tween;
import fl.transitions.easing.*;

[Code].....

i am trying to put this in scroll pane but it wont scroll .. modifying the code so that scrollpane works

View 0 Replies

Actionscript 3.0 :: Google SEO And Dynamic Content

May 22, 2009

A client has a flash website that they wish to have indexable by google. They are under the impression that google will be able to traverse this swf and get all their content out of it. However their site is very dynamic, it is a front end only for a php/mysql backend, it loads all content via dynamically created xml files based on the http get calls that are made to the api. As far as i understand google does not know how to index a flash site like this. Our recommendation is to use the same api to create a shadow site for the googlebots to crawl and then deeplink to sections of the flash site. They are not convinced.. Does anyone have any proof either FOR or AGAINST this solution? <flattery>I come here because i know this is the definitive source for flash information.</flattery>

View 1 Replies

ActionScript 2.0 :: Dynamic Content For The Scrollpane?

Apr 17, 2003

as i know, the component scrollpane in the movie haves the content of a movieclip, but, i am wondering if it was possible to let the content of the scrollpane dynamic, say, taking pictures, data, movies, from outside, this content won't be specific, always may change...

let's say, i have an aplication in wich i would like to show some pictures and info about it, a travel agency for example, i will have different pictures of diferent places, info about tavels, costs, graphics and so on... can i do this using the scrollpane? can i let it dynamic?

View 2 Replies

ActionScript 2.0 :: Disappearing Dynamic Content In IE FIX?

Aug 19, 2006

For anyone that has ever run into the flaw that makes dynamic content disapear in IE I've found the solutionThe issue is caching -- I'm not sure what causes the issue but I do know that in IE it tries to cache the PHP/XML doc and it screws everything upthe fix is to concatinate a random/unique string at the end of the load request - Like so-gStuff.load("link.php?cachebuster=" + new Date().getTime());works like a charm ... my problem in IE was when you clicked refresh or you clicked the button that loaded the information into the dynamic text field it would disapear.more info / detail can be found here

View 1 Replies

ActionScript 2.0 :: CS3 Preloader Help With Dynamic Content?

Aug 3, 2008

I have a carousel that I am creating that recieves information from an XML file that points to a couple of .png's with corresponding "tooltip" messages that pop-up on rollover. I have searched all over the place, and I can't quite seem to figure it out. Can someone help with a guide on scripting a simple preloader for the actual content that the XML files points to? I will give you my .fla and source code.

Code:
import mx.utils.Delegate;
var numOfItems:Number;

[code].....

View 6 Replies

ActionScript 2.0 :: Dynamic Content In ScrollPane?

Oct 1, 2008

I'm tryign scroll dynamic buttons (movie clip with on release actions) in a scrollPane component. As soon as i drop the scrollPane onto the stage, all the buttons become white rectangles with nothing in it

the buttons should be grey and when you click on them they 'll say "CLICK" on the output window. but that doesnt work either.

here's the source code

[Code]....

View 4 Replies

ActionScript 2.0 :: Dynamic Buttons And Their Content?

May 1, 2009

I have a solution for this already, but it involves a million if/else statements so I was wondering if there's a way around this. Here we go.I'm making an RSS reader that displays posts in Craigslist. All the info I need is loaded into flash and immediately tossed into arrays. Well take the links[] array for our example.

I count the amount of links
for(i=0;i<links.length;i++){
and I make my boxes to hold the info

[code]......

View 2 Replies

ActionScript 3.0 :: Get The Content Of Dynamic Text?

Dec 8, 2011

I have a dynamic text "Home_btn" with content "Home", "Preview_btn" content "Preview" and so on.. I have another dynamic text "title_txt"and i need to get the txt content of the buttons to change the "Title_txt" when the button was clicked.
my code...
 
function clickBtn(evtObj:MouseEvent) {
title_txt.text=evtObj.target.name;
}
 
but this, get the target name of event.

View 8 Replies

ActionScript 3.0 :: Y Row Spacing With Dynamic Content?

Sep 7, 2009

Im trying to build an rss reader, i've managed to parse the xml and get the content scrolling. I have 2 textfields inside a single movieclip for each news item, but what id like to do is position the movieclips on the y-axis releative to the height and y position of the preceding movieclip.

Code:
for (var i:uint=0; i<il.length(); i++) {
var holders_mc:MovieClip = new MovieClip();

[code].....

View 1 Replies

IDE :: Slow Dynamic Content Loading In IE?

Nov 17, 2009

This is really weird and I have no idea what could be causing this.I have this simple Flash site:

http:[url]....The main interface is loaded, and then it starts to preload a few external JPG images.The problem is that with IE it is taking about FOUR times (or even more) the time to load the same pictures with FF. In a slow connection such as a 128K the main interface takes the same time to load either on FF aswel IE - about 5-10 seconds. Then, it starts loading the external pictures - in FF it will take about 20 seconds more and in IE it will take about 80 seconds more. It is clear to me that the problem is not in the site loading itself, but in the contents loading. I can't see what in the browser could be interfering in the SWF, unless that the IE Flash plugin have some known (or unknown!) bug regarding to MovieClipLoader!

The only thing I can have in mind, is that I am not terminating the listeners in the onLoadComplete events, so theoretically they would be keeping the CPU busy even after the pictures finish to load (I spawn about 30 listeners, one for each picture). However, I doubt that this is the reason or else it would make FF slow down too, indeed? Also I noticed that when running the application in the authoring environment (control+ENTER) but loading contents from remote server, it have the same behavior as when loaded within IE (slow loading).

View 1 Replies

ActionScript 3.0 :: How To Do Preloading For Dynamic Content

Feb 20, 2010

My flash site is comprised of about 10 to 12 dynamically loaded external images, which are declared as Loader class instances, loaded, then placed on the stage. I set up a basic external pre-loader but just as I suspected it would, the pre-loader loads the swf of my main site but when the swf is loaded the external dynamic content of the main site still has to be loaded. How can I go about preloading dynamic content? Because what I want is all the assets that make up the site to be there and loaded, when the pre-loader is done.

View 2 Replies

ActionScript 2.0 :: Dynamic Content Loading?

Sep 19, 2003

I need to create a movie that will look into some directories and display the images he founds there (or text).

View 6 Replies

ActionScript 3.0 :: Dynamic Content With Admin Interface?

Mar 24, 2009

I need an example source of something like this:

The flash reads the XML file, to create the dynamic content (like a picture gallery) The php creates the XML, and it has a user interface where we can upload pictures.

View 1 Replies

ActionScript 2.0 :: LoadMovie Not Waiting For Dynamic Content?

Jul 30, 2009

I am creating a site where it is loading dynamic images and text within the SWF. Currently for images I am using the loadMovie command. This works typically when I do not have images of significant size, however I am having trouble getting the movie to check up if a larger image needs to be loaded. Here is my current code below, it does not seem to be checking to see if the clip is loaded and simply ignores it if the timeline reaches the actionscript before the image is loaded. _root.generalVars.homeImg is a variable that I define outside of flash

//creating empty placeholder
this.createEmptyMovieClip("tester",1)
tester.onData=function(){

[code]...

View 2 Replies

ActionScript 3.0 :: Loading Swf With Dynamic Content Into Scrollpane

Aug 5, 2009

I have been working on a file for a while now and I am trying to load an external swf into a scrollpane. The external swf gets all its content from an xml file (there is nothing on the stage, it's all done through as3) My problem is that when I load the swf into the scrollpane I don't get the scroll bars and most of my content is cut off. I have tried setting the scroll policy to auto, and true, neither helped. Can anybody tell me what I am doing wrong?

[Code].....

View 3 Replies

ActionScript 3.0 :: Components And Dynamic Content In Flash?

Oct 22, 2009

I have a specific requirement for a UI component that I am working on. I would like to make the component so that a designer can update a graphics in live preview mode whilst keeping the associated class the same.For example...ets take a button component which has an icon in the background and label. By setting an inspectable, I am able to set the label easily, but is it possible to point the icon to an image in say, the library or remotely etc? and have the image show as the background inside flash?[EDIT]Ahhh...I'm not able to load extenal files into the client so the graphic would have to be a library asset? Possible?

View 1 Replies

Dynamic Content Flash Dropping Processes?

May 10, 2009

I have been working on a full flash website and am encountering a strange problem (or at least its strange to me).
  
I have the main shell of the site, which contains:The layoutNavigationA movieclip which pages are loaded into (external swf's)Some actionscript which streams in an MP3The controls for the background musicA piece of actionscript which loads an animated background (another external SWF) 
 
I then have a series of pages in their own SWF's which get loaded into a movieclip within the shell when the user clicks the relevant button on the menu. Most of these pages contain:The panels for the content on that pageSome dynamic text areas for the text content on that pageSome actionscript which loads the content for that page from a couple of text files and populates the dynamic text areas Then there is a showreel, which has a menu and a customized FLVPlayback component to play audio and video tracks; the data for the menu and the tracks themselves are stored in XML files. 
 
If I am using a connection over 2MBit: Initial preloader appears, shell loads, background music streams in nicely and then the content page is loaded in, panels animate in and the text content appears; all is well and its pretty quick.
 
If I throttle my bandwidth to below 2MBit (the main tests being done with the connection throttled to 1.5MBit), this happens: Initial preload appears, shell loads, background music streams in but takes a bit longer to start up, content page loads in, panels animate in and the content appears for about 2 seconds.
 
THEN the contents of the text areas disapears and the word "undefined" appears. So the content seems to be dropped. I've done some testing to identify the cause and if I comment out the code which streams in the background audio, the issue disapears and everything works fine, so it appears to be related to the audio. I will say, its not the most lightweight of sites; its quite graphically heavy (nothing too excessive though) and the background music is a 6MB MP3; the owner of the site is a movie composer so he has a lot of high quality streaming audio.
 
So I was wondering if anyone knows why this type of issue would occur, it seems strange that Flash would drop the content thats been loaded in, that background music would break the process.

View 6 Replies

ActionScript 3.0 :: Print The Content Of A Dynamic Text?

Feb 28, 2010

I dont manage to print the content of a dynamic text
 
The movie clip is : var dates:boite_texte = new boite_texte();

Its content is generated in a function :
function onTxtComplete(e:Event):void {
.....
dates.labelOut.text += (titre1 + "

[Code].....

View 8 Replies







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