Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash








XML And Flash


Hello
I have a tutorial given by my teacher that uploads XML content (text) into a combo box
exemple
in XML
<image name="auto"/>
<image name="fridge"/>
etc....
I want the XML content to be loaded in a text field rather than in combo box, and I want each content of XML to be a link in my text field (do i have to do many text fields, or can I just do one?)
exemple :
I want in flash to link the word auto to a frame called auto
and link fridge to another frame

and I want to be able to control the font of the field
how do I do all that
It is quite complicated for me, but I really want to do it
thks a lot




FlashKit > Flash Help > Flash General Help
Posted on: 03-15-2003, 08:58 AM


View Complete Forum Thread with Replies

Sponsored Links:

Flash Script? Is Writing Flash Code Possible? Without A Flash Builder Like Flash MX
I want to get into flash programming on my website, but i do not have thecash to buy flash MX 2004, it is 499 US thats a lot of money.

Basically what i want to know is, can flash be written as code, like HTML or do i need to buy a flash builder. And if so, what can i do about learning this code

Thanx from Fenton Multimedia Designs

View Replies !    View Related
Flash Script? Is Writing Flash Code Possible? Without A Flash Builder Like Flash MX
I want to get into flash programming on my website, but i do not have thecash to buy flash MX 2004, it is 499 US thats a lot of money.

Basically what i want to know is, can flash be written as code, like HTML or do i need to buy a flash builder. And if so, what can i do about learning this code

Thanx from Fenton Multimedia Designs

View Replies !    View Related
Flash Versions Order Of Sequence : Flash 5, Flash MX, FlashMX 2004?
some questions on FLash versions

After Flash 5 was FlashMX then followed by FLashMX 2004 ???

which means Flash MX is version 6??

thanks for answering.

View Replies !    View Related
Can You Open A Flash File Made With Flash Mx, Using Flash Mx 2004?
Hi,

I have recently purchased flash mx 2004. However when I go to open my old flash mx flies in flash mx 2004 all I get is unexpected file format! Why is this? Also when I open flash mx 2004 and try to open one of the sample files it comes up with the same message!

Also when you download and install an extension from macromedia exchange, how do you then use the extension feature in flash? Were do you find it?

Any help on these matters would be appreciated?

Thank you

View Replies !    View Related
How Do You Update A Flash Object Without Flash? Selling A Flash Site.
I am wondering what may be a large wonder. If I create a website with flash etc for somebody else, how can they update their own site? For example, if they have an 'updates' page, I don't want to have to keep on redoing it for them in Flash. I heard words like 'strings' and 'XML' kicking about, but don't really understand it. Thanks,

Alex

View Replies !    View Related
Making A Flash Website (flash In A Flash In A Flash Etc...)
I am working on a flash "database" as it's called and to make this possible I will need to have multiple flash documents that load within a flash to keep the loading time down, otherwise the filesize would be astronomical!

To see what I am working on go to http://www.axeldesigns.com/h2/helpdatabase then click "menu button" to open the project. Hopefully then you can get a good sense of what I am trying to accomplish...So when you click on the individual links, I want a flash within the main flash to load completely on top with it's own load bar and everything.

I'm not very experienced with action scripting, but I am quite experienced with the animation side of flash and drawing tools etc...

So, if anyone knows of any tutorials or examples that I could work off of, please help me out.

Alex

View Replies !    View Related
Will An Swf Made In Flash MX That Is Exported As Flash 4- Play On Flash 4 Cpu's?
Will an swf made in Flash MX that is exported as Flash 4- play on Flash 4 cpu's? How do I get my mx movies compatible with people who only have Flash 4???? I ask this because I exported a movie made in Mx to Flash 4, so I am just wondering if it will play on all Flash computers that have Flash 4, eventhough they may not have flash 5 or mx. Thanks...

View Replies !    View Related
Updating Flash 4 Code To Flash MX 2004 Or Flash 8
Can Flash MX or Flash 8 automatically update old flash code or update depreciated code? I have a flash 4 project that when resaved as Flash MX 2004, obviously starts to throw errors.

View Replies !    View Related
Flash Over Html, Hide Flash Access Html After Flash Movie Ends
We've got a green screened video playing in a flash movie over top of our html content.

when the movie ends, flash uses external interface .api to call a javascript function which swaps the flash movie out with a 5 x 5 pixel flash movie (rewrites the <div>).

