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




Flash In HTML From CD



Hi guys When running an html page containing a flash file, where all these files are read from a CD, is there a way to eliminate that annoying IE dialog box that shows up?



KirupaForum > Flash > ActionScript 1.0/2.0
Posted on: 01-11-2008, 12:21 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

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!

New To Flash Newer To Html How Do I Test Flash-html Links?
im making a site but becuase of file size restrictions my flash has to be split up and put on html pages bit by bit, now i need my menu to link to html pages and so not frames in flash anymore. So far i realise that id need for example getURL "croject/project/news'_blank'"
however i want to test my html with the links on my PC as it is not server side yet i cant replace THIS
getURL"croject/project/news'_blank'"
WITH THIS
getURL"http://www.blahblahblah/news.htm" because it looks for a web page not there yet as it isnt actually uploaded or existing yet, so how do i test my flash-html link?

um that sounds complex, but is there a quick flash fix, which lets u put in say _something/news which allows it to work as C: drive and/or www. prefixes?

Be greatful for any help

Flash MX - HTML Parsing Problem: Custom Extension File Won't Parse As HTML
I am using Flash MX.

The problem is, I have a movieclip in my main timeline. This movieclip has a main key and a refresh key, which updates the dynamic textfield's contents with a loaded variable named content. The variable content is stored within a file named readme.ifh. When I load the variable in the textfield, it shows me the source of the HTML, not the rendered version.

What's wrong (and yes, I do have the "Render as HTML" option checked)?

URGENT: Flash Navigation Embedded In Html That Link To Frameset Content In Html
Hi all,

