Novus Portfolio Viewer (Image Viewers)

Novus Portfolio Viewer is a minimalist image portfolio viewer with a cool projects view and a more detail view featuring a subtle image slideshow and a rich html description.

It is xml-driven, which allows you to customize almost every aspect of it, without even touching the flash source files. You can also use multiple viewers in the same page.

You can have unlimited projects shown in a really cool way. All transitions and effects are subtle & smooth, so your visitors will have a pleasant time on your site if you’re using this rotator.

Each project has it’s own slideshow, and html description.



 Also make sure that you check out:

Main features:

  • highly customizable via xml
  • unlimited images within unlimited projects
  • smooth transitions and effects
  • simple image slideshow for every proejct
  • html formatted text for every project

Slideshow XML Options

<!-- thumbnail settings -->
        <thumbwidth>250</thumbwidth>
        <thumbheight>350</thumbheight>
        <thumbback>FEDC56</thumbback>
        <thumbbackopacity>100</thumbbackopacity>

        <thumbsviewborder>13</thumbsviewborder>
        <thumbsviewback>FFCC00</thumbsviewback>
        <thumbsviewbackopacity>100</thumbsviewbackopacity>

        <thumbsonview>3</thumbsonview>

        <!-- navigation buttons settings -->
        <navbuttonback>272727</navbuttonback>
        <navbuttonsymbol>FFFFFF</navbuttonsymbol>
        <navbuttonbackroll>FFCC00</navbuttonbackroll>
        <navbuttonsymbolroll>000000</navbuttonsymbolroll>

        <!-- control buttons settings -->
        <showctrlbuttons>true</showctrlbuttons>
        <ctrlbuttonbackcolor>272727</ctrlbuttonbackcolor>
        <ctrlbuttontextcolor>F7F7F7</ctrlbuttontextcolor>

        <!-- slideshow settings -->
        <showwidth>500</showwidth>
        <showheight>300</showheight>
        <showborder>38</showborder>

        <showback>FFCC00</showback>
        <showbackopacity>100</showbackopacity>
        <navbuttons>000000</navbuttons>

        <timer>5</timer>

        <!-- back/next buttons -->
        <detailbuttonsback>272727</detailbuttonsback>
        <detailbuttonstext>FFFFFF</detailbuttonstext>

        <backbutton><![CDATA[<p>Back to cases</p>]]></backbutton>
        <nextbutton><![CDATA[<p>Next case</p>]]></nextbutton>

        <!-- scrollbar settings -->
        <scrollbarbackcolor>272727</scrollbarbackcolor>
        <scrollbarhandlecolor1>FFCC00</scrollbarhandlecolor1>
        <scrollbarhandlecolor2>FFCC00</scrollbarhandlecolor2>

        <!-- text color settings -->
        <titledefaultcolor>FFCC00</titledefaultcolor>
        <descriptiondefaultcolor>000000</descriptiondefaultcolor>
        <textwidth>250</textwidth>

Project XML Options

    <title><![CDATA[<p>Magical Beans</p>]]></title>
    <description><![CDATA[<p>This is the html description for the current project. It is html, which means you can easily change fonts, <b>add bold text</b>, change <font color="#000000">some colors</font> and add <a href="http://www.activeden.net/" target="_blank">hyperlinks</a>. You can also use special characters, like á é í ó ú.<br/><br/>Another great thing is that you can have unordered lists:<ul><li>unlimited projects</li><li>unlimited pictures</li><li>unlimited options</li></ul><br/>And if you have too much text, a scrollbar will appear.</p>]]></description>
            <thumb>folio/thumbs/pic1.jpg</thumb>
            <assets>
                <asset>folio/images/pic1.jpg</asset>
                <asset>folio/images/pic2.jpg</asset>
                <asset>folio/images/pic3.jpg</asset>
                <asset>folio/images/pic4.jpg</asset>
            </assets>

Credits

Download Novus Portfolio Viewer (Image Viewers)

Coming Soon Micro Site Page(Bend Style) (Coming Soon Pages)

This is an website placeholder mini template, xml driven.
It has two basic sections: the about module with html description and a contact module.
The design is clean and easily customizable making it easy to be integrated with your brand identity. It is the perfect solution to let people know about your presence on the web before releasing your website.

All settings are set in XML so its very very easy to edit without dealing with FLA files.

It has auto responder email system.

Download Coming Soon Micro Site Page(Bend Style) (Coming Soon Pages)

Dynamic 3D Flip Photo Menu – AS3 (Horizontal Menus)

