Categories
Photography Web

Vivitar 285 Mod

I’m really liking this Vivitar 285 flash mod, and trying to figure out if there’s a way I can cobble together parts from the two slightly broken ones I have and make something this cool. (Edit: Also found this Vivitar mod which has pictures and a “how-to”).

Just ordered some new flash remotes since the Cactus V2s we have are getting too finicky for my liking. Cactus released V4s earlier this year, and they’re still extremely affordable. Looking forward to getting those later this week.

I still have a big backlog of photos to go thru for Theresa and Andree’s wedding, and I’m really gonna push to get my picks out this week.

Oh yeah, and pics of the yurt are coming soon as well. Stay tuned.

Categories
Code Web Work

.htaccess forcing www in urls

I’m starting to use this site as a resource for myself, because I use this stuff all the time, but not enough to commit it fully to memory.

That said, something that’s come up a lot recently is forcing www. in front of all urls on a site. Since all of my servers are Apache, with mod_rewrite enabled, this is no problem. Create an .htaccess file and drop this code into it:

RewriteEngine On
# force www in url
RewriteCond %{HTTP_HOST} !^www\.chrisrunnells\.com [NC]
RewriteRule ^(.*)$ http://www.chrisrunnells.com/$1 [R=301,L]
# END force www in url

The other thing I’ve started doing is using 301 redirects when launching a new site. I can’t believe I didn’t use this years ago! Just add the following to the .htaccess file:

redirect 301 /oldpage.htm http://www.chrisrunnells.com/

And voila, the server redirects the user, and the search engines index the new page as the old one.

Categories
Code Web Work

ZeppOS Developer Resource

Rob has a nice designers resource page on his web site. Hopefully the ZeppOS Wiki will gain some momentum and become the main destination for documentation.

I was working on a Flash slideshow for an Aloha Media Group project, and I needed to make sure the slideshow background was transparent. I needed to look up the SWFObject code to make that happen, which is:

so.addParam("wmode", "transparent");

I also made sure the to update the slideshow.xml with bgOpacity="0", which I think would have given me the functionality I needed without adding the wmode parameter. I’ll have to test that out.

Categories
Travel Work

Hafa Adai!

Just got back from Guam on Sunday. I still think it’s funny that we left Guam on Monday morning, and arrived in Honolulu on Sunday afternoon. Hurrah for time travel!

Guam was nice. Very tropical, and if it wasn’t for the hear and humidity, I would have thought I was still in Hawaii. Everything was really lush and green, the ocean and sky were beautiful and blue, and the people were really friendly.

Because of the hot and humid weather, we spent a lot of time in air-conditioned buildings. It reminded me of being in Vegas, where you wouldn’t want to spend much time outside unless you had to. The first morning we were there I tried to take pictures from the lanai on Jim’s room, but as soon as I stepped outside my camera started sweating and the lens fogged up for a few minutes. But I still managed to take a couple of nice pictures, which I’ll post to Flickr soon.

I still have pictures from Tahoe to post as well! The next couple of weeks are going to be busy with school and a couple of project deadlines looming. So… I probably won’t actually post the photos until near the end of the month.

Keep an eye out for a recap of Tahoe and Guam, sometime in the next couple of weeks!

Categories
Play Travel Work

Back from Lake Tahoe

I’m just coming off of almost two weeks up in Lake Tahoe. Nohea and I were up there with Jim timing the Lake Tahoe Marathon and the XTERRA USA Championship races. We had a blast getting to trip around the lake and see everything we missed the first time we were there 4 years ago. I’ll post a more complete recap (with pictures) soon!

Categories
Code Web Work

Flash Slideshows in ZeppOS

So I find myself spending a lot of time trying to debug issues with Javascript and Flash when building sites out in ZeppOS. I’m posting this in the hopes that other people might find this useful!

Basically, I use the Flash Nifties XML Slideshow any time I need to do a quick image slideshow. To embed the swf file, I use the included SWFObject javascript for cross-browser compatible flash integration.

Now, the key to pulling this off successfully is to make sure the paths are all correct. Not only do we need to make sure the path to the XML file is good, but we need to make sure the paths to the images inside the XML file are valid as well. Trying to embed slideshow.swf by itself using the built in WYSIWYG editor doesn’t work, because the SWF can’t find the XML file. So, using the editor override method, I drop in the following code:

<script type="text/javascript">
var so = new SWFObject("/_Library/Media/Slideshow/slideshow.swf?file=_library/Media/slideshow/slideshow.xml", "gallery", "400", "300", "6", "#ffffff");
so.write("flashcontent");
</script>

Alternatively, I could use addVariable technique to tell the slideshow where the XML file is (found here):
so.addVariable("file", "xml/images.xml");

However, since there’s only one variable, it’s easy enough to just add it directly to the uri string.

Now that slideshow.swf knows where it’s XML file is, I can test this by changing the bgcolor attribute in the XML file and seeing if it shows up. Once I’m sure the slideshow is reading from the XML file, I need to make sure the file paths to the images are correct. Since Flash reads the directory structure relative to the page it’s being called from (in this case, the root of the web site, index.asp), the path has to look like this:

<image img="_Library/Media/Slideshow/image1.jpg" />
<image img="_Library/Media/Slideshow/image2.jpg" />
<image img="_Library/Media/Slideshow/image3.jpg" />
<image img="_Library/Media/Slideshow/image4.jpg" />

Since ZeppOS is on a Windows platform, the paths are case-insensitive, but I add in capitalization anyway.

And that’s about it. Next time I’ll show a snippet of Javascript that I sometimes add to trick the browser into updating the XML file each time the page loads.