IDE :: Big Site, External Swf's Or Library Components?

Jan 21, 2009

I am at the start of creating a large site with many different components: Basic text areas Latest projects with images / video Blog with text, images and video Secure login area to view protected projects

What would you recommend for this type of project. Throw all assets (main text area, blog, latest project etc) and separate them into their own mc's, then call them onto the stage? Or have them all external sepearate swf's?

View 1 Replies


Similar Posts:


IDE :: CS4 External Library Path For Components?

Jun 3, 2010

I want to:

1) Place symbols on the stage manually in loaded.fla

2) Exclude these symbols from the swf because they will already be in loading.swf

So I:

1) Created a component.fla

2) Created a "comp" symbol in the fla

3) Turned that symbol into a component via Component Definition

4) Exported the comp.swz into Configuration/Components/MyComps

5) Opened up loaded.fla

6) Pulled the comp component onto the stage

7) Went to file AS settings and added Configuration/Components/MyComps to the External Library Paths

8) Compiled loaded.swf and played it

BUT the swf includes the comp component on the stage...which is NOT what I wanted. I only want the swf to work and have a reference to comp when it it loaded into loading.swf.Why haven't the classes in comp been excluded?Obviously this is a workaround for runtime shared libraries, which is unpredictable, time-wasting and generally painful. Is there a better way to retain WYSIWYG and share symbols? I don't want to do dynamic placing.

View 2 Replies

ActionScript 3.0 :: Flash Web Site With Clickable Swf Components?

Apr 26, 2009

I have two quicktime videos which I am converting into .swf. and I am building a web page where both .swf wil be playing without sound and I want to make each one of them clickable so that it opens the full size video with the sound. How do I make a .swf within a Flash page clickable?

View 1 Replies

Actionscript 3 :: Incorporating ASP.NET And Flash Components In One Site?

Jan 21, 2011

I need to integrate ASP.NET into an existing Flash site. The site is heavily laden with Flash and needs to communicate with a SQL Server database. I want to use ASP.NET SQLDataSource for this purpose. Given that I need to integrate the two technologies for one web page on the site, do I need to make the site fully ASP.NET with embedded Flash objects? Or, can I just add a single ASPX page to the site that contains the web.config and connection string to SQL Server?

View 1 Replies

Actionscript 3 :: Create A Library Of Components For Flash

Oct 13, 2010

I am looking to build a set of components for Flash that our developers can use throughout future projects.The components are not covered by the standard set of Flash UI components and I don;t think I need to really extend the UI Interface. Instead I would like to be able to distribute a library of FLA (non-compiled) components so that a developer/designer can simply drag a component out of the Library and then edit it however they wish.Maintaining the ability to edit components is import, and this would be too limited if it meant creating skins or only changing things programatically.

View 1 Replies

ActionScript 2.0 :: Datalist And Button From Components Library?

Jun 11, 2007

using datalist and button from components library. If the datalist is not selected and user pushes button I want it to do nothing, right now if user has not clicked on datalist for selection and clicks the button it takes them to www.domain.com/undefined. I am trying to run it like so with a setFocus so it will highlight datalist if not selected:

Code:
_global.style.setStyle("themeColor", "haloOrange");
var arUrl:Array=["/browsecategory.aspx?cat=1","/browsecategory.aspx?cat=2", "/browsecategory.aspx?cat=3"];
var provider:Array=[{label:"Selection 1",data:0}, {label:"Selection 2",data:1}, {label:"Selection 3",data:2}];
choice.mcList.dataProvider=provider;

[code]....

View 2 Replies

Professional :: Scroll Components Missing In Library Folder

Oct 18, 2011

I am running CS3 but have to upgrade... so I downloaded a trial of Flash 5.5. The only components in the component window are video related. Where are the scroll components?? Do they not come with the software any more? Am I supposed to download those? If so how/where?

View 3 Replies

Open .fla And The Library Has All Components But The Stage Is Empty Except For A Pink Background?

Jun 12, 2009

I have an .fla file as part of Ray Media, I open the .fla to make some cosmetic changes and all of the components are in the library but nothing is on the stage. (except a pink background) File has one layer, one frame

View 9 Replies

Actionscript 3 :: Controlling Flash Professional Library Components In A .as File

Oct 25, 2010

I'm trying to control the behavior of components in my Flash Library using a .as file class, but it doesn't seem to be working.

For example, if I have a Button in my library called exampleBtn and attempt to do this in the .as file:

exampleBtn.visible = false;

... nothing happens. The button is still visible in my application when I run it.

Can anyone explain the workflow to make a Flash library component accessible in a .as class file using Flash CS5?

View 1 Replies

ActionScript 3.0 :: Swc File Loaded In Components Panel And Dragged It To Library?

Apr 6, 2011

I have a swc file, loaded in my components panel and dragged it to my library. It is a file which allows flash as3 to evaluate strings as numbers as such. My problem is when I import the file