This is a 3D menu with a nice animation and style. No PaperVision or any other 3rd party script is used.

The action script coding is fully OOP based. Plus, the menu supports adding and removing the items dynamically. Plus, it dispatches useful events for various purposes.
 
As, coding is OOP based, it is already highly customizable. But, some features that are worth mentioning are…
A. DYNAMIC METHODS
1. clear()
This dynamic method clears all the items on the menu.
Usage Example:
photoMenu.clear();
 
2. addItem(data:XML)
This dynamic method adds an item to the menu whenever you want. You do not have to always add the items via XML . But, you can add the items dynamically in runtime.
Usage Examples:
photoMenu.addItem(new XML (“ ”));
photoMenu.addItem(xmlVariable);
 
3. removeItem(data:XML)
This method dynamically removes an item at the runtime. The function searches for the item that has XML data equal to the supplied parameter and deletes it.
Usage Example:
photoMenu.removeItem(xmlVariable);
 
B. DYNAMIC EVENTS
1. ITEM _ADDED – ac.FlipPhotoMenu. MenuEvent. ITEM _ADDED
This event is dispatched when an item is added to the menu. The event also supplies the related item on the event. The item can be accessed using evt.item property and the item data XML can be accessed using evt.item.data property.
Usage Example:
photoMenu.addEventListener(ac.FlipPhotoMenu. MenuEvent. ITEM _ADDED, menuItemAdded);
private function menuItemAdded(evt: ac.FlipPhotoMenu. MenuEvent):void {
//YOUR CODE GOES HERE
//DO SOMETHING ON THIS EVENT
}
 
2. ITEM _REMOVED – ac.FlipPhotoMenu. MenuEvent. ITEM _REMOVED
This event is dispatched when an item is removed from the menu. The event also supplies the related item on the event. The item can be accessed using evt.item property and the item data XML can be accessed using evt.item.data property.
Usage Example:
photoMenu.addEventListener(ac.FlipPhotoMenu. MenuEvent. ITEM _REMOVED, menuItemRemoved);
private function menuItemRemoved (evt: ac.FlipPhotoMenu. MenuEvent):void {
//YOUR CODE GOES HERE
//DO SOMETHING ON THIS EVENT
}
3. ITEM _CLICKED – ac.FlipPhotoMenu. MenuEvent. ITEM _CLICKED
This event is dispatched when an item is clicked on the menu. The event also supplies the related item on the event. The item can be accessed using evt.item property and the item data XML can be accessed using evt.item.data property.
Usage Example:
photoMenu.addEventListener(ac.FlipPhotoMenu. MenuEvent. ITEM _CLICKED, menuItemClicked);
private function menuItemClicked (evt: ac.FlipPhotoMenu. MenuEvent):void {
//YOUR CODE GOES HERE
//DO SOMETHING ON THIS EVENT
}
4. ITEM _ROLL_OVER – ac.FlipPhotoMenu. MenuEvent. ITEM _ROLL_OVER
This event is dispatched when mouse moves over an item. The event also supplies the related item on the event. The item can be accessed using evt.item property and the item data XML can be accessed using evt.item.data property.
Usage Example:
photoMenu.addEventListener(ac.FlipPhotoMenu. MenuEvent. ITEM _ROLL_OVER, menuItemRollOver);
private function menuItemRollOver (evt: ac.FlipPhotoMenu. MenuEvent):void {
//YOUR CODE GOES HERE
//DO SOMETHING ON THIS EVENT
}
5. ITEM _ROLL_OUT – ac.FlipPhotoMenu. MenuEvent. ITEM _ROLL_OUT
This event is dispatched when mouse moves out of an item. The event also supplies the related item on the event. The item can be accessed using evt.item property and the item data XML can be accessed using evt.item.data property.
Usage Example:
photoMenu.addEventListener(ac.FlipPhotoMenu. MenuEvent. ITEM _ROLL_OUT, menuItemRollOut);
private function menuItemRollOut (evt: ac.FlipPhotoMenu. MenuEvent):void {
//YOUR CODE GOES HERE
//DO SOMETHING ON THIS EVENT
}
6. ITEM _IMAGE_LOADED – ac.FlipPhotoMenu. MenuEvent. ITEM _IMAGE_LOADED
This event is dispatched when an item’s image is loaded. The event also supplies the related item on the event. The item can be accessed using evt.item property and the item data XML can be accessed using evt.item.data property.
Usage Example:
photoMenu.addEventListener(ac.FlipPhotoMenu. MenuEvent. ITEM _IMAGE_LOADED, menuItemImageLoaded);
private function menuItemImageLoaded (evt: ac.FlipPhotoMenu. MenuEvent):void {
//YOUR CODE GOES HERE
//DO SOMETHING ON THIS EVENT
}
7. MENU _CLEARED – ac.FlipPhotoMenu. MenuEvent. MENU _CLEARED
This event is dispatched when menu is cleared.
Usage Example:
photoMenu.addEventListener(ac.FlipPhotoMenu. MenuEvent. MENU _CLEARED, menuCleared);
private function menuCleared (evt: ac.FlipPhotoMenu. MenuEvent):void {
//YOUR CODE GOES HERE
//DO SOMETHING ON THIS EVENT
}
8. MENU _SCROLLING – ac.FlipPhotoMenu. MenuEvent. MENU _SCROLLING
This event is dispatched when menu is cleared.
Usage Example:
photoMenu.addEventListener(ac.FlipPhotoMenu. MenuEvent. MENU _SCROLLING, menuScrolling);
private function menuScrolling (evt: ac.FlipPhotoMenu. MenuEvent):void {
//YOUR CODE GOES HERE
//DO SOMETHING ON THIS EVENT
}
 
