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




Scrollbar Won't Show Up Once .swf File Is Online



i have a UIscrollbar set to a dynamic text field that loads an external .htm file.
in text movie mode, everything works fine. even when i publish it and open the .swf file offline, the scrollbar appears and works as it should.

but i just uploaded it to my site, and everything is there, except for the scrollbar. i still see the silver streak that looks like the scollbar background, but the arrows and track and well, the scrollbar ingredients don't show up. it didn't show up at all yesterday, then today the scrollbar appears, but only sometimes. when it doesn't, if i refresh the page, then it'll show.

here's a link directly to the page in question: http://www.8-18colonialway.com/other/temp/pismo4rj3/
it's the "trip info" page that's the shows the problem.

help please!



FlashKit > Flash Help > Flash MX
Posted on: 07-08-2005, 03:07 PM


View Complete Forum Thread with Replies

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

Scrollbar Won't Show Up Once .swf Is Online
i have a UIScrollBar set to a dynamic text field that loads an external .htm file.
in test movie mode, everything works fine. even when i publish it and open the .swf file offline, the scrollbar appears and works as it should.

but i just uploaded it to my site, and everything is there, except for the scrollbar. i still see the silver streak that looks like the scollbar background, but the arrows and track and well, the scrollbar ingredients don't show up. it didn't show up at all yesterday, then today the scrollbar appears, but only sometimes. when it doesn't, if i refresh the page a few times, then it'll usually appear.

here's a link directly to the page in question:
http://www.calrockx.com/etc/temp/pismo4rj3/
it's the "trip info" page that's the shows the problem.

also, i uploaded it here just to see how it'd work on another site, and for some reason the scrollbar has better luck here -
http://www.8-18colonialway.com/other/temp/pismo4rj3/
but it still won't show up everytime.

i'm using flash mx 2004.

help please!

External Text File Won't Show Online
If anyone could help me I am a beginner and have a flash site where some text needed to pulled up from an external file. It shows up locally but when I put it online. It wont show up.. WHY????

URL: http://www.ixhouston.com/warriors/warriors.htm

Thanks ahead of time

Hide/show Scrollbar With Dynamically Loaded Text From A .txt File.
hi,

i've been trying to figure out how to hide and show the scrollbar component with dynamically loaded text depending on whether the text overflows or not.

the problem i am having is that TextField.maxscroll keeps returning 1 because it is being performed before the text is loaded into the textfield. here is the code i am working with:

loadVariables("copy.txt", this);
scrollbar._visible = (text.maxscroll > 1);

how can i solve this?

Tv Show Online
can someone help me to understand what do i need to make a live broadcast.
my client want to broadcast his tv show.
how can i do it ??

Swf Doesnt Show Online
Hi
greetings,

simple issue here..checked for the solution online & this forum too.

anyways i have a swf file embedded in a web page which shows locally but once i upload through ftp ..it doesnt show online.
i checked the publish settings,the path etc,all is fine.

is there something else i need to know.cant understand where i m goin wrong.

any help will be largely appreciated.
thanks n cheers. m/

Don't Know Why Text Will Not Show Online
I have got a perfectly working (offline) movie and I wondered why the dynamic content will not show online.
I have a dragable menu and I have frames that have my content on. My menu is a movie clip. I tried to have the dynamic text box on the frame that I want it to view the content but now it only works offline.

my code is :
--------
on (press) {
_root.MS.scroll = _root.MS.scroll-total;
loadVariablesNum("Me.txt", 0);
}
-------

Is there anything that I need to change?

Help would be very much accepted and appreciated.
If this message is better off somewhere else I am sorry if i have put it in the wrong place!

Why It Didn't Show Online?
i have a dynamic text field loading an external txt file and its render in html. everything is fine in my pc.

However, when i upload it to lycos.co.uk free web hosting. the external txt seems did not loaded.

Why this happen?

Why It Didn't Show Online?
i have a dynamic text field loading an external txt file and its render in html. everything is fine in my pc.

However, when i upload it to lycos.co.uk free web hosting. the external txt seems did not loaded.

Why this happen?

Flash Does Not Show Online
my flash does now show when i upload it. Not even the preloader. I have only a day to get it to work or I lose the project