this works and you can interact with the html content after the flash movie in all browsers except firefox...!

anyone know of any work-arounds or is there a better way of handling flash over html in this fashion?

any input would be greatly appreciated!

View Replies !    View Related
HOW DO YOU CHANGE THE BG OF THE FLASH THING ON FLASH KIT W/OUT USING FLASH?
Plz tell me because I am making a little kid's website and they'll b sad if doesn't match the flash.

View Replies !    View Related
Yikes, Can I Go From Flash MX To Flash MX 2004 To Flash MX?
I have flash MX on my computer here at home, I went on campus to edit a file in a class in Flash MX 2004, now I am trying to reopen the file in Flash MX here at home again and it won't allow me to open it, saything there is an unexpected format error.

Is this caused from opening it in Flash MX 2004? Is there a way to revert the file back to Flash MX? Yikes!

View Replies !    View Related
Flash/CSS Question: Can Flash In A <div> Overlay Another <div> Containing Flash?
I'm guessing this answer is no but thought I'd ask anyway.

With the "wmode" set to transparent I can get my top div to overlay text/background images no problems but not on top of another flash movie.

Can it be done?

View Replies !    View Related
Flash 8 Function Not Working In Flash 8 But In Flash 9
I use this piece of Code from Senoculars Matrix Tutorial:


Code:
import flash.geom.Matrix;
function duplicateMovieClipImage(from, target){
var pics= new flash.display.BitmapData(from._width, from._height);
pics.draw(from);
target.attachBitmap(pics, 1);
}
duplicateMovieClipImage(this.viewer.picHolder, doubleSize.bigpic);
var my_matrix2 = doubleSize.bigpic.transform.matrix;
my_matrix2.scale(1, 1);
my_matrix2.tx = -2;
my_matrix2.ty = -2;
doubleSize.bigpic.transform.matrix = my_matrix2;

