Fullscreen Code Compatible For All?
Hi, Can anyone help me with this fullscreen script... like at http://www.cartier.de once you click the animation in middle, the fullscreen page it launches.. i want to do the same with an 800 x 600 animation i have made. Is there any browsers which wont open this? And what about pop up killers? Will this be viewed by everyone or is their problems with this fullscreener? (apart from the issue of people disliking loosing their desktop)
Also the small white star which moves around the page... how do i do this and make it so smooth? I have tried making a star and then i draw a guide layer and snap to it and do motion tween, but its not as smooth and natural as theirs? Any tips?
KirupaForum > Flash > Flash 8 (and earlier) > Flash MX 2004
Posted on: 09-20-2004, 07:10 AM
View Complete Forum Thread with Replies
Sponsored Links:
Fullscreen Code Compatible For All?
Hi, Can anyone help me with this fullscreen script... like at http://www.cartier.de once you click the animation in middle, the fullscreen page it launches.. i want to do the same with an 800 x 600 animation i have made. Is there any browsers which wont open this? And what about pop up killers? Will this be viewed by everyone or is their problems with this fullscreener? (apart from the issue of people disliking loosing their desktop)
Also the small white star which moves around the page... how do i do this and make it so smooth? I have tried making a star and then i draw a guide layer and snap to it and do motion tween, but its not as smooth and natural as theirs? Any tips?
View Replies !
View Related
Slideshow Code Not IE Compatible
G'day everyones.
I can't seem to find a solution to this issue i'm having with different browsers. I have a slide show and it works perfectly fine in Firefox however it doesn't display at all in IE. If anyone knows why this is it would really help me out.
Complete code is below. Actionscript 2.0. Its long and tiresome but I included it anyways.
code:
// set random variables
var randomNum = 0;
var randomNumLast = 0;
var container_mc = this.container;
// load xml file
images_xml = new XML();
images_xml.ignoreWhite = true;
images_xml.onLoad = parse;
images_xml.load("images.xml");
function parse(success) {
if (success) {
imageArray = new Array();
var root = this.firstChild;
_global.numPause = Number(this.firstChild.attributes.timer*1000);
_global.order = this.firstChild.attributes.order;
_global.looping = this.firstChild.attributes.looping;
_global.fadetime = Number(this.firstChild.attributes.fadetime);
_global.xpos = Number(this.firstChild.attributes.xpos);
_global.ypos = Number(this.firstChild.attributes.ypos);
var imageNode = root.lastChild;
var s = 0;
while (imageNode.nodeName != null) {
imageData = new Object();
imageData.path = imageNode.attributes.path;
imageArray[s] = imageData;
imageNode = imageNode.previousSibling;
s++;
}
container_mc._x = _global.xpos;
container_mc._y = _global.ypos;
// parse array
imageArray.reverse();
imageGen(imageArray);
} else {
trace('problem');
}
}
// the transitions
function swapPlace(clip, num) {
eval(clip).swapDepths(eval("container_mc.loader"+n um+"_mc"));
}
function loadImages(data, num) {
if (i == undefined || i == 2) {
i = 2;
createLoader(i,data,num);
i = 1;
} else if (i == 1) {
createLoader(i,data,num);
i = 2;
}
}
function createLoader(i, data, num) {
thisLoader = eval("container_mc.loader"+i+"_mc");
thisLoader._alpha = 0;
thisLoader.loadMovie(data[num].path);
watcher_mc.onEnterFrame = function() {
var picLoaded = thisLoader.getBytesLoaded();
var picBytes = thisLoader.getBytesTotal();
if (isNaN(picBytes) || picBytes<4) {
return;
}
if (picLoaded/picBytes>=1) {
swapPlace("container_mc.loader2_mc",1);
alphaTween = new mx.transitions.Tween(thisLoader, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, _global.fadetime, true);
timerInterval = setInterval(imageGen, _global.numPause, data);
delete this.onEnterFrame;
}
};
}
function imageGen(data) {
if (_global.order == "random") {
// choose random #'s
while (randomNum == randomNumLast) {
randomNum = Math.floor(Math.random()*data.length);
trace(randomNum);
}
loadImages(data,randomNum);
randomNumLast = randomNum;
} else if (_global.order == "sequential") {
if (p == undefined || p == data.length && _global.looping == "yes") {
p = 0;
} else {
break;
}
loadImages(data,p);
p++;
} else {
trace("Yep... you stuffed the XML file'");
}
clearInterval(timerInterval);
}
stop();
View Replies !
View Related
Can This Code Be Made Flash 5 Compatible?
I am using the following actionscript as a way of dynamically altering the visibility of multiple movie clips, however it only works in Flash MX, not Flash 5. Does anyone
have an idea as to how I might make it backwards compatible?
for(movies in _root.empty){
if(_root.empty[movies].getDepth() != _root.topLevel){
_root.empty[movies]._visible = false;
}
}
Thanks
View Replies !
View Related
Looking For Macintosh-compatible Source Code Control System For Actionscript (3)
I'm working on a team of 2-3 developers doing small to medium-scale Actionscript development projects. Last week, in the middle of a rush project, we got into a bit of a mess because we were all coding furiously, separately, and then uploading to a central server.
No harm done in the end, but it got us to thinking that we really need some kind of good, easy-to-use source code control system would be good. I don't know much about them -- but something that keeps track of check-in, check-out, keeps track of versions (with differences), etc would be great. We all run Macs, so it would need to work with that (although we could perhaps have it running off some PHP server, if such a thing is necessary). Ease of use is important, and although it doesn't have to be free (although that would be nice), price is an object (I'm open to all suggestions, though).
Anything that takes into account the vagaries and assets of Flash/AS development (FLA files, etc) would be an added plus.
Thanks
View Replies !
View Related
Looking For Macintosh-compatible Source Code Control System For Actionscript (3)
I'm working on a team of 2-3 developers doing small to medium-scale Actionscript development projects. Last week, in the middle of a rush project, we got into a bit of a mess because we were all coding furiously, separately, and then uploading to a central server.
No harm done in the end, but it got us to thinking that we really need some kind of good, easy-to-use source code control system. I don't know much about them -- but something that keeps track of check-in, check-out, keeps track of versions (with differences), etc would be great. We all run Macs, so it would need to work with that (although we could perhaps have it running off some PHP server, if such a thing is necessary). Ease of use is important, and although it doesn't have to be free (although that would be nice), price is an object (I'm open to all suggestions, though).
Anything that takes into account the vagaries and assets of Flash/AS development (FLA files, etc) would be an added plus.
Thanks
View Replies !
View Related
Help...Need Javascript Code For Fullscreen
Ive been looking for javascript for full screen.
examples:
http://www.egomedia.com/
http://www.progressivetechnologies.com.cy/
I want it just like those links. No bar at the top of screen, however the menu showing at the bottom of monitor. Any help would cure the ulcer I have growing
Steve
View Replies !
View Related
Need Code - Flash Fullscreen In Browser
Hello,
I have tried to use the fscommand fullscreen true and allowscale false commands in my flash movie to obtain this effect of this website.
http://www.domanistudios.com/
The website is always 1 size, but no matter what your resolution it fills the screen. There also are not any scrollbars along the sides, unless you shrink the window a lot.
Am I missing some really easy code/concept here?
Thank you for just checking out the post.
From,
bamski
View Replies !
View Related
PC And MAC Compatible
Eyyyy Guys!
If I will make a flash based interactive cd-rom, Is there anyway can I make my .swf, .fla, .exe file to be a pc compatible and a mac compatible all in one? or is there any software or flash plug-ins that can work this out?
Help meeeeeeeeeeehhhhhhhhhh!!!!
D'Durns
View Replies !
View Related
Fla. Not Compatible For MX
Hi all,
Can anyone make the attached file (ray of light fla movie) compatible with MX. It was made with Flash 4 and when i try to make changes in Flash i am unable to...it brings up all soughts of errors.
If anyone has Flash 4 or 5, would it be possible to make it compatible for Flash MX?
Cheers,
suzy
View Replies !
View Related
Fla. Not Compatible For MX
Hi all,
Can anyone make the attached file (ray of light fla movie) compatible with MX. It was made with Flash 4 and when i try to make changes in Flash i am unable to...it brings up all soughts of errors.
If anyone has Flash 4 or 5, would it be possible to make it compatible for Flash MX?
Cheers,
suzy
View Replies !
View Related
Compatible
I was wondering if anyone uses a Wacom Tablet to draw in Flash MX. I'm working on a Mac OSX Panther and was thinking about getting a Tablet. Anyone have any good or bad experiences?
Thanks
Jay
View Replies !
View Related
Compatible Cd-rom
hello,
i am creating a cd-rom that i want to be, mostly, compatible with pcs and macs that may or may not have flash loaded. in the root folder i have an .inf file, the flash.exe main movie, an .swf that loads at some point, some folders for text etc., and the two flash-shockwave installers as well. what do i do to make the flash movie autorun the installers if necessary. does it automatically search the root folder. i received the license from macromedia to use them, but found little help with how. also, what should i include on the cd cover as far as instructions and requirements, do you guys know a link to some generic or universal text for that? thanks in advance for any help.
randy
View Replies !
View Related
[CS3] Compatible
hey guys i made a html site and include a flash menu.now it works fine at my house but some clients are complaining that it is not showing at all the flash menu?is there a way to make it compatible with oll flash versions?cause i noticed if you don't have flash player 9 it does not work...
View Replies !
View Related
Button That Can Minimize A Fullscreen Flash Exe To Not Fullscreen
Hi!! I have a flash projector file that turns fullscreen. I have a quit button at the top of the presentation but i want to have a button that will just minimize it to its actual size incase people need to see there desktop. Anybody know script for something like this. I was trying something like:
on (release)if
fullscreen=true
fscommand("fullscreen", false);
if
"fullscreen=false
fscommand("fullscreen", true);
BUT IT DIDNT WORK!! any help would be awesome!!! thanks!!
View Replies !
View Related
[AS FLASH8] - Loading Fullscreen External SWF's Into A Fullscreen SWF
Hey guys, sorry if this gets confusing I'm trying to explain the best I can.
Here's what I'm having a problem with: http://golibersuch.com/c/mnsm3.html
What I've done is created a "fullscreen SWF" by using ActionScript to stretch a movie clip (yellow rectangle) in the background to fill the whole browser frame. The navigation is positioned in the upper left using ActionScript also; when the user resizes the window, positions are adjusted so the nav always stays in the upper left. (Adapting the technique from http://www.tutorialized.com/tutorial...retching/13567)
External SWFs are loaded from an XML file into a blank movie clip on a layer that is between the yellow background and the navigation (adapting the kirupa XML Photo Gallery). Here's my problem: I want to be able to create full screen backgrounds for these external SWFs so when they are loaded into the main SWF they cover up all the of yellow background of the main clip. Also if the user resizes the window, I hope like the main SWF, the background on the external SWF can also resize to match.
If you press next twice to get to item three for example, I want to be able to stretch that orange box to fill the entire background. You'll notice if you resize the window on the third item, the orangle rectangle will adjust, it's just not correct. Any ideas? Maybe I'm going about this wrong. If this helps, a zip of all related files including .fla can be found here: http://golibersuch.com/c/mnsm.zip
Thanks! Any input would be appreciated.
View Replies !
View Related
Flash 4 Compatible
i'm trying to do some tweening with script (the catch is it needs to be fla 4)
this is what i have gotten to work in 5
_root.MC._x = _root.MC._x+((_root.goalx-_root.MC._x)/n);
goal is defined as a # in the first frame of the MC then is changed by a button...(_root.goalx = 918
really need to make it work in flash 4
View Replies !
View Related
Form Needs To Be F5 Compatible
We are creating a product demo and the output needs to be in F5 rather than MX. We need CHECK BOXES in our form which available as components in MX but you cant export out the movie as a F5 and get them to work.
So, I am looking for a solution. What we really want to do is create a movie clip that when you click on it it puts in a check mark and then somehow ( this is where we need the help ) it tells the form that the "Request more information" was checked.
Everything else about the form works fine...just using SendMail to process.
View Replies !
View Related
Compatible Flash 5
Hello i have a function that must work on flash 5
Anybody could help me converting this function :
function Deplacement(obj, xt, yt, xscale, yscale, s)
{
obj.onEnterFrame = function()
{
this._x += (xt-this._x)/s;
this._y += (yt-this._y)/s;
this._xscale += (xscale-this._xscale)/s;
this._yscale += (yscale-this._yscale)/s;
if (Math.abs(xt-this._x)<.05 && Math.abs(yt-this._y)<.05 && Math.abs(yscale-this._yscale)<.05 && Math.abs(xscale-this._xscale)<.05) {
this._x = xt;
this._y = yt;
this._xscale = xscale;
this._yscale = yscale;
delete this.onEnterFrame;
}
};
}
View Replies !
View Related
Font Compatible
Hello,
This is a really newbie question, but I installed a font and i'm putting it into a dynamic text box in flash.
However, when i view it with a computer which doesn't have that font installed it uses it in times new roman, how can i make it so everyone see's the font i wanted?
Danny
View Replies !
View Related
Could Someone Tell Me How To Make This As2 Compatible?
hi guys,
I've just written some very basic code that plays a movie clip when you over over it...
however the code is cs3 and it wont work and i dont know any cs2 so if someone could tell me how to get it going that'd be great
Code:
function topOver(evt:Event):void
{
berd_spot1.gotoAndPlay(2);
}
berd_spot1.addEventListener(MouseEvent.ROLL_OVER, topOver);
alternatively, if you know a better way to do it that'd be great - i have three parts of a flash pres, that when you however over them play a sound after a set time delay (5 seconds say) - at the moments its set up with three sepearate transparent movie clips with the sound file on the timline after the set delay...
i KNOW there would be much nicer AS way of doing it could anyone advise?
View Replies !
View Related
Are .FLAs Compatible With The GPL?
Since .fla is a binary format which requires Macromedia Flash to be read and manipulated, does this then mean that it is impossible to GPL source files for a flash app unless it's solely made up of AS 2.0 classes? I'm not fully into the inner workings of the GPL and I don't read "law language" very well, so I'm just asking if anyone here has any experience with it.
View Replies !
View Related
FLVPlayer Compatible With C#.net 2.0
hi,
Can somebody pls. provide me the link for FLVPlayer which is compatible with c#.net 2.0.
I need to allow users to upload their video files in any valid file frmat like .mov etc. Then convert those uploaded files at runtime into .flv files and then play those flv files using flvpalyer. I need all this functionality.
So, can somebody pls help me.
Thanks,
View Replies !
View Related
BUG(?): FP10, Is Not Compatible 100% With FP9
I just finished a small part of a web site in my HD, and put it online to test it in different screens.
The first thing I noticed was that in a computer with Flash player 10, some sliders (that I had create) was invisible - this would make the site bugged. In flash player 9 the sliders was appearing correctly after the data was load, in both plugin + debug utility.
I uninstalled Flash Player 10 from that computer and installed Flash Player 9. All worked correctly.
To repeat the error, installed again FP10.. and yeap. The sliders never appeared. Uninstall and revert to FP9, all work properly.
I appose temporary the web site without thing that may identify it:
http://web.xvp.gr/bug/
Try it in a browser with FP10, and in one with FP9. In FP9 the sliders will come up after the menus are loaded from the txt files (in future from php files). In FP10 the sliders (for each menu-box) will never be appear... This means that if I had sold that site before the FP10 come out, then in a few months the site would be dead and I'd had problems. Same if I do it now..
Thus this is an important bug - incompatibility, and should fixed ASAP..... although I have no idea why is it happening.
If you think too that it is important, then tell to any offical techician of Adobe to contact with me to share the .fla codes in order to be found the problem, or tell me what should I do... For now the project is frozen... :/
View Replies !
View Related
Vector3d_class.as Not Compatible With As2.0
I'm trying to use particle3d_class.as and vector3d_class.as by Robert Penner for a 3d game.
The problem I have is that when I test/publish the movie for Actionscript 1.0, all works fine. However, when I try Actionscript 2.0 (which I need for other features), I get the following error:
**Error** Scene=Scene 1, layer=Labels, frame=1:Line 23: There is no property with the name 'sinD'.
**Error** Scene=Scene 1, layer=Labels, frame=1:Line 27: There is no property with the name 'cosD'.
**Error** Scene=Scene 1, layer=Labels, frame=1:Line 31: There is no property with the name 'acosD'.
**Error** Scene=Scene 1, layer=Labels, frame=1:Line 23: There is no property with the name 'cosD'.
Total ActionScript Errors: 4 Reported Errors: 4
To get around this, I change the following code at vector3d_class.as:
Math.sinD = function (angle) {
return Math.sin (angle * (Math.PI / 180));
};
Math.cosD = function (angle) {
return Math.cos (angle * (Math.PI / 180));
};
Math.acosD = function (ratio) {
return Math.acos (ratio) * (180 / Math.PI);
};
to this:
Math.prototype.sinD = function (angle) {
return Math.sin (angle * (Math.PI / 180));
};
Math.prototype.cosD = function (angle) {
return Math.cos (angle * (Math.PI / 180));
};
Math.prototype.acosD = function (ratio) {
return Math.acos (ratio) * (180 / Math.PI);
};
it solved the problem partially however, got another error:
**Error** Scene=Scene 1, layer=Labels, frame=1:Line 23: There is no property with the name 'cosD'.
Total ActionScript Errors: 1 Reported Errors: 1
Is there a new version of vector3d_class.as and particle3d_class.as that's compatible with as2.0?
or if not, can anyone help with this?
View Replies !
View Related
Flash 4-compatible Preloadeer
I need to put a preloader on a project I'm finishing up in MX, but it needs to work with the 4 plugin. Here's what I've got:
On the main timeline Frame 1:
loaded = getProperty (_root, _framesloaded);
total = getProperty (_root, _totalframes);
percentage = Math.round(loaded/total) *100;
tellTarget (loadedBar){
gotoAndPlay (percentage);
}
Theere is obviously a 100 frame movie clip on the stage called "loadedBar".
On Frame 2 of the main timeline:
if (precentage >= 90) {
gotoAndPlay (4);
} else {
gotoAndPlay (1);
}
The error message I get back is because of the Math.round part...does MX support "int" anymore?
View Replies !
View Related
IE Compatible GetURL In New Browser?
This script on a button to make a new popup window works great in Firefox, but simply won't work in IE. Is there anything I can change in the following script so it will work in IE as well?
I am beginning to think maybe IE's default option is to disable all popups; if that's truly the case, is there other ways around it? I am working on loading a full sized images from a gallery by displaying it in a new window. I didn't want to load it into the flash movie because that would make the movie size huge.
Thanks in advance!
on (release) {
getURL ("javascript:NewWindow=window.open('http://www.mokoloco.com/samples/2d-milk.htm','. m o k o l o c o .','width=420,height=450,left=0,top=0,toolbar=No,l ocation=No,scrollbars=Yes,status=Yes,resizable=Yes ,fullscreen=No'); NewWindow.focus(); screen_height = window.screen.availHeight; screen_width = window.screen.availWidth; left_point = parseInt(screen_width/2)-(420/2); top_point = parseInt(screen_height/2)-(650/2); setTimeout('NewWindow.moveTo(left_point,top_point) ',100); void(0);");
}
View Replies !
View Related
Mx 2004 & 2002 Not Compatible
Why are Flash mx 2004 & 2002 not compatible?
What do we have to do to share a file asnd work together?
I am trying to work on a project with my sister, and we just cannot
get flash to read the file.
I have mx 2002 on a mac AND a PC and the files open just fine
on both. Why can't she open them?
Do we need a converter?
Help
View Replies !
View Related
Flash 8/mx 2004 Compatible ?
Are the 2 latest releases of flash compatible with a computer tablet?
An example of a computer tablet can be found here : http://www.photographyblog.com/revie...om_intuos3.php
Im thinking of buying this, but i need to know if it will even work with flash.
View Replies !
View Related
UIScrollBar Compatible With Flash 6?
I've been trying to get the UIScrollBar component to work with a dynamic text field in my movie. I was exporting the movie in Flash 6 format, but the scrollbar always appeared blank. Well, I just exported it in Flash 7 format, and now it is working.
Is the UIScrollBar only compatible with Flash 7 and up, or is there a way I can make it work in Flash 6? Just wondering because my entire site is based on a system of modules with Flash 6...
View Replies !
View Related
Compatible Cameras For Flash 8?
Hello,
Does anyone know if Adobe has an updated Camera compatibility matrix that lists the cameras compatible for Flash 8?
Also, would it be possible to use a digital camera as a webcam? I am looking for a solution where I can get at least 2+ megapixel output. I am taking a bitmap snapshot from the webcam.
Thanks,
-Dan
View Replies !
View Related
Is My Webcam Compatible With Flash?
Hi!
I´ve got some troubles finding a webcam compatible with flash.
(I need a powerful camera)
I just bought a webcam PYRO 1394 from ADSTECH.
It´s a nice cam, but doesn´t work on flash mx.
and I need to apply the camera with flash indeed!
Now I´m gonna try another one:
AIPTEC POCKET DV3100
does anybody know if this camera works on flash?
I´ve read a macromedia matrix about cameras,
but it didn´t help so much...
http://www.macromedia.com/support/fl...trix.htm<br />
Thanx!
Zerooito
View Replies !
View Related
Is Flash Compatible With HTML 3.2?
I used a text field with the "htmlText" option and tried the use the tag
<sup>...</sup>
which is HTML 3.2 and did not work. when I used
<b>...</b>
which is HTML 2.0 Flash showed the correct properties (namely bold text)
Can anybody tell me if there is an option to use superscript text in textfields with "htmlText" in actionscript code?
Does Flash only work with HTML 2.0 and not with HTML 3.2 or HTML 4.0?
thx
bernd
View Replies !
View Related
Most Compatible Publish Settings
What are the most compatible publish settings, for example, I made mine for Flash 6 and AS 1.0, no r65 optimize, compress is on, and no html stuff or plugin detection.
I was wondering what everyone else uses to keep safely copatible...thanks.
JH
View Replies !
View Related
Compatible Webcams For Flash
I am trying to get a Hercules dualpix webcam to run with the Open University's FlashMeeting.
System is XP, same problem with Firefox or IE as Browser. Flash detects the webcam, but image is very poor quality and jumps around, then system crashes - complete power out shutdown every few minutes.
This looks like a conflict between the webcam software and Flash software.
Has anyone had similar problems with this webcam, or found a way of getting it to work?
I am a university tutor (technology) wanting to recommend webcams to my students.
What webcams work well, out of the box, with Flash 9?
Thanks
View Replies !
View Related
Making Actionscript2 Compatible
on (press, dragOver){
startDrag(_root.1mc);
}
on (release, rollOut, dragOut){
stopDrag();
}
on (press, release, dragOver, dragOut){
_root.x +=2;
_root.1mc.swapDepths(_root.x);
}
this doesnt seem to work in AS2. How would i fix it?
View Replies !
View Related
UIScrollBar Compatible With Flash 6?
I've been trying to get the UIScrollBar component to work with a dynamic text field in my movie. I was exporting the movie in Flash 6 format, but the scrollbar always appeared blank. Well, I just exported it in Flash 7 format, and now it is working. However, I don't want to export any higher than Flash 6.
Is the UIScrollBar only compatible with Flash 7 and up, or is there a way I can make it work in Flash 6? Just wondering because my entire site is based on a system of modules with Flash 6...
View Replies !
View Related
Flash 9 Not Backwards-compatible?
I mistitled the thread because I thought the problem was with the version of flash player, but when I ran my swf locally everything worked fine, so I now know that it's a problem created by making the swf remote. Perhaps an admin could change it to "bitmapdata.draw() doesn't work remotely" if they read this.
www.k4rl.com/flickr/
My swf works fine when I run it locally, but not when I run it from my server!?
When images from flickr are loaded into my swf on k4rl.com, flash doesn't want to bitmapdata.draw(mc) the mc with the image (for the reflection), but this problem is non-existent locally.
Everything is identical, same SWF, same browser... can anyone explain why they behave differently locally and remotely.
View Replies !
View Related
Making Actionscript2 Compatible
on (press, dragOver){
startDrag(_root.1mc);
}
on (release, rollOut, dragOut){
stopDrag();
}
on (press, release, dragOver, dragOut){
_root.x +=2;
_root.1mc.swapDepths(_root.x);
}
this doesnt seem to work in AS2. How would i fix it?
View Replies !
View Related
|