Create A Flash Digital Book
How hard is it to create a book like this in flash where you click or drag the pages see website? And where would you start?
http://dennis.cerosmedia.com/car-review ... 124012.cde
General Flash
Posted on: Tue Sep 16, 2008 7:44 am
View Complete Forum Thread with Replies
Sponsored Links:
How To Create A Digital Web Book
I have been looking into trying to create a digital web book (the ones where you can flick through a catalogue online). I had an example of one on a website but it keeps asking to download things so I haven’t put up a link. But hopefully people will know what I am talking about.
However I have no idea how it is done. I am guessing its via flash but could be totally wrong.
Does anyone know how these are done with a link to maybe a tutorial or something that would help me understand them more.
Cheers
View Replies !
View Related
Is It Possible To Create A Guest Book In Flash
Hi All,
Is it possible to create a guest book in flash, so that when the user puts in his details it comes up on another page and stays there so that when the next person submits his detail it goes to the smae pge then when users then go to the guest book they can then see who visited the book and what details they left.
I've looked for it in the tutorial but did not find anything.
Please help
Thanks
Mike
View Replies !
View Related
Create Digital Time (Only Show Min And Sec)
Hi,
I would like to create a digital time which only show min and sec. This time is use in a game in order to test the users speed and accuracy. When the user finished the game, the time will stop and then have to check the time user has spent to finish the game. So, if the user manage to finish the game before 10 min, will get 100 points. If is between 10 and 15 min, will get 90 points and so on. I hope someone can help me because it's quite urgent. Thanks!
View Replies !
View Related
Create Digital Time (Only Show Min And Sec)
Hi,
I would like to create a digital time which only show min and sec. This time is use in a game in order to test the users speed and accuracy. When the user finished the game, the time will stop and then have to check the time user has spent to finish the game. So, if the user manage to finish the game before 10 min, will get 100 points. If is between 10 and 15 min, will get 90 points and so on. I hope someone can help me because it's quite urgent. Thanks!
View Replies !
View Related
Need To Create A Menu Like Found On Digital Tv?
Hi
does anyone know or point me to how i can create a menu style like found on digital tv?
i have managed to create the basic operation (the grid, the selector device etc) but am stuck to work out how i can get the selector device to work like the cursor (to highlight the rollovers etc). this will eventually only work for keypad operation!!??
any ideas/thoughts much obliged
cheers
j
View Replies !
View Related
How To Create E-Book
Hi,
Can anyone please help me out by giving me a sample file or tutorial on how to create a book like this.
http://www.playlife.com/collection.html
thanx in advance
Regards
Sunil Mehra
View Replies !
View Related
Flash For Digital Widescreen
Hey, I'm going to be linking my computer up to either a 50" plasma tv, or a digital projector. Either way it's going to be true 16:9 widescreen ratio.
What I was wondering is how do I build an .swf so it fits perfectly into these dimensions? At the moment I've done a widescreen .swf; however since my monitor is a standard 4:3 ratio, it's not clipping the top or bottom off it. Would this be corrected once it goes on the TV, or will I have to make it in 4:3 ratio and then flatten it on the widescreen?
thanks
-rd207
View Replies !
View Related
Flash Digital Clock
I'm new to flash BTW [_flashDumb.iWould = say], I made a clock based on the tutorial by Adrian Wherry
http://www.flashkit.com/tutorials/Ac...-591/more1.php
(Thank you very much Adrian). And I want to make something different.
I just want to show one element of time, say...... seconds. I modified the dynamic text to show just 2 digits (:00):
// Script to get the time string from the newDate object
newDate = new Date();
mySecond = newDate.getSeconds();
// If the hour display is less than 2 digits, add an extra 0
if (length(mySecond)<2)
{
mySecond = "0" + mySecond;
}
// Space out the HH:MM:SS
displayTime = mySecond+ ":";
......the second frame in the tute has the same except an additional line of gotoFrame(1);
I tried modifying the AS took out the parts where.... hr, and min are called/used/coded..... whathaveyou..... And I'm left with what I think will do what I want. Low an behold, it ain't working.
I know there's more or less to that...... Any ideas?
P.S.: Also I wanted to make individual dynamic texts, say if I wanted to show the hr, and min in different colours or shades, sizes, etc. ......[copy+paste & replace the variable on the dynm. text?]
View Replies !
View Related
Digital Clock In Flash Using AS2.0
Hi folks,
Greetings for the day!! well my client wants a digital clocks to shown all at once. the details are as below:
There should be eight different clocks. Each clock should display time in different time zone. The time zones are for the cities – New York, London, Paris, Johannesburg, Moscow, Singapore, Sydney and Tokyo.
All the clocks should be displaying time simultaneously.
Please also keep in mind of the Day light saving.
i'm able to do this using by getting local time from my system and by changing the values by +hrs or -hrs depending on GMT time but my question is what iff the user changes the system time??? can any one give me a solution. my code looks as below:
onClipEvent (load) {
days = new Array('Sunday','Monday','Tuesday','Wednesday','thu rsday','Friday','Saturday','Sunday');
months = new Array('January','February','march','April','May',' June','July','August','September','October','Novem ber','December');
timedate = new Date();
}
onClipEvent (enterFrame) {
hour = timedate.getHours();
minutes = timedate.getMinutes();
seconds = timedate.getSeconds();
todaydate = timedate.getDate();
day = timedate.getDay();
dayname = days[day];
month = timedate.getMonth();
monthname = months[month];
year = timedate.getFullYear();
if (Length(minutes)==1) {
minutes = "0" + minutes;
}
if (Length(seconds)==1) {
seconds = "0" + seconds;
}
newdelhi = hour + ":" + minutes + ":" + seconds;
johannesberg =
delete timedate;
timedate = new Date();
}
which i've placed on a movie clip
hope a quick response.
thanks all
srini
View Replies !
View Related
Digital Clock In Flash 8
I have been trying to put a digital clock into my Flash 8 websites for I don't know how long. I have read dozens of tutorials, watched videos, and read books but no matter what Action Script I write, it doesn't work. The latest script returned "_level0.inst" when I tested the movie. The variable is named correctly and I followed the steps from a video tutorial where it worked perfectly for them. Do I have some setting that is messing it up? Here is the code:
Attach Code
onClipEvent (enterFrame) {
myTime = new Date ();
Seconds = myTime.getSeconds();
Minutes = myTime.getMinutes ();
Hours = myTime.getHours();
if (Hours>=12) {
ampm = "pm";
} else {
ampm = "am";
}
if (Hours>=13) {
Hours = Hours-12;
}
if (length(Minutes) == 1) {
Minutes = "0"+Minutes;
}
if(length(Seconds) == 1) {
nSeconds = "0"+nSeconds;
}
Clock = Hours+":"+Minutes+":"+Seconds+ " "+ampm;
}
View Replies !
View Related
Digital Magazine In Flash
We are a magazine publisher and are looking to offer our associations more options by giving them digital versions of their printed magazines. We like the flipping page style, and would need to convert magazines between 40 and 120 pages into this format. Plus offering more interactive content if possible.
Since everything is time/cost sensitive we need speedy solutions. We found a tool to use but just before purchase we noticed something we question.
Product is from page-flip.com. The FlippingBook Flash Component.
However they have a more expensive product called FlippingBook HTML Edition.
The HTML edition is no where near as advance as the Component, so why is it more expensive?
Why am I asking this here?
Because they have not responded to any email, provide no phone number, and have no refund policy if we buy the wrong version.
Anyone heard of them or used this product?
Any other product that can do this?
I can handle building sites etc in Flash, but taking an 80 page magazine and making it digital flip book style in 2 days or less would be too much without software to automate it. A tool I can implement into my workflow is ideal.
Any suggestions?
Thanks
Myles
PS: We have Adobe CS3 for Mac
Edited: 10/30/2008 at 01:29:44 PM by MylesX3
View Replies !
View Related
Dolby Digital In Flash CS4?
Hi, does someone know if it's possible to work with dolby digital in Flash CS4.
Can I import audio files with 5.1 information or is Flash able to distribute mono wav-files to the different 5.1 speakers?
Or is there a way to import flv-files with 5.1 information?
I got 6 mono wav-files out of Cinema4D each containing the sound for one speaker of the 5.1 system but don't know
how to get them into flash.
I have checked several Flash forums but couldn't find any clear information or solution about this case, so I would be
very glad if someone here can help me.
Thanks, Jan
Edited: 12/08/2008 at 07:57:03 AM by jp-huss
View Replies !
View Related
Digital Clock In Flash 8
I have been trying to put a digital clock into my Flash 8 websites for I don't know how long. I have read dozens of tutorials, watched videos, and read books but no matter what Action Script I write, it doesn't work. The latest script returned "_level0.inst" when I tested the movie. The variable is named correctly and I followed the steps from a video tutorial where it worked perfectly for them. Do I have some setting that is messing it up? Here is the code:
Attach Code
onClipEvent (enterFrame) {
myTime = new Date ();
Seconds = myTime.getSeconds();
Minutes = myTime.getMinutes ();
Hours = myTime.getHours();
if (Hours>=12) {
ampm = "pm";
} else {
ampm = "am";
}
if (Hours>=13) {
Hours = Hours-12;
}
if (length(Minutes) == 1) {
Minutes = "0"+Minutes;
}
if(length(Seconds) == 1) {
nSeconds = "0"+nSeconds;
}
Clock = Hours+":"+Minutes+":"+Seconds+ " "+ampm;
}
View Replies !
View Related
Flash Digital Canvas
Hi Guys,
Do you know where I could get a flash drawing program/source files (whether it be free or commerical) that is on par with this one. Thanks guys!
http://artpad.art.com/gallery/
View Replies !
View Related
Digital Art Degree Flash Movie, Please Help Me
Hi,
Please help me as this flash movie is going to be a part of my Digital art degree exhibition at the university of plymouth, England.
I have seperated an image into layers and when you move the mouse the picture breaks up.
see the movie at www.freewebs.com/digitalarteffects (it may take a little while to load = 7.1M)
The movie works by finding out what the mouse coordinates and multipling the distance to move the picture.
the problem is when the picture gets to this stage (see below)
Attachment 18000
I want it to act a trigger/button to send the user to a new frame and picture.
the scripts are applied to a movie clip onto the image
ActionScript Code:
onClipEvent (enterFrame) {
if (_root.mainVar == 0) {
homeX = (-_root._xmouse*6)+200;
} else {
homeX = (-_root.mainVar*6)+200;
}
thisX = _x;
diffX = homeX-thisX;
if (_root.mainVar == 0) {
moveX = diffX/30;
} else {
moveX = diffX/5;
}
_x = thisX+moveX;
if (_root.mainVar == 0) {
homey = (-_root._ymouse*6)+200;
} else {
homey = (-_root.mainVar*6)+200;
}
thisy = _y;
diffy = homey-thisy;
if (_root.mainVar == 0) {
movey = diffy/30;
} else {
movey = diffy/5;
}
_y = thisy+movey;
}
Please please help me and thanks for your time
Rich
View Replies !
View Related
FMS & Flash Player For Digital Signage
Hello,
Maybe here I will find the answer.
I would like to use FMS3 together with Flash Player for displaying advertisement content and/or live stream movies (copyrighted by my company) in company's points of sales. Of course I need to buy FMS license.
But is such a usage of Flash Player legal? I mean - should I obtain any license for Flash Player to display some ads in point of sales on public displays? Or is Flash Player 100% free for commercial use?
View Replies !
View Related
Flash 24hr Digital Display
Hi all,
I'm after a script or a fla of a clock (digital type display displaying date and time etc). It's for a college project and I'm running out of time!!! (as usual)
I've had a poke about on the net and I really can't find anything appropriate, I'm sure you guys have some much better suggestions!
any advice or links would be really appreciated.
sci
View Replies !
View Related
Flash 8: Digital Clock Tutorial
I followed the video that was attached to this and for some reason when i went to test the movie a bunch of errors showed up.
I was wondering if anyone would be able to help me out. If I can send the error message and have someone look at it. I followed it exactly how the guy typed it in, and mine didn't work
View Replies !
View Related
Flash 24hr Digital Display
Hi all,
I'm after a script or a fla of a clock (digital type display displaying date and time etc). It's for a college project and I'm running out of time!!! (as usual)
I've had a poke about on the net and I really can't find anything appropriate, I'm sure you guys have some much better suggestions!
any advice or links would be really appreciated.
sci
View Replies !
View Related
Flash 9, Displays Digital Editions Text But Not Graphics
Hey, just downloaded Flash-9, fresh install on a new PC, so I know there aren't any previous version issues going on. I've got 3 different Digital Edition files that will open correctly, but Flash will only display the Text of them and no graphics. I've tried uninstalling and re-installing Flash, as well as re-downloading the DE files to no avail. Any suggestion or tips? Any help at all would be greatly appreciated, thanks!
View Replies !
View Related
Flash Media Encoder - "compatible Analog To Digital Converters"
anyone know which analog to digital converters are compatible with FME?
I'm needing to get analog input up onto FMS. I'm thinking FME is the solution but I need to know what hardware to buy and I'm not getting anywhere quick. Not even Adobe sales could help me. I contacted manufacturers and they are stumped too because sales people generally don't know anything but how to direct you to a website.
Thank you much, loves.
View Replies !
View Related
Flash MX Book?.....
I'm completely new to Flash. I've just ordered MX. I know NOTHING about this program, except it's the program to use for my website, I've benn told. All this week I"ve been checkin' out Flash sites. It's AWESOME!
My problem is that I what to buy a book, to aid me on learning this program to make my site. But I have NO idea which one to purchase. PLEASE, help me.I'm like a five year old kid, when it comes to these stuff. The reviews I've heard has me a bit lost......
Can someone aid me. I don't what to waste my money on a book that can't help a newbie. Produce a web site from start to finish.
Thanks in advance........
View Replies !
View Related
Flash MX Book
Hi
I need some advise or recommendations for a book, about Flash MX, I´m a newby to porgramming, but I´ve figured out most / all of the drawing and animation features. I know the basics (Goto, Stop, Play, TellTarget), I need a book that explains the next step, does anyone has any good tips, the book should be in either English or Dutch.
Thanks in advance
View Replies !
View Related
I Want A Flash/PHP Book
Hey, I really think I'm actually going to read a book for upgrading my flash/actionscript/PHP experience. But could somebody recommend something to me, especially because I'm from the Netherlands.. It won't have to be a Dutch book, but if I could GET it here would be great. I have intermediate skills in flash, and want to start to make a login and register page, in flash, combined with PHP/MySQL.. Could somebody help me with this? Does anyone know a good book, and also a good estore to get that book to the Netherlands??
Thanks
Kai
View Replies !
View Related
Flash Mx Book
Hello,
I am a flash mx user and i will consider my self knowlegable in using php. i however am not good at flash design and actionscripting.
i find it hard in properly and effectivley design my flash content especially with actionscripting.
Can you recommend me a book on flash mx that can best help me with my deffeciency?
Kendall
View Replies !
View Related
The BEST Flash MX Book Out There
I am a begginer in Flash and I have MX. I need to know what the BEST book on the market is for Flash MX. I'm looking to use flash for web design so I need to know that and also I might touch a little on game making but I don't care to learn that now. So just a book based on websites. So if you could tell me what would be the best book for a complete newb to flash. I use swish right now but want to expand by using flash. I want to learn all aspects of Flash and what capabilities it has in web design and how to carry those out.
Thanks,
View Replies !
View Related
Best Book For Flash MX...
Hi Ive got some good examples off here etc but would like a good example of a book.
Ive got the full Studio MX - would anybody like to suggest a good title. I have basic knowledge .. (I think!)
and have started a little project.
www.leconect.com
But would like to transform it bit by bit...
Thanks in advance.
LEE
View Replies !
View Related
Book In Flash
Hey everyone,
I'm new in creating with flash, but constantly learning ...
Now is my question :
Does anyone knwo how to (or give tips on) make a book with turning pages in flash ??
this link is to show what i mean :
http://www.zelda.com/gcn/index.jsp
press the CAST button and you'll see the book.
Tnx a million to anyone who tries to help !!
View Replies !
View Related
What Is The Best Flash Book/course?
I have ( read ) alot of flash 5, mx books and so far, they all seem so..I dont know..like when ure done woth the book and the tuts, U stil dont know jack...like these sams teaches, i'm now looking onto the macromedia press: training from the source books..does anyone know a really good book..that not only babbles on about what flash can do..but actually shows you how to build a website?
View Replies !
View Related
What Is The Best Flash Book To Buy?
I got payed to day, I waste money quick so I'm left with $20 bucks.
What is the best flash book to help out a beginners that has enough
knowledge to make a flash movie but not a good on. My price range
is between $20 & $30 bucks.
Please help me out,
DREW...
View Replies !
View Related
Best Flash MX Book?
Hi all,
Can anyone recommend the best Flash MX book out there? I have a temp job coming up next week that should last five weeks. I have been using Flash 5, and have to learn to use Flash MX. Is the learning curve high?
Thanks
View Replies !
View Related
Flash Book?
Hello folks…
What is a good Flash Book? I am new to Flash and I would like one that is pretty in-depth and one that has tutorials on how to achieve popular effects like 2advanced, and all the other fancy popular sites out there.
I recently purchased Studio 2004 and am now trying to learn Flash. I’m tired of using SwishMax.
View Replies !
View Related
Flash Book?
Hi all,
I found this book at Amazon called EZ Flash MX . The entire book is basically a bunch of really cool short projects. I mean, no dry reading just a bunch of cool experimental ideas. It is the best book I have found on Flash. The book covered some ActionScript and now I want more. So I am looking for a similar book on ActionScript.
Does anyone know of a project based book on ActionScript? I don't want to read a lot of theory or discussion. I'm looking for a book that has a bunch of cool short projects. I don't know programming but I was able to learn a lot from the EZ Flash MX book. I do not really want to learn "programming." Instead I want a book that has short interesting ActionScript projects that I can experiment with.
I do not know if there is such a book but suggestions are appreciated.
FlashGirl
View Replies !
View Related
Flash Book
Hi all,
I found this book at Amazon called EZ Flash MX. The entire book is basically a bunch of really cool short projects. I mean, no dry reading just a bunch of cool experimental ideas. It is the best book I have found on Flash. The book covered some ActionScript and now I want more. So I am looking for a similar book on ActionScript.
Does anyone know of a project based book on ActionScript? Preferably written for artists or designers.
I don't want to read a lot of theory or discussion and I am not looking for an ActionScript dictionary. I'm looking for a book that has a bunch of cool short projects. I don't know programming but I was able to learn a lot from the EZ Flash MX book. I do not really want to learn "programming." Instead I want a book that has short interesting ActionScript projects that I can experiment with.
I do not know if there is such a book but suggestions are appreciated.
FlashGirl
View Replies !
View Related
Flash Book
Does any one have an idea of what flash book I should get. I have flash 5 foundation now and i know every thing in that, what would be a good book to get next? Doesnt have to be flash 5 book.
View Replies !
View Related
PHP For Flash - The Book
Can anyone tell me if the book , 'Foundation PHP for Flash' is useful for someone using MX professional 2004. I believe the book was written in the days of Flash 5. Is there any other great book on php for flash out there?
View Replies !
View Related
Need A Flash MX 04 Book
Hello,
This seems like a nice forum to ask, please dont flame
I am looking for a good book for Flash MX 2004 that shows how to make flash animations (cartoons more specific). I know the extreme basics, such as where tools are etc. The book should be geared towards newbies
I found this one but not sure if its good or not, it teaches you to make the cartoon on the site i think. http://www.friendsofed.com/books/1590592077/
Price hopefully under $20.
Thanks alot,
Stevo
View Replies !
View Related
|