import r1.deval.D; I get an error message "the class r1.deval.D must subclass flash.display.MovieClip since it is linked to a library clip of that type".

I've been sitting here for hours following the developers guide and numerous examples of how to do this yet have not found the correct process.

View 1 Replies

Flex :: Create Advanced Flex Custom Components Library?

Nov 25, 2011

I want to create a custom component library. the components are customize-able during creation time. means like Accordion or TabNavigator, when we drag and drop the Accordion in flash builder it

<mx:Accordion x="38" y="167" width="200" height="200">
<s:NavigatorContent width="100%" height="100%" label="Accordion Pane 1">
</s:NavigatorContent>

[code]....

View 2 Replies

ActionScript 2.0 :: CS3 : Load External Library Objects From An External Swf?

Jan 19, 2009

How do you load external library objects from an external swf? I want to have an external swf that only contains library objects that are exported for Actionscript, and load these from the master .swf file dynamically during the master swf execution. (I may have multiple external swf resource files)I want to be able to load the external swf, and then access it's library objects via actionscript in my main swf file.

View 6 Replies

ActionScript 3.0 :: Communicate With Components Of An External Swf?

Jun 30, 2008

I've got an AS3 swf that loads an AS2 swf using the Loader class. The AS2 swf has a component in it in which i need to assign a parameter to from the AS3 swf. [code]...

View 2 Replies

Flex :: Events - Updating External Components From An Action?

Apr 6, 2010

I'm new to Flex and am having trouble understanding Events. I think Events are what I want to use for my situation. I have 2 components, addUser.mxml and listUsers.mxml. I access these from a ViewStack in my main application. When I load listUsers.mxml it shows a list of current users in a datagrid via a HTTPService call. When I add a user using the form on addUser.mxml I would like the datagrid in listUsers.mxml to refresh when I return to that view to show the new user. I've tried several different things with addEventListener and dispatchEvent but can't seem to get it working. Can someone help me with this logic?

[Code]...

View 2 Replies

ActionScript 2.0 :: Add External Swf In My Site?

Aug 5, 2009

So I have trying all day and have got no where. Basically here is where I am at:

I have my main page in flash and I want to add a photogallery i made in Coffee Cup to the page.

First i have a button named "photo button" (no instance name) with the following AS2 code attached to it [code]...

on that same frame, diffent layer, I have a blank movie clip named "Art Gallery" with and instance name of "holder"

When the button is clicked however nothing happens. I have had the art.swf file working when I have this [code]...

View 4 Replies

Flex :: Components - Components - Any Component With The Functionality Such As Horizontally Collapsible Window Or Panel

Aug 22, 2010

Do you know any flex component with the functionality such as horizontally collapsible window or panel I found arc90, but it folds vertically.

View 1 Replies

Flash :: Flex Dynamically Created Components Added To Custom Components

Sep 8, 2009

I am created a dynamically adding a VBox, that contains two images. Into a Custom Component that is derived from UIComponent. The problem is the Vbox that contains the two image is only a really tiny size. I would like the VBox stretch to the size of the two images. This is how I am creating the Vbox....

[Code]...

View 1 Replies

ActionScript 3.0 :: Link Some Text To An External Web Site?

Aug 20, 2009

I am trying to link some text to an external web site. I am using the following code, but whenever I try to launch the external web site, I get prompted by Adobe Flash Player Security saying that it has stopped a potentially unsafe operation. It then tells me that I need to change my security settings in order to view the website. I am wondering if there is any way around stopping the security check, or is this built into Flash?

Code:
var linkLaunch:URLRequest = new URLRequest('content/web/fuel/project/home.html');
navigateToURL(linkLaunch);

View 2 Replies

Getting Error 2044 When Loading External Swf Into My Site

May 20, 2010

Ok what i have is a site made from 1 flash file where i am loading external swf files for my picture galleries. now what is happening is in Flash, dreamweaver and when i test the site, everything is working perfectly, the problem is coming when i go into internet explorer go to the site and click on the flash button to go to the picture gallery, that is when it is giving me a Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed.

View 3 Replies

ActionScript 3.0 :: Linking Icon To External Site?

Jun 22, 2010

Okay so I am building a website in Flash for the first time and I am having some trouble with the code.  I have a twitter icon that has an instance name of twitter_home and I need it to link to a twitter page [URL]...  The code I pasted below opens up firefox, but does not go to any page.  If firefox is already open on my computer...it does nothing.

[Code]...

View 3 Replies

ActionScript 3.0 :: Cannot Load An External Swf File From Site?

Dec 7, 2011

I have a fla file which is loading external swf files from my local folders.I inserted some of the swf files to a web site and tried to load them from the site, not from my local folder...So it gave me a security error like below:

*** Gvenlik Sanal Alan °hlali ***security domain-area violation
http://www.celiktek.com.tr/KIRIL.swf' SecurityDomain esi -- security domain element, 'file:///C|/Users/Acer/AppData/Local/Temp/Untitled%2D1.swf' uyumsuz bağlamına erieye

