My 5 COW Posts
Re: Fixed size table with scrollbar by Abraham Chaffin on Oct 19, 2009 at 9:13:05 am in the Adobe Dreamweaver Forum You should use a div inside of your table cell to create the desired effect. Making a table cell have a scroll bar doesn't always work.
Here's the code and an example:
<div style="overflow: auto; height: 100px; width: 200px;">Put your text...
Re: Help for a beginner resizing columns by Abraham Chaffin on Aug 29, 2009 at 9:33:59 am in the Adobe Dreamweaver Forum A table by nature is structured on a grid so when you adjust the width of one column the entire column is adjusted. Easiest way to have smaller columns inside of a cell is to insert another table inside of...
Re: Can I get help with my li backgrounds? by Abraham Chaffin on Aug 27, 2009 at 2:03:09 am in the Adobe Dreamweaver Forum Main problem I see is your class and id names. The majority of programming languages. Which CSS and HTML are don't accept variables that start with a number. You should change your class and id names so they don't start...
Re: close window by Abraham Chaffin on Apr 26, 2009 at 6:00:06 pm in the Adobe Dreamweaver Forum Here's an example using the window.close() method:
<a href='#' onclick="window.close();">close</a>
You can add this as a behavior or the link url through the properties pane in DW or directly into the code through code view. Abraham...
Re: Import SWF into illustrator by Abraham Chaffin on Apr 6, 2009 at 10:18:04 am in the Adobe Illustrator Forum If you have Adobe Flash you can export a fla as an ai file under File > Export then choose .ai as the file type to export.
There's no way to directly import an swf into ai as the file types...
Re: Spry menu acting up in IE 6 and 7 but fine in Safari & Firefox by Abraham Chaffin on Mar 26, 2009 at 3:44:23 am in the Adobe Dreamweaver Forum Please take a look at this FAQ:
http://forums.creativecow.net/faq/adobedreamweaver#70
Abraham...
Re: Spry Menu Bars by Abraham Chaffin on Feb 2, 2009 at 1:05:15 pm in the Adobe Dreamweaver Forum It is possible to use a spry menu bar as a library item. The trick is as you say including the necessary javascript and css files in the proper location. To do this you would follow these steps:
1) Create your...
Re: Dissolving Between Web Pages by Abraham Chaffin on Feb 2, 2009 at 12:55:41 pm in the Adobe Dreamweaver Forum There are revealTrans and blendTrans meta tags but these only really work in IE.
<meta http-equiv="Page-Enter" content="revealTrans(Duration=1.0,Transition=12)">
Here's a good page describing the function:
http://www.inquiry.com/techtips/web_pro/10min/10min0200/10min0200.asp
However, the transitions really only work in IE.
If you want to do a fade in...
Re: reset spry menu by Abraham Chaffin on Jan 28, 2009 at 2:19:25 pm in the Adobe Dreamweaver Forum Yea this is doable. You'll just need to hack the javascript file a bit. Go into the javascript file and look for the block of code that looks like this:
this.addEventListener(listitem, 'mouseout', function(e)
{
if(self.bubbledTextEvent())
{
// ignore bubbled text events
return;
}
var related = (typeof...
Re: drop down menu by Abraham Chaffin on Jan 21, 2009 at 6:05:24 am in the Adobe Dreamweaver Forum Please post the URL or code of the problem so we can look at the CSS etc...
Also you might check out this FAQ:
http://forums.creativecow.net/faq/adobedreamweaver#70
Abraham...
Re: View problems in Internet explorer - dreamweaver fix by Abraham Chaffin on Dec 31, 2008 at 4:58:35 am in the Adobe Dreamweaver Forum Looks like we came up with the same thing =o Abraham...
Re: Spry submenu IE alignment problem by Abraham Chaffin on Dec 12, 2008 at 8:23:32 pm in the Adobe Dreamweaver Forum One of the main issues I see wrong with the CSS file is there is no width value defined for the "ul.MenuBarHorizontal ul". IE has a problem with this - the default value is 8.2em. Put in that value and...
Re: spry rating widget AGAIN! :oS by Abraham Chaffin on Nov 20, 2008 at 1:35:42 pm in the Adobe Dreamweaver Forum You could always do something like this:
Make images for each possible star rating and put them in your images folder - then code the detail field like this:
<img src="images/{StarRating}stars.jpg" />
Abraham...
Re: "Heads Up Display" Animated Javascript Popup by Abraham Chaffin on Nov 19, 2008 at 11:37:37 am in the Adobe Dreamweaver Forum The javascript for the animated reveal could be done in different ways, one way to do it would be animate the scale on the initial display of the window.
The close method would simply be an onclick event that would execute...
Re: spry repeat list ~ STILL by Abraham Chaffin on Nov 6, 2008 at 2:29:32 pm in the Adobe Dreamweaver Forum lol
Well, I'd be jumping on these and taking a look if I wasn't in the middle of redoing a bit of our server architecture. These spry questions of yours aren't exactly things I've done before so sometimes it takes some...
Re: spry menu drop down issue! PLEASE HELP!! by Abraham Chaffin on Nov 6, 2008 at 2:24:04 pm in the Adobe Dreamweaver Forum It looks as though you don't have the javascript at the bottom of your page that executes the spry menu bar functionality. Here's the code that's missing:
<script type="text/javascript">
<!--
var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
//-->
</script>
Abraham...
Re: XML and Spry by Abraham Chaffin on Nov 6, 2008 at 2:16:17 pm in the Adobe Dreamweaver Forum If you want to update an xml file via the web it would be best to use some sort of server side scripting that has built in xml editing capabilities. Cold Fusion is the one that is used most closely...
Re: spry repeat list ~ STILL by Abraham Chaffin on Nov 6, 2008 at 1:06:44 pm in the Adobe Dreamweaver Forum What you need to do is execute a javascript function that does multiple things. Here's an example of what you need:
function filmchange(rowid){
ds1.setCurrentRow(rowid);
var row = ds1.getCurrentRow();
var myval = row["StarRating"];
var spryrating1 = new Spry.Widget.Rating("spryrating1",{ratingValue:myval});
}
I'll try and post a working example...
Re: Background Color not filling table cell from top to bottom on hover by Abraham Chaffin on Jul 18, 2008 at 5:30:05 am in the Adobe Dreamweaver Forum The problem you have is that the background color on the 'a' tag is being set but the 'a' tag is not stretching the width and height of the 'td'.
What you can do is change the class of the 'td'...
Re: Two Quick Problems by Abraham Chaffin on Mar 26, 2008 at 4:42:08 pm in the Adobe Dreamweaver Forum Hey Sam,
The chopped off portion of the text in IE is probably from the height being set in the phone and email cell to 65. You should just remove the height setting there as it's not needed.
I'm not seeing the...
Re: New Window by Abraham Chaffin on Feb 27, 2008 at 12:31:24 pm in the Adobe Dreamweaver Forum You select _blank as your target from the drop down in the properties pane when the link is selected. Abraham...
Re: Effect of soft breaks in Dreamweaver by Abraham Chaffin on Feb 27, 2008 at 12:31:24 pm in the Adobe Dreamweaver Forum It looks like at this point you've removed the divs and have the text directly in the table cell. I think this is the right choice. It looks like that your divs were using absolute positioning which you don't want...
Re: CSS Parse Error during validation by Abraham Chaffin on Apr 24, 2008 at 10:04:55 am in the Web Design Forum Looks like the problem is the style="contact" tag. the style="" tag is suppose to be calling some sort of style tag like setting the font type or background or padding like you would in css. If you're trying to call...
| COW Posts I've Tagged
Re: 3D text Rotating around an existing object by Adriano Ninguem on Dec 29, 2008 at 7:35:33 am in the Adobe After Effects Forum Well I...
Way to go Aharon Rabinowitz by Grant Swanson on Mar 18, 2008 at 10:11:43 am in the News & Press Releases Forum Not sure this would have made it to front page news, but Aharon Rabinowitz's 'Internet Killed the Video Star' just received an excellent review from "Tutorial Reviews." Here's a link:
http://tutorialreviews.org/ikvs.html...
Apple may hate me after this, but... by David Roth Weiss on Feb 27, 2008 at 12:29:42 pm in the Apple Final Cut Pro Forum Applecare really is worth its weight in gold. Here's why...
I didn't know it, but buying an Applecare policy on your MAC actually entitles owners to on-site repairs.
In my case, my 2.5 year old G5 suddenly began suffering intermittent crashes...
Re: Tori Amos's green screen footage??? by A.Zander on Feb 27, 2008 at 12:31:24 pm in the Adobe After Effects Forum [rook] "welcome into the "Real World" -;)
sorry but there is no "Perfect Key" we all have to draw masks with the hand.
But for sure -they look better than some flirring keys.
The trick is always the...
Re: Exporting to Flash with Alpha Channel by Dean Steinmann on Feb 27, 2008 at 12:31:24 pm in the Apple Final Cut Pro Forum We do this kind of thing often. This is how we get the result:
1. key out green
2. export from fcp in animation codec, millions of colors plus. (to test the resulting file, import it back to fcp and drop it...
Re: Subtitles/Closed Captioning... by Michael D. Brown on Feb 27, 2008 at 12:31:24 pm in the Adobe Encore DVD Forum Jeffrey,
Captioning is pretty tedious, and requires some skill, so we use an outside company to do it. The company produces .scc files to which we link up in the DVD.
I think the ADA only requires material be accessible by the...
COMMON AFTER EFFECTS QUESTIONS -- PLEASE LOOK HERE FIRST by Joel Hooton on Feb 27, 2008 at 12:31:24 pm in the Adobe After Effects Forum System/Software Version Issues
How do you open an AE 7.0 file in AE 6.5?...
Your Own Business, Part 3 uploaded by walter biscardi on Feb 27, 2008 at 12:31:24 pm in the Business & Marketing Forum Hi all,
Part 3 of my 4 part trilogy on "Your Own Business" has been uploaded to my blog. In this installment I offer my thoughts on "Running and Building Your Business." Enjoy!
http://blogs.creativecow.net/node/300 Walter...
Re: Editing an existing site by jonmichael on Feb 27, 2008 at 12:31:24 pm in the Adobe Dreamweaver Forum It does not matter whether or not you host the site. As long as you have the FTP connection information, you should be able to access it, download the files, make changes to them, and post them again.
There are plenty...
A compelling reason to get out of the business by Ross Hansberger on Feb 27, 2008 at 12:31:24 pm in the Business & Marketing Forum I recently stumbled across this post on craig's list (atlanta).
I'm still shaking my head.
"I am looking for 2, very professional (important), highly qualified videographers to film for 8 hours next Friday and Saturday, Aug 31st-Sept 1st. Qualified applicants...
COW Tutorials: Imagineer Mocha Perspective Corner Pin Effect by COW Articles on Feb 27, 2008 at 12:31:24 pm in the COWmunications feedback Forum Perspective Corner Pin Effect In this video tutorial, Creative Cow leader Aharon Rabinowitz demonstrates Perspective Corner Pin Effect using Imagineer's Mocha.
Click on the link above to find Aharon's tutorial....
Clients Can Be Dangerous by tvproducersm on Feb 27, 2008 at 12:31:24 pm in the Business & Marketing Forum On Friday August 18th I learned a valuable lesson: Clients, Can Be Dangerous Too.
I have no idea of the statistics. Have no idea how often it happens. But I became a staticis all too fast and...
|