Fever & FvAsWing update ( rev 121 )

Last update before the new year !

Many updates and news for this release.
Welcome to version 121 of Fever & FvAsWing frameworks.

1. New : Cross Context APIs

What is it ? The idea is one swf development for all production targets.

Thus you can develop only one flash application and release them using basic internet browser, or one of the swf2exe application of your choice.
Fever is released with Browser, ScreenweaverHx and SWF Studio V3 contexts.
Feel free to implement your own, for example the mProjector or Zinc context.
And all without any code modifications !

- Container ( synchron API )

  • setTitle() / getTitle()
  • setLocation() / getLocation()
  • setSize() / getSize()
  • setFullScreenMode() / isFullScreenMode()

- FileSystem ( synchron API )

  • isDirectory()
  • createDirectory()
  • deleteDirectory()
  • renameDirectory()
  • isFile()
  • renameFile()
  • deleteFile()
  • readFile()
  • writeToFile()
  • appendToFile()
Browser context has 2 differents filesystem implementations
  1. LocalSharedObject Filesystem simulation
  2. PHP FileSystem + XmlHttpRequest call to enable synchron actions. ( still in beta version even if many tested are ok )
- Dialogs ( synchron and asynchron mode supported for custom UI dialogs )
  • ShowFileOpenDialog
  • ShowFileSaveDialog
  • ShowBrowseFolderDialog
  • confirm()
  • alert()
  • message()

Quick "How to use" samples :

var docFilter : FileFilter = new FileFilter( 'Textes files' );
docFilter.addExtensions( [ 'txt', 'doc', 'xml' ] );

var imgFilter : FileFilter = new FileFilter( 'Image files' );
imgFilter.addExtension( 'jpg' );

var list : FileFilterList = new FileFilterList( );
list.addFilter( imgFilter );
list.addFilter( docFilter );

var selection : String = Fever.dialog.showFileOpenDialog( 'Opens file', list, false );

if( selection != null )
{
// do something   
}

Fever.dialog.alert( 'Caution' );

if( Fever.io.isDirectory( '/resources ' ) ) 
{
    Fever.io.writeToFile( 'some datas', '/resources/myFile.txt' ); 
}

The context to use must be defined as Fever.run() argument like this :

Fever.run( new MyApplication(), BrowserContext.getInstance(), true );
//or 
Fever.run( new MyApplication(), HaxeContext.getInstance(), true );

Or you can use an automatic switcher ( Fever checks the correct context to use )

Fever.run( new MyApplication(), ContextSwitcher.init(), true );

( only works with predefined context, must be updated to allow custom context checking )

More explanations and concrete example in few days.

 

2. New : Key accelerator mapping

New way to define shortcuts and to control them along the application life.
We can now registers shortcut in a specific place ( data structure ), and this place can be load or unload when you want during life cycle.

Concrete example can be to define some available shortcuts when a window has a focus and another shortcuts when anothers windows get it.

var map : ShortcutMap = ShortcutLocator.getMap( 'map1' );

// Using Event shortcut type
map.registerEvent( Keyboard.onKeyCONTROL, this, _onKey );

// Using Command shortcut type
map.registerCommand( Keyboard.onKeyADD, new CommandTest() );

// Using <strong>AsWing component</strong>
var button1 : JButton = new JButton( 'bouton 1 action' );
button1.addActionListener( Delegate.create( this, _test1, 'param' ) );

var button2 : JButton = new JButton( 'bouton 2 action' );
button2.addActionListener( _test2, this );

map.registerCustomType( FvAsWing.AWSHORTCUT, Keyboard.onKeySUBSTRACT, button1 );
map.registerCustomType( FvAsWing.AWSHORTCUT, Keyboard.onKeyADD, button2 );

map.load();

As you can see, 3 types of shortcuts are available in Fever :

  • Command shortcut : When shortcut is activated, command is executed
  • Event shortcut : When shortcut is activated, event is broadcasted
  • Custom type shortcut : When shortcut is activated, do what we want to do

The new FvAsWing class ( in FvAsWing framework ) define a behaviour for FvAsWing.AWSHORTCUT shortcut type.
( Simply call the Component.fireActionEvent() method )
You can easily customize your custom behaviour using the ShortcutMap.addType() method.