[code].....

View 9 Replies

Actionscript 3 :: Using A Hyperlink In Flash To An External Site?

Jan 26, 2012

I am using a TextArea in flash and setting its htmlText property to contain the following link:txtMyTextArea.htmlText = "some dynamic text here that ends in you can check this out <a hrefIt works fine when I test it in flash (CTRL + Enter), although when I open the generated HTML I get the following error dialog:How can I make the link work without receiving the security dialog?

View 2 Replies

ActionScript 2.0 :: External Url Into Flash Site Using Anchors.?

Feb 20, 2009

I need to have 4 external links going into my my flash site, seperat frames. It kind of works when using anchors in my "main.swf", and not load the "main.swf" using the loader component, but then all by itself the "main.swf" starts to jump between the 4 different anchors. When I load the "main.swf" using the loader component, nothing happens, and I feel I need to have the loader component aswell. I have tried to put the anchors in seperat frames in the "main.swf" aswll as in the "loader.swf".

This is how my site is build:

index.htm (with the html anchor codes needed) with the loader component "myLoader" in the index.htm loading the "main.swf".

View 1 Replies

Flash 10 :: Swf On Localhost And It Loads Another Swf From An External Site

Dec 16, 2010

I am running an swf on my localhost and it loads another swf from an external site. It gives me the following error:Connection to [external site] halted - not permitted from [localhost]localfile.swf.I have included the localhost directory in my Global Security Settings, as well as the local file. swf, so it should be trusted and allow the external link.

View 0 Replies

ActionScript 2.0 :: Preload External Swf's Into My Main Site?

Nov 25, 2008

how to preload external swf's into my main site. I have tried all sorts of differents codes and ways to set it up, but nothing seems to work. I have a preloader I use to load the whole site, with this code

myProgressBarListener = new Object();
myProgressBarListener = function (eventObject) {
myProgressBar._visible = false;[code].....

is there a way i can take this code and the preloader i have made and place it on one frame in my timeline and change the code a little bit to provide for my external swf to be loaded into a holder?If anyone has links to how to do this easily that would be awesome. I am having quite a headache trying to figure this out. I have a lot of photo galleries that i need to preload when the button is hit and you are directed to that frame in the movie, so people have something to look at while that photo series loads.

View 3 Replies

ActionScript 3.0 :: Site With External Swfs As Subsites?

Mar 16, 2009

I wanted to create a site that would load external swfs as subsites. So you've got main swf with menu and buttons which will load certain swf after click. (I provide the example in the zip folder).Loaded swf further loads a text and image for himself.My problem is that after some time clicking through different sub sites the site is starting to slow down. I'm not sure what am I doing wrong in my opinion it might be:

- wrong way of unloading swfs of the sub sites

- fact that externally loaded swfs load external data from xml and images

I provided only structure example in a .zip file (the problem is more visible with heavier swf's). In externaly loaded swf's there are couple of tweens and reflected images (created using reflect class)

View 2 Replies

IDE :: Loading An External Swf File Into Main Site

Jan 16, 2004

i am extreemly new to flash / website design ( i made my first site 6 months ago ) i am very interested in making a good looking flash site. I have made a simple flash site before using dynamic text loading it form .txt documents. too bad the site is realy lame and i want to make a better one. here is the url to my site here This came about throught the useage of tutorials on this site. i am using flash MX version 6 now i am in the process of making a new site for my profile which will be totaly flash, using flash movies getting imported into a main site under a certain layer.here is how it is set up.

[Code]....

View 3 Replies

ActionScript 2.0 :: Web Site Links As External SWFs?

Oct 26, 2004

I want one animation of a content area but i want the menu to run the animation and put in a certain .swf so i can have something like:when u click a button that is suposed to goto Home then it plays a MC that has Home as an external .swf loaded into it and when i click another link like Portfolio it starts that MC over but with Portfolio as an external .swf in it

View 1 Replies

Is It Bad Design To Nest Components Inside Components Using Flex 4

Sep 15, 2010

Is it bad practice/design to nest components inside components using Flex 4? Should I simply be creating components and inserting them into my main application as below, or doesn't it matter?

<com:MyComp1>
<com:MyComp2>
<com:MyComp3>

[code]....

View 1 Replies

ActionScript 1/2 :: External Swfs Not Displaying When Site Is Uploaded?

Feb 2, 2010

I've created a flash website and have split it up into different swfs and have added pre loaders so it loads more cleanly. When I preview the site the links open up the external swfs no problem, but once the site it uploaded the swfs don't load, it appears that the main movie restarts insted of the external swfs (only the contact button works because it's part of the main movie).The 4 buttons at the bottom of the main page go to frames with the follwing or similar action script
 
designplay.loadMovie("design.swf");
 
This frame also contains the clip (designplay) which the design.swf should load into. It appears the issue is with the paths, I've spent a long time trying to fix this and just can't get it.

[URL]

View 2 Replies







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