Scrollbar Not Showing When Online
Hi all,

I have a problem that seems to be quite common, yet seems to solved rarely (as far as I'm aware).

I have a flash website I have developed with the use of UI Scroll bars on dynamic text. I have customised the visual style of them to fit the style of my site.

Everything works fine when viewed off-line on my HD. However once I have uploaded the site, the scroll bars fail to load/appear when I visit the site. The odd thing is, is that if you visit another page and return home, the scroll bars appear.

I have searched this and other forums and have found people with the same problem, but no-one seems to have a definate answer. If this could be solved simply, it would definately be a sticky for newbie component users like myself.

I have a theory that the scrollbar is loaded before the dynamic text is, thus saying to itself, "no text, no display". However after a refresh, the text is loaded into the cache, thus allowing the scrollbar to recognise the text and display.

The problem with my theory is that I don't know how to implement it. I'm not exactly an actionscript or component guru so I would appreciate any help on this.

My theory may completely rubbish as well, so feel free to offer any oppinions.

cheers


Enforcer73

Scrollbar Works In Preview, But Not Online
http://www.embraced-dc.com/att

i used the scrollbar component in flash, and edited the skins, and it works great when i preview it locally...but when i upload the movie to the web, the scroll doesn't work.

what on earth is wrong?

Scrollbar Component Not Working Online
I am using a scrollbar component on a dynamic text field that loads a .txt file with some .htm embedded in it. All works fine locally, but when I upload to the server, the scrollbar does not work. I tried uploading to two different servers and no luck. What could be the problem?

KIM

3d Carousel SWF Loads Fine But Wont Show Online...
Hi,

I have made a 3d carousel based on the tutorial at gotoandlearn.com and it looks awesome...however when I try to put the swf in html it does not show up...any ideas???

code:
import mx.utils.Delegate;

var numOfItems:Number;
var radiusX:Number = 500;
var radiusY:Number = 125;
var centerX:Number = Stage.width/2;
var centerY:Number = Stage.height/2;
var speed:Number = 0.05;
var perspective:Number = 0;
var home:MovieClip = this;

var tooltip:MovieClip = this.attachMovie("tooltip", "tooltip", 10000);
tooltip._alpha = 0;

var xml:XML = new XML();
xml.ignoreWhite = true;

xml.onLoad = function()
{
var nodes = this.firstChild.childNodes;
numOfItems = nodes.length;
for(var i=0; i<numOfItems; i++)
{
var t = home.attachMovie("item", "item"+i, i+1);
t.angle = i * ((Math.PI*2)/numOfItems);
t.onEnterFrame = mover;
t.toolText = nodes[i].attributes.tooltip;
t.show.inner.loadMovie(nodes[i].attributes.image);
t.ref.inner.loadMovie(nodes[i].attributes.image);
t.show.onRollOver = over;
t.show.onRollOut = out;
t.show.onRelease = released;
}
}

function over()
{
home.tooltip.tipText.text = this._parent.toolText;
home.tooltip._x = this._parent._x;
home.tooltip._y = this._parent._y - this._parent._height/2;
home.tooltip.onEnterFrame = Delegate.create(this, moveTip);
home.tooltip._alpha = 100;
}

function out()
{
delete home.tooltip.onEnterFrame;
home.tooltip._alpha = 0;
}

function released()
{
trace(this._parent.toolText);
}

function moveTip()
{
home.tooltip._x = this._parent._x;
home.tooltip._y = this._parent._y - this._parent._height/2;
}

xml.load("shows.xml");

function mover()
{
this._x = Math.cos(this.angle) * radiusX + centerX;
this._y = Math.sin(this.angle) * radiusY + centerY;
var s:Number = (this._y) / (centerY + radiusY);
this._xscale = this._yscale = s * 100;
this.angle += this._parent.speed;
this.swapDepths(Math.round(this._xscale) + 100);
}

this.onMouseMove = function()
{
speed = (this._xmouse - centerX)/10000;
}


[HTML]
<HTML>
<HEAD>
<meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
<TITLE>Expo BLING</TITLE>
</HEAD>
<BODY bgcolor="#000000">
<OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="100%" HEIGHT="100%" id="Expo BLING" ALIGN="">
<PARAM NAME=movie VALUE="shows.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED src="shows.swf" quality=high bgcolor=#000000 WIDTH="100%" HEIGHT="100%" NAME="Expo BLING" ALIGN="center" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>
</BODY>
</HTML>
[/HTML]

I tried to publish the fla as html and the same stuff happens when I post the html file on the server...(and my xml file is online...)

try it... www.expocadvr.com/temp/shows.html

3d Carousel SWF Loads Fine But Wont Show Online...
Hi,

I have made a 3d carousel based on the tutorial at gotoandlearn.com and it looks awesome...however when I try to put the swf in html it does not show up...any ideas???


ActionScript Code:
import mx.utils.Delegate;var numOfItems:Number;var radiusX:Number = 500;var radiusY:Number = 125;var centerX:Number = Stage.width/2;var centerY:Number = Stage.height/2;var speed:Number = 0.05;var perspective:Number = 0;var home:MovieClip = this;var tooltip:MovieClip = this.attachMovie("tooltip", "tooltip", 10000);tooltip._alpha = 0;var xml:XML = new XML();xml.ignoreWhite = true;xml.onLoad = function(){    var nodes = this.firstChild.childNodes;    numOfItems = nodes.length;    for(var i=0; i<numOfItems; i++)    {        var t = home.attachMovie("item", "item"+i, i+1);        t.angle = i * ((Math.PI*2)/numOfItems);        t.onEnterFrame = mover;        t.toolText = nodes[i].attributes.tooltip;        t.show.inner.loadMovie(nodes[i].attributes.image);        t.ref.inner.loadMovie(nodes[i].attributes.image);        t.show.onRollOver = over;        t.show.onRollOut = out;        t.show.onRelease = released;    }}function  over(){    home.tooltip.tipText.text = this._parent.toolText;    home.tooltip._x = this._parent._x;    home.tooltip._y = this._parent._y - this._parent._height/2;    home.tooltip.onEnterFrame = Delegate.create(this, moveTip);    home.tooltip._alpha = 100;}function  out(){    delete home.tooltip.onEnterFrame;    home.tooltip._alpha = 0;}function released(){    trace(this._parent.toolText);}function moveTip(){    home.tooltip._x = this._parent._x;    home.tooltip._y = this._parent._y - this._parent._height/2;    }    xml.load("shows.xml");function mover(){    this._x = Math.cos(this.angle) * radiusX + centerX;    this._y = Math.sin(this.angle) * radiusY + centerY;    var s:Number = (this._y) / (centerY + radiusY);    this._xscale = this._yscale = s * 100;    this.angle += this._parent.speed;    this.swapDepths(Math.round(this._xscale) + 100);}this.onMouseMove = function(){    speed = (this._xmouse - centerX)/10000;}



HTML Code:
<HTML>
<HEAD>
<meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
<TITLE>Expo BLING</TITLE>
</HEAD>
<BODY bgcolor="#000000">
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="100%" HEIGHT="100%" id="Expo BLING" ALIGN="">
<PARAM NAME=movie VALUE="shows.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED src="shows.swf" quality=high bgcolor=#000000 WIDTH="100%" HEIGHT="100%" NAME="Expo BLING" ALIGN="center" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>
</BODY>
</HTML>
I tried to publish the fla as html and the same stuff happens when I post the html file on the server...(and my xml file is online...)

try it... www.expocadvr.com/temp/shows.html

3d Carousel SWF Loads Fine But Wont Show Online...
Hi,

I have made a 3d carousel based on the tutorial at gotoandlearn.com and it looks awesome...however when I try to put the swf in html it does not show up...any ideas???

[AS]
import mx.utils.Delegate;

var numOfItems:Number;
var radiusX:Number = 500;
var radiusY:Number = 125;
var centerX:Number = Stage.width/2;
var centerY:Number = Stage.height/2;
var speed:Number = 0.05;
var perspective:Number = 0;
var home:MovieClip = this;

var tooltip:MovieClip = this.attachMovie("tooltip", "tooltip", 10000);
tooltip._alpha = 0;

var xml:XML = new XML();
xml.ignoreWhite = true;

xml.onLoad = function()
{
var nodes = this.firstChild.childNodes;
numOfItems = nodes.length;
for(var i=0; i<numOfItems; i++)
{
var t = home.attachMovie("item", "item"+i, i+1);
t.angle = i * ((Math.PI*2)/numOfItems);
t.onEnterFrame = mover;
t.toolText = nodes[i].attributes.tooltip;
t.show.inner.loadMovie(nodes[i].attributes.image);
t.ref.inner.loadMovie(nodes[i].attributes.image);
t.show.onRollOver = over;
t.show.onRollOut = out;
t.show.onRelease = released;
}
}

function over()
{
home.tooltip.tipText.text = this._parent.toolText;
home.tooltip._x = this._parent._x;
home.tooltip._y = this._parent._y - this._parent._height/2;
home.tooltip.onEnterFrame = Delegate.create(this, moveTip);
home.tooltip._alpha = 100;
}

function out()
{
delete home.tooltip.onEnterFrame;
home.tooltip._alpha = 0;
}

function released()
{
trace(this._parent.toolText);
}

function moveTip()
{
home.tooltip._x = this._parent._x;
home.tooltip._y = this._parent._y - this._parent._height/2;
}

xml.load("shows.xml");

function mover()
{
this._x = Math.cos(this.angle) * radiusX + centerX;
this._y = Math.sin(this.angle) * radiusY + centerY;
var s:Number = (this._y) / (centerY + radiusY);
this._xscale = this._yscale = s * 100;
this.angle += this._parent.speed;
this.swapDepths(Math.round(this._xscale) + 100);
}

this.onMouseMove = function()
{
speed = (this._xmouse - centerX)/10000;
}
[/AS]


HTML Code:
<HTML>
<HEAD>
<meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
<TITLE>Expo BLING</TITLE>
</HEAD>
<BODY bgcolor="#000000">
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="100%" HEIGHT="100%" id="Expo BLING" ALIGN="">
<PARAM NAME=movie VALUE="shows.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED src="shows.swf" quality=high bgcolor=#000000 WIDTH="100%" HEIGHT="100%" NAME="Expo BLING" ALIGN="center" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>
</BODY>
</HTML>
I tried to publish the fla as html and the same stuff happens when I post the html file on the server...(and my xml file is online...)

try it... www.expocadvr.com/temp/shows.html

Flash Uses XML File To Show Pics - Can I Randomize The Show Order?
I'm playing around with a flash template at the moment which uses an external XML file to display pictures in a flash frame. The file:


Code:
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
- <images>
- <pic>
<image>home/jpg/image6.jpg</image>
<myURL>http://www.yahoo.com</myURL>
</pic>
- <pic>
<image>home/jpg/image5.jpg</image>
<myURL>http://www.google.com</myURL>
</pic>
- <pic>
<image>home/jpg/image1.jpg</image>
<myURL>http://www.lycos.com</myURL>
</pic>
</images>
So in this case the site displays image6, then image5, then image1 - Can I do something to the XML to make them display in a random order instead of the list order?

Thanks

Show And Hide ScrollBar
Hi there!

How could I show and hide the ScrollBar attached to a dynamic text field depending on the size of the displayed text?
I tried different solutions based on bottomScroll and maxcroll but nothing works...

Many thanks in advance for your help.

Best regards,
Gerry

Show/Hide Scrollbar
Hi all,

1. I've downloaded the Source for MX included in the "Hide/View the Scrollbar Component" page of kirupa.com. It simply doesn't work when I open the file and publish it. I'm using Flash MX 2004, ... has anyone experienced the same problem and solved it?

2. I've been able to set the scroll visibility with an external dynamic text using several procedures. One of them is:SB1.setScrollTarget(_root.Texto1);
if (Texto1.maxscroll > 1) {
SB1._visible = true;
};

Were SB1 is the scrollbar instance, and Texto1 the dynamic text instance.
All works fine in my PC, but it doesn't work when I load it in the server (the scrollbar cannot be visualized).

Does anyone know if there's a bug or a rational explanation for this problem?
Thank you in advance,
Fernando

Show/Hide Scrollbar
Hi all,

1. I've downloaded the Source for MX included in the "Hide/View the Scrollbar Component" page of kirupa.com. It simply doesn't work when I open the file and publish it. I'm using Flash MX 2004, ... has anyone experienced the same problem and solved it?

2. I've been able to set the scroll visibility with an external dynamic text using several procedures. One of them is:SB1.setScrollTarget(_root.Texto1);
if (Texto1.maxscroll > 1) {
SB1._visible = true;
};

Were SB1 is the scrollbar instance, and Texto1 the dynamic text instance.
All works fine in my PC, but it doesn't work when I load it in the server (the scrollbar cannot be visualized).

Does anyone know if there's a bug or a rational explanation for this problem?
Thank you in advance,
Fernando

Text Scrollbar, Show Only When Needed, Is It Possible?
Hi,

I have a flash movies which dynamically loads text from external txt files, and all that works fine. my issue is that some of the text files might have just a bit of text, and some of them have a LOT of text. so I needed to add a scrollbar to the text field to show it all for the large cases. however, i would like it to dissappear when there is no overflowing text. because it looks bad to have a scrollbar when there's just a line or two of text.

I have looked around for a component to do this with no luck... i can't figure out how to program a check for this in actionscript, so if anyone has a solution, or a component that would do this please let me know!

I don't know much about how components work exactly, but i do know that when there is no overflowing text it usually makes that middle "drag bar" go away on the scroller, so if i can find that check, and just make the whole scrollbar invisible (when the drage bar does not show) it would be a solution, but the default flash components are pretty complicated to look into and i could not figure out how to do it.

[F8] Auto Show/hide ScrollBar
Hi there!

How could I automatically show/hide the ScrollBar attached to a dynamic text field depending of the length (number of lines) of the variable loaded in this dynamic text field?

Many thanks in advance for your help!

Regards,

Gerry

Auto Show/hide ScrollBar
Hi there!

How could I automatically show/hide the ScrollBar attached to a dynamic text field depending of the length (number of lines) of the variable loaded in this dynamic text field?

Many thanks in advance for your help!

Regards,

Gerry

Save Vector File File From Online Flash Tool
I am creating logo designing flash tool, user can come to the site and select symbol, add a name and create logo,
I did that part ,

but I need user to save the logo as a vector file. Is this possible? Any software for this

Regards!
Nalinda

Hand Cursor Does Now Show Over Scrollbar Component
This might be very basic - but i am kinda stumped here, I justed skinned the scroll bar component in flash 8 using the simple theme, but for some reason when i move my mouse over the scroll it does not give me the hand cursor, just the arrow....

i cant get to the actionscript of the component because it does not show up in lib

all i am trying to do is show the handcursor after skinning the component. help


http://i61.photobucket.com/albums/h7.../no_folder.jpg


http://i61.photobucket.com/albums/h77/adeave/thumb.jpg

Show Scrollbar Depending On Dynamic Text Size
Is it possible to make a scrollbar, witch only shows up when the text in the dynamix text box is to large to show in 1 screen???

[MX] Why Can't I See My Swf File Online?
This might be blindingly obvious to everyone else...

I building a website (in Dreamweaver) and each page contains a banner animation with quotes. It looks fine when I preview it on my local machine, but completely disappears after I ftp it.

url http://www.tesher.co.uk/clickvision/index.html

Is there something I need to change in the standard code that Dreamweaver inserts? (To be honest I am have yet to get to grips with javascript...html and simple css is about my limit.)

THANKS if anyone can point me in the right direction!!

Populating Xml File Online
Hi everyone,

I was wondering if anybody could help me or direct me to some tutorials or anything that i can learn from concerning how to populate an xml file from flash.

In other words i wanna send information generated from a function in flash to that xml file. Is this possible when you are online??

Thanks for any help.

Regards,

Jerome

Streaming FLV File Online
Hello;

I have a movie I am trying to stream from a flv file.  It works fine on my desktop but does not seem to work when I have it online.  I have a broadband connection.  The movie clip is 4:58 seconds long and about 8MB.

Do I use a preloader so that the end user knows that it is loading?  I am using Flash MX Pro 2004.

Any help would be great.

Thanks for your input;
WilcoHEAD

Load PDF File From Flash, But NOT ONLINE.
Oookay, so here we go. I saw a post earlier today about someone asking how to make a pdf come up after pressing a button in flas on thier WEBSITE.....What I would like to know is how would you do this offline? What I mean is, say I build something in Flash and I burn it onto a CD and in my flash peice I have a button that I want to load up a PDF file. Could you have your flash projector file and the PDF both on the cd? Could flash even pull this off? Someone please let me know. And if it IS possible, how would you do it?

Thanks in advance.

A.

Saving A File Online Using Flash
I just need to know if this is possible. I work for a printing company that specialises in printing of notepads. I want customers to be able to come to our website and design there own notepads with preset images and templates.

The question I have is, would it be possible to create something in flash with images and text and save the notepad to a file and have it emailed to me. Preferebly something I can work with like a JPEG or PDF.

thank you for any input.

If anyone has any idea how to do this I would greatly appreciate some code, but mostly I just want to know if its even possible.

Writing To A Actionscript.as File Online
I want a text field in flash or html that will write on a Dreamweaver Action Script file and save the info, while online. Possible?

Thanks

Php UpDate File For Flash Online
I am using Macromedia Flash Pro 8.

I am trying to teach myself to pass information from an admin view to a public view online through a .php upDate file. This testNew.swf (http://individualsignature.com/WEB/SUB/SALS/testNew.swf) is what I have been working with, including downloadable .zip file. Could some one take a look and point me in the right direction.

The code in both
testNew.swf-----
testUD.php------
is less than a page and a half.
I am on a SQL server

File Works Locally, Not Online - What Gives?
I've got a file working perfectly on a local machine (the file calls a user-selectable XML file and parses the results on a mocked up radio screen). When I put it online however, it hangs and never loads.

Any ideas? It's great on my local system and all...but...you know...

Thanks!
Kyle

<file attached>

.txt File Loads Locally, But Not Online
Very simple load Vars script loading .txt file. Locally on my hard drive it works, but when I upload to server, does not load in any browsers.

????????????????????

Swf File Doesn't Play Online
Ok, well I finished my first flash layout using Flash MX 2004...it's going to be used on my myspace. The problem is the file won't play online/on a website when I upload it. I've tried uploading it to photobucket, imageshack, and another site that another user was using for swf files and it won't play on any of them. The only thing that works when the swf is uploaded, is the buttons that only have links on them. The buttons that use the external swfs, don't load when clicked.

Everything works fine when I test the layout using swf and html using flash, but after uploading it online, it doesn't work.

Now on myspace to use flash you have to use div overlay so this is what I'm using below including the embed, I don't know if this will help anything but it's below:
Quote:




<div style="position:absolute; top:120px; left: 40%; margin-left: -278 ; height: 3000px ; width: 800px; text-align:center; overflow:none; border:none; background-color: black;">

<embed src="http://users.cjb.net/dlink/myspacelayout1.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="750"></embed>




So, does anyone know how I can get it to work online?

I appreciate any help thanks.

WMV File Works In Preview, But Not Online.
I am trying to put a wmv movie in an html page that I built in Dreamweaver. It works when I view the page off my harddrive, but when I put it online it does not play or even load. The error report for the html page said the file cannot be found but it definatly is on the server. I'm totally confused by this error!

this is the html page
http://trolenberg.com/quademovie.html

this is a link to the movie
http://trolenberg.com/quade.wmv

Thanks to anyone who can figure this out!


Online Editing Of A Text File?
Hi all

I'm using Flash 5, I'm fairly proficient with the 'design' side of things but know NOTHING about CMS et al.

Is there a way I can provide a login so users of a site can edit a text file online?

I'd like the solution to be simple (like me) rather than beautiful. I have a swf that reads my txt file.

Thanks all.

Writing Variables To Online Text File?
I'we got a problem:

I need to write a variable to an online text file, that i can use again in the same or another movie. How do i do that???

I really need this, so please help me!!

Can You Write To An Action Script File Online?
I want a text field in flash or html that will write on a Dreamweaver Action Script file and save the info, while online. Possible?

Thanks

Flash Command To Change Online Txt File
I'm trying to make an interface that allows a client to change their own site.

I need to add a simple = sign at the beginning of a txt doc that is stoored online

then I need to delete the "=" symbol

1. the txt file will have data on it that cant be changed
2. the txt file will be being viewed at the time it is to be altered.

if someone can help me to do this would be easy task then they are brill!
danielchipchase@hotmail.com

Windows Projector (exe File) With Online Database
Need Advice,

I building a virtual tour that runs off locally as a windows projector file, that's not a problem.

Problem is the client wants to include some info from the website which is store on a Database, can PHP or ASP be use (with a projector file .exe) to pull info from a Database just like a normal flash sitting on a html page?

Thanks in Advance

Unpredictability When Loading SWF File For Online Training
Last year I built an online course for a client that includes linked video and connects to an LMS/database upon login. The course has been online for 9 months or so and has been relatively successful, but users are continually having intermittent problems with the course loading. After logging in, some users complain that the course either doesn’t load or loads and then never connects to the database/launches.

Here are the course specs:

SWF file – 5.3 MB
Linked FLVs – 85 videos, total of 507.5 MB, FLV sizes range from 1 to 20 MB

Course files are located on a shared server.

Does anyone have input on what could be causing these loading problems?

Let me know if you need more information about the details or course configuration.

Thanks!

Problems Loading Flash File Online
Hi all, can any one please tell me how to fix this problem i'am having.
I have a mini flash website online, with has been dump in a HTMl document. But each time i fix or update the swf, and upload it online, im always reading the old file????, Also i have tried clearing my cache and using different browser, but still the same thing.

Any Help please.Thanks in Advance!!!.

.swf File In Popup Window Online Not Playing?
Hi there,
I was wondering if anyone can tell me as to why a simple _root level .swf file that loads others into levels above it will not load or play in an html page that is online?

Here is the kicker!

The series of files that I have play just fine locally on multiple machines, but once I upload the entire set including the html page that corresponds with it. The _root level file dies and does not load anything at all.

All I get is a blank html page??? I am a little

Thanks for the help in advance...
Tom

Save/load Variables From An Online Txt File
Hi, I've got a code to load some numbers from a text file, but I'm confused about saving the data. I've recently swapped to MX and I've heard it's easier ?
Thanks

Online DB Interaction From Offline Projector File?
hey guys,
happy halloween! I am doing some research about the possiblity of accessing an online db from a projector file. I was wondering if there is a way to have a projector file write information to a webdna database? More importantly, is there a way to store or send information regarding sections of the projector movie a user has accessed? Any help or direction would be great. thanks!!

Output Data To Database File Online
I am looking for a way to store data I would want from a flash game of mine. I could just manipulate a highscore table but i was looking for the specific function to maybe try and create my own
thanks
-JBPresents

Unpredictability When Loading SWF File For Online Training
Last year I built an online course for a client that includes linked video and connects to an LMS/database upon login. The course has been online for 9 months or so and has been relatively successful, but users are continually having intermittent problems with the course loading. After logging in, some users complain that the course either doesn't load or loads and then never connects to the database/launches.

Here are the course specs:

SWF file – 5.3 MB
Linked FLVs – 85 videos, total of 507.5 MB, FLV sizes range from 1 to 20 MB

Course files are located on a shared server.

Does anyone have input on what could be causing these loading problems?

Let me know if you need more information about the details or course configuration.

Thanks!
 

MovieClipLoader Disabled When File Plays Online?
hi everyone. Thanks to several forum members suggestions, i now have a parent flash file that uses the MovieClipLoader class to load external swfs as they are needed. Everything works smashingly when played locally, including when i fire up the parent flash html file. However, when I loaded the files onto a server and go the site online, the file no longer works correctly.

i have it loaded here:

http://www.hanlonarchitects.com/hanlona ... /home.html

I think what is going on is that the MovieClipLoader is not being allowed to fire due to some security settings somewhere.

The first error in playback occurs after the text that intially loads has faded and a preloader appears. Locally, the preloader functions correctly, and an image is loaded in the space that the crosshairs mark (this is all within the parent swf).

A second error occurs after the first thumbnail in the scrolling panel is released. A swf file that contains the information for that project loads, but images inside it that are also activated using the MovieClipLoader class will not load (this all occurs within a child swf).

In both these cases it seems that the browser has a problem using MovieClipLoader within another loaded movie. Again, this kind of leads me to believe that it is a security issue, but i'm definitely not 100% on that...

thanks for taking a look!

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