ارشيف January, 2010

30+ High Quality Adobe Illustrator Brush Sets

Chalk Illustrator Brushes

The set includes 13 brushes.

Illustrator Grunge Brushes

Includes 13 brushes.

Victorian Vector Brush Pack

This set includes 11 brushes.

Smoke-Illustrator Brush Pack

Ten brushes are included in this set.

81 Amazing Argyle Illustrator Brushes

Composes of 18 brushes.

30 Illustrator Pattern Brushes for Making Flowers and Circular Designs

The set includes 30 brushes.

Per Forma Royalz Ai

Forty-six brushes are included in this set.

Mycanthus Brush Pack 1

This set is composed of 5 art brushes and 5 scatter brushes.

Free Vectors-230 Marker Illustrator Brushes

The set includes 230 illustrator brushes.

New Exclusive Illustrator Snowflake Scatter Brushes

Fifty brushes are included in this set.

New Exclusive Illustrator Watercolor Brushes

Over 90 brushes are included in this set.

105 More >

Appending Item data to the end of an RSS 2.0 feed

When I was outlining this site, I knew I wanted to put up an RSS feed. I have some I read regularly, so I knew what I wanted to include.

I like the ability to insert html into the item description so that I can control formatting such as color and line breaks. I had alreadyfigured out what namespaces I needed to include by looking at other’s rss, and building the xml by hand was no problem, obviously.

The perceived need

As with most one-off coding jobs, a perceived need preceeds the effort, and I thought it might be nice to have More >

Silverlight With Java Script Tutorial 1

Purpose of this Series

On the Silverlight.Net Forums, I see repeated questions arise, and after a “Web Developer Conference” this morning, I realized that there really still are a lot of developers out there that have not actually tried their hand at Silverlight yet because of the perceived complexity involved.

Couple that with the fact that many of the existing ‘Tutorials’ seem to want to jump right into Visual Studio and AJAX, I thought I’d take a shot at simplifying this all even further.

This first Tutorial

The purpose of this tutorial is to show how simple it is to Silverlight-enhance a More >

Silverlight With Java Script Tutorial 02 – CreateObject and TextBlock Explanation

Where We Left Off

In Silverlight With Java Script Tutorial 01, I chose not to dig into some of the more complex things, but I’m going to do that this time, but I’m only going to dig into the things not discussed in the first tutorial. If you read the first one, you’ll notice I’m using the same exact xaml for purposes of continuity.

Creating the Control

There are two ways of creating the Silverlight control on your page. The method described in the QuickStart is to modify Silverlight.js to include your custom “CreateMyControl” functions, each of which call Silverlight.createObject().

Personally, I More >

Silverlight With Java Script Tutorial 03 – Rectangles, TextBlocks, and Mouse Clicks

Overview

Up to now, there have been two Tutorials, but really only one Canvas. I wanted to ease into the whole HTML/XAML idea and hopefully get more people quickly involved. There’s lots yet to explore, so I thought I’d look a little at the Rectangle object this time, and also take a first look at handling some mouse events. This will get us into Java Script, and if you’re not familiar with it, don’t worry, it’s very minimal, and just a cut-and-paste

Our XAML

I thought I’d throw the XAML for this page right up front, so it can be More >

Silverlight With Java Script Tutorial 04 – x:Name, Visible, and Rectangle Fill

Overview

I hope I’m not presenting too much this time, but as you’ll see it’s hard to perform some of the tasks we’re going to perform without introducing other concepts.

To that end, I’m going to give our Rectangle and TextBlock a name, making it identifiable from Java Script. We’re also going to give our Java Script a little more work to do.

Our XAML

As with the previous Tutorial, I’m going to put the XAML up front:

<Canvas
   xmlns="http://schemas.microsoft.com/client/2007"
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

   <Rectangle x:Name="EnclosingRectangle" Width="300" Height="80" Stroke="Black" StrokeThickness="2" Fill="White" Cursor="Hand" MouseLeftButtonUp="MouseClicked"/>
   <TextBlock x:Name="HelloOnly" FontSize="36" Canvas.Left="10" Canvas.Top="15" Foreground="Blue" Text="Hello" Cursor="Hand" MouseLeftButtonUp="MouseClicked"/>
   <TextBlock x:Name="SilverlightOnly" FontSize="36" Canvas.Left="110" More >

