Flasy Player Release Notes?
I know having the latest player is always better, but what has changed in the latest Player version 9,0,28,0 over older versions?If there are fixes to the player that address issues raised by the Flash Community or whatever wouldn't it be nice to know exactly what they are? Is there a place on adobe.com that has this information and I am just not seeing it? I don't see it here either http://www.macromedia.com/software/flash/about/It would be nice to know as a developer what may have changed, been added to or corrected, and would also help to convince clients to update their players too if required.For example both graphics card companies ATI and nVidia when they release new drivers post detailed release notes outlining the changes and benefits of the latest driver versions.Note: besides the only statement by Adobe which is "to take advantage of security updates".Edited: 01/07/2007 at 03:22:08 PM by ShadowKnyte
Adobe > Flash General Discussion
Posted on: 01/07/2007 03:20:35 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Another Flash 6 Player Release?
What is the deal with Macromedia releasing another Flash 6 player? It seems like MM released this player along with MX way too early and without enough testing.(4th Flash player release) I have lost alot of respect for them since the release of these new versions. On top of that you have to restart your computer again when you install this latest version of the Flash 6 Player(I know about the Active X controller, but with all other releases of the Flash player not one of them required you to reboot your machine)Also, it looks like Flash MX's so called video support it not one hundred percent accurate. I have tried importing several mpgs from my sony digital camera and none of them will import into MX. So I will have to say once again that Macromedia dropped the ball on this latest release of Flash.
Sniffing The Last Player Release
Hi all,
I was banging my head against the wall last week when my site wouldn't pull data from my ASP script.
Everything was right, no scripting errors at all... then after several hours of dubugging, I found that the problem was the version of my Flash Player. I had the Flash Player 6, but not the latest version.
After installing version 6.79 (I believe that's the latest) everything works fine.
Now I'm left with a new problem...
How can I tell if a user has the latest version?
I need a sniffer to direct those with anything but the latest plug-in to download the player.
And here's the other rub, I need it to be incorporated into the swf, so I cannot use the deployment kit. (Long Story)
I've been experimenting with the getVersion() action, but haven't had much luck.
Any ideas?
Thanks
On (release) Flash Player 7
funny thing....
When i create a simple button and use the normal:
on (release) {
_root.gotoandplay(2);
}
and publish in Flash Player 7, it will not exceute. As soon as i cange the export setting back to Player 6, it works.
Has thise code been changed for player 7 AS 2.0?
Help!!!
Thanks in advance.
Mike
Flash Player Release Dates
Where can I find information on release dates for old versions of Flash Player?
I need to find out when version 6.0r65 was released to the public.
Thanks!
Flash Player Release Dates
Does any one know when each Flash Player version, from Version 7 onwards, was released?
I tried to look on the Adobe site but could not find the relevant information.
Thanks
Alfred
Where To Find Flash Player Release History?
I'm looking for a resource with information on previous versions of Flash Player, such as 9.0.47.0, 9.0.64.0, 9.0.115.0, 9.0.124.0, issues and problems reported. I'm also looking for a resource for downloading installers for these previous versions. Any help would be appreciated.
Macromedia Flash Player 6 Public Beta Final Release Candidate
This release is the final Release Candidate build for the upcoming update to Macromedia Flash Player 6. This release is for Windows, Macintosh, and Linux. You could download it from here:
http://www.macromedia.com/software/f.../special/beta/
If you ever faced any bugs, report them:
http://www.macromedia.com/software/f...ta/#bug_report
This is the most stable version till now, so wish you all update to this version.
h88
"on(release){" Function To Exit Flash Player?
I have made a flash prjector file and want to make a button to exit out of the prjector,do i just simply write exit or quit or something?
I dont know what comand I have to give the button, can anyone help me?
on(release){
...
}
Thanx
HtmlText <img> Notes
This is a follow up on some things I've learned since this post:
http://www.actionscript.org/forums/s...287#post432287
If you load only an image into an htmlText field of equal dimensions, your image will be scaled down. The culprit here is the hspace and vspace attributes that Flash uses as padding for text to flow around your image. By default both of these are set to 8 pixels.
So setting these to 0 will make your image show up perfectly unscaled right?...Wrong, unfortunately Macromedia likes to keep a tiny bit of space on the bottom portion of all of its textboxes (this is probably some sort of required carriage return.) So...using the <img> tag will result in your image being scaled down in the vertical dimension, ever so little to keep Macromedia's space.
The amount of space that must exist turns out to be exactly 3 pixels. This means that if you add 3 pixels to your "height" when creating the text field your image will display with proper dimensions. Unfortunately, the "carriage return" will remain and can be seen by setting the "border" attribute of the text field to true. I've tried various things to try to get rid of it but it won't budge (ie: using negative vspace, which just moves your image position upward).
Here is final code for an unscaled image of dimensions 109x25 in an html enabled text field:
PHP Code:
this.createTextField("bg",0,0,0,109,28);this.bg.html=true;this.bg.wordWrap=true;this.bg.multiline=true;this.bg.htmlText="<p><img src='button.jpg' hspace='0' vspace='0'></p>";
I have also made and attached an example file that has 3 main components:
1. An unscaled html image loaded into a text field with the borders and background color set so you can see the "carriage return"
2. A text box of equal dimensions as the image right next to the text field with the image so you can see that the "carriage return" actually exists
3. A draggable image loaded with "loadMovie" that you can drag onto #2 to see that the dimensions do match up.
Calendar Notes
I have a calendar on a page, at I want to be able to put a note inside the day square or a bullet for a period of 5 months, is this possible? thank you
As Crib Notes ?
I want to know if anyone keeps notes on constant reused common code. Like crib notes!
I have a few so far
Code:
//<------ How to convert aan old methofd of code <----
on (rollOver) {
tellTarget ("/s3b") {
gotoAndPlay("s1");
}
}
on (rollOut) {
tellTarget ("/s3b") {
gotoAndPlay("s2");
}
}
//_-____-_____-___-__-__-_-_-_-_-_--_-__
//Complicated way
num_buttons = 10;
for (i=1; i<=num_buttons; i++) {
b = this["button"+i];
b.onRollOver = function() {
someClip.gotoAndPlay("label"+i+"_over");
};
b.onRollOut = function() {
someClip.gotoAndPlay("label"+i+"_out");
};
}
//Easy way..
buttonname.onRollOver = function(){
s3b.gotoAndPlay("s1");
}
buttonname.onRollOver = function(){
s3b.gotoAndPlay("s2");
}
//<------------------
//<------------------
//<--------- Move a Mouse text scrool ???????
var mouseHook:Object = new Object();
mouseHook.onMouseWheel = function(turns) {
trace(turns);
}
Mouse.addListener(mouseHook);
//<--------------
//<------------- Make something move smooth<------------
#include "lmc_tween.as"
//place object on screen
amoon_mc._x = 150;
amoon_mc._y = 450;
// move object
amoon_mc.tween("_y", 100, 4.4, mx.transitions.easing.Strong.easeOut);
amoon_mc._alpha("_alpha", 70, 8, mx.transitions.easing.Strong.easeIn);
amoon_mc.tween("_x", 720, 4.4, mx.transitions.easing.Strong.easeOut);
<---------------------
//basic crap you HAve to knwpoo !
_x
_y
_xscale
_yscale
But I could use some more like basic 3d and zoom size and rotation, ( i will add those as soon as I can figure out the tutorials here )
But it does not hurt to ask or help out
Post-it Notes
Can someone please point me in the direction of a tutorial or atleast explain (indepthly) how something like this is done:
http://www.freeflashtoys.com/pos****.html
Thanks!
Calendar Notes
I have a calendar on a page, at I want to be able to put a note inside the day square or a bullet for a period of 5 months, is this possible? thank you
I Will Like To Get Notes On Action Script
please i will like to get notes on action script. i am a web-designer studying in the university and i was asked to design a web-site using flash as my final year project. please i need someones help with the steps so that i can pass and graduate. plz anyone willing to help should please send notes to my e-mail box snifferx@gamezonemail.com
i will be very grateful.
thanks.
Sniffer
MIDI Notes In Flash
Is it possible to play MIDI sounds in Flash (4)
I want to create piano keys which play the note when clicked on, I dont really want to have to record a WAV for each note.
Cheers
Dynamic Notes Function
Again, i remember seeing a tute somewhere on changing a text field depending on the value of something else, but i can't find it, so here I am, again.
What i'm doing, in this part of the application, is there are certain options that can be bought for a vehicle, that don't have any "numerical" effect on the rest of the car, in other words, the cost of the car goes up, but none of the stats change, so i've had a "notes" text field, however,what happens is that, because i need this multiple times i can't just clear ALL of the notes value for one part, so i have something that reads like "gridlinkadded""gridlink removed""gridlink added" and so on, but what i would LIKE is to be able to keep any old information that might be in notes (although i don't have anything yet that adds to it, i know i will), and just replaces, or even better, removes the mention of gridlink if they decide to remove it.
possible?
'sticky Notes' Or Tags
i came across a flash movie that had a place where you could write a note on a particular page, and access it again through a menu, like a quick drop down menu that linked back to the page with the note. have you seen that before? does anyone know how to do it? i kind of tried doing it with a variable and i couldnt really get it to work.
another i saw let the text i typed stay on that page, and when i went to the next page it disappeared, but going back to the first page it was still there. pretty magic i thought until i saw the other one that was accessed through a menu. i hope someone can help me because i think its a really cool thing to include in my movie. thank you
Midi Notes In Flash?
Is it possible to read midi notes in flash from a midi-keyboard?
If so, how?
// Hexster
Phone Registrer And Notes
I was working on the calendar fla and got the idea of making, in the same fla, a field for the user to make notes and save it the same way the calendar does.
And also make a field to save names and phone number. The user can search for a name in a field beside it.
Is it possible to make those features the same way the calendar?
Phone Registrer And Notes
I was working on the calendar fla and got the idea of making, in the same fla, a field for the user to make notes and save it the same way the calendar does.
And also make a field to save names and phone number. The user can search for a name in a field beside it.
Is it possible to make those features the same way the calendar?
Lotus Notes And Flash?
Is this possible? To have flash as a front end talking to a notes database?I was thinking XML maybe?
How To Make A Txt File With Notes
Hi everybody,
I have a text file that I am loading into a Flash movie.
I would like to have in the txt file some text, like notes to myself, as reference for future edits.
Is there anyway to make Flash ignore this note included in the txt file ?
Thanks a lot!
[misc] ActionScript Notes
Hi guys.
Does anyone know if Flash removes all of the /* notes */ from the ActionScript when it compiles the SWF file?
Cheers.
Si ++
Flsh And Lotus Notes Database
Hi,
currently i am designing a course where I will use Flash and Lotus Notes as the database.
I have 20 activities - quizes such as multiple choice ( checkbox, radio button) drag and drop and selections.
I need to pass the scores of each activity obtained by different learners to the Lotus Database and i need to display the total scores at the end of the course for each learners.
I need help , can i store the scores for each activities in flash and then everytime they click submit button, it will send the scores to the lotus database and store there unitl they finish the all activities
after they finished all the activities, the total score need to send back from Lotus Database to the learners and dispaly in HTML.
I hope i am able to get some opinions
thanks
hoay fern
Lotus Notes And Flash Swfs
does anyone know if Flash works with Lotus Notes.We are doing this one project with a company that still uses Lotus notes to do their site.If anyone has any info on this please kindly let me know asap.
thanks,
chris
Quickie -Notes In The Time Line
I know you can add "notes" in the action panels by adding //, but someone showed me a way to do this in the main time line and then the notes show up as a little green flag in the frame. Any ideas?
thanks
Is It Possible To Generate Musical Notes In Flash?
Hi,
I am developing a game for a customer based on a simple piano keyboard, where the game will play a note and the player should point the right note by clicking the keyboard.
The doubt is: can I generate the musical note within Flash or I need to import wave sounds and just play it?
In most of programming languages (Delphi, VB, etc) you can generate the sound by giving the frequency and duration of the note, but I am not sure if this can be done in Flash.
Thanks!!
Mailto: Problem In Lotus Notes
I have written the following code on the onPress event of a button.
Code:
.
.
.
var recipient:String;
var subject:String;
recipient = "abc@xyz.com";
subject = "Help mail";
getURL ("mailto:" +recipient+ "&subject=" + subject)
.
.
-------
The code is working fine for MS Outlook, but not for Lotus notes.
To: abc@xyz.com&subject=Help mail
is getting generated instead of
To: abc@xyz.com
Subject: Help mail
Works fine for Outlook. Can anyone help?
Yellow Popup Notes Over Link
I want to create a yellow note(the notes that pop up when you hover over a link)in flash. Does anyone know how to do this
such as this/
thanks
Mailto: Problem In Lotus Notes
I have written the following code on the onPress event of a button.
Code:
.
.
.
var recipient:String;
var subject:String;
recipient = "abc@xyz.com";
subject = "Help mail";
getURL ("mailto:" +recipient+ "&subject=" + subject)
.
.
-------
The code is working fine for MS Outlook, but not for Lotus notes.
To: abc@xyz.com&subject=Help mail
is getting generated instead of
To: abc@xyz.com
Subject: Help mail
Works fine for Outlook. Can anyone help?
How To Add Notes To External Txt Files To Load
I have the text below in an external txt file that is loaded into my movie. My question is:
Is it possible to place some text in the txt file as a note to myself, that flash would ignore once the txt file is loaded?
Thanks a lot,
ffTitle=<font size="20">Title of the text</font>
&ffText=<font size="13">Body of the text.</font>
Flash And Lotus Notes Domino
Hi there. Sorry if this is a double post. Does anyone know how to make Flash and Domino talk to each other using javascript? And not just by extracting information from the url address, but really passing information between the Flash interface and the background Notes documents. There's an example posted here : http://www.dominopower.com/issues/issue200102/flash0201002.html
but I keep getting errors when I try to follow the tutorial. Has anyone done this example before, and if so, can you kindly send me the .nsf and flash source files? or point me to another tutorial on this? GREATLY appreciate it if you could do this, thanks!
How To Add Notes To External Txt Files To Load
Hi everybody,
I have the text below in an external txt file that is loaded into my movie. My question is:
Is it possible to place some text in the txt file as a note to myself, that flash would ignore once the txt file is loaded?
Thanks a lot,
ffTitle=<font size="20">Title of the text</font>
&ffText=<font size="13">Body of the text.</font>
Sending Mail Using Lotus Notes Or MS Outlook
Is there any specific way to send mail with flash using mail program like outlook, lotus notes or any other program which has configured mail servers in it.
I know how to use outlook when sending mail from form in flash.
But never have tested it on lotus notes...
Does anyone know if there is any difference, and with other than lotus or outlook.
Thanks!
Flash Communicating With Lotus Notes Client
Does anyone know how to get flash to communicate with Lotus Notes client? I have tried using getURL and FScommand but it doesnt work. I'm probably doing something wrong though.
If anyone has any ideas that would be great.
Thanks
Search Field With A Lotus Notes Database
I can get this to work in HTML, here is the code for that.
<form action="http://server/Lotus/cd_directory.nsf/ViewSearchGeneric?CreateDocument" method="post" name="form1" id="form1" >
<p style="margin-top: "> <font size="2" color="808080" face="Arial, Helvetica, sans-serif">NatureWorks Directory Search</font><br />
<font face="Arial, Helvetica, sans-serif">
<input name="SearchString" size="25" />
<input name="ViewToSearch" value="Last Names" type="hidden" />
Now let say I use "Smith" for the item to be searched. The address field will display the following.
http://server/Lotus/cd_directory.nsf/Last%20Names?SearchView&Query=FIELD+Display_Name=s mith*
This is much different from the above code. How can I get the same results in a flash file? I've been working with the following ActionScript that someone gave me.
in root U place textfield with var=searchstring
on submit button :
on(replace){
getURL("http://server/Lotus/cd_directory.nsf/ViewSearchGeneric?CreateDocument" ","POST")
}
Thanks
Using A Projector To Display Flash W/ Hidden Notes
I am basically making a glorified powerpoint presentation. (Yeah I know, boring.) The only problem is that a projector will display whatever you have on your screen.
PowerPoint has a feature to allows you to have notes up on your computer but the notes will not be projected.
I need objects or instructions to be visible to the user but not to the audience viewing the glorified slide show.
As far as I know, flash has nothing built into it to accomplish this, is there any way to do it externally? Or maybe a way to fake it?
On Release Stop On Release Play. How?
Its like a stop and play button. Like, lets say a button or much more likely, a movieclip, in the shape of a pause button, is clicked, it stops on the frame. Once it is clicked, it looks like a play button, and when it is clicked again, it plays from that same frame, And it then looks like a pause buttons again. How?
Adding "sticky Notes" To An Image In Flash
Hi everyone,
I want to know if anybody here can help me out with creating a "sticky note" type of thing to a flash image similar to IKEA's online catalog here: http://ikea.shoplocal.com/ikea/Defau...kea-070714-B2C
If you go up to the tool bar by "Tools:" there should be an option to "Add Note" if you hover over one of the icons. When you click it, a "sticky note" should appear with the ability to add any kind of text you want, move it around and close it. I want something like that. And also, maybe I wasn't aware of this before, but is there a certain code for clicking on a link to "Print Page" in flash just like in the IKEA online catalog?
Thanks if anyone can kindly help. I've tried my best to describe my problem as best as I could.
|