I want to build a website that consists of a menu navigation (made in flash but embedded in a topframe in dreamweaver. On the left site, there would be some flash animations (images etc.)embedded in the leftframe and in the right/main frame, there would be either flash content or html content (depending on the content). The menu bar is made of 7 buttons; when you mouse over a button, you get a scrolling menu with different items, those buttons items have a rollover effect and when you click on one of this items it will load either a flash or html content in the right/mainframe of my dreamweaver site. My question is what is the best way to build this navigation bar so that when i click on one of this item, it will load the correct content in the right/main.frame.html. When this occurs, i want that the scrolling menu still displays while the content is loading so that when the visitor have seen the content, he just needs to click to another item to load the content (so no ectra step). Please help me with this as it urges.
Be clear in your responses as i am not a pro of actionscrit!
Many thanks, lineda

Getting Flash To Load HTML Pages Into Iframes In A Seperate HTML Page
Hi everybody

Does anybody know how to get Flash to load HTML pages into a seperate HTML page?

I'm currently running an animation within a webpage, and my client would like to be able to have some captions in HTML on the page that go with specific parts of the animation.

He wants the captions done in seperate HTML pages so that they can be changed into different languages at a later date.

I am loading these captions (HTML pages) into <iframes> on the page.

So far so good..... however...

I need to be able to get flash to load the HTML pages into the <iframes>, in certain points within the animation.

So... Does anybody know how to get Flash to load HTML pages into a seperate HTML page?

I'm guessing getURL is used somewhere, but I don't know the exact code.

Hope you can help!

Deadhands

Getting Flash To Load HTML Pages Into Iframes In A Seperate HTML Page
Hi everybody

Does anybody know how to get Flash to load HTML pages into a seperate HTML page?

I'm currently running an animation within a webpage, and my client would like to be able to have some captions in HTML on the page that go with specific parts of the animation.

He wants the captions done in seperate HTML pages so that they can be changed into different languages at a later date.

I am loading these captions (HTML pages) into <iframes> on the page.

So far so good..... however...

I need to be able to get flash to load the HTML pages into the <iframes>, in certain points within the animation.

So... Does anybody know how to get Flash to load HTML pages into a seperate HTML page?

I'm guessing getURL is used somewhere, but I don't know the exact code.

Hope you can help!

Deadhands

Passing HTML Form And Hidden Variables From Flash To Html Page
Hi,

I have a html/flash site now, http://www.zachariack.com.

i access email from my site itself by giving the userid and pwd text box which i copied from the actual website hosting my email access. i copied the entire
<form...></form> tag to my page and thus was able to put the name and pwd in my home page only and access the email in a separate window.

now i have redesigned my webpage using only flash. i would like to know how i can implement the same using flash. as i have not much experience using action scripting i am a bit stuck about how you pass the hidden form variables. the below is the the exact form syntax:

<form name="form1" action="http://www.accudatanet.com/mail/msglist.php" method=post>
<input type="hidden" name=sid value="E9697301F704A0CE947DEF42CF86636A">
<input type=text size=15 name=f_user value="">
<input type=hidden name=six value=0>
<input type=password size=15 name="f_pass">
<input type=submit name=submit value="Login >>" class="button">
</form>

how do i implement the above using action scripting. thanks.

regards,
vasant

Dynamic HTML Textbox Won't Display Flash Generated HTML?
I'll TRY to keep this simple... Keep in mind that the Hand Coded HTML works. It's the HTML that Flash writes that doesn't....

How I create the file:
------------------------
1st, I created a movie in Flash that has a HTML formated input box. So when I type things into that field, Flash automatically generates the HTML into the variable for the input box.

Next, I take that variable and display the HTML code in a dynamic text field. Then I copy and paste it into a text file, assign it a variable (myText=....), then I save it to my harddrive.

Got me so far?


The Problem
-------------------------
I have another movie that is just supposed to load the txt file and display the code in an Dynamic HTML text field. However... Flash can't seem to read the HTML that it creates? But it can read the HTML that I simplify and hand write. Does anyone know what I can do to use the Flash generated HTML?


Here is the code in the movie
----------------------------------------------

Code:
loadVarsText = new loadVars();
// load the text file
loadVarsText.load("scroller.txt");
// function which fires when the data is loaded:
loadVarsText.onLoad = function(success) {
if (success) {
// activate html
scroller.html = true;
// myText is var to put in the textfile
scroller.htmlText = this.myText;
} else {
trace("not loaded, try again!");
}
};

Below is what i'm loading into my movie. It's the HTML that Flash Generates from the input box, and below that is the HTML that I hand coded. HOWEVER I CAN'T GET THIS TO DISPLAY THE HTML CODE

FLASH CODE
-----------------------------
myText=<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000">* A hospital-acquired infection caused by methicillin-resistant Staphylococcus aureus or vancomycin-resistant Enterococcus can double the time a patient stays in the hospital</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000">* Infections in burn wounds account for 3 to 7of all infections in patients with burns, occurring most frequently in children, followed by the elderly</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000">* An analysis of post-surgical wound infections following head and neck surgery demonstrated an increase in the average hospitalization period from 14 days when wounds healed without complication, to 24 days when the wounds became infected.</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000">* In a survey of 96 English hospitals, surgical site infections led to an additional hospital stay of 6.5 days, and the hospital costs were doubled.</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000">* About 59of diabetic lower extremity amputations are proceeded by an infected foot ulcer; among people with diabetes (150 million globally), 15will experience a foot ulcer in their lifetime</FONT></P></TEXTFORMAT>





MY CODE
----------------------------------------------
myText=* A hospital-acquired infection caused by methicillin-resistant Staphylococcus aureus or vancomycin-resistant Enterococcus can double the time a patient stays in the hospital<br><br>* Infections in burn wounds account for 3 to 7% of all infections in patients with burns, occurring most frequently in children, followed by the elderly<br><br>* An analysis of post-surgical wound infections following head and neck surgery demonstrated an increase in the average hospitalization period from 14 days when wounds healed without complication, to 24 days when the wounds became infected.<br><br>* In a survey of 96 English hospitals, surgical site infections led to an additional hospital stay of 6.5 days, and the hospital costs were doubled.<br><br>* About 59% of diabetic lower extremity amputations are proceeded by an infected foot ulcer; among people with diabetes (150 million globally), 15% will experience a foot ulcer in their lifetime


Thanks in advance for any help you can give

Frequent-C
http://www.Freq-Fest.com
[Edited by Frequentc on 06-10-2002 at 05:06 PM]

Can I Load A Html File By Flash Link To An Html Iframe ?
Is it possible to create links in a flashmovie and force them to show several html-files in to a iframe, defined by the html document, which loaded the movie up ?? ( sorry 4 my bad english )

Passing HTML Form And Hidden Variables From Html To Flash
Hi

I need some help passing a html code to flash code. Maybe you guys can set some light on the subject.

<html>

<script>
function Dimensiones()
{

document.getElementById("tamx").value= document.getElementsByTagName('body')[0].clientHeight;
document.getElementById("tamy").value= document.getElementsByTagName('body')[0].clientWidth;

}
</script>
<body ONLOAD="Dimensiones();" ONRESIZE="Dimensiones();">
<form method="Post"
action="http://Validation link.asp">
<input type ="hidden" name="tamx">
<input type ="hidden" name="tamy">
<input type ="hidden" name="url_return" value ="http://Link.asp">
<input type ="hidden" name="url_ot" value = "http://Validation link.asp">
Nombre <input type="text" name="UserName" value="" size="20">
Password <input type="password" name="UserPass" size="20">
<INPUT type="submit" value="Enviar">
</form>
</body>
</html>

I'm having a real hard time passing the function Dimensiones() and dealing with the hidden variables. Can you guys help me with this? Thanks

Full Screen Flash Over HTML - Access Underlying HTML?
Im pretty sure this is done with JS somehow - but does anyone have any insight? I have a full screen transparent movie that overlays the html content below. The problem is, none of the html below (links, rollovers, etc) are accessible. How can I fix this?

Thanks in advance.

M

Passing HTML Form And Hidden Variables From Html To Flash
Hi

I need some help passing a html code to flash code. Maybe you guys can set some light on the subject.

<html>

<script>
function Dimensiones()
{

document.getElementById("tamx").value= document.getElementsByTagName('body')[0].clientHeight;
document.getElementById("tamy").value= document.getElementsByTagName('body')[0].clientWidth;

}
</script>
<body ONLOAD="Dimensiones();" ONRESIZE="Dimensiones();">
<form method="Post"
action="http://Validation link.asp">
<input type ="hidden" name="tamx">
<input type ="hidden" name="tamy">
<input type ="hidden" name="url_return" value ="http://Link.asp">
<input type ="hidden" name="url_ot" value = "http://Validation link.asp">
Nombre <input type="text" name="UserName" value="" size="20">
Password <input type="password" name="UserPass" size="20">
<INPUT type="submit" value="Enviar">
</form>
</body>
</html>

I'm having a real hard time passing the function Dimensiones() and dealing with the hidden variables. Can you guys help me with this? Thanks

HTML Code In Flash To Load An HTML Page In A Frame
Hello.

I have an existing website built in html, with three frames. One on the top for the banner, one on the left for navigation, and a larger window to the right of the navigation for the main content. I want to replace the content in my navgation frame with a flash built navgation menu, and when my menu items are selected, it will load a new page in the content frame.

I currently have this working fine in html. I can make my buttons link to a URL no problem in flash, but how do I tell it to load the content into the other frame? I haven't started this process yet, and figured I'd ask first to get any ideas.

Thanks.

Tabs In Html? (html-txt Loaded Into Flash)
Id like to format the text that I load into a textbox in flash (html-enabled).

Specifically I would like to know how to make tabs, so I can form neat columns.

Generally, perhaps someone has a list of commands that you find useful for formatting html-type text in flash and you can share?

Thanks,
Daniel

Sending A Variable From Html To Html From Flash
Hi guys...

Ok...here's the situation. I'm making a Flash site for a tri-weekly comic. The site I'm making has five pages: Home, News, Comic, Archive, and Contact Us. THe Home, News, Archive, and Contact Us pages are all apart of the same swf and are on the main timeline. The comic, however, needs to be a different swf (and therefore html page) because of size differences, etc.

Here's the problem: I need to know how to make the seperate swfs communicate with each other. For example: when viewing the archive the viewer clicks to see a certain comic, which triggers the loading of the html page with the Comic.swf on it. Somehow the Comic.swf needs to know what comic was clicked on in the archive so it loads the correct comic. Keep in mind this communication needs to be from html page to html page.

Any ideas?

Thanks!

HTML + Flash (html Title Changes On LoadMovie)
Hi

i have my main.swf file embedded in html page.
The swf file conatins 4-5 movieclip. On the click of a particular movieclip a new swf file is loaded in my main.swf file.

The problem is when i click on a particular movieclip to load swf file the html page title changes to # sign.

Pls help
Thanks in advance.

Flash Transparent Over Html, How To Click On Html?
Hi!

I have a flash menu that "drops down" over the html. I did it with flash transparent mode.
The problem is that the html under the flash contains input text and a left menu, that are not clickable.
I resolved it with a javascript that try to resize the divs:

<script language="JavaScript1.2" type="text/javascript">
function setFlashHeight(divid, newH) {
document.getElementById(divid).style.height = newH+"px";
}
function closeFlashMenu(){
setFlashHeight('header',412);
return "close"
}
function openFlashMenu(){
setFlashHeight('header',600);
return "close"
}
</script>

<div id="header" style="z-index:1; position:absolute; left: 0px; top:0px;" onMouseOver="openFlashMenu();"

onMouseOut="closeFlashMenu();">

This works in explorer, but not in Firefox.

Any suggestion?

Thanx
Alberto

Flash And Html On Different Html Layers?
could i have flash on the bottom layer of my html page, and html only on a top layer using dreamweaver?

Flash In Html To Html In Html?
I am using frames in my site.

In the main frame, i am having a flash intro, which on completion, i want to unload, and then load the html content [which is a seperate html doc anyway]

At the end of the movie it will say "load site" which when they click, will load the html [i will use _self as the target]

Firstly this is possible right?

But i know NO action script, so i hope someone can help me with the code i should paste into the box



Thanks all.

How? Flash Links To Html Window Inside Html Window
Hi, at this site, www.jerrycantrell.com, he has flash buttons and when you click on one it changes the content in a small scroll bar window of the page but doesnt reload the whole page, this looks slick. but it is dealing with html, so this question doesnt completely have to do with flash. but i assume the linking commands in flash have most to do with this, all im able to do is change the page entirely with a link, and when i'm only changing somthing in one window its not as quick and because it reloads the whole page just for that one thing it doesnt look as slick because there's a blank white screen between loading the new page.. only for a second, but you get the just of it. anyone know how to do this? much thanks

-randy

Flash Button In "html Frame1" Triggers Stuff In "html Frame2"
Subject: flash button in "html frame1" triggers stuff in "html frame2"

I have a framebased html site...

I have a flash menu/buttons inserted in my topframe.

When you press one of these buttons a new page should appear in the
mainframe.

Is that possible, and if, how?

thanks

Information From A Flash/html Window To Another Flash/html Window
I've got some difficulty to get the following done.
The problem: With a button (onrelease) in a Flash movie which is embeded in a HTML page I want to activate a dynamic textbox in another Flash movie which is embeded in another HTML page. Both pages/windows are open at the same time.
Is this possible?

[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?

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 ?

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?

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.......

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

Flash Working In Flash Player, But Not When Inserted In A Html Page
Hello guys. I have a very strange problem.
I have created a dynamic banner, made up of two simple combo boxes, with 3 parts actionscript.
The ideea is, when first loading the banner, the first combo box receives a lists of artists and it populates itslef with them. After selecting an option, it will send the id and receive a second list of tracks that belong to the selected artist.
After you select a track, you will be redirected to the page where you can listen to it.
MY problem is that while testing it, it works just fine in flash player, but after publishing it, my computer gets frozen up, untill a popup message appears, saying that my computer will become unresponsive do to the script.
This happens when i've uploaded the swf on the server. On my local computer, it only started to work in HTMl after i've modified the settings and set it up as trusted script.
ANy ideea how i can make it work in the browser?
Thank you for your help and here is the code of the banner:

!st code goes int he first frame:


Code:
myData = new LoadVars();
myData.load("http://website.com/banner/banner.php");
myData.onLoad = function() {
total_var=this.variabile;
myComb_cb.addItem({label:["Select an artist"]});
for (var i:Number = 1; i<=total_var; i++) {
myComb_cb.addItem({label:this["variabila"+i] },{data:this["variabila"+i]});
}

};
2nd code goes in the first combo box:

Code:
on(change) {
_root.myComb2_cb.removeAll();
var reply_lv = new LoadVars();
var send_lv = new LoadVars();
send_lv.id = this.selectedIndex;
send_lv.sendAndLoad("http://website.com/banner/banner.php", reply_lv, "POST");
reply_lv.onLoad = function() {
total_var=this.variabile;
_root.myComb2_cb.addItem({label:["Select a track"]});
for (var i:Number = 1; i<=total_var; i++) {_root.myComb2_cb.addItem({label:this["variabila"+i] },{data:this["id"+i]} );

}
}
}
And thirs code goes in the second combo box

Code:
on(change) {
getURL("http://website.com/banner/banner.php?id_piesa="+this.selectedIndex, "_blank");

}

'Layering' Html/css Over A Flash File (flash Aplet As Background)
so i know VERY little about website design and html/css/flash blah blah - but i was wondering if anyone knew if it's possible to create a .swf flash file and use it as a background on a webpage - i.e. put links and text over it using html and such rather than creating them in flash. am i talking crazy?

Hybrid Flash.HTMl Site - Flash Reloads?
I have a website im working on, my first site using flash.
I have a header which is FLASHMX and the bottom part is HTML.
When you click on the flash it plays an animation, loads a picture, then uses "get url, self" to open a new html page.

My problem then is that the flash header reloads itself!!
How do i get around this??
Ive seen plenty of hybrid flash/html sites....dont tell me that they all use Frames??

There must be a way..

Flash Banner , Flash Buttons And Html Content
Hi!


I am working on this web project that needs to be like this :

Flash banner on the top, flash buttons under the banner and html content(the rest)

I have finished the banner and the buttons but i don't know how to make the rest (html content).

If anybody knows which software i need to use and what actions should i put to the buttons, please help!!!

Full Flash Website Vs. Hybrid HTML/Flash?
Im looking to building a website. Anyone have any suggestions which route to take whether a full Flash site or a hybrid HTML/Flash site? Im leaning towards a hybrid site cause I believe it will be easier for me to get it up and running quicker cause of my low level Flash skill level.

ToolJob

Offline Flash-HTML Course Flash Player Security
Hi All:

My client requirement is to develop a flash embeded in HTML course that will be viewed offline.

The flash file contains a close button on that I wrote the following code:

on(release)
{
getURL("Javascript:window.close();");
}

on clicking the button Security Warning appears. Is there any way to get rid of this.

I know that after advance setting through internet it will be solved, But my client do not want those settings to be done by the end user as user may not have internet connection.

Is there any solution through coding?
How can we make these setting in offline?

Can anybody help me?

Thanks and Best Regards
Razzak

Flash Detection - Redirect To Html If No Flash Present - HELP PLEASE
Hello,

Can anyone help? I have to produce a flash website, but rather than use a detection kit that would direct them to the latest flash download for a plug-in, I need it to display the customers site in html instead.

The idea is to have two sites. One Flash, One html, and depending on users browsers/flash etc they would see the site that suits them.

I have thought of using an index page with the choice but thought it would be better for it to be auto.

Also not sure how this will work with search engines and page rankings etc?

Any suggestions or have anybody else done something similar?

What Is THE Best Way To Detect Flash And Redirect To Flash Or Html ?
What do you think is THE best way to detect flash and redirect the user to Flash or Html format page.

Set Variable From Flash To Flash Through HTML-frameset Possible?
hi,

need desperate help with the fscommand thingie - i want flash movies embedded in different HTML docs inside a frameset to communicate.

e.g. button in flash1.swf (which is embedded id doc1.html) should set variable of dynamic textfield in flash2.swf (embedded in doc2.html). both HTML docs are in one frameset (frame names are "one" and "two").

could anybody help?

thx!
eve

FLASH/HTML Embedded Flash Object
Hello all,

Not really flash but flash related. Hope someone can help.

I currently have a simple layout using layers. The first layer contains the whole page. I have a layer with a image on top of one of the navigation buttons that triggers a different layer to show up, which is the subnavigation, that pops up right beneath the main button.

I have embedded a flash object right beneath the navigation but for some reason the popups don't appear and seem to be beneath the flash object. By replacing the flash object to an image, the pop ups are fine.

Has anyone experienced this problem before? The popup layers are on the top of the layer that conttains the flash so the order of the layers should not be the problem.

Thanks in advance!
Kei

Flash MX: Detecting Flash HTML Script
I'm designing a verticle side banner
for a website that doesn't currently
use Flash. My question is what is the
script used to detect if a user has a
flash player? How can a replacement
image be used if a user doesn't have
a player? Is there anything else I
should consider?

Thanks!
k.

Need To Control Flash To Flash On Same Html Page
I have two flash movies on the same html page separated by tables. I want a button in Flash movie 1 to send Flash movie 2 to a particular frame. I am not a programmer and specific code & gory details would be appreciated. I'd like to avoid using java if possible, any ideas??
Thanks

[CS3] Embedding Flash In HTML ...White Flash
Hi Can someone please help.
I amtearing my hair out!!!

Prior to loading my flash movie the page flashes white for a split second.
Thought it was a transparency problem so here is what I've done....

1. Used <param name="wmode" value="transparent" />
2. Used <param name="bgcolor" value="#02021E" />
since #02021E is my background.
3. Used wmode="transparent"

All to no avail can someone look at the html source code for me at
http://www.memphismark.com

It has me stumped.

Someone with some experience am sure could solve this in minutes.
I would be eternally greatful.

Kind Regards

Mark

How To Commutate Between Flash And Php OR Flash And Html Forms.
I’m making an online homework webpage. I’ve been using php mysql and html forms. I’ve already make some questions in flash, But the problem is that I don’t know how to get flash to commutate with the existing system.

All I really need to do is send numbers and/or strings to and/or from, between flash and php OR flash and html forms.

If there is a simple way to do it please let me know. If there is no simple way, giving me a link to a webpage that explains how to do it would be great.

Not Sure If This A Flash Or HTML Problem, Thinks It's Flash
Ok I have a button that has this AS


ActionScript Code:
on(release){    getURL(_root.htmlURL,_root.htmlTarget);}


Now in Dreamweaver I add these parameters to the flash movie


ActionScript Code:
<object classid="clsid:*****longnumber" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="29" height="18">                                            <param name="movie" value="Buybutton.swf">                                            <param name="quality" value="high">                                            <param name="htmlURL" value="http://www.escapegrace.net">                                            <param name="htmlTarget" value="_blank">                                            <embed src="Buybutton.swf" width="29" height="18" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" htmlurl="http://www.escapegrace.net" htmltarget="_blank"></embed>                                          </object>


Now everytime I click the button it gives me an undefined error. I've tried changing the AS to a static link and it seems to work but for some reason the AS or the parameters do not seem to be working.

If anyone has any insight I would be pumped.

Case

How To Open Flash Pop Up In Html Using Flash Button
Hello Everyone,

I just purchased a flash template and i am having the html versions of the same. I am replacing the text in the html but i don't want to loose the look and feel of the template so i want to make sure that it will open the same flash pop up which was there and coded in the original fla.

So can anyone tell me how to call that flash pop up using that flash button. Please resolve the query urgently.

Regards,
Shishir

Not Sure If This A Flash Or HTML Problem, Thinks It's Flash
Ok I have a button that has this AS


ActionScript Code:
on(release){    getURL(_root.htmlURL,_root.htmlTarget);}


Now in Dreamweaver I add these parameters to the flash movie


ActionScript Code:
<object classid="clsid:*****longnumber" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="29" height="18">                                            <param name="movie" value="Buybutton.swf">                                            <param name="quality" value="high">                                            <param name="htmlURL" value="http://www.escapegrace.net">                                            <param name="htmlTarget" value="_blank">                                            <embed src="Buybutton.swf" width="29" height="18" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" htmlurl="http://www.escapegrace.net" htmltarget="_blank"></embed>                                          </object>


Now everytime I click the button it gives me an undefined error. I've tried changing the AS to a static link and it seems to work but for some reason the AS or the parameters do not seem to be working.

If anyone has any insight I would be pumped.

Case

Dynamic HTML In Flash - Back To Flash?
Hello everyone.

First off Its good to be back. Ive been gone from the for like two years and still have a 1.06 post per day count. Thanks to Anik and our spamtastic adventures.

anyway, I was doing this with <? fwrite until i realized that multiple users are going to have conflicting variables ... so here it is.

I have a dynamic text box with CSSed HTML and there's links in it, from which I would like to send data to flash.

load vars wasnt doing the trick, I dont think.. and shared object it seems only works flash to flash..

Id like an HTML link within my .swf to load something in the .swf

Thanks in advance!

Embedding Flash In HTML (Flash Satay)
Would you point your browsers at The Flash Satay Experiment?

I am investigating browsers that work with the Flash Satay method of embedding Flash into a HTML page.

Thanks, Ant.

Flash In Layer And Flash In Html Document
Hi,

I have a flash which is put in a layer(flashfile1), and have another flash to be put in the html file(flashfile2), flashfile2 is lower than flashfile1, when flashfile1 is displayed, flashfile2 would be on top of it (in Netscape, IE is ok), any solution? I want flashfile1 to be always on the top.

Thanks

Flash+HTML
I'm using flash for my main navigation at the top, and loading html documents into the frame below it. How is this accomplished? I've tried all the different windows (blank, self, top, parent) and none of those work. How do I get it to load in the frame below it? Thanks in advance

HTML In Flash
How can I load an HTML Page in Flash ?
Can I create me jwn objects in Flash (in run time) ?

HTML And FLASH
Hi People,

I have a HTML file with a simple layout (few tables, a bold section, etc.). Now I need to load that HTML file into Flash. How can I connect/insert my HTML file into Flash? Can I just mention the Filename of the HTML File or do need to do more things.

Example:
HTML File source:
<table><tr><td><b>Hello</b></td></tr></table>

in Flash i need to run the HTML source in a dynamic textfield (HTML encoded). How do i do that? Help me...

Rob

Copyright © 2005-08 www.BigResource.com, All rights reserved