Publish Settings Which Flash Player Version Best
I made a flash movie and need to publish it to go into my dreamweaver and then up on web page. When you click to publish settings which flash player version should I pick to use that most people will be able to see - I appreciate any help. THANKS
Adobe > Flash General Discussion
Posted on: 05/23/2007 02:04:48 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
[MX04] Flash Player Version - Publish Settings?
Hi there,
Just wondering if there was a safe version flash player that will best ensure people can view the flash document without having to download a new version? I have been told that to publish them for version 5 would be best in that respect but it looks as though it's a bit constricting too.
Would appreciate people's opinions on this. Thanks.
J
Publish Settings How To Force Player Version Used ?
Had a very weird problem:
Made a 'whiteboard' app. Originally it was for Flash Player 7 then I changed the Publish Settings to point to Flash Player 8.
Worked fine for me, but caused problems with my customer, so I changed Publish Settings back to Player 7.
When the customer opened up the .swf which I'd emailed him, it opened in Flash Player 6, even though he had the latest player installed.
When he deleted the old V6 player the problem was fixed.
So my question is, why did my .swf open Flash Player 6 - and therefore lose some of it's functionality - when the customer had a later player installed ?
I have a very unhappy customer on my hands.
HTML, CSS & Flash Player 8 In Publish Settings
Hi
Just done lee's CSS/HTML & Flash tut and everything is working fine, tried to transplant this into my project and I've noticed that the CSS file is ignored when my publish settings are set to flash player 8.
What I mean by this is the line height is too great as soon as I switch to flash player 8 in the publish settings. I've even downloaded Lee's example and he has his publish settings to flash player 7. Turn these to flash player 8 and again the line height becomes too large.
Does anyone know why flash does this? Or is there a work around apart from lowering to flash player 7.
Thanks
Ricky55
PS
I'm using filters in my buttons so I need to export as flash player 8.
Flash Player Version To Publish
I am about to publish my movie and upload to web. Should I publish it to version 8(then the user will have to download version 8 for it to run right?) Or should I publish it to any earlier version (any recommended?) so that less people have to go through the hassle of downloading a newer version to view my site?
How Do I Publish Flash Player 8 In Earlier Version And Keep Text Quality
I've been posting variations of this question on FK for weeks and can't find a straight answer. My dilemma:
>>Working on a site in Flash 8
>>Most computers I've checked on can't view text on my Flash 8 files, only images show up on published SWF's in IE (internet explorer).
>>Publishing in an earlier version of Flash Player causes text quality to drop significantly and roll overs on text don't work well.
>>All I want to do is create a site in Flash 8 that ANY USER can view without having to download the latest Flash Player.
Did I purchase Flash 8 for nothing?
Export Frame For Classes In Publish Settings Flash Action Script Settings
My preloader doesn't load until 100KB into the movie
and I figured out it's because it's loading my components
(I'm using 3 instances of a Media Display and of a Media Controller)
in the first frame.
So I changed the Flash ActionScript Settings (in the Publish Settings)
to Export Frame for Classes 2
which made the first frame much lighter -
an acceptable 10K
BUT that made my components act very badly.
Please help!
Thanks!
Which Player Version Should I Publish?
I am finishing my new game, but before I post it on my site, I have a question about general accessibility.
To give the largest number of users access to my game, should I release my game in Flash Player 5,6 or 7?
Thanks.
REAL Player Export In Publish Settings Dialog?
I just noticed that in my publish settings dialog box, that I can export my movie in REAL player format! Has anyone else noticed this in their settings? I'm just curious as to how it got there. It must have been just recently, because just 2 days ago I published a movie and it wasn't there as an option. It gives the file extension .smil
It looks really cool in the real player because all the buttons and actions work just fine. It's a little bit choppy as far as the frame rate goes, (eg. it's dropping frames) but there are some options that I can set to fix this as well when I click on the Real Player TAB in the publish settings dialog box.
If anyone knows how I got this as an option in my publish settings, please let me know because I'm really curious as to how it got in there. I'm using Flash version 5.
Later.
Fourfold
REAL Player Export In Publish Settings Dialog?
I just noticed that in my publish settings dialog box, that I can export my movie in REAL player format! Has anyone else noticed this in their settings? I'm just curious as to how it got there. It must have been just recently, because just 2 days ago I published a movie and it wasn't there as an option. It gives the file extension .smil
It looks really cool in the real player because all the buttons and actions work just fine. It's a little bit choppy as far as the frame rate goes, (eg. it's dropping frames) but there are some options that I can set to fix this as well when I click on the Real Player TAB in the publish settings dialog box.
If anyone knows how I got this as an option in my publish settings, please let me know because I'm really curious as to how it got in there. I'm using Flash version 5.
Later.
Fourfold
Publish Preview Of Media Player Works Well, But Uploaded Version Doesn't
I've made an audio player in flash that allows you to type the file name of a song and then streams&plays it. I'm able to stream the audio, get the artist and song name, and control the volume fine, however I can't find the total length of the audio file. When I don't stream the song, I do. So I made this fix:
PHP Code:
on(keyPress "<Enter>")
{
_root.audio = new Sound();
_root.audio.setVolume(50);
_root.songfile = _root.songfile+".mp3";
_root.audio.loadSound(songfile, true);
_root.audio.onID3 = function() {
artist = this.id3.artist;
songtitle = this.id3.songname;
totalseconds = Math.round(this.duration / 1000);
percentloaded = (this.getBytesLoaded()/this.getBytesTotal())+0;
totalseconds = Math.round(totalseconds / percentloaded);
minutes = Math.floor(totalseconds / 60);
seconds = totalseconds % 60;
if(seconds < 10)
{
seconds = "0"+seconds;
}
_root.scrollinfo = artist+" - "+songtitle+" ("+minutes+":"+seconds+")";
setInterval(updateProgress, 100, _root.audio);
}
}
I found how much of the song was loaded after about 1 second and how much time flash thought the song was at the same time, I then found out the total length of the song based of this material:
PHP Code:
totalseconds = Math.round(this.duration / 1000);
percentloaded = (this.getBytesLoaded()/this.getBytesTotal())+0;
totalseconds = Math.round(totalseconds / percentloaded);
When I publish preview in flash, this works wonderfully. However, when I uploaded online and tried viewing in firefox and IE it didn't work.
View online version - http://www.mad-host.net/brendan/medi...diaplayer.html
type in best in the text field and hit enter to test it out (my incentive for you to help me is that you get to listen to best of you by the foo fighters, lol)
FLA - http://www.mad-host.net/brendan/medi...ediaplayer.fla
publish preview with html and you see how it works (save it to a folder that has an mp3 file in it, and then type in an audio filename without the extension to try it in preview mode)
I know I'm asking a lot of whoever helps me out, but like I said you get to listen to foo fighters.........so please help me out. Or if anyone knows a way other than mine to find the duration of a song in flash, please post it.
A flash-troubled wannabe guru,
Brendan
Flash Publish Settings?
I am trying to publish a flash file and have a .gif file that I have made insert if it does not detect flash player 6.
I understand how to set these settings in the publish area, but I don't know how to set it up to link the .gif I already made to be inserted.
Can anyone help with this, or know a better way to achieve it?
thanks!
Nicole
Flash Publish Settings
Sorry i missed the last one i started because i didnt check my email in awhile.
My question was what do the following do in flash publish settings for swf? :
Compress movie
Debugging permitted
omit trace actions
protect from import
generate size report
thanks
Publish Settings In Flash Mx
hey! i want to make my .swf when right clicking on it, it will only show settings and about macromedia flash. the normal has play, stop, rewind, forward, etc.....
tnx!!!
Flash-Publish Settings
I have found that some of the sites that i have created in flash only change sizes depending on the viewers browser. How can I stop this from happening. When publishing i always choose the following under the HTML tab:
Template: Flash Only
Dimensions: Match Movie (which is created at 640X480)
Quality: High
Window Mode: Window
HTML Alignment: Default
Scale: Default (show ALL)
Flash Alignment: Center Center
What will help me create pages that are always the same height and width on every browser?
Key Imput With Flash 4 Publish Settings?
Hi,
I'm making a banner using flash 5, but flash 4 export settings.
I've got some problems with the key imput: the following code doesn't work.
on(keyPress(81))
{
trace("q pressed");
}
Does anyone know how I should do this??
Thanx!
Frustrated With Flash 8 Publish Settings
Please Help... everytime I publish my .fla file I experience two problems: I get only the .swf file with no .html file associated with it when I have Version: Flash Player 8 in the Flash tab of the Publish Settings window eventough the Flash and HTML are both checked in the Format tab, plus my application freezes after I click the Publish button. This situation does not happen when I change the Version: Flash Player 7, and I get .both the .swf and .html files.
I tried to unistall the application and reinstall it back hoping to solve the problem. Unsuccessfully. I couldn't uninstalled completely I guess because it did not ask me for the serial number. I'm definitely missing something!! Thank you.
Publish Settings; Flash Alignment
I am finally ready to publish my web site, (770x650 px) and would like it to come up centered on the screen rather than aligned with the left edge. I go to publish settings and select "center" under flash alignment, and "default" under html alignment. The html alignment seems to make a difference to the location on the screen (top, bottom, right, or left), but it has no selection for center. How can I accomplish this?
Thank you,
Susan
Extending Flash - DOM Publish Settings
I'm programming a panel to allow our developers to batch replace background images. I'm essentially done but have one issue; allowing the user to choose a publish location. It’s a minor concern at this point because the publish settings for all the files in the project are already properly set. However, in future projects this may not be the case.
I’ve researched the documentation and found several Document publish properties and methods but none that allow direct manipulation of settings. At this point I’m thinking I’ll have to use exportPublishProfile() to a temp folder I’ll assign via fl.configDirectory, open modify and save the XML, use importPublishProfile() and finally clean up the temp folder. As all current files only have the Default profile this shouldn’t be any more complicated than that, but again in the future I may be dealing with files that have multiple publish profiles.
I would certainly appreciate any knowledge/insights anyone would care to share RE manipulating publish settings. Thanx in advance.
Flash CS3 Migration: Still Use AS2 Publish Settings Bad?
[similar post in Flash CS3 forum but I thought the AS3 community might have some input]
Hey all,
My company is switching to Flash CS3. We do pretty basic interactivity...nothing ever requiring external classes. The designers I work with occasionally have to help me out with flash when we get too busy, but they aren't coders and therefore they don't want to use AS3 publish settings so that they can still have code on buttons, simple on(event) code, etc.
I want to argue that they should learn basic AS3 for the sake of posterity, but I can't come up with any really good reasons since the stuff we do is pretty basic.
Is it a bad idea to stick with AS2 publish settings?
Any input is greatly appreciated.
FLASH CS4: Messed With The Publish Settings
Hey I messed with the publish settings of my flash project, I put'em back where they were but now all my animations are flickering and looking wrong. What happened?!
Anyway to reset the publish settings? It seems like flash just won't listen to what I'm telling it to do now
Flash 7 And Publish Settings Question - Newbie
using Flash MX 2004
Hello,
My MC's publish settings is set to Flash Player 6. When previewed in the stand alone player, my movie works fine but if I change the publish settings to Flash Player 7 with actionscript 2.0, my movie fails to load 2 sections. Why is that? These sections are two empty movie clips that actionscript targets and loads two SWFs into them on playback.
Is the Flash Player 7 with actionscript 2.0 any better than Flash 6 with actionscript 1.0?
Thanks for clearing this up for me!
Luke
Publish Settings: Center A Flash Movie
Is there any way to center a flash movie on the screen? I am using the publish setting " Pixels " and the flash movie always appears in the upper left hand corner of the window. I would like my presentation to stay a fixed size, but be in the center of the screen...
I hope someone knows how to do this!
Thanks
Rich
Flash 6 Check - HTML Publish Settings
Using Flash MX
Has anybody used the Flash 6 Check setting under HTML Publish Settings? I was wondering if there is any documentation on how to use this feature and if anybody has had any success using it. Also I guess it does the check using Javascript?
Best Version Of Flash To Publish In
What version is the most common on the internet? Which version should I be publishing in so that my slideshow works best on most computers.
www.faceproject.org/index2.html
thanks,
Matt
What Version Of Flash To Publish As...
Good morning,
I am writing up some requirements material for some Flash development work that we are outsourcing in the coming weeks. The consulting company has indicated that:
Quote:We publish all our flash content as "flash 7"...
Document Settings / Publish Settings
1. Is there a standard size that a flash document should be (to render best in most browsers).
2. Which is better, setting the dimensions of the published movie in percentage or a specified number (pixels)?
Version 2 Component Publish As Flash 6
I've built a component that works great in flash 7 but when I publish it as flash 6 nothing shows, I know that this is because the initfromclipparameters doesn't recognize the componentparameters..
So how do i get it working for flash 6 without having to extend uicomponent
The code below is the class of the component
ActionScript Code:
class se.zilch.LoadBar extends MovieClip {
[TagName("Loadbar")]
[IconFile("Zilch.png")]
private var boundingBox_mc:MovieClip;
private var myWidth:Number;
private var myHeight:Number;
private var depth:Number;
//private var dispatchEvent:Function;
private var _horizontal:Boolean;
private var _reverse:Boolean;
private var _border:Number;
private var _borderColor:Color;
private var _bgColor:Color;
private var _barColor:Color;
var clipParameters:Object = {
_horizontal:true,
_reverse:false,
_border:1,
_borderColor:"#000000",
_bgColor:"#FFFFFF",
_barColor:"#8792A0"};
///////////////////////Get'n Setters//////////////////////
// width
public function set width(val:Number):Void {
this.SetSize(val, null);
}
public function get width():Number {
return this.myWidth;
}
// height
public function set height(val:Number):Void {
this.SetSize(null, val);
}
public function get height():Number {
return this.myHeight;
}
// horizontal
[Inspectable(defaultValue=true, type=Boolean, category="a")]
public function set horizontal(val:Boolean):Void {
this._horizontal = val;
}
public function get horizontal():Boolean {
return this._horizontal;
}
// reverse
[Inspectable(defaultValue=false, type=Boolean, category="a")]
public function set reverse(val:Boolean):Void {
this._reverse = val;
}
public function get reverse():Boolean {
return this._reverse;
}
// border
[Inspectable(defaultValue=1, type=Number, category="b")]
public function set border(val:Number):Void {
this._border = val;
}
public function get border():Number {
return this._border;
}
// borderColor
[Inspectable(defaultValue="#000000", type=Color, category="c")]
public function set borderColor(val:Color):Void {
this._borderColor = val;
}
public function get borderColor():Color {
return this._borderColor;
}
// bgColor
[Inspectable(defaultValue="#FFFFFF", type=Color, category="d")]
public function set bgColor(val:Color):Void {
this._bgColor = val;
}
public function get bgColor():Color {
return this._bgColor;
}
// barColor
[Inspectable(defaultValue="#8792A0", type=Color, category="e")]
public function set barColor(val:Color):Void {
this._barColor = val;
}
public function get barColor():Color {
return this._barColor;
}
//////////////////////////////////////////////////////////
///////////////////////Functions//////////////////////////
//////////////////////////////////////////////////////////
// Constructor
public function LoadBar() {
this.Initialize();
this.DrawBase();
}
public function SetSize(w:Number, h:Number) {
trace("SetSize");
this._xscale = 100;
this._yscale = 100;
if(w != null) {
this.myWidth = w;
}
if(h != null) {
this.myHeight = h;
}
this.DrawBase();
}
// Initialize Component to the right size
private function Initialize():Void {
trace("Initialize");
this.initFromClipParameters();
this.myWidth = Stage.width;
this.myHeight = Stage.height;
this._xscale = 100;
this._yscale = 100;
//mx.events.EventDispatcher.initialize(this);
//this.boundingBox_mc.unloadMovie();
trace("checkparams "+this);
}
// Draw a box
private function DrawBox(name:String, depth:Number, width:Number, height:Number, x:Number, y:Number, border:Number, bordercolor:Color, bgcolor:Color):Void {
trace("DrawBox");
if(typeof(this["name"]) != MovieClip) {
var myBox = this.createEmptyMovieClip(name,depth);
} else {
var myBox = this["name"];
}
if(border == null) {
myBox.lineStyle(0, 0xFFFFFF);
} else {
myBox.lineStyle(border, bordercolor);
}
myBox.moveTo(x, y);
if(bgcolor != null) {
myBox.beginFill(bgcolor, 100);
}
myBox.lineTo(width, y);
myBox.lineTo(width, height);
myBox.lineTo(x, height);
myBox.lineTo(x, y);
if(bgcolor != null) {
myBox.endFill();
}
}
// Draws the background and border for the LoadBar
public function DrawBase():Void {
trace("DrawBase");
this["background"].clear();
this["border"].clear();
this["bar"].clear();
this.DrawBox("background", 1, this.myWidth, this.myHeight, 0, 0, null, null, this._bgColor);
this.DrawBox("border", 3, this.myWidth, this.myHeight, 0, 0, this._border, this._borderColor, null);
this.DrawBox("bar", 2, 0, 0, 0, 0, null, null, this._barColor);
}
public function Draw(percent:Number):Void {
trace("Draw");
this["bar"].clear();
if(this._horizontal) {
// if horizontal
if(this._reverse) {
// if you want it to go backwards
var p = this.myWidth*(percent/100);
var w = this.myWidth-p;
this.DrawBox("bar", 2, this.myWidth, this.myHeight, w, 0, null, null, this._barColor);
} else {
// if you want it to go forwards
var p = this.myWidth*(percent/100);
this.DrawBox("bar", 2, p, this.myHeight, 0, 0, null, null, this._barColor);
}
} else {
// if vertical
if(this._reverse) {
// if you want it to go down
var p = this.myHeight*(percent/100);
this.DrawBox("bar", 2, this.myWidth, p, 0, 0, null, null, this._barColor);
} else {
// if you want it to go up
var p = this.myHeight*(percent/100);
var h = this.myHeight-p;
this.DrawBox("bar", 2, this.myWidth, this.myHeight, 0, h, null, null, this._barColor);
}
}
//this.dispatchEvent({type: "onProgress", target: this});
//updateAfterEvent();
}
}
Publish Settings Changed From Flash 6 To 8, Now Preloader Doesn't Work
Hi there - thanks for taking the time to help.
I'm quite new to Flash, so bear with me!
The file I am trying to work on can be downloaded at http://johnsonishere.com/intro.fla (about 2.8MB).
I recently managed to make a simple preloader (using an example I found online) for a simple shape-tween animation with some music.
I created the page in which the SWF is embedded in Microsoft FrontPage by telling it to insert a 'Movie in Flash format'. This added the following line to the HTML code in the <object> tag:
[html]codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"[/html]
I notice that the version to which it refers is 6, not 8.
I originally told Flash to publish the SWF file as Flash 8. Upon loading the page people who tested it for me told me that they couldn't see an animation at all.
I changed the publish settings from 8 to 6 and uploaded the SWF again and it seemed to work fine.
Now I want a bit more functionality with the animation (and other animations) so tried to change the publish settings from 6 to 8, but this has stopped the preloader working altogether. I also made sure that I used the <object> and <param> tags given when Flash publishes an HTML file, just to make sure it wasn't an issue with FrontPage referring to the "wrong" version.
With four layers and a number of actions in the project, and me not knowing exactly what everything does, I think it's best if you just download it from the address above and have a look, instead of me trying to write everything up.
Hope this makes sense!
Thanks,
Chris
Xml Driven Flash Website Not Working When I Changed Publish Settings Please Help
Hello, I have Xml Flash website but it is done in FlashMx with a Publish settings of Actionscript 1.0 and Flash Player 6 . Now I have a flv player component I want to embedd it inside my xml flash project, It says you need a higher publish settings to enable that flv component. ok fine Now i have changed the Publish settings to Flash Player 8 . When I run the movie Flv component is working but the xml flash website has been disappeared only blankscreen . I want to know the reason for this how to solve this issue. Is there any related threads posted here please post it here Urgent help
Publish Preview, Publish Settings...
Greetings.
I have a bar that runs the top of my movie. I noticed that in publish preview the bar is cut in half from the top whilst in test movie I have the whole bar. Is there a way to better match up my movie between the two. In Dreamweaver I can set all boarders to 0 but I would like an accurate view of my movie in Flash publish preview.
All in all I want my Flash document to fit inside a standard browser.
Any ideas?
Thanks.
Flash 6 Check In Flash Under Publish Settings
Has anybody used the Flash 6 check in Flash under the Publish Settings under the HTML tab? If so have you had good luck with it? Do you know of any documentation on how to use it? Are there any disadvantages to using this method?
I know too many questions :-)
Publish Settings
Hello - I have a movie I've finished and I need to publish it to a web via FrontPage. I'm clicking on "publish setting", choosing HTML, clicking PUBLISH and the bar goes across like it's publishing, but I don't see any HTML page. Can I designate where this file supposedly goes? How do I find it?
Thanks,
Mark
Publish Settings
retard that i am, i cant figure out the right settings for my movie, i want it to maximise, on the whole screen but doesnt rescale via the browser window.
any ideas?
Publish Settings
I'm trying to publish a Flash flie (amovie.swf) that loads a seperate Flash movie (bmovie.swf) onto one of it's layers. The problem is, the Publish produces a Flash Projector file. The movie that gets referenced/loaded into the first is targeted by the name of bmovie.swf. Do I need to name this movie "bmovie projector" instead? How will this effect a Windows format?
Publish Settings
How do i publish my movie to be an exact fit to the page but also not to have a border.
Cheers
Publish Settings
I have a website that i'm uploading. What is the best publish settings for the flash and html files?
thanks!
Best Publish Settings..
hello all;
i publish my flash's work always pixel 100% 100% and exac fit.. but i saw that if you try to shrink i.e windows flash does not shirnk vectoral..
whats is your best publish setting for 800*600 and 1024*768..
Publish Settings?
In Flash MX's
Publish html settings dialog,
How do you create a html flash movie that is 640X480??
any time I try it, the .swf is in the top corner of the html page??
please help!!
Publish Settings
say my actual movie is 761x598 pixels and when i try to publish it its pushed off to the left and still has the background border around it. i dont want any border from top to bottom. the sides dont really matter due to the with of the movie. it just wont center unless i put it at 100% then yet it STILL has the border around it. any ideas?
Publish Settings
When I publish, I don't want the .swf file to allow the user to resize the window, or have any menus at the top. Basically, give the user no control other than to watch the movie.
How do I do that?
Ya Tin
Publish Settings
Hi
Does anyone know what settings should be used within Flash to enable the boarders etc to be gutterless once the .swf is embedded into the html page.....should the movie be a certain size?
Thanks
Ravenotice
Publish Settings
OK, i have seen sites like this before so i know it can be done but i dont know how... I want my splash screen to appear full screen then after so many seconds, or after a button is pressed for my main movie to load in a smaller window. i want this window to be central and not resizable. Ive looked in the flash (mx by the way) publish settings but there doesnt seem to be a great deal there... do i need to set in my .html or what?
any help or directions much appreciated
thx
lev
Publish Settings
Hi,
Can someone gie me some good advice on the publish settings?
Thanks
Publish Settings
i just made a basic flash site and noticed that when I adjust my screen settings to 800x600 the site loses a lot of quality.
I created my site when my pc had a screen area of 1024x768.
What publish settings do I use to make the site look best at either setting?
Here's the site. No laughing please.
http://www.geocities.com/hudsondigital/
Thanks in advance!
Best Publish Settings?
hi, was just wondering what publish setting everyone out there uses? ideally i want something that is going to look in the browser how it does on the stage and scale appropriatly depending upon the viewers screen res.
any recommendations??
cheers
lev
More On Publish Settings...
Is there a way to make flash uncheck the "display menu" option automatically when you create new files, as opposed to changing that setting every time you create an html file?
dave
|