ShortcutMap.addType( myCustomType, this, _onShortcutActivated );

 

3. New : Firebug tracer for Logging API

Enables to log messages throw new FireFox extension named Firebug.

FireBugTracer.connect( FeverDebug.channel );

FeverDebug.DEBUG( 'debug message' );
FeverDebug.INFO( 'info message' );
FeverDebug.WARN( 'warn message' );
FeverDebug.ERROR( 'error message' );

Two specific methods are added to open / close console block if you want.

var tracer : FireBugTracer = FireBugTracer.getInstance();
tracer.openGroup( 'main loop' );

FeverDebug.DEBUG( 'something' );
FeverDebug.INFO( 'another' );

tracer.closeGroup();

 

4. New : ApplicationEvent class

Event structure for all events broadcasted by the application ( using the Cross Context API )

  • onFocusChangeEVENT
  • onResizeEVENT
  • onStateChangeEVENT

Registers to these events using Fever.application.addEventListener() method.

 

5. Update : Resources.getTranslation() method added

If you work this Resources implementations, you should note that we had to pass the full qualified path to translation node to retreive result.
Now we just have to call MyResource.getTranslation( 'myTranslationID' ) to build a correct node path.

Resources subclass sample :

import fever.app.local.LocalisationEvent;
import fever.core.Resources;

class fever.editor.resources.PathResources extends Resources
{
    //-------------------------------------------------------------------------
    // Public Properties
    //-------------------------------------------------------------------------
   
    public var commonTitle : String;
    public var customTitle : String;
   
   
    //-------------------------------------------------------------------------
    // Public API
    //-------------------------------------------------------------------------
   
    /**
     * Constructor.
     */
    public function PathResources()
    {
        super( 'fvconfigurator.path' );
    }
   
    /** 
     * Triggered when Localisation change.
     */
    public function onLocalisationUpdate(event : LocalisationEvent ) : Void
    {
        commonTitle = getTranslation( 'commonTitle' );
        customTitle = getTranslation( 'customTitle' );
    }
   
   
    //-------------------------------------------------------------------------
    // Private implementation
    //-------------------------------------------------------------------------
   
    private function _initDefault() : Void
    {
        commonTitle = 'Common';
        customTitle = 'Custom';
    }

}

 

6. New : FvAsWing class ( FvAsWingStage is removed )

FvAsWing framework as now it main class to init and use properly the Fever / Aswing engine.
Class is responsible of creating correct target movieclip for AsWing components, build a root container for application and register all FvAsWing commands to the Fever Controller ( Front controller implementation ).

var pane : Container = FvAsWing.getInstance().getContainer();
pane.setBorder( new EmptyBorder( null, new Insets( 10, 10, 10, 10 ) ) );
pane.setLayout( new BorderLayout( 10, 10 ) );

 

7. Update: AsWing Theme manager

New class named FvThemeLocator is dedicated now to register / unregister FvTheme instances now.
Event supported with FvThemeLocator.onChangeEVENT event type broadcasted when a new FvTheme is applied

var o : FvThemeLocator = FvThemeLocator.getInstance();
o.register( 'WinXP 2003', new WinXP2003() );
o.register( 'Office2003', new Office2003() );

o.addEventListener( FvThemeLocator.onChangeEVENT, this, _onUpdateTheme );

o.load( 'WinXP 2003' );

 

8. Update: FvAsWingTracer

  • Still on top of your application ( even if modal windows are opened )
  • List rendering is fix; now render single or multiple lines properly
  • new method FvAsWingTracer.connect( channel ) to add tracer has channel listener
FvAsWingTracer.connect( FeverDebug.channel ).open();

 

9. Update: Readers components

Components like FvVideoPlayer, FvPaperReader are updated with new Key mapping feature.
Shortcuts are now available only when window has the focus.

 

10. New : Template project

A new folder named "Template project" is available on Google SVN
This folder contain necessaries tools / file to play with your Flash application :

  • dhtmlHistory.js : allow deep url linking using BrowserHistory class
  • swf2object.js : famous javascript file to embded our swf into html page
  • config.xml : basic Fever configuration file
  • App.hx : basic template for main Haxe application
  • HxFeverContext.hx : Fever bridge for Swf <-> Haxe communication
  • JSFilesystem.js : JavaScript bridge between PHP and Fever
  • PHPJSBridge.php : PHP FileSystem launcher
  • PHPFileSystem.php : PHP Core FileSystem
  • All needed build files to go faster for swf publishing

 