There are many settings that can be changed in the settings.xml file.
1. menuWidth – width of the menu
2. itemWidth – menu item width
3. itemHeight – menu item height
4. itemGap – gap between the items
5. itemReflectionGap – gap beetween an item and its reflection
6. itemReflectionAlpha – item reflection transparency
7. showItemReflection – whether to show the item reflection or not
8. itemBackgroundColor – background color of an item
9. itemBackgroundAlpha – transparency for an item’s background
10. toolTipTextColor – text color of tool tips
11. toolTipBackgroundColor – background color of tool tips
12. toolTipPreLoaderColor1 – first color for tool tip preloader
13. toolTipPreLoaderColor2 – second color for tool tip preloader
14. flipSpeed – flip speed for items – greater the speed, slower the animation
15. alphaSpeed – speed for transparency animations – greater the speed and slower the animation
16. scrollSpeed – scrolling speed – – greater the speed and slower the animation
17. scrollMargins – margins to leave to the left and right while scrolling
 
In the data.xml file, each item can have the following attributes.
1. image – image to show on the menu item
2. toolTip – tooltip text to show when mouse moves over an item
3. link – link to open when an item is clicked
4. target – target frame or window in which the link should open

Images in the preview are purchased from www.fotolia.com and they are not included in the file you purchase.

Download Dynamic 3D Flip Photo Menu – AS3 (Horizontal Menus)

GoGoXML – Using GoogleSpreadsheet as data source! (Other)

Use only XML to configure your flash projects?

Think again!

GoGoXML AS3 class is a class that allows you to easily manage local (XML) and remote (Google Spreadsheet) configurations at the same time.

Using GoGoXML, you can access and edit your important configurations, or configurations that have to be changed quickly/timely via Google Spreadsheets!

The preview above is an example showing how GoGoXML can be very useful for some sites. Let’s say your site has to display sports results and these names of winners has to be updated LIVE . Forget about using ftp to edit and reupload your xml… forget about creating a CMS … simple access and edit these dynamic and important data using GoogleSpreadsheet on your browser or even smartphone!

What’s more? Using GoGoXML, you can even stream REALTIME data from GoogleSpreadsheet into your Flash project! By simply configuring the config.xml, you can easily let GoGoXML Class keep polling data from Google Spreadsheet periodically!

This is an example of how your config.xml will look like when you use GoGoXML:


<?xml version="1.0" encoding="UTF-8"?>
<config islive="false" nextpollseconds="30" path="PATH_TO_GOOGLE_SPREADSHEET">
    <property name="gold" cell="B4" />
    <property name="silver" cell="B6" />
    <property name="bronze" cell="B8" />
    <property name="backgroundMusic" value="just_an_example.mp3" />
</config>

As shown above, in the config.xml you can effortlessly point some configs onto respective cells on a spreadsheet!

How to make use of this incredibly easy to use AS3 Class is all up to your imagination. Have fun!

Download GoGoXML – Using GoogleSpreadsheet as data source! (Other)

Monkey and Honey Hive (Action)

Monkey and honey hive flash game:

A flash Game with animated Monkey and PHP high Score board with MYSQL Database.
Controls:

Use Mouse to move the monkey left or right.

Click to make the monkey Jump.

Collect fruits and avoids Bees.

Brief:

Displays 8 Highest Scores with Names.

Full description of PHP score code with MYSQL database integration.