duplicateMovieClipImage(viewer.picHolder, normalSize.bigpic);
var my_matrix = normalSize.bigpic.transform.matrix;
my_matrix.scale(0.25, 0.25);
my_matrix.tx = 0;
my_matrix.ty = 0;
normalSize.bigpic.transform.matrix = my_matrix;
When I play this in a Flash 9 Player everything is made correct (A Pic generated in its Original Form and one in its 0.25/0.25 Size.

But when I watch this in a Flash 8 Player (8.0.22.0 that is)

the Script is ignored

any1 know why???

View Replies !    View Related
Firefox Recognizes Quicktime As Flash Player Instead Of Flash As Flash Player
I don't know why when I go to websites and all those old Flash sites don't work anymore, but I get the "Quicktime Question Mark" logo. I've tried reinstalling Flash Player so many times but the quicktime logo keeps coming up. I've tried this both with Firefox and Safari and it just doesn't work.

View Replies !    View Related
Nested Function Locks Flash On 2nd Frame. Cold Fusion Problem Or Flash MX ? Or Me?
It's been three days I don't sleep. Anybody,please,.....

// Flash MX code 2nd frame

stop();
validatePackage = new LoadVars();
validatePackage.onLoad = function() {
if (validatePackage.success == "0") {
setPackageCheck = new LoadVars();
setPackageCheck.onLoad = function() {
_root.packageCheck.text = setPackageCheck.packageCheck;
_root.unlockCheck.text = setPackageCheck.unlockCheck;
_root.gotoAndStop("exPrep");/* without this line
everything works perfectly !!!!!. WHY ! I mean I have other functions sending time line somewhere else accordint to if statments and it works fine!*/
};
setPackageCheck.accountID = _root.accountID.text;
setPackageCheck.sendAndLoad("setPackageCheck.cfm", setPackageCheck, "POST");
} else {
_root.packageCheck.text = validatePackage.packageCheck;
_root.unlockCheck.text = validatePackage.unlockCheck;
_root.vdDays1.text = validatePackage.vdDays;
_root.vdHours1.text = validatePackage.vdHours;
_root.vdMinutes1.text = validatePackage.vdMinutes;
_root.gotoAndStop("exPrep");/* without this line
everything works perfectly !!!!!. WHY !*/
}
};
validatePackage.accountID = _root.accountID.text;
validatePackage.sendAndLoad("validatePackage.cfm", validatePackage, "POST");


<--- "validatePackage.cfm"--->

<cfquery name="validatePackage" datasource="dsn">
SELECT packageCheck, unlockCheck
FROM accounts
WHERE accountID=#form.accountID#
</cfquery>
<cfif validatePackage.packageCheck lt 1>
<cfoutput query="validatePackage">
&success=0&
&unlockCheck=#urlencodedformat(validatePackage.unl ockCheck)#&
</cfoutput>
<cfelse>
<cfset vdDays=#DateDiff("d",#validatePackage.packageCheck #, now())#>
<cfset vdHours=#DateDiff("h",#validatePackage.packageChec k#, now())#>
<cfset vdMinutes=#DateDiff("n",#validatePackage.packageCh eck#, now())#>
<cfoutput query="validatePackage">
&packageCheck=#urlencodedformat(validatePackage.pa ckageCheck)#&
&unlockCheck=#urlencodedformat(validatePackage.unl ockCheck)#&
&vdDays=#vdDays#&
&vdHours=#vdHours#&
&vdMinutes=#vdMinutes#&
</cfoutput>
</cfif>

<--- "setPackageCheck.cfm"--->

<cfquery name="setValues" datasource = "dsn">
UPDATE accounts
SET packageCheck= #now()#
WHERE accountID=#form.accountID#
</cfquery>
<cfquery name="setPackageCheck" datasource = "dsn">
SELECT packageCheck, unlockCheck
FROM accounts
WHERE accountID=#form.accountID#
</cfquery>
<cfoutput query="setPackageCheck">
&packageCheck=#urlencodedformat(setPackageCheck.pa ckageCheck)#&
&unlockCheck=#urlencodedformat(setPackageCheck.unl ockCheck)#&
</cfoutput>

View Replies !    View Related
[MX04] Open A New Link In Html By Clicking Button In Flash (no Code In Flash).
Hi,

I'm facing problem while opening a new html window by clicking button created in flash.

For this i don't want to write single code in flash but want to handle this through the html only.

For this I have used <embed> tag to add swf file in html. but could not add click code in HTML on that button.

Could any one help me out?

View Replies !    View Related
Get Variables Inside Flash 9 Movie With Action Script 3 Using Flash Selenium And Sele
Dear All,


I use Selenium RC and I want to do automated flash testing. I am using Flash Selenium.


Web Application has Flash content (SWF file) and is Version 9.0 and uses Action Script 3.0.


I cant use the functions like flashApp.Getvariable(varName) or flashapp.TotalFrames() as mentioned http://code.google.com/p/flash-selenium/


I see documentation and functions listed at ( http://www.adobe.com/support/flash/p...h/scriptingwit hflash_03.html functions for Flash 5 ), i cant use them . I get exception all the time.


I am trying to access the varibales in the flash movie which is loaded using GetVariable but Selenium throws an exception but no information message.


I want to ask can I use functions listed on above adobe site with Flash 9 movie with Action Script 3.0 ? If not is there any way to get variables inside Flash movie using Flash External Interface and Selenium RC ?


Best Regards !


/ Yogesh

View Replies !    View Related
How Print Html Page Or Word Outside Flash When Click Button Inside Flash ?
hello,


how print html page or word outside flash when click button inside flash ?

any ideas or what the action can help me to do that ?

View Replies !    View Related
Remove Double Click In XP For Flash & Show Flash In Firewall Protected Environment
Remove Double click in XP for flash & show flash inside firewall protected environment


Here is some code that will disable the annoying double click feature for flash when using XP. This code also enables all viewers to see your flash. For example some firewalls block flash (SO STUPID) but with this code instead of using the embed tags and object tags allows those users behind firewall environments to see your hard worked flash masterpiece.

Okay here is how you do it.
Inside your main file that is calling the flash .swf.
Remove the code that you currently have there and replace it with the code that is inside the putInsideIndex.html (see attachment)
Make sure that you change the name of the movie in that code so that it opens your swf. You might need to change the width and the height too so that you don't have your flash looking like a monster.

Alright then you need to take the other file called RemoveDoubleClick.js
Open it in your editor and change the name to the name of your choosing on line 12. Then post that file (DO NOT RENAME IT) into the same directory as the main file that you edited above. Most cases that would be the index.html or whatever.

So enjoy and start letting EVERYONE see your sites & be more user friendly!
GOOD LUCK!

View Replies !    View Related
New To Flash, Create A Flash Form Which Is Emailed Using CGI Script When Submit Button Is Pressed
I'm trying to build a form in flash that is emailed using CGI script. I'm just lost and confused and I just can't seem to figure this out.

This is the CGI coding for HTML and I just need to convert it to use in CS3:
<form action="

View Replies !    View Related
Outputting Data In Flash To Text Documents, Creating Textdocs With Flash & Mc Filters
Question 1: How do I add a filter to a movieclip from actionscript,
More specificly, the "adjust color" filter, and I want to decrease brightness, saturation, hue, and contrast... by actionscript...
If you dont know what I mean, use the circle tool to create a circle, convert to movie clip, click the "filter" tab, then click + and add a adjust color filter, you'll see what I mean...

Question 2: I need to output text to 'text' documents, no I cannot use shared objects for this, as it is a program for a client, and it isn't safe enough for me...

Basically, this is what I want to do...


Code:
var archive:Array = [];
archive[7] = "Hello I am the 8th archive";

//save to a text document called "archive7" in the directory myProgramfiles
//finished with code...
then

on initilization of my program, it'd do this

Code:
//get text from the text document I saved in the directory "myProgramfilesarchive7"
Thats what I really need

Question 3:Is there a way to create a folder, text document, through flash
//example


Code:
var textdoc:TextDocument = new TextDocument();
textdoc.name = archive7;
textdoc.text = "Hello I am the 8th archive";
Can anyone tell me how to do this

Thanks in advance

View Replies !    View Related
The Flash Anthology: Cool Effects &amp; Practical ActionScript - Chapter 1: Flash Essentials
This is an article discussion thread for discussing the SitePoint article, "The Flash Anthology: Cool Effects & Practical ActionScript - Chapter 1: Flash Essentials"

View Replies !    View Related
The Flash Anthology: Cool Effects & Practical ActionScript - Chapter 1: Flash Essenti
Notice: This is a discussion thread for comments about the SitePoint article, The Flash Anthology: Cool Effects & Practical ActionScript - Chapter 1: Flash Essentials.
__________

eXCELLENT! clearly composed article, gonna read the other chapters too. thanks

View Replies !    View Related
Call Flash Function From Href Tag Within A Flash Html Text Field?
I'm creating dynamic html fields within Flash and have been succesful calling javascript functions or launching browsers, but what would REALLY be cool would to actually call Flash functions with those href tags.

Does that sound like a possibility to anybody?

Or, alternatley, could a javascript function in the web page execute a function within the swf?

View Replies !    View Related
Create Java Pop Up From Flash Index Site To Standalone Flash Popup
Want bad help to create a javapop up link from index.htm flash movie with a enter button that leads to the other .swf that is a popup window with another .swf. How do I do that.

One more thing is there a real good downloadable on how to make "news" scrolls in flash the ones I have seen did not please me.

And is there a way to connect that "news" feed scroller to a text dokument for easier updates instead of having to redo the thing in the .fla file

Hope you understand my problems and I would really appreciate all help I can get.

Cheers

Best regards

/s

View Replies !    View Related
Flash 6 Generator Equivalent To Export Dynamically Populated Images From Flash
I'm trying to do an automatic export of graphics developed in flash, for static site elements- graphic buttons.
Generator used to export images from dynamically populated templates, but MX does not support generator, Also being that generator ran with 4 and 5, dynamic text field sizing was not an option-this is necessary to fit the button graphics to text.

Is there either something that I can generate buttons with flash, or has anyone seen a button generator that can batch export and use imported graphics?

Thanks in advance!!!

View Replies !    View Related
Using Flash To Open A New Browser Window - Exact Size Of Flash Movie?
Hi,

In Dreamweaver, I've previously used the 'open new browser window' behaviour from a link to display my Flash movies, and entered the .SWF filename as the URL to launch (this launches a browser window thatls exactly the size of the movie, no scrollbars, buttons etc). Can I do a similar thing with Flash's 'get URL' command, or does that only go to HTML/HTM files?

Cheers, Skratch

View Replies !    View Related
Using Flash To Open A New Browser Window - Exact Size Of Flash Movie?
Hi,

In Dreamweaver, I've previously used the 'open new browser window' behaviour from a link to display my Flash movies, and entered the .SWF filename as the URL to launch (this launches a browser window thatls exactly the size of the movie, no scrollbars, buttons etc). Can I do a similar thing with Flash's 'get URL' command, or does that only go to HTML/HTM files?

Cheers, Skratch

View Replies !    View Related
Pass Variable To Custom Function Not Working In Flash MX For Flash 6 Player
I have a Flash application that I built in Flash 5 that I want to now output in Flash MX (not 2004, though) for Flash 6 Player. The problem is that part of my code, which works fine if published for Flash 5 Player, breaks if published for Flash 6 Player. I am loading text from an external text file, and then passing the text contents of each variable to a function (to strip line breaks). Following is the code... does anyone know how to rewrite this so that it will work as Flash 6 Player swf? The contents of the variable are not getting passed, and eval does not work on left side of expression... I've tried everything I can think of...

Thanks in advance for help.

-S



PHP Code:



/* content, correct, Q1, Q2, Q3, etc are all variable loaded from external text file. I am trying to pass contents of variables, which is why I need to eval them. This worked in Flash 5, but not in Flash MX if I publish as Flash Player 6 file.  */   
temp = stripLineBreak("content");
temp = stripLineBreak("correct");
for (i=1; i<=10; i++){
     z="Q"+i
     temp = stripLineBreak(z);
}
     
function stripLineBreak(x) {
     tempArray = new Array();
     tempArray = eval(x).split("
");
     eval(x) = tempArray.join("");
     tempArray.splice(0,tempArray.length);
     tempArray = eval(x).split("
");
     eval(x) = tempArray.join("");
     tempArray.splice(0,tempArray.length);
}

View Replies !    View Related
Href Not Useable In Flash. . .then Any Ideas On How To Make A FAQ Type Thing In Flash
Without having to make all of your questions into buttons ??

any ideas sugestions please help.. .thanks

Darin

View Replies !    View Related
Any Tools To Convert Macintosh Flash Movie Source To PC Flash Version?
Hi Folks,

One of my client has given me a flash movie made in flash mx 2004 version 7.It is in Macintosh.

I am trying to open it in PC ,but it says " unexpected file format"

Are there any tools to convert from macintosh flash to PC flash.

Your help will be appreciated.

Thanks

View Replies !    View Related
Ie6 Crashes When The Mousepointer Leaves The Flash Movie Area. [Flash Player 8]
Not sure if this is the right area for this thread, but i'm not sure where it fits in...

I have a draggable map program that uses LoadVars.load to send location messages back to the server.

After a user saves a location, thereby triggering the load() method, and then moves their mouse pointer outside the area of the .swf movie on the html page, the browser crashes.

I haven't been able to replicate it on any other computer except this users', which is using Flash Player 8, and IE6. Of course the only user of this side of the app, is this user, so im forced to find an answer.

Anyone else run into this, or have any wisdom to impart on me?

View Replies !    View Related
Any Way To Activate Flash Fullscreen Mode When Flash Movie Loads In The Browser
Hi all,

I want to activate Flash Fullscreen mode when flash movie loads in the browser. Without activating it through button clicks.

I tried for this using this type of code:

function goFullScreen()
{
Stage["displayState"] = "fullScreen";
}
goFullScreen();

But it is not working this way, it is working when I put this type of code:

function goFullScreen()
{
Stage["displayState"] = "fullScreen";
}
button.onRelease=function()
{
goFullScreen();
}

thanks in advance,
Vikas.

View Replies !    View Related
Force Flash To Open File Download Box In Front Of The Flash Movie
Folks,
I'm making a dvd title using flash to auto start when people pops the dvd disc in.
I have a button 'Click here to download the movie' and clicking the button should pop up a file download box so people can save the movie file(.mov) to their desktop.
Problem is that the file download box shows up behind the flash movie so people won't be able to see the download box since it's hidden behind the flash. This is critical since I intend the flash to open as a full-screen mode.
Is there a way to force the flash to open the download box in front of the flash movie?

I tried getURL and fscommand ("exec", "filename.exe") and even fileReference commands to try different way of linking the movie file, and they all open download box behind the flash.

Please help~~~

View Replies !    View Related
Looking For FLASH Developer/guru To Create A Flash Intro For A Clan Site.
I am looking for a FLASH developer to create a custom FLASH Intro for my gaming clan forums.

A bit about us:
Clan Name: =bURnT=
Site: http://burnt.swisshut.com
Games Played: Battlefield 2 & Battlefield 2142

What we would like in the Intro:
- That it somehow complements our forums
- Includes the clan name
- Looks professional and loads within reasonable time
- Some sort of music / background soundtrack

We are a small clan and don't have the biggest budget but please consider us and give us a estimate of price if you are able to do this for us.

Regards,
Dieter Balmer (OzButcher)
didaswisshut@iinet.net.au





























Edited: 01/09/2007 at 10:20:52 PM by OzButcher

View Replies !    View Related
Flash Buttons That Navigate To Html Files In Same Folder As Flash Movie?
I'm completely new to Flash and AS3.......

however, i've managed to build a simple "intro" flash movie that has buttons on it that need to navigate to non-flash, DWCS3 based site files.

when i go into the button in flash, if i select text in the button there is a spot in the properties panel that allows for a URL link...i enter the name of the html file but it doesn't work......but this URL property field is not available to the entire button....

so i started looking at AS because i'm pretty sure i need to use events and event listeners....BUT all of the tutorials only cover getting an external URL or linking to a frame within a flash movie......none of them cover linking to an existing HTML file in the same folder.......(ie., to access the meat of the website through the flash intro buttons....)

help?

the movie is at www.methods.com/msite07/site07_intro_more.html if you'd like to take a look....the animated buttons need the link functionality.......

View Replies !    View Related
Flash Security Problems Integration Not Done Properly With The Version Above Than Flash Player 6.
Hi All,

I have my flash files hosted on http://images.xyz.com this is an apache server.
I have my webpages, on http://author.abc.com
I want to call this file & submit them using the send (or suggest any best metod from which i can call it properly) method but i guess due to security reasons its getting blocked can u please suggest solution.

(I am right now using javascript proxy method for sending varables from flash to my required software. the output file is some.aspx)

View Replies !    View Related
Force Flash To Open File Download Box In Front Of The Flash Movie
Folks,
I'm making a dvd title using flash to auto start when people pops the dvd disc in.
I have a button 'Click here to download the movie' and clicking the button should pop up a file download box so people can save the movie file(.mov) to their desktop.
Problem is that the file download box shows up behind the flash movie so people won't be able to see the download box since it's hidden behind the flash. This is critical since I intend the flash to open as a full-screen mode.
Is there a way to force the flash to open the download box in front of the flash movie?

I tried getURL and fscommand ("exec", "filename.exe") and even fileReference commands to try different way of linking the movie file, and they all open download box behind the flash.

Please help~~~





























Edited: 08/13/2008 at 03:24:14 PM by svamfaca

View Replies !    View Related
Very Basic Question: Flash Media Server Vs. Embedding Flash Video
I'm hoping this is a quick easy question to answer:

What is the difference between Flash Media Server and simply using a freeware Flash media player (like Flowplayer http://flowplayer.org/) that uses XML playlists to embed your Flash videos on a website?

What are the advantages to Flash Media Server and how does something like Flowplayer not address issues that FMS can?

Thanks in advance!

Erik



























Edited: 01/29/2009 at 11:08:55 AM by erik_johnson

View Replies !    View Related
Change The Order Of The Movie Clip In Flash ( Flash MX Zip Files Attached)
Dear Sir,



I have created a movie where there are buttons I am calling the movie clip from the library by clicking the the button . Each movie clip is high in file size due to its large graphics. So, I have put a preloader into the first frame of each movie clip. The problem is, how can I change the order of the moive clip that is called inside the movie. Also I need to change the transparency of the layer I am hereby sending you the fla files also. I need your kind help sir.

Reagrds

Rajesh

View Replies !    View Related
Change The Order Of The Movie Clip In Flash ( Flash MX Zip Files Attached)
Dear Sir,



I have created a movie where there are buttons I am calling the movie clip from the library by clicking the the button . Each movie clip is high in file size due to its large graphics. So, I have put a preloader into the first frame of each movie clip. The problem is, how can I change the order of the moive clip that is called inside the movie. Also I need to change the transparency of the layer I am hereby sending you the fla files also. I need your kind help sir.

Reagrds

Rajesh

View Replies !    View Related
Change The Order Of The Movie Clip In Flash ( Flash MX Zip Files Attached)
Dear Sir,



I have created a movie where there are buttons I am calling the movie clip from the library by clicking the the button . Each movie clip is high in file size due to its large graphics. So, I have put a preloader into the first frame of each movie clip. The problem is, how can I change the order of the moive clip that is called inside the movie. Also I need to change the transparency of the layer I am hereby sending you the fla files also. I need your kind help sir.

Reagrds

Rajesh

View Replies !    View Related
Change The Order Of The Movie Clip In Flash ( Flash MX Zip Files Attached)
Dear Sir,



I have created a movie where there are buttons I am calling the movie clip from the library by clicking the the button . Each movie clip is high in file size due to its large graphics. So, I have put a preloader into the first frame of each movie clip. The problem is, how can I change the order of the moive clip that is called inside the movie. Also I need to change the transparency of the layer I am hereby sending you the fla files also. I need your kind help sir.

Reagrds

Rajesh

View Replies !    View Related
Flash Action Script: How To Hyperlinks To A Dynamically Loaded Text In Flash From Xml
dear friends!
i ve problem in adding hyperlinks to dynamically loaded text from an xml file...
how could i solve it...

View Replies !    View Related
Flash 8] Setting Focus And Removing The Chick Here Thingy On Flash Movies
hey hey,

I'm assuming there are answers for this. I have tried a few options but none of them are a 100% fix. is there a way to not have to click on a flash file which is embedded in a html page to get it to work/play. its for a little game...

any help would be greatly appreciated.

cheers,

J

View Replies !    View Related
Flash 8 Loading External HTML Pages Inside Flash Window
Hi

I was wondering if it is possible to load a google map into a window within my contact page that one can scroll about like you can in actual google maps. At the moment i just have a static picture that when you click on it it takes you to a seperate page. But i dont want to clog my site up with extra graphics if i can avoid it.

Many thanks

Greg

View Replies !    View Related
Any Way To Activate Flash Fullscreen Mode When Flash Movie Loads In The Browser
Hi all,
I want to activate Flash Fullscreen mode when flash movie loads in the browser. Without activating it through button clicks.
I tried for this using this type of code:
function goFullScreen()
{
Stage["displayState"] = "fullScreen";
}
goFullScreen();
But it is not working this way, it is working when I put this type of code:
function goFullScreen()
{
Stage["displayState"] = "fullScreen";
}
button.onRelease=function()
{
goFullScreen();
}
thanks in advance,
Vikas.

View Replies !    View Related
Change The Order Of The Movie Clip In Flash ( Flash MX Zip Files Attached)
Dear Sir,



I have created a movie where there are buttons I am calling the movie clip from the library by clicking the the button . Each movie clip is high in file size due to its large graphics. So, I have put a preloader into the first frame of each movie clip. The problem is, how can I change the order of the moive clip that is called inside the movie. Also I need to change the transparency of the layer I am hereby sending you the fla files also. I need your kind help sir.

Reagrds

Rajesh

View Replies !    View Related
Change The Order Of The Movie Clip In Flash ( Flash MX Zip Files Attached)
Dear Sir,



I have created a movie where there are buttons I am calling the movie clip from the library by clicking the the button . Each movie clip is high in file size due to its large graphics. So, I have put a preloader into the first frame of each movie clip. The problem is, how can I change the order of the moive clip that is called inside the movie. Also I need to change the transparency of the layer I am hereby sending you the fla files also. I need your kind help sir.

Reagrds

Rajesh

View Replies !    View Related
Change The Order Of The Movie Clip In Flash ( Flash MX Zip Files Attached)
Dear Sir,



I have created a movie where there are buttons I am calling the movie clip from the library by clicking the the button . Each movie clip is high in file size due to its large graphics. So, I have put a preloader into the first frame of each movie clip. The problem is, how can I change the order of the moive clip that is called inside the movie. Also I need to change the transparency of the layer I am hereby sending you the fla files also. I need your kind help sir.

Reagrds

Rajesh

View Replies !    View Related
Accessible Flash Part 1 - Optimise Your Flash Site For The Search Engines
This forum thread discusses the SitePoint article 'Accessible Flash Part 1 - Optimise Your Flash Site For the Search Engines' by James Ellis.

"Flash was once renowned for its poor accessibility... but not any more! James explains how to optimise your Flash site for search engine spidering in Part 1 of his Flash accessibility expose."

View Replies !    View Related
Help With Making A Flash Form/Saving Text To File/and Displaying In Flash
I'm trying to make a flash movie that has a form (with a textbox, textarea, and a submit button) that would save to a file and display it in a textbox. This is going to be a small site so MySQL isn't required.

I'm trying to do this completely in flash, without any outisde html forms. I know you can use php in flash but I wasn't sure how (and i've searched). And I'm not sure how to go about with making forms in flash. Is this possible, and are there any similar tutorials you could point me to?

Regards

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved