Forum: Graphics and Multimedia Jan 21st, 2009 |
| Replies: 6 Views: 1,011 No clue. This is one of the many tasks of a technical worker. Communicating with the "not so technical" client. Contact your client and get more info on what a "Style Guide" should include. |
Forum: Graphics and Multimedia Dec 10th, 2008 |
| Replies: 6 Views: 1,171 That's funny, coming from YouTube. Especially since YouTube was built on copyright infringing material. |
Forum: Graphics and Multimedia Dec 3rd, 2008 |
| Replies: 3 Views: 1,559 Fireworks is for making vector graphics to be used in web pages. It has a lot of default styles to use for fast creation of custom dropdowns, buttons, and navigation bars. All of the neat little... |
Forum: Graphics and Multimedia Nov 26th, 2008 |
| Replies: 5 Views: 1,016 I'm sure there is similar open source software to Flash but it will probably not have near the capabilities. You could try to run Flash on Linux through WINE (http://www.winehq.org/). |
Forum: Graphics and Multimedia Jul 31st, 2008 |
| Replies: 6 Views: 1,030 Use a decent database (not Access) and make sure that the server hard drive has enough space to support the pics. |
Forum: Graphics and Multimedia Jul 31st, 2008 |
| Replies: 3 Views: 1,212 Does anyone know how to integrate PHPlist with an already existing form on their website?
No I have never messed with a pre made mailing list, but I can explain how to use a flash movie to insert... |
Forum: Graphics and Multimedia Jul 22nd, 2008 |
| Replies: 3 Views: 892 Learn them one at a time based on your current interest. If you want to edit pictures, start with Photoshop. If you want to create nice vector graphics, start with Illustrator. All of the programs... |
Forum: Graphics and Multimedia Jul 14th, 2008 |
| Replies: 2 Views: 1,083 Here are a few scripts available to get rid of the IE click to activate problem.
http://www.findmotive.com/2006/10/13/ie-click-to-activate-flash-fix/
http://blog.deconcept.com/swfobject/ |
Forum: Graphics and Multimedia Jul 11th, 2008 |
| Replies: 7 Views: 4,077 In dreamweaver, create a new php file. Clear all of the code out of the code view. Now click toggle plain text, copy and paste all of the following into dreamweaver:
<?php
... |
Forum: Graphics and Multimedia Jul 10th, 2008 |
| Replies: 7 Views: 4,077 So are you saying that you already have an upload script but dont know how to implement? |
Forum: Graphics and Multimedia Jul 10th, 2008 |
| Replies: 5 Views: 2,231 It looks like you may not have published the swf prior to putting it on the web. The reason I say this is because the file (http://www.orisfish.com/Flash/new.swf) has no content. Go to the swf that... |
Forum: Graphics and Multimedia Jul 4th, 2008 |
| Replies: 2 Views: 757 I believe this should work. Lets say that you have 2 animations that take 2 frames each(4 frames total):
var randomNumber = Math.floor(Math.random()*4)
if (randomNumber == 0){
gotoAndPlay(1);
}... |
Forum: Graphics and Multimedia Jul 4th, 2008 |
| Replies: 5 Views: 1,713 Images are very tricky for new designers. You have to understand that the html file contains a pointer ( <img src="images/image1.jpg" />) to the image. The src attribute value is the pointer that... |
Forum: Graphics and Multimedia Jun 30th, 2008 |
| Replies: 3 Views: 959 The read eye tool is used to correct red eyes in photography. Here (http://en.wikipedia.org/wiki/Red-eye_effect) is some explanation about the red eye effect. Here... |
Forum: Graphics and Multimedia Jun 18th, 2008 |
| Replies: 11 Views: 4,627 |
Forum: Graphics and Multimedia Jun 16th, 2008 |
| Replies: 7 Views: 1,316 I think you are looking for a preloader.
A preloader is a movieclip which plays until getBytesLoaded=getBytesTotal (the whole flash movie is loaded). After loaded, the movie goes to the main frame... |
Forum: Graphics and Multimedia Jun 2nd, 2008 |
| Replies: 4 Views: 899 Photoshop is the industry leader in photo editing. It's the program that almost every professional photographer uses. It's also great for editing images and exporting to the web.
However, if you... |
Forum: Graphics and Multimedia May 29th, 2008 |
| Replies: 6 Views: 1,264 No problem, please dont forget to mark the post as solved. |
Forum: Graphics and Multimedia May 28th, 2008 |
| Replies: 6 Views: 1,264 my_sound.onSoundComplete = function() {
numtrack++;
if (numtrack == 2) {
numtrack = 1;
} |
Forum: Graphics and Multimedia May 28th, 2008 |
| Replies: 6 Views: 1,264 my_sound.loadSound("music/track1.mp3", false);This tells me that the music is being downloaded and is not actually in the flash movie or library. Look in the folder that you downloaded. It should... |
Forum: Graphics and Multimedia Mar 15th, 2008 |
| Replies: 6 Views: 4,903 I had a similar problem integrating paypal. It was a security feature problem. I changed my allowScriptAccess and allowNetworking param values and it fixed things. Here's what I set the values at:... |
Forum: Graphics and Multimedia Jan 18th, 2008 |
| Replies: 5 Views: 3,185 You'll need to know a little bit about what variables the paypal cart requires. If you're familiar with how it works in html, then you can do something similar in actionscript. Declare all the... |