| View previous topic :: View next topic |
| Author |
Message |
NoDeity
Joined: 13 Dec 2004 Posts: 14
|
Posted: Mon Dec 13, 2004 10:12 pm Post subject: Flash on the cheap |
|
|
At this time, for my use as a hobbyist, I can't justify spending the $$ for Macromedia Flash development tools. So, I've found some ways to do it for cheap.
I have GIF Construction Set Professional, which I registered for about $20 years ago for creating animated GIFs and it can export animations as AVI, MOV, MNG, or SWF (or save them as GIF, of course). If I want to create a flash with audio content, I export it from GCSP as AVI or MOV, import it into RAD video tools where I Bink it or Smack it and mix in the audio file and then export it as AVI, then use V2F (a freeware converter) to convert the AVI movie to SWF.
It works.
However, at this time, there's one thing that I want to do that I don't know how to do. I'd like my little flash movies to fully load before the frames start to play. Is there some way I can do that using Java or something? I'm willing to put the time into learning some scripting if that will get me what I'm after (I taught myself how to do some programming in C with DJGPP years ago so I should be able to learn Java or whatever).
For an example of a flash that doesn't fully load before it starts playing, here's one of mine: http://nodeity.com/mischum.html |
|
| Back to top |
|
 |
|
|
NoDeity
Joined: 13 Dec 2004 Posts: 14
|
Posted: Mon Dec 13, 2004 10:16 pm Post subject: Re: Flash on the cheap |
|
|
Addendum: I just looked on Ebay and saw Macromedia Studio MX 2004 Academic Flash Dreamweaver for $183 U.S.
http://cgi.ebay.ca/ws/eBayISAPI.dll?ViewItem&category=41856&item=7119579883&rd=1
Any idea why that would be so much less expensive than buying it through the Macromedia web site? Do you think it's legitimate? For that price, maybe I can afford the real thing. |
|
| Back to top |
|
 |
Phate 500+ Club

Joined: 21 Nov 2004 Posts: 818 Location: 127.0.0.1
|
Posted: Tue Dec 14, 2004 2:43 am Post subject: Re: Flash on the cheap |
|
|
The only thing that i can think of to your first problem is to preload the whole .swf when the webpage is loaded. I have seen this done in button rollovers, and i think it will work with .swf's
To address your second question... i cant find a legitamate answer... I think that at Best Buy that package is only $199...
And welcome to Devppl! |
|
| Back to top |
|
 |
NoDeity
Joined: 13 Dec 2004 Posts: 14
|
Posted: Tue Dec 14, 2004 5:51 am Post subject: Re: Flash on the cheap |
|
|
Thanks for the welcome.
| Phate wrote: |
| The only thing that i can think of to your first problem is to preload the whole .swf when the webpage is loaded. I have seen this done in button rollovers, and i think it will work with .swf's |
How do I pre-load the SWF when the page is loaded? |
|
| Back to top |
|
 |
webmaster Site Admin

Joined: 17 Aug 2004 Posts: 3640 Location: Sweden
|
|
| Back to top |
|
 |
NoDeity
Joined: 13 Dec 2004 Posts: 14
|
Posted: Tue Dec 14, 2004 3:04 pm Post subject: Re: Flash on the cheap |
|
|
| That's true. I'll have to try that when I'm 30 days or less away from being able to buy the discount version on ebay. |
|
| Back to top |
|
 |
Phate 500+ Club

Joined: 21 Nov 2004 Posts: 818 Location: 127.0.0.1
|
Posted: Wed Dec 15, 2004 1:08 am Post subject: Re: Flash on the cheap |
|
|
Wow... I wasn't even talking about that... I was refering to the HTML code for preloading images. I don't know for sure how to get it to work with .swf's but here is the code that I used to preload images.
| Code: |
| <body onLoad="MM_preloadImages('home2.png','examples2.png','contact2.png')"> |
|
|
| Back to top |
|
 |
NoDeity
Joined: 13 Dec 2004 Posts: 14
|
Posted: Wed Dec 15, 2004 8:25 am Post subject: Re: Flash on the cheap |
|
|
| Thanks, Phate. I'll see what I can do with that. |
|
| Back to top |
|
 |
webmaster Site Admin

Joined: 17 Aug 2004 Posts: 3640 Location: Sweden
|
Posted: Wed Dec 15, 2004 8:29 am Post subject: Re: Flash on the cheap |
|
|
| I didn't know that it was possible to preload images like that, the only way I've heard was to add the image with width="0" and height="0", but this is much better =) |
|
| Back to top |
|
 |
NoDeity
Joined: 13 Dec 2004 Posts: 14
|
Posted: Wed Dec 15, 2004 8:39 am Post subject: Re: Flash on the cheap |
|
|
I'm going to play around and see what that does for longish animated GIF files.  |
|
| Back to top |
|
 |
Phate 500+ Club

Joined: 21 Nov 2004 Posts: 818 Location: 127.0.0.1
|
Posted: Wed Dec 15, 2004 11:36 pm Post subject: Re: Flash on the cheap |
|
|
| webmaster wrote: |
| I didn't know that it was possible to preload images like that, the only way I've heard was to add the image with width="0" and height="0", but this is much better =) |
The only reason that I found that out was by messing around with Dreamweaver. I had always done everything in HTML, and was just messing around with some of the features of Dreamweaver. One of the options was a rollover, and so I picked it. THen, I checked out the source... and thats what came up. |
|
| Back to top |
|
 |
NoDeity
Joined: 13 Dec 2004 Posts: 14
|
Posted: Thu Dec 16, 2004 1:19 am Post subject: Re: Flash on the cheap |
|
|
| The html image preloading technique doesn't seem to work for flash files, unfortunately. Still, it's something good to know for other image files. |
|
| Back to top |
|
 |
Phate 500+ Club

Joined: 21 Nov 2004 Posts: 818 Location: 127.0.0.1
|
Posted: Thu Dec 16, 2004 4:34 am Post subject: Re: Flash on the cheap |
|
|
As I recheck the source code for my website... I have noticed that there is a script in the header for the preloading.
If you would really like... check out my website and pour through the code.
http://zbrooks.com/web |
|
| Back to top |
|
 |
NoDeity
Joined: 13 Dec 2004 Posts: 14
|
Posted: Thu Dec 16, 2004 6:45 am Post subject: Re: Flash on the cheap |
|
|
Okay. I'll see what I can make of it.  |
|
| Back to top |
|
 |
Devest
Joined: 05 Mar 2005 Posts: 1
|
|
| Back to top |
|
 |
|