Configuration of MYSQL Database is attached with Screen shot.

This flash game can be customized/modified using Adobe Flash CS3 or above.

Scripting is well commented.

There is an option provided to display your logo on the game where ever you need it.
The position of the logo, logo image and link to your site can be configured from logo_config.xml file.
If you don’t want to put a logo then don’t give the image name in the xml.

You can customize your own graphics

Download Monkey and Honey Hive (Action)

Blue Night Under Construction Template (Coming Soon Pages)

Follow us on ActivedenFollow us on Graphicriver

Featured

  • Attractive design
  • Unlimited slider
  • Html Support
  • Email Validation
  • Different Background Options

DEMO LINK

Photos of Slider:

http://psd.tutsplus.com/freebies/wallpapers/psdtuts-presents-exclusive-wallpapers-by-tim-and-bram-vanhaeren/

http://psd.tutsplus.com/freebies/wallpapers/psdtuts-present-exclusive-wallpapers-from-intrinsic-nature/

Texture Set of Background:

http://webtreats.mysitemyway.com/grungy-abstract-bokeh-textures/

Font Used:

http://www.fontsquirrel.com/fonts/Bebas

http://www.fontsquirrel.com/fonts/Quicksand

http://www.fontsquirrel.com/fonts/Colaborate

free counters

Download Blue Night Under Construction Template (Coming Soon Pages)

The Cleaning Image Viewer (Image Viewers)

Description:

The Cleaning Image Viewer can help you to diversify a viewing your favorite photos and pictures

Features:

  • Tweener driven.
  • XML driven.

    • the radius of the cleaning circle.
    • the percentage of achievement of which, a picture self cleans.
    • the intensity of purification
    • URLs and descriptions for pictures.
  • The possibility to change some settings in runtime.
  • Code are well commented.

I hope my work will be useful for you :)

Download The Cleaning Image Viewer (Image Viewers)

Unitroids Space Shooter (Game Starter Kits)

Unitroids is a game where you fly a small spaceship through unknown space worlds.
Unfortunately, pesky little asteroids are cluttering up your way.
You can either avoid them , or shoot them and blow them up. But when they explode, they will split and make things more complicated.

Steer your spaceship with the mouse and WASD or the arrow keys through unknown worlds. Defend your spaceship from nasty asteroids in this Space Shooter Starter Kit. Blow them up and survive

the waves.

Download Unitroids Space Shooter (Game Starter Kits)

Envision Resizable AS3 XML Website Template (Site Templates)

This template is resizable. It used SWFFit.js to resize the browser window and its scrollbar. Keep in mind that because the site uses an external interface to call the .js, you will have to first upload this template to your server before being able to view it in working order. This is because The flash player prevents any communication between it and external interfaces for security reasons.

Background Image

  • Resizable
  • Changeable via xml
  • Set to Top Center or Top Left alignment
  • Logo

  • Load log via xml
  • Can be a .jpg or a .png
  • Main Menu

  • XML DRIVEN
  • Two Levels ONLY
  • Customizable Colors
  • Set Stage Height
  • Set to load a swf or to link to an external URL </li.
  • Set the main slider to hide or show again for every page
  • Main Slider

  • XML Driven
  • Customize colors
  • Standard time interval set to 5000 milliseconds
  • Mouse Over to show and hide Info and Buttons
  • Middle Section

  • Customize to load image gallery, video gallery, and latest news
  • Customizable colors via xml
  • Advertisments

  • Link to External URL
  • Images are 125×125px
  • Customize colors via xml
  • Latest Project Section

  • XML Driven
  • Change colors via xml
  • load as many images as you need to show off you latest project
  • HTML Formatted text areas
  • Music Player

  • XML Driven
  • Set song file path
  • Set song name
  • Set Colors via XML
  • Have a single song play repetitiously, or play multiple songs repetitiously
  • Set starting volume
  • Set autostart to true or false
  • Play/pause, previous, next buttons
  • Volume Adjustment
  • Footer

  • XML Driven
  • CSS driven too
  • Set colors via xml in html formatted text field
  • Allows the use of hypertext links in footer text
  • All pages in summary

  • XML Driven
  • REFER TO HELP FILES FOR PAGE HEIGHT ADJUSTMENT AND SETTINGS
  • Set Colors via xml
  • HTML Formatted Titles
  • HTML Formatted Text Fields
  • Change content via xml
  • For videos you can set aspect ratio between 4:3 and 16:9
  • Large Images in Image Gallery automatically resize to 1000 pixels wide while keep original aspect ratio
  • Videos used in this preview were brought to you by these authors of Video Hive

    Puzzle by Dorde
    Wild Ocean by Dorde
    Elegant Displays by Dorde

    Songs used in this preview were created by ADG3Studios and are part of the asset library

    Download Envision Resizable AS3 XML Website Template (Site Templates)

    AnalogMeter3 – Vintage Styled Analog Instruments (Animated Objects)

    AnalogMeter3 are AS3 based and vintage styled instruments. They are very versatile and can be used for every kind of game, website, mp3 or video player to display vu peak, loading status, frame rate or everything else that can be shown in a meter.
    You will get a bundle of classes and graphics, all object orientated code, well documented, including a mp3 player with a vintage styled user interface, volume and pan sliders as well as a vu meter for both channels.

    Download AnalogMeter3 – Vintage Styled Analog Instruments (Animated Objects)

    BloodSplatter Prefab (Particles & Effects)

    Features
    • Blood material
    • Particle system blood splatter simulation

    Includes
    • Scene from preview with script setup
    • Particle control script

    Instructions
    How to Import package into your Unity 3D:
    • Make sure your Unity Project is open in the scene you want to place files within
    the package.
    Import to project:
    • Double Click the ParticleBloodSplatterPrefab.unitypackage then click on the
    import button
    or
    • Assets > Import Package > select ParticleBloodSplatterPrefab.unitypackage >
    Open > then click on the import button.

    Apply to scene:
    • Drag BloodSplatterScript to the Main Camera from Project Folder > Particles By
    Unluck _ActiveDen.net. This script will trigger each time the mouse is clicked.
    • Edit the variables by dragging GameObjects into the Main Camera component.
    1. Drag BloodSplatterPrefab into the Blood Prefab slot
    2. Drag a GameObject into the Blood Position slot, this determines where the
    blood is Instantiated.
    3. Drag a GameObject into the Blood Rotation slot, this determines the rotation
    of the Blood Prefab.
    4. Adjust rotation of the BloodSplatterPrefab if it apears wrong, else leave it at
    zero.
    5. Adjust how many instances of the BloodSplatterPrefab are alowed on stage
    at once, setting this low will improve performance but might not look as
    good.

    Notes
    • Change Max and Min Emmission within BloodSplatterPrefab to increase or
    decrease the effect, this also affects performance.

    Files
    • ParticleBloodSplatterPrefab.unitypackage
    ParticleEmitter and Script.
    • ParticleBloodSplatterScene.unitypackage
    Scene with everything setup like preview.

    Download BloodSplatter Prefab (Particles & Effects)

    Infinite 3D Gallery – XML driven (3D & Carousel)

    Features:

    1. Supports unlimited images (many other 3D galleries don’t have this feature)
    2. Supports dynamically generated XML
    3. Optimized for a fast loading experience
    4. Fully customizable (XML)
    5. Usable on any size

    This is a 3D Wall Image Viewer with many customization options. You can set the gallery parameters and the images path using a static XML file or you can set them using a dynamically generated XML (created using PHP , ASP, etc.).

    Download Infinite 3D Gallery – XML driven (3D & Carousel)

    AS3 Weather Widget (Other)

    What’s new in this Widget!
    • A AS3 Compact weather widgets powered with Yahoo Weather Service

    • Widget shows your city Weather for Today & Tomorrow with a smooth & stylish design
    • It can be easily implemented to each new Flash Template
    • Widget refresh itself on every 10 seconds to show the last weather changes
    • It’s fully XML driven, widget colours can be customized completely in XML file

    href=”http://www.nhstudio.de/download/AS3/weather/Help.pdf”>online Help

    Download AS3 Weather Widget (Other)

    Christmas Presents (Holiday & e-Cards)

    Click and drag the presents!

    This is a e-card which allows you to write your own messages, pictures and movie clips. The graphics or movie clip that you add is added on to the necklace. There are 5 preset presents for you to create the necklaces. The motion is based on physics engine so the animation is highly realistic. You can play with this card for a long time. This is 100% vector so it is super light and perfect for printing.

    Features

    • One clean written AS3 class that can be initialized in 3 lines.
    • Uses box 2D physics enginefor highly realistic motion.
    • Easy to change add graphics or movie clips.
    • Customize your own title, message, background, font.
    • Easy to change canvas size and position.
    • Use your own background.
    • 100% vector
    • Only 20 kb!
    • 5 preset beautifully designed necklaces.
    • The main AS3 class extends Sprite, so you can easily add it to any display object.

    Download Christmas Presents (Holiday & e-Cards)