Silverlight With Java Script Tutorial 05 – Opacity and Visibility, Ellipse, MouseEnter/MouseLeave

Overview

In this fifth Tutorial, I’m going to show a couple more of the mouse events we have available and how to use them. I’m also going to demonstrate the Ellipse object and talk a bit about Canvases and Opacity.

Our XAML

Here is the XAML for the canvas above:

<Canvas
   xmlns="http://schemas.microsoft.com/client/2007"
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

   <Ellipse x:Name="ellipse" Canvas.Left="10" Canvas.Top="10" Height="60" Width="200" Fill="LightBlue" Stroke="Black" StrokeThickness="2"/>

   <Canvas x:Name="RectangleCanvas" Canvas.Left="57" Canvas.Top="27" Cursor="Hand" MouseLeftButtonUp="MouseClicked" MouseEnter="RollIntoButton" MouseLeave="RollOutofButton">
      <Rectangle x:Name="EnclosingRectangle" Width="103" Height="25" Stroke="Black" StrokeThickness="2" Fill="White" />
      <TextBlock x:Name="Hello" FontSize="12" Canvas.Left="5" Canvas.Top="5" Foreground="Blue" Text="Hello Silverlight" />
   </Canvas>

   <Ellipse x:Name="ellipse2" Canvas.Left="10" Canvas.Top="10" Height="60" Width="200" Fill="Blue" Opacity="0" Visibility="Collapsed"/>

</Canvas>
Our HTML

Here is the More >

Silverlight With Java Script Tutorial 06 – Basic Non-interactive Animation

Overview

As promised in Tutorial 05, I’m going to discuss animation this time. Animation is a huge part of Silverlight, and would take many pages to ‘cover’ it, so that’s not my intent. As with other topics, I want to give a simple introduction to the subject at first so that you won’t be afraid to try it yourself. Because there are two major types of animation in Silverlight at the time of this writing, I’m going to mention them both here, and then talk about only one of them in the rest of this Tutorial. Tutorial 07 will then More >

Silverlight With Java Script Tutorial 09 – Modifying Radial Gradient Parameters at Run-Time

Overview

As I was playing with the Radial Gradient in Tutorial 08, I saw something I wanted to investigate further, and while I was at it, I figured it would make a good tutorial in it’s own right.

The investigation this time involves moving the Origin of the Radial Gradient with the mouse at run-time.

As always, I’d like to give a reference to the Microsoft Silverlight SDK Online.

Our XAML

Here is the XAML for the canvas above:

<Canvas
   xmlns="http://schemas.microsoft.com/client/2007"
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

    <TextBlock x:Name="Origin" Canvas.Left="0" Canvas.Top="0" Foreground="Blue" Text="GradientOrigin=.5, .5"/>

    <Rectangle x:Name="RadialGradient" Canvas.Left="0" Canvas.Top="40" Width="300" Height="150"  Cursor="Hand" MouseLeftButtonDown="GradientMouseDown" MouseLeftButtonUp="GradientMouseUp" MouseMove="GradientMouseMove">
        <Rectangle.Fill>
              <RadialGradientBrush x:Name="GradientBrush" GradientOrigin=".5, .5"> More >

Silverlight With Java Script Tutorial 10 – Dragging Objects in a Canvas

Overview

Drag and Drop has been covered a bunch in the body of Silverlight articles. I’ve done two myself! From an introductory standpoint, however, I think there’s yet room for more. For that reason, I’m going to break this into two pieces. This first one is a simple ‘drag’ showing how to drag objects around the canvas using the mouse. The next one will combine this ‘drag’ operation with the use of ZIndex to provide a more conventional aspect.

I had this ready to go with code that avoided being able to drag off the canvas, but thought that added complexity More >

Get Adobe Flash playerPlugin by wpburn.com wordpress themes