11. Last words

As usual you can retreive source code throw Google SVN repository.
A basic ( but complete ) project demo is under construction, hope it will be finished for the first january week.

Happy new years at all, coders, designers... Flash lovers and Flash Community actors... keep up the good work, motivation and ideas;
Make 2007 the biggest Flash year of the decade !

Bye and happy new year again ;)

Comments
girls's Gravatar good article
# Posted By girls | 10/9/07 8:57 AM
mini storage's Gravatar Thank You for another very interesting article. It's really good written and I fully agree with You on main issue, btw. I must say that I really enjoyed reading all of Your posts.
http://www.icd-asia.net
capacitor and resistor,
It’s interesting to read ideas, and observations from someone else’s point of view… it makes you think more. So please try to keep up the great work all the time. Greetings
# Posted By mini storage | 10/10/07 4:04 AM
www's Gravatar <a href="http://www.todesign.com.cn">????</a> <a href="http://www.todesign.com.cn">????</a> <a href="http://www.hzgames.com/news.asp" target="_blank">http://www.hzgames.com/news.asp">runescape money</a> <a href="http://www.hzgames.com/news.asp" target="_blank">http://www.hzgames.com/news.asp">runescape gold</a> <a href="http://www.hzgames.com">runescape gold</a> <a href="http://www.hzgames.com">runescape money</a> <a href="http://www.game-win.com">wow power leveling</a> <a href="http://www.topowerleveling.com">wow power leveling</a> <a href="http://www.ruian2machine.cn">???</a>


<a href="http://www.clickra86.com">search engine optimization</a> <a href="http://www.gowowpowerleveling.com">wow power leveling</a> <a href="http://www.rajingwei.com/SEO_YOU.htm">google????</a> <a href="http://www.rajingwei.com/NewsList_2.htm">google??</a> <a href="http://www.fenixpainting.com">oil painting</a> <a href="http://www.ricoma.us">embroidery machines</a> <a href="http://www.yamata.com">sewing machines</a> <a href="http://www.deer-ac.com">air conditioner</a>
# Posted By www | 11/28/07 2:50 AM
dad's Gravatar <a href="http://www.topcallme.cn">???</a> <a href="http://www.topcallme.cn/NewsList_775.htm">???,?????</a> <a href="http://www.topcallme.cn">?????</a> <a href="http://www.topcallme.cn">???</a> <a href="http://www.topcallme.cn">?????</a> <a href="http://www.3721call.cn">???</a> <a href="http://www.3721call.cn">?????</a> <a href="http://www.3721call.cn">???</a> <a href="http://www.3721call.cn">?????</a>
# Posted By dad | 11/28/07 2:52 AM
# Posted By power | 12/2/07 8:58 PM
African Art's Gravatar "True knowledge never shuts the door on more knowledge, but zeal often does."
# Posted By African Art | 12/7/07 2:37 PM
wow's Gravatar <a href="http://www.feelingame.com/">wow power leveling</a>
<a href="http://www.feelingame.com">wow powerleveling</a>
<a href="http://www.feelingame.com/wow-power-leveling.asp">wow power leveling</a>
<a href="http://www.feelingame.com/wow-gold.asp">wow gold</a>
<a href="http://www.feelingame.com/wow-items.asp">wow items</a>
<a href="http://www.feelingame.com/about-us.asp" target="_blank">http://www.feelingame.com/about-us.asp">feelingame.com</a>
<a href="http://www.feelingame.com/wow-tips.asp" target="_blank">http://www.feelingame.com/wow-tips.asp">wow tips</a>
<a href="http://www.feelingame.com/most-valuable.asp" target="_blank">http://www.feelingame.com/most-valuable.asp">Most Valuable WOW Power Leveling Service</a>
<a href="http://www.feelingame.com/faq.asp">wow power leveling faq</a>
<a href="http://www.cheap-wow-power-leveling.com">cheap wow power leveling</a>
<a href="http://www.cheap-wow-power-leveling.com/">wow power leveling</a>
<a href="http://www.cheap-wow-power-leveling.com/">wow powerleveling</a>
<a href="http://www.cheap-wow-power-leveling.com/">wow power lvl</a>
# Posted By wow | 12/10/07 1:10 AM
# Posted By 468 | 12/29/07 9:47 PM
replica watches's Gravatar <a href="http://www.replicaseller.com">replica watches</a>
<a href="http://www.replicaseller.com">rolex replica watches</a>
<a href="http://www.replicaseller.com">replica seller</a>
<a href="http://www.replicaseller.com">luxury replica watches</a>
<a href="http://www.replicaseller.com">replica watches</a>
<a href="http://www.runescape-sale.com">runescape money</a>
<a href="http://www.runescape-sale.com">runescape gold</a>
<a href="http://www.runescape-sale.com">runescape accounts</a>

[url=http://www.runescape-sale.com]runescape money[/url]
[url=http://www.runescape-sale.com]runescape gold[/url]
[url=http://www.replicaseller.com]replica watches[/url]
[url=http://www.replicaseller.com]rolex replica watches[/url]
# Posted By replica watches | 1/11/08 2:35 PM
q's Gravatar great post!
# Posted By q | 1/23/08 4:14 AM
pills's Gravatar pills for PE http://noprematureejaculation.com: rapid ejaculation, quick climax, premature climax ?r early ejaculation is common problem
# Posted By pills | 1/23/08 4:19 AM
Still life Artist's Gravatar It’s interesting to read ideas, and observations from someone else’s point of view… it makes you think more. So please try to keep up the great work all the time. Greetings
Andrzej Filipowicz
Still life Artist, still life art
http://www.andrzejfilipowicz.com
STILL LIFE PAINTING
http://www.life.e-phils.com
# Posted By Still life Artist | 1/24/08 3:30 PM
steve's Gravatar Interessting stuff. this also: [http://www.toilettentrainingslager.de/paruresis_buch_inhalt.html paruresis buch] [http://www.toilettentrainingslager.de paruresis]
[http://www.squidoo.com/paruresis paruresis forum]
[http://pinkel.blog.de paruresis blog]
# Posted By steve | 2/4/08 7:51 AM
# Posted By Akon | 2/8/08 1:26 PM
# Posted By Climinax | 2/9/08 4:31 AM
# Posted By premature climax | 2/11/08 8:19 AM
smremont.com's Gravatar cool <u style="display:none">
<a href="http://www.smremont.com">smremont.com</a>
<a href="http://www.polostroy.org">polostroy.org</a>
<a href="http://www.willastroy.com">willastroy.com</a>
<a href="http://www.mngt.ru">mngt.ru</a>
<a href="http://www.ofbis.info">ofbis.info</a>
<a href="http://www.onbis.info">onbis.info</a>
<a href="http://www.mnfin.info">mnfin.info</a>
<a href="http://www.m-bis.info">m-bis.info</a>
<a href="http://www.finup.info">finup.info</a>
<a href="http://www.qbis.info">qbis.info</a>
<a href="http://www.ftrs.info">ftrs.info</a>
<a href="http://www.f-bis.info">f-bis.info</a>
<a href="http://www.bis-up.info">bis-up.info</a>
<a href="http://www.forexbis.info">forexbis.info</a>
<a href="http://www.fnbis.info">fnbis.info</a>
<a href="http://www.conbis.info">conbis.info</a>
<a href="http://www.bisoff.info">bisoff.info</a>
<a href="http://www.bisall.info">bisall.info</a>
<a href="http://www.orgstroy.com">orgstroy.com</a></u>
# Posted By smremont.com | 2/19/08 2:25 PM
Yoga Frankfurt's Gravatar Nice blog -makes you think!Please visit my Yoga Homepage: http://www.yoga-in-frankfurt.de/
Thank You, Tobi from Frankfurt
# Posted By Yoga Frankfurt | 2/20/08 10:17 PM
wrew's Gravatar site:fever.riaforge.org inurl:blog inurl:"index.cfm"
# Posted By wrew | 2/25/08 6:13 AM
xxsshara's Gravatar very good article, thank you <u style="display:none">
<a href="http://www.isovet.ru">isovet.ru</a>
<a href="http://www.mebelyaroslavl.ru">mebelyaroslavl.ru</a>
<a href="http://factor-tsp.ru">factor-tsp.ru</a>
<a href="http://spbgau.su">spbgau.su</a>
<a href="http://gru3.ru">gru3.ru</a></u>
# Posted By xxsshara | 2/27/08 9:08 AM
# Posted By gdgdf | 3/10/08 9:16 AM
phrase's Gravatar good article!Dig your article to digg phrase http://www.duyp.net
business http://www.qxiu.com directory http://www.qxiu.net
# Posted By phrase | 3/15/08 4:45 AM
# Posted By Allerfr | 3/17/08 8:32 AM
den's Gravatar http://www.teh-avto.ru Very much it was pleasant to me
# Posted By den | 4/2/08 4:00 PM
# Posted By zoloft | 4/3/08 10:45 AM
denis's Gravatar Thanks, very interestingly, are grateful
# Posted By denis | 4/6/08 2:53 PM
# Posted By adum | 4/7/08 2:54 PM
# Posted By oil painter | 4/13/08 1:27 PM
SOHBET's Gravatar <a title="ISO 14001" href="http://iso14001.web.tr">iso 14001</a>
<a title="ISO 22000" href="http://iso22000haccp.info">iso 22000</a>
<a title="haccp belgesi" href="http://iso22000haccp.info">haccp belgesi</a>
<a title="ikamet tezkeresi" href="http://ikamettezkeresi.com">ikamet tezkeresi</a>
<a title="yabanc? çal??ma izni" href="http://yabancilar-calisma-izni.org">yabanc? çal??ma izni</a>
<a title="yabanc? personel çal??ma izni" href="http://yabancilar-calisma-izni.org">yabanc? personel çal??ma izni</a>
<a title="ohsas 18001" href="http://ohsasbelgesi.info">ohsas 18001</a>
<a title="ISO 9001" href="http://isobelgesi.org">iso 9001</a>
<a title="ohsas belgesi" href="http://ohsasbelgesi.info">ohsas belgesi</a>
<a title="sohbetim" href="http://www.sohbetim.gen.tr">sohbetim</a>
<a href="http://www.sohbetim.gen.tr">mirc</a>
<a title="muhabbet" href="http://www.sohbetim.gen.tr">muhabbet</a>
<a title="sohbet sitesi" href="http://www.sohbetim.gen.tr">Sohbet Sitesi</a>
<a title="chat" href="http://www.sohbetim.gen.tr">Chat</a>
<a title="sohpet" href="http://www.sohbetim.gen.tr">Sohpet</a>
<a title="sohbet" href="http://www.sohbetim.gen.tr">Sohbet</a>
<a title="Te?vik Belgesi" href="http://www.tesvikbelgesi.com">Te?vik Belgesi</a>
<a title="çocuk bezi" href="http://www.dorakozmetik.com">Çocuk Bezi</a>
<a title="makyaj malzemeleri" href="http://www.dorakozmetik.com">Makyaj Malzemeleri</a>
<a title="ki?isel bak?m" href="http://www.dorakozmetik.com">Ki?isel Bak?m</a>
<a title="dudak koruyucu" href="http://www.dorakozmetik.com">Dudak Koruyucu</a>
<a title="göz kalemi" href="http://www.dorakozmetik.com">Göz Kalemi</a>
<a title="diyet ürünleri" href="http://www.dorakozmetik.com">Diyet Ürünleri</a>
<a title="süper" href="http://www.supertr.net">Süper Site</a>
<a title="driver" href="http://www.driverarabul.com">driver</a>
<a title="güvenlik kameras?" href="http://www.kamerakur.net">Güvenlik Kameras?</a>
<a title="?slak mendil" href="http://www.posetdolum.com">Islak Mendil</a>
<a title="kolonyal? mendil" href="http://www.posetdolum.com">Kolonyal? Mendil</a>
<a title="kolonyal? mendil" href="http://www.kolonyalimendil.info">Kolonyal? Mendil</a>
<a title="joyturk, joyturk fm, joy türk, joy turk, joyturkfm, joyturk radyo" href="http://www.joyturk.net">JoyTurk</a>
<a title="driver ara" href="http://www.driverarabul.com">driver ara</a>
<a title="web tasar?m" href="http://www.jtngroup.com">web tasar?m</a>
<a title="güvenlik kameras?" href="http://www.kamerakur.com"> Güvenlik Kameras?</a>
<a title="video" href="http://www.supertr.com">Video</a>
<a title="cilt bak?m?" href="http://www.dorakozmetik.com">Cilt Bak?m?</a>
<a title="güvenlik kameras?" href="http://www.kamerakur.com">Güvenlik Kameras?</a>
<a title="iso 9001" href="http://www.isobelgesi.org">iso 9001</a>
<a title="iso 14001" href="http://www.isobelgesi.org">iso 14001</a>
<a title="ohsas 18001" href="http://www.isobelgesi.org">ohsas 18001</a>
<a title="iso belgesi" href="http://www.isobelgesi.org">iso belgesi</a>
<a title="iso 22000" href="http://www.isobelgesi.org">iso 22000</a>
<a title="haccp belgesi" href="http://www.isobelgesi.org">haccp belgesi</a>
<a title="video" href="http://www.supertr.net">video</a>
<a title="süper" href="http://www.supertr.com">süper</a>
<a title="perde" href="http://www.tendaperde.com">perde</a>
# Posted By SOHBET | 4/13/08 7:20 PM
Denisa's Gravatar Thanks, very interestingly and informative
# Posted By Denisa | 4/14/08 7:55 AM
teh-avto's Gravatar Has opened for itself a lot of new, thanks.
# Posted By teh-avto | 4/14/08 7:58 AM
teh-avto's Gravatar Adequately, thanks for the information
http://www.teh-avto.ru/
http://tex-avto.ru/
# Posted By teh-avto | 4/17/08 11:59 AM
nokia's Gravatar http://www.nokia00.info/
http://www.nokia00.info/soft/" target="_blank">http://www.nokia00.info/soft/
http://www.nokia00.info/themes/
http://www.nokia00.info/messages/" target="_blank">http://www.nokia00.info/messages/
http://www.nokia00.info/tones/
http://www.nokia00.info/soft/" target="_blank">http://www.nokia00.info/soft/6600.html
http://www.nokia00.info/soft/" target="_blank">http://www.nokia00.info/soft/3250.html
http://www.nokia00.info/soft/" target="_blank">http://www.nokia00.info/soft/n70.html
http://www.nokia00.info/soft/" target="_blank">http://www.nokia00.info/soft/n95.html
http://www.nokia00.info/soft/" target="_blank">http://www.nokia00.info/soft/n73.html
http://www.nokia00.info/soft/" target="_blank">http://www.nokia00.info/soft/3d.html
http://www.nokia00.info/themes/n73.html" target="_blank">http://www.nokia00.info/themes/n73.html
http://www.nokia00.info/themes/n70.html
http://www.nokia00.info/themes/3250.html" target="_blank">http://www.nokia00.info/themes/3250.html
http://www.nokia00.info/themes/6300.html
http://www.nokia00.info/themes/6600.html
http://www.nokia00.info/themes/6630.html
http://www.nokia00.info/themes/e50.html
http://www.nokia00.info/themes/n70.html
http://www.nokia00.info/themes/n80.html
http://www.nokia00.info/themes/nth.html
http://www.nokia00.info/messages/" target="_blank">http://www.nokia00.info/messages/
http://www.nokia00.info/messages/" target="_blank">http://www.nokia00.info/messages/
http://www.nokia00.info/messages/" target="_blank">http://www.nokia00.info/messages/
http://www.nokia00.info/messages/" target="_blank">http://www.nokia00.info/messages/love.html
http://www.nokia00.info/messages/" target="_blank">http://www.nokia00.info/messages/nice.html
http://www.nokia00.info/messages/" target="_blank">http://www.nokia00.info/messages/ramdan.html
http://www.nokia00.info/messages/" target="_blank">http://www.nokia00.info/messages/romantic.html
http://www.nokia00.info/messages/" target="_blank">http://www.nokia00.info/messages/1.html
http://www.nokia00.info/messages/" target="_blank">http://www.nokia00.info/messages/2.html
http://www.nokia00.info/messages/" target="_blank">http://www.nokia00.info/messages/4.html
http://www.nokia00.info/tones/
http://www.nokia00.info/tones/
http://www.nokia00.info/tones/download.html
http://www.nokia00.info/tones/upload.html" target="_blank">http://www.nokia00.info/tones/upload.html
http://www.nokia00.info/tones/mp3.html
http://www.nokia00.info/tones/2007.html
http://www.nokia00.info/tones/2007.html
http://www.nokia00.info/tones/2008.html
http://www.nokia00.info/tones/islam.html
http://www.nokia00.info/tones/site.html
http://www.nokia00.info/tones/sound.html" target="_blank">http://www.nokia00.info/tones/sound.html
http://www.nokia00.info/tones/mar.html
# Posted By nokia | 5/2/08 9:24 PM
yy's Gravatar http://www.j-gala.co.jp/
http://www.beatitudevfx.com/
http://fuzokudx.com/deli/?
http://fuzokudx.com/soap/?
http://www.kajimitsuo.com/
http://www.omakasetai.com
http://www.cleat.bz
http://man3.jp
http://loan.saisoncard.co.jp
http://www.mvn.jp
http://www.2dou3.com
http://www.tealla.com
http://www.valer.jp
http://www.wayzup.com
http://www.koushouki.com
http://www.bmbeauty.co.jp/
http://pc.m-friend.jp/index1.asp
http://www.rs-group.jp/mb/index.html
http://movamova.net/?n=deco_top
http://digi-comi.net/
http://ihinseiri.jp
http://www.soushow.co.jp/car/
http://www.daishin.biz/DAN/DAN.html
http://www.kaigo-sora.co.jp
http://www.kaisha-seturitsu.com
http://www.sanyukk.com
http://kango.bunnabi.jp/m/
http://www.propaganda-web.com/design/gcom285/mens....
http://www.refonavi.com/
http://www.hide-clinic.com/
http://www.ec-engine.jp
http://lei.ne.jp/h/w-dress
http://lei.ne.jp/h
http://www.legal-agent.jp
http://www.za-hitonotsuma.com
http://wikifipau.org/
http://www.good-stay.net
http://www.monthly-urban.com
http://www.koukokunavi.jp
http://www.gaikaex.net/
http://www.dentouin.or.jp/
http://drprojet.com/
http://www.adultshop.co.jp/
http://zensyoji.or.jp/
http://www.chizai-job.com/" target="_blank">http://www.chizai-job.com/
http://www.daichou-koumon.com/
http://www.legal-lab.com/
http://www7b.biglobe.ne.jp/~houjyu/
http://www.jinmyouji-nokotsudo.jp/
http://www.giftbank.co.jp/
http://www.sweepdesign.jp/wakaresase/
http://www.30upclub.com/items/muscle2.html
http://www.30upclub.com/items/shape_getia.html
http://www.miraiclub.jp/
http://www.adire.jp/cashing/index.html
http://www.le-poisson-japan.com/
http://www.icb-finishing.co.jp/
http://www.nipponsoft.co.jp/recovery
http://www.max.ac.jp/
http://www.chizai-job.com
http://www.green-f.biz
http://www.icb-finishing.co.jp/image_consult/index.html" target="_blank">http://www.icb-finishing.co.jp/image_consult/index...
http://www.rs-holdings.net/
http://www.deli-spot.net
# Posted By yy | 5/7/08 12:28 AM
replica watch's Gravatar welecome to my homepage www.replicaseller.com
# Posted By replica watch | 5/7/08 8:38 AM
huo's Gravatar http://tour.travel.jp.msn.com/domestic/diving/????...
http://tour.travel.jp.msn.com/domestic/Okinawa/???...
http://www.abcsunny.co.jp/????????
http://www.actostaff.jp/??
http://www.actostaff.jp/????" target="_blank">http://www.actostaff.jp/????
http://www.actostaff.jp/????" target="_blank">http://www.actostaff.jp/????
http://www.arbeit-guide.co.jp/?????" target="_blank">http://www.arbeit-guide.co.jp/?????
http://www.arbeit-guide.co.jp/????
http://www.arbeit-guide.co.jp/?????" target="_blank">http://www.arbeit-guide.co.jp/??????????
http://www.at-kokusai.jp/index.html/?????
http://www.bikekaitorisatei.com/?????
http://www.biyou-m.com/????
http://www.deai-deai-kekkon.com/????
http://www.e-cash6.com/????????????
http://www.ee-aia.com/?????
http://www.fdcp.co.jp/????
http://www.free-credit.jp/????????????
http://www.free-credit.jp/???????????
http://www.free-credit.jp/???
http://www.furifuri.org/????
http://www.g-kizuna.com/???????????
http://www.gpat.jp/index.html/????
http://www.gpat.jp/index.html/??
http://www.hide-clinic.com/??????
http://www.jurgenlehlshop.jp/jp/index.html/???????...
http://www.kawase-market.com/??
http://www.kawase-market.com/????
http://www.kepp.jp/???
http://www.kepp.jp/??????
http://www.kinutashika.jp/??????
http://www.kitchenhouse.jp/????????
http://www.mj-net.jp/FX
http://www.mj-net.jp/??
http://www.money-a.com/???????????
http://www.palette.jp/???
http://www.palette.jp/??????" target="_blank">http://www.palette.jp/??????
http://www.rittou.jp/pc/????
http://www.senior-work.jp/??????" target="_blank">http://www.senior-work.jp/??????
http://www.senior-work.jp/??
http://www.shinga.com/index.html/?????
http://www.sienjyuku.com/????
http://www.sienjyuku.com/????????
http://www.style-h.net/???
http://www.suguokane.com/????????????
http://www.traderssec.com/??
http://www.vantan.com/courses_h/fd_top.html/?????
http://www.zks.jp/??
http://www.zks.jp/??
# Posted By huo | 5/7/08 9:39 PM
huo's Gravatar http://loan.saisoncard.co.jp/???
http://tour.travel.jp.msn.com/overseas/asia/?????
http://vantan.com/index.html/????
http://www.505555.jp/??
http://www.a-aia.com/???????
http://www.adultshop.co.jp/???????
http://www.business-wind.com/??
http://www.business-wind.com/???????
http://www.career-rise.co.jp/haken/????
http://www.fdcp.co.jp/?????" target="_blank">http://www.fdcp.co.jp/?????
http://www.fdcp.co.jp/?????" target="_blank">http://www.fdcp.co.jp/????????
http://www.fdcp.co.jp/????
http://www.fdcp.co.jp/?????" target="_blank">http://www.fdcp.co.jp/???????
http://www.foodrink.co.jp/si/si.html/????
http://www.foodrink.co.jp/si/si.html/??????????" target="_blank">http://www.foodrink.co.jp/si/si.html/??????????
http://www.fujitadental.jp/????
http://www.fw-solutions.com/index_f.html/SCM??????...
http://www.fxcn.co.jp/????
http://www.fxcn.co.jp/????
http://www.giftbank.co.jp/???????????
http://www.heldin-held.com/?????
http://www.heldin-held.com/???????
http://www.jurgenlehlshop.jp/jp/index.html/??????
http://www.kawase-market.com/FX http://www.kepp.jp/?????
http://www.ladis.co.jp/fukuen/??
http://www.mj-net.jp/????
http://www.noel.co.jp/ie/index.html/???????
http://www.noel.co.jp/ie/ms.html/???????
http://www.palette.jp/?????
http://www.shustop.com/???
http://www.shustop.com/???
http://www.shustop.com/????
http://www.shustop.com/??
http://www.style-h.net/???
http://www.style-h.net/??????
http://www.vantan.com/courses_h/fd_top.html/??????...
http://www.vantan.com/courses_h/fd_top.html/??????...??
http://www.vantan.com/courses_h/fs_top.html/??????...
http://www.vantan.com/courses_h/fs_top.html/??????...??
http://www.vantan.com/courses_h/hm_top.html/??????...
http://www.vantan.com/courses_h/hm_top.html/??????...??" target="_blank">http://www.vantan.com/courses_h/hm_top.html/??????...
http://www.vantan.com/courses_h/in_top.html/??????...
http://www.vantan.com/courses_h/in_top.html/??????...??
http://www.yuraku.jp/??
# Posted By huo | 5/7/08 9:45 PM