Fever & FvAsWing update ( rev 179 )
Big update concern the new FvAsWing components named : FvTree and FvButton ( hope you like them )
A demo of the new FvTree is available here : FvTree demo
Fever was updated too with minor changes and a new preloading customization process.
API Documentation is updated too : documentation.
Fever framework
- New fever.install package
- FeverInstaller class updated
- it is not any more the MTASC Access point
- build.application.xml Ant file is updated too to reflect this change :
<property name="installer.class" value="${framework.fever}\fever\install\DefaultInstaller.as" />
- InstallerUI class added : create UI for preloading process
- To customize UI simply create a new Installer.as class ( name example ) with :
class Installer
{
/**
* MTASC Access point.
*/
public static function main() : Void
{
FeverInstaller.load( new MyInstallerUI( 0xE9E3B9 ) );
}
}
- And change build.application.xml to target new class :
<property name="installer.class" value="${src.dir}\Installer.as" />
- To customize UI simply create a new Installer.as class ( name example ) with :
- FeverInstaller class updated
- KeyCombo updated:
- no need to define combo name as first parameter of constructor, name it automatically created.
- before :
var combo : KeyCombo = new KeyCombo( 'Ctrl+C', Keyboard.onKeyCONTROL, Keyboard.onKeyC );
- and now :
var combo : KeyCombo = new KeyCombo( Keyboard.onKeyCONTROL, Keyboard.onKeyC );
FeverDebug.DEBUG( combo.getName() ); // trace "Ctrl+C"
- before :
- no need to define combo name as first parameter of constructor, name it automatically created.
- ClientBrowser updated : if FeverDebug#isOn is true and application running under FireFox browser client, we connect the FireBugTracer tracer to FeverDebug.channel logging channel.
- MixSoundFactoryManager
is removedand welcome the new AppSoundFactory class- First thing, describe sound factories you want to use in the configuration file :
- where
- id is the factory identifier
- url is the swf file to load
- ref is the list of sounds identifier included in loaded swf
- manager must be set to true if we want to switch between factories at runtime ( switchable factories must have the same sounds identifers to play correctly of course )
- run is set to true to activate factory at startup
- Then in your code, you can activate a factory and play a sound easily using :
1. <sounds>
2. <factory id="classic" url="classic.swf" ref="click" manager="true" run="true" />
3. <factory id="modern" url="modern.swf" ref="click" manager="true" />
4. <factory id="music" url="music.swf" ref="house,electro" manager="false" />
5. </sounds>
1. AppSoundFactory.load( 'modern' );
2.
3. AppSoundFactory.getSoundFactory().getSound( 'click' ).start(); - fever.utils.easing package is now released under Fever framework ( instead of FvAsWing ).
FvAsWing framework
- FvAlert updated :
- fix default button focus when dialog open
- press "escape key" to close the dialog ( equal to cancel event )
- press "enter key" to validate current focused button
- buttons are now under FvButton control ( automatic shortcut creation and label visualization with underscore letter )
- FvCursor updated with a new public property named #arrowVisible to allow user to hide FvCursor arrow to keep system one.
- FvAsWingDebug logging channel added
- FvButton and FvLabelButton components added
- associate sound for the click action
- link localisation identifier to button label
- define shortcut using Keyboard / KeyCombo API
- automatic shortcut creation using button label value ( for example : button.setText( "ca&ncel" ) )
- where
- line 3 : define sound identifier to play ( included in AppSoundFactory factory ) when user click on button.
- line 4 : define a shortcut key to fire action event
- where
- line 3 : define shortcut without passing shortcut definition as button caption include one with the "&" character.
Here a the "m" will be underscore in button label and action event will be fired when user press "m" key.
- line 3 : define shortcut without passing shortcut definition as button caption include one with the "&" character.
- FvComponentBuffer class added
- This class allow to buffer some big component creation ( like FvColorChooser for example )
- Put all needed component into the buffer and the fvaswing. FvAsWing class will undertake to preload them before sending the message fvaswing.FvAsWing#onUICompleteEVENT ( FeverStage is the message sender )
- Component compliant with this system must implements the new FvUIBuffer interface.
FvComponentBuffer.push( FvColorChooser.getInstance() ); - You must add component to buffer before any call to FvAsWing.init() or FvAsWing.getInstance()
- FvTree and its package fvaswing.components.tree package added
- extension of standart AsWing JTree component
- new nodes / paths actions :
- getSelectedNode()
- getSelectedNodes()
- removeNode()
- removeNodes()
- removePath()
- removePaths()
- sort()
- sortNode()
- sortPath()
- Drag and Support
- allow internal and cross FvTree Dnd ( one or both at the same time )
- allow nodes order arrangement
- Drop actions supported :
- move node
- copy node ( in link mode : just a reference copy )
- clone node
- Dnd properties are accessible throw FvTree public methods
- Contextual menu on a tree cell right -click
- Example is better than too long explanations isn't it ;) : FvTree demo
1. var button : FvButton = new FvButton( 'click me please' );
2.
3. button.setSoundID( 'click' );
4. button.setShortcut( new KeyCombo( Keyboard.onKeyCONTROL, Keyboard.onKeyO ), 'myKeyMap' );
5. button.setToolTipText( 'open file' );
6. button.addActionListener( _onClick, this );
2.
3. button.setSoundID( 'click' );
4. button.setShortcut( new KeyCombo( Keyboard.onKeyCONTROL, Keyboard.onKeyO ), 'myKeyMap' );
5. button.setToolTipText( 'open file' );
6. button.addActionListener( _onClick, this );
1. var button : FvButton = new FvButton( 'click &me please' );
2.
3. button.setShortcut( null, 'myKeyMap' );
4. button.setToolTipText( 'open file' );
5. button.addActionListener( _onClick, this );
2.
3. button.setShortcut( null, 'myKeyMap' );
4. button.setToolTipText( 'open file' );
5. button.addActionListener( _onClick, this );
Template project
- localisation files are updated with the new fvaswing:tree translation nodes
- build.application.xml Ant definition is updated with new installer process
Downloads
- Main SVN : http://as2fever.googlecode.com/svn/trunk/
- Fever repository : http://as2fever.googlecode.com/svn/trunk/fever/
- FvAsWing repository : http://as2fever.googlecode.com/svn/trunk/fvaswing/
- Template project : http://as2fever.googlecode.com/svn/trunk/template_project/
- Frameworks documentation : http://fever.customactions.net/doc/
Have a nice day,
Cheers,
Romain.
http://www.solar-cell-panel.com
http://www.mmoinn.com
http://www.wowmine.com
http://www.wowspa.com
http://www.steel-pipe-tube-manufacturer.com/
http://www.rubber-hose-manufacturer.com
http://www.shoe-wholesale.net
<a href="http://www.powerlevelingweb.com/">wow powerleveling</a>
<a href="http://www.powerlevelingweb.com/aboutUs.asp" target="_blank">http://www.powerlevelingweb.com/aboutUs.asp">wow powerleveling</a>
<a href="http://www.mqblog.cn/">????</a>
<a href="http://www.watchrolexshop.com/">rolex</a>
<a href="http://www.sino-fanyigongsi.com.cn/">????</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>
http://www.pvpsale.com/powerleveling.asp
http://www.pvpsale.com/World-of-Warcraft-US.asp
http://www.pvpsale.com/World-of-Warcraft-US-Powerl...
http://www.pvpsale.com/World-of-Warcraft-EU-Powerl...
http://www.feelingame.com/
wow powerleveling
http://www.feelingame.com
wow power leveling
http://www.feelingame.com/wow-power-leveling.asp
wow gold
http://www.feelingame.com/wow-gold.asp
wow items
http://www.feelingame.com/wow-items.asp
feelingame.com
http://www.feelingame.com/about-us.asp" target="_blank">http://www.feelingame.com/about-us.asp
wow tips
http://www.feelingame.com/wow-tips.asp" target="_blank">http://www.feelingame.com/wow-tips.asp
Most Valuable WOW Power Leveling Service
http://www.feelingame.com/most-valuable.asp" target="_blank">http://www.feelingame.com/most-valuable.asp
wow power leveling faq
http://www.feelingame.com/faq.asp
cheap wow power leveling
http://www.cheap-wow-power-leveling.com
wow power leveling
http://www.cheap-wow-power-leveling.com/
wow powerleveling
http://www.cheap-wow-power-leveling.com/
wow power lvl
http://www.cheap-wow-power-leveling.com/
[url=http://www.tanshua.com]??[/url] [url=http://www.tanshua.com]???[/url] [url=http://www.rajingwei.com/SEO_YOU.htm]google????[/url] [url=http://www.rajingwei.com/NewsList_2.htm]google??[/url] [url=http://www.fenixpainting.com]oil painting[/url] [url=http://www.ricoma.us]embroidery machines[/url] [url=http://www.yamata.com]sewing machines[/url] [url=http://www.deer-ac.com]air conditioner[/url] [url=http://www.autocyd.com]????[/url] [url=http://www.yszdh.com]runescape money[/url] [url=http://www.yszdh.com]runescape gold[/url] [url=http://www.mmosgames.com]lotro gold[/url] [url=http://www.yszdh.com]rs2 money[/url]
[url=http://www.bags-replica.com]Louis vuitton replica[/url] [url=http://www.high-replica.com]replica handbags[/url] [url=http://www.topowerleveling.com]power leveling[/url] [url=http://www.gowowpowerleveling.com]power leveling[/url] [url=http://www.topowerleveling.com]wow power leveling[/url] [url=http://www.gowowpowerleveling.com]wow power leveling[/url] [url=http://www.topowerleveling.com]world of warcraft power leveling[/url] [url=http://www.gowowpowerleveling.com]world of warcraft power leveling[/url] [url=http://www.tanshua.com/en/index.asp" target="_blank">http://www.tanshua.com/en/index.asp]carbon brush[/url] [url=http://www.mmosgames.com]rs2 money[/url]
[url=http://www.topcallme.cn]???[/url] [url=http://www.topcallme.cn]???[/url] [url=http://www.topcallme.cn]?????[/url] [url=http://www.123she.cn]????[/url] [url=http://www.123she.cn]????[/url] [url=http://www.123she.cn]????[/url] [url=http://www.123she.cn]????[/url] [url=http://www.123she.cn]????[/url]
<a href="http://www.fashionbridalgown.com">bridal dress</a>
<a href="http://www.promgowndress.com">Prom dress,prom gown</a>
<a href="http://www.1stpromdress.com">prom dress,bridesmaid dress</a>
<a href="http://www.prom-dress-gown.com">cheap prom dress,prom gown,evening gown</a>
<a href="http://www.oilpaintings-art.com">Oil paintings</a>
<a href="http://www.oilpaintings-art.com">Art reproductions</a>
<a href="http://www.oilpaintingsmaster.com">Art oil paintings,oil paintings</a>
<a href="http://www.9lover.com">wedding dress</a>
<a href="http://www.9lover.com">wedding gown</a>
<a href="http://www.9lover.com/wholesale-wedding-dresses.html" target="_blank">http://www.9lover.com/wholesale-wedding-dresses.ht...">wedding dress wholesale</a>
<a href="http://www.mmmqt.cn">??3d</a> <a href="http://www.lanhom.net">??????</a> <a href="http://www.tnc168.com">????</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> <a href="http://www.yszdh.com">runescape gold</a> <a href="http://www.yszdh.com">rs2 gold</a> <a href="http://www.bags-replica.com">Louis vuitton replica</a> <a href="http://www.e-dynamic.com.cn/index.htm">plastic machine</a> <a href="http://www.fenixpainting.com">oil painting</a>
<a href="http://www.gowowpowerleveling.com">powerleveling</a> <a href="http://www.gowowpowerleveling.com">wow powerleveling</a> <a href="http://www.gowowpowerleveling.com">world of warcraft powerleveling</a> <a href="http://www.hzgames.com">runescape money</a> <a href="http://www.hzgames.com">runescape gold</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.e-dynamic.com.cn/index.htm">packing machine</a>
<a href="http://www.plastic-thermoforming-machine.com">thermoforming machine</a> <a href="http://www.plastic-thermoforming-machine.com">thermoforming Equipment</a> <a href="http://www.plastic-thermoforming-machine.com">Plastic Machinery</a> <a href="http://www.plastic-thermoforming-machine.com">Plastic Thermoforming Machine</a> <a href="http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...">Plastic Thermoforming Machinery</a> <a href="http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...">Plastic Sheet Unit,Plastic Extruding Machine</a> <a href="http://www.plastic-thermoforming-machine.com/about.htm">Plastic Machine</a> <a href="http://www.plastic-thermoforming-machine.com/about.htm">Vacuum Forming Equipment</a>
<a href="http://www.tnc168.com">????</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.yszdh.com">runescape money</a> <a href="http://www.yszdh.com">rs2 money</a> <a href="http://www.mmosgames.com/indexeu.asp">lotro gold</a> <a href="http://www.mmosgames.com/indexeu.asp">dofus kamas</a> <a href="http://www.e-dynamic.com.cn">packing machine</a> <a href="http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...">thermoforming Equipment</a>
<a href="http://www.gowowpowerleveling.com/Gold.asp" target="_blank">http://www.gowowpowerleveling.com/Gold.asp">runescape money</a> <a href="http://www.gowowpowerleveling.com/Gold.asp" target="_blank">http://www.gowowpowerleveling.com/Gold.asp">runescape gold</a> <a href="http://www.gowowpowerleveling.com">power leveling</a> <a href="http://www.gowowpowerleveling.com">wow power leveling</a> <a href="http://www.gowowpowerleveling.com">world of warcraft power leveling</a> <a href="http://www.e-dynamic.com.cn">plastic machine</a> <a href="http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...">Thermoforming Machine</a> <a href="http://www.mmmqt.cn">??3d</a>
<a href="http://www.plastic-thermoforming-machine.com">thermoforming machine</a> <a href="http://www.plastic-thermoforming-machine.com">thermoforming Equipment</a> <a href="http://www.plastic-thermoforming-machine.com">Plastic Machinery</a> <a href="http://www.plastic-thermoforming-machine.com">Plastic Thermoforming Machine</a> <a href="http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...">Plastic Thermoforming Machinery</a> <a href="http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...">Plastic Sheet Unit,Plastic Extruding Machine</a> <a href="http://www.plastic-thermoforming-machine.com/about.htm">Plastic Machine</a> <a href="http://www.plastic-thermoforming-machine.com/about.htm">Vacuum Forming Equipment</a> <a href="http://www.tzonegroup.cn">??</a> <a href="http://www.tzonegroup.cn/about.asp">???,?????,??????</a> <a href="http://www.tzonegroup.cn/about.asp">??????</a> <a href="http://www.tzonegroup.cn/about.asp">???</a> <a href="http://www.tzonegroup.cn/news.asp">??????,???????</a> <a href="http://www.tzonegroup.cn/news.asp">??????</a> <a href="http://www.tzonegroup.cn/products.asp" target="_blank">http://www.tzonegroup.cn/products.asp">???,????????,????????</a> <a href="http://www.tzonegroup.cn/products.asp" target="_blank">http://www.tzonegroup.cn/products.asp">???</a> <a href="http://www.todesign.com.cn/" target="_blank">http://www.todesign.com.cn/">????</a> <a href="http://www.todesign.com.cn">????</a>
http://www.wedding-dress-gowns.com
http://www.steel-pipe-tube-manufacturer.com
http://www.shoe-wholesale.net
http://www.furniture-hardware-manufacturer.net
http://www.medical-wheelchair.com
http://www.monitor-manufacturer.com
http://www.solar-cell-panel.com
<a href="http://www.tnc168.com">????</a> <a href="http://www.ruian2machine.cn">?????</a> <a href="http://www.clickra.com">google??</a> <a href="http://www.yszdh.com">runescape money</a> <a href="http://www.yszdh.com">rs2 money</a> <a href="http://www.mmosgames.com/indexeu.asp">lotro gold</a> <a href="http://www.mmosgames.com/indexeu.asp">dofus kamas</a> <a href="http://www.e-dynamic.com.cn">packing machine</a> <a href="http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...">thermoforming Equipment</a>
<a href="http://www.kintochina.cn">flexible connectors</a> <a href="http://www.gowowpowerleveling.com/Gold.asp" target="_blank">http://www.gowowpowerleveling.com/Gold.asp">runescape money</a> <a href="http://www.gowowpowerleveling.com/Gold.asp" target="_blank">http://www.gowowpowerleveling.com/Gold.asp">runescape gold</a> <a href="http://www.gowowpowerleveling.com">power leveling</a> <a href="http://www.gowowpowerleveling.com">wow power leveling</a> <a href="http://www.gowowpowerleveling.com">world of warcraft power leveling</a> <a href="http://www.cardel.cn">briefcase</a> <a href="http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...">Thermoforming Machine</a> <a href="http://www.mmmqt.cn">??3d</a>
<a href="http://www.plastic-thermoforming-machine.com">thermoforming machine</a> <a href="http://www.plastic-thermoforming-machine.com">thermoforming Equipment</a> <a href="http://www.plastic-thermoforming-machine.com">Plastic Machinery</a> <a href="http://www.plastic-thermoforming-machine.com">Plastic Thermoforming Machine</a> <a href="http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...">Plastic Thermoforming Machinery</a> <a href="http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...">Plastic Sheet Unit,Plastic Extruding Machine</a> <a href="http://www.plastic-thermoforming-machine.com/about.htm">Plastic Machine</a> <a href="http://www.plastic-thermoforming-machine.com/about.htm">Vacuum Forming Equipment</a> <a href="http://www.tzonegroup.cn">??</a> <a href="http://www.tzonegroup.cn/about.asp">???,?????,??????</a> <a href="http://www.tzonegroup.cn/about.asp">??????</a> <a href="http://www.tzonegroup.cn/about.asp">???</a> <a href="http://www.tzonegroup.cn/news.asp" target="_blank">http://www.tzonegroup.cn/news.asp">??????,???????</a> <a href="http://www.tzonegroup.cn/news.asp" target="_blank">http://www.tzonegroup.cn/news.asp">??????</a> <a href="http://www.tzonegroup.cn/products.asp" target="_blank">http://www.tzonegroup.cn/products.asp">???,????????,????????</a> <a href="http://www.tzonegroup.cn/products.asp" target="_blank">http://www.tzonegroup.cn/products.asp">???</a> <a href="http://www.todesign.com.cn/" target="_blank">http://www.todesign.com.cn/">????</a> <a href="http://www.todesign.com.cn">????</a>
http://www.datasos.org
http://www.filesos.com
http://www.cndatasos.com
http://www.raidlab.com
http://www.db-sos.com
http://www.oceanbackup.com
[url=http://www.kintochina.cn]flexible connectors[/url][url=http://www.gowowpowerleveling.com]power leveling[/url] [url=http://www.gowowpowerleveling.com]wow power leveling[/url] [url=http://www.xyfaqi.com]??[/url] [url=http://www.xyfaqi.com]??[/url] [url=http://www.cardel.cn]briefcase[/url] [url=http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...]Thermoforming Machine[/url] [url=http://www.rarixin.cn]???[/url] [url=http://www.zjsuma.com.cn]????[/url]
[url=http://www.tnc168.com]????[/url] [url=http://www.ruian2machine.cn]?????[/url] [url=http://www.xyfaqi.com]??[/url] [url=http://www.yszdh.com]runescape money[/url] [url=http://www.yszdh.com]rs2 money[/url] [url=http://www.mmosgames.com]lotro gold[/url] [url=http://www.mmosgames.com]dofus kamas[/url] [url=http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...]thermoforming Equipment[/url] [url=http://www.3721call.cn]????[/url] [url=http://www.3721call.cn/news.htm" target="_blank">http://www.3721call.cn/news.htm]????[/url] [url=http://www.shangrun.com]??[/url]
[url=http://www.plastic-thermoforming-machine.com]thermoforming machine[/url] [url=http://www.plastic-thermoforming-machine.com]thermoforming Equipment[/url] [url=http://www.plastic-thermoforming-machine.com]Plastic Machinery[/url] [url=http://www.plastic-thermoforming-machine.com]Plastic Thermoforming Machine[/url] [url=http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...]Plastic Thermoforming Machinery[/url] [url=http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...]Plastic Sheet Unit,Plastic Extruding Machine[/url] [url=http://www.plastic-thermoforming-machine.com/about.htm]Plastic Machine[/url] [url=http://www.66773388.com]jordan shoes[/url] [url=http://www.66773388.com]prada shoes[/url] [url=http://www.66773388.com]Gucci shoes[/url] [url=http://www.66773388.com]adidas shoes[/url] [url=http://www.66773388.com]nike shoes[/url] [url=http://www.66773388.com/about.asp" target="_blank">http://www.66773388.com/about.asp]ugg boots[/url] [url=http://www.66773388.com/about.asp" target="_blank">http://www.66773388.com/about.asp]evisu jeans[/url] [url=http://www.66773388.com/about.asp" target="_blank">http://www.66773388.com/about.asp]true religion jeans[/url] [url=http://www.66773388.com/newslie-1.htm" target="_blank">http://www.66773388.com/newslie-1.htm]Gucci handbags[/url] [url=http://www.66773388.com/newslie-1.htm" target="_blank">http://www.66773388.com/newslie-1.htm]lv handbags[/url] [url=http://www.66773388.com/newslie-1.htm" target="_blank">http://www.66773388.com/newslie-1.htm]ed hardy[/url] [url=http://www.66773388.com/newslie-1.htm" target="_blank">http://www.66773388.com/newslie-1.htm]new era[/url] [url=http://www.tzonegroup.cn]??[/url] [url=http://www.tzonegroup.cn/about.asp" target="_blank">http://www.tzonegroup.cn/about.asp]??????[/url] [url=http://www.tzonegroup.cn/about.asp" target="_blank">http://www.tzonegroup.cn/about.asp]???[/url] [url=http://www.tzonegroup.cn/news.asp" target="_blank">http://www.tzonegroup.cn/news.asp]??????[/url] [url=http://www.tzonegroup.cn/products.asp]???[/url]
[url=http://www.3721call.cn/plist456.htm" target="_blank">http://www.3721call.cn/plist456.htm]???[/url] [url=http://www.3721call.cn/plist455.htm" target="_blank">http://www.3721call.cn/plist455.htm]???[/url] [url=http://www.3721call.cn/plist454.htm]???[/url] [url=http://www.3721call.cn/plist453.htm" target="_blank">http://www.3721call.cn/plist453.htm]???[/url] [url=http://www.3721call.cn/plist452.htm" target="_blank">http://www.3721call.cn/plist452.htm]???[/url] [url=http://www.3721call.cn/plist451.htm" target="_blank">http://www.3721call.cn/plist451.htm]???[/url] [url=http://www.3721call.cn/plist450.htm" target="_blank">http://www.3721call.cn/plist450.htm]???[/url] [url=http://www.3721call.cn/plist449.htm" target="_blank">http://www.3721call.cn/plist449.htm]???[/url] [url=http://www.3721call.cn/plist448.htm" target="_blank">http://www.3721call.cn/plist448.htm]???[/url] [url=http://www.3721call.cn/plist447.htm" target="_blank">http://www.3721call.cn/plist447.htm]???[/url] [url=http://www.3721call.cn/plist446.htm" target="_blank">http://www.3721call.cn/plist446.htm]???[/url] [url=http://www.3721call.cn/plist445.htm" target="_blank">http://www.3721call.cn/plist445.htm]???[/url] [url=http://www.3721call.cn/plist444.htm" target="_blank">http://www.3721call.cn/plist444.htm]???[/url] [url=http://www.3721call.cn/plist443.htm" target="_blank">http://www.3721call.cn/plist443.htm]????[/url] [url=http://www.3721call.cn/plist442.htm" target="_blank">http://www.3721call.cn/plist442.htm]???[/url] [url=http://www.3721call.cn/plist441.htm" target="_blank">http://www.3721call.cn/plist441.htm]???[/url] [url=http://www.3721call.cn/plist440.htm" target="_blank">http://www.3721call.cn/plist440.htm]???[/url] [url=http://www.3721call.cn/plist439.htm" target="_blank">http://www.3721call.cn/plist439.htm]???[/url] [url=http://www.3721call.cn/plist438.htm]???[/url] [url=http://www.3721call.cn/plist437.htm" target="_blank">http://www.3721call.cn/plist437.htm]???[/url] [url=http://www.3721call.cn/plist436.htm" target="_blank">http://www.3721call.cn/plist436.htm]???[/url] [url=http://www.3721call.cn/plist435.htm" target="_blank">http://www.3721call.cn/plist435.htm]???[/url] [url=http://www.3721call.cn/plist434.htm" target="_blank">http://www.3721call.cn/plist434.htm]????[/url] [url=http://www.3721call.cn/plist433.htm]???[/url] [url=http://www.3721call.cn/plist432.htm]???[/url] [url=http://www.3721call.cn/plist431.htm" target="_blank">http://www.3721call.cn/plist431.htm]???[/url] [url=http://www.3721call.cn/plist430.htm" target="_blank">http://www.3721call.cn/plist430.htm]???[/url] [url=http://www.3721call.cn/plist429.htm" target="_blank">http://www.3721call.cn/plist429.htm]???[/url] [url=http://www.3721call.cn/plist428.htm" target="_blank">http://www.3721call.cn/plist428.htm]???[/url] [url=http://www.3721call.cn/plist518.htm" target="_blank">http://www.3721call.cn/plist518.htm]???[/url] [url=http://www.3721call.cn/plist517.htm" target="_blank">http://www.3721call.cn/plist517.htm]???[/url] [url=http://www.3721call.cn/plist516.htm]???[/url] [url=http://www.3721call.cn/plist515.htm]???[/url] [url=http://www.3721call.cn/plist514.htm" target="_blank">http://www.3721call.cn/plist514.htm]???[/url] [url=http://www.3721call.cn/plist513.htm" target="_blank">http://www.3721call.cn/plist513.htm]???[/url] [url=http://www.3721call.cn/plist512.htm" target="_blank">http://www.3721call.cn/plist512.htm]???[/url] [url=http://www.3721call.cn/plist511.htm]???[/url] [url=http://www.3721call.cn/plist510.htm]???[/url] [url=http://www.3721call.cn/plist509.htm" target="_blank">http://www.3721call.cn/plist509.htm]???[/url] [url=http://www.3721call.cn/plist508.htm" target="_blank">http://www.3721call.cn/plist508.htm]???[/url] [url=http://www.3721call.cn/plist507.htm" target="_blank">http://www.3721call.cn/plist507.htm]???[/url] [url=http://www.3721call.cn/plist506.htm" target="_blank">http://www.3721call.cn/plist506.htm]???[/url] [url=http://www.3721call.cn/plist505.htm" target="_blank">http://www.3721call.cn/plist505.htm]???[/url] [url=http://www.3721call.cn/plist504.htm" target="_blank">http://www.3721call.cn/plist504.htm]???[/url] [url=http://www.3721call.cn/plist503.htm" target="_blank">http://www.3721call.cn/plist503.htm]???[/url] [url=http://www.3721call.cn/plist502.htm" target="_blank">http://www.3721call.cn/plist502.htm]???[/url] [url=http://www.3721call.cn/plist501.htm" target="_blank">http://www.3721call.cn/plist501.htm]???[/url] [url=http://www.3721call.cn/plist500.htm" target="_blank">http://www.3721call.cn/plist500.htm]???[/url] [url=http://www.3721call.cn/plist499.htm" target="_blank">http://www.3721call.cn/plist499.htm]???[/url] [url=http://www.3721call.cn/plist498.htm" target="_blank">http://www.3721call.cn/plist498.htm]???[/url] [url=http://www.3721call.cn/plist497.htm]???[/url] [url=http://www.3721call.cn/plist496.htm" target="_blank">http://www.3721call.cn/plist496.htm]???[/url] [url=http://www.3721call.cn/plist495.htm" target="_blank">http://www.3721call.cn/plist495.htm]???[/url] [url=http://www.3721call.cn/plist494.htm" target="_blank">http://www.3721call.cn/plist494.htm]???[/url] [url=http://www.3721call.cn/plist493.htm" target="_blank">http://www.3721call.cn/plist493.htm]???[/url] [url=http://www.3721call.cn/plist492.htm]???[/url] [url=http://www.3721call.cn/plist491.htm" target="_blank">http://www.3721call.cn/plist491.htm]???[/url] [url=http://www.3721call.cn/plist490.htm" target="_blank">http://www.3721call.cn/plist490.htm]???[/url] [url=http://www.3721call.cn/plist489.htm" target="_blank">http://www.3721call.cn/plist489.htm]???[/url] [url=http://www.3721call.cn/plist488.htm" target="_blank">http://www.3721call.cn/plist488.htm]???[/url] [url=http://www.3721call.cn/plist487.htm]???[/url] [url=http://www.3721call.cn/plist486.htm]???[/url] [url=http://www.3721call.cn/plist485.htm" target="_blank">http://www.3721call.cn/plist485.htm]???[/url] [url=http://www.3721call.cn/plist484.htm" target="_blank">http://www.3721call.cn/plist484.htm]???[/url] [url=http://www.3721call.cn/plist483.htm" target="_blank">http://www.3721call.cn/plist483.htm]???[/url] [url=http://www.3721call.cn/plist482.htm" target="_blank">http://www.3721call.cn/plist482.htm]???[/url] [url=http://www.3721call.cn/plist481.htm]???[/url] [url=http://www.3721call.cn/plist480.htm" target="_blank">http://www.3721call.cn/plist480.htm]???[/url] [url=http://www.3721call.cn/plist479.htm" target="_blank">http://www.3721call.cn/plist479.htm]???[/url] [url=http://www.3721call.cn/plist478.htm" target="_blank">http://www.3721call.cn/plist478.htm]???[/url] [url=http://www.3721call.cn/plist477.htm" target="_blank">http://www.3721call.cn/plist477.htm]???[/url] [url=http://www.3721call.cn/plist476.htm]???[/url] [url=http://www.3721call.cn/plist475.htm" target="_blank">http://www.3721call.cn/plist475.htm]???[/url] [url=http://www.3721call.cn/plist474.htm" target="_blank">http://www.3721call.cn/plist474.htm]???[/url] [url=http://www.3721call.cn/plist473.htm" target="_blank">http://www.3721call.cn/plist473.htm]???[/url] [url=http://www.3721call.cn/plist472.htm" target="_blank">http://www.3721call.cn/plist472.htm]???[/url] [url=http://www.3721call.cn/plist471.htm" target="_blank">http://www.3721call.cn/plist471.htm]???[/url] [url=http://www.3721call.cn/plist470.htm" target="_blank">http://www.3721call.cn/plist470.htm]???[/url] [url=http://www.3721call.cn/plist469.htm" target="_blank">http://www.3721call.cn/plist469.htm]???[/url] [url=http://www.3721call.cn/plist468.htm" target="_blank">http://www.3721call.cn/plist468.htm]???[/url] [url=http://www.3721call.cn/plist467.htm" target="_blank">http://www.3721call.cn/plist467.htm]???[/url] [url=http://www.3721call.cn/plist466.htm" target="_blank">http://www.3721call.cn/plist466.htm]???[/url] [url=http://www.3721call.cn/plist465.htm]???[/url] [url=http://www.3721call.cn/plist464.htm" target="_blank">http://www.3721call.cn/plist464.htm]???[/url] [url=http://www.3721call.cn/plist463.htm" target="_blank">http://www.3721call.cn/plist463.htm]???[/url] [url=http://www.3721call.cn/plist462.htm" target="_blank">http://www.3721call.cn/plist462.htm]???[/url] [url=http://www.3721call.cn/plist461.htm" target="_blank">http://www.3721call.cn/plist461.htm]???[/url] [url=http://www.3721call.cn/plist460.htm]???[/url] [url=http://www.3721call.cn/plist459.htm]???,V??[/url] [url=http://www.3721call.cn/plist458.htm" target="_blank">http://www.3721call.cn/plist458.htm]???[/url] [url=http://www.3721call.cn/plist457.htm" target="_blank">http://www.3721call.cn/plist457.htm]???[/url]
http://www.oilpainting.ws
http://www.paintinghere.com
<a href="http://www.kintochina.cn">flexible connectors</a> <a href="http://www.gowowpowerleveling.com">powerleveling</a> <a href="http://www.gowowpowerleveling.com">wow powerleveling</a> <a href="http://www.gowowpowerleveling.com">world of warcraft powerleveling</a> <a href="http://www.wzboty.cn">????</a> <a href="http://www.wzboty.cn">?????</a> <a href="http://www.cardel.cn">briefcase</a> <a href="http://www.3721call.cn">????</a> <a href="http://www.rarixin.cn">???</a>
<BR>
<a href="http://www.shunfengjixie.cn">???</a> <a href="http://www.xyfaqi.com">??</a> <a href="http://www.xyfaqi.com">??</a> <a href="http://www.xyfaqi.com">??</a> <a href="http://www.lanhom.net">??????</a> <a href="http://www.mystery.net.cn">????</a> <a href="http://www.ricoma.us">embroidery machines</a> <a href="http://www.yszdh.com">runescape gold</a> <a href="http://www.yszdh.com">rs2 gold</a> <a href="http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...">thermoforming machine</a> <a href="http://www.paper-cup-machine.com">paper cup machine</a>
<a href="http://www.plastic-thermoforming-machine.com">thermoforming machine</a> <a href="http://www.plastic-thermoforming-machine.com">thermoforming Equipment</a> <a href="http://www.plastic-thermoforming-machine.com">Plastic Machinery</a> <a href="http://www.plastic-thermoforming-machine.com">Plastic Thermoforming Machine</a> <a href="http://www.plastic-thermoforming-machine.com/product.htm" target="_blank">http://www.plastic-thermoforming-machine.com/produ...">Plastic Thermoforming Machinery</a> <a href="http://www.plastic-thermoforming-machine.com/about.htm">Plastic Machine</a> <a href="http://www.66773388.com">jordan shoes</a> <a href="http://www.66773388.com">prada shoes</a> <a href="http://www.66773388.com">Gucci shoes</a> <a href="http://www.66773388.com">adidas shoes</a> <a href="http://www.66773388.com">nike shoes</a> <a href="http://www.66773388.com/about.asp" target="_blank">http://www.66773388.com/about.asp">ugg boots</a> <a href="http://www.66773388.com/about.asp" target="_blank">http://www.66773388.com/about.asp">evisu jeans</a> <a href="http://www.66773388.com/about.asp" target="_blank">http://www.66773388.com/about.asp">true religion jeans</a> <a href="http://www.66773388.com/newslie-1.htm" target="_blank">http://www.66773388.com/newslie-1.htm">Gucci handbags</a> <a href="http://www.66773388.com/newslie-1.htm" target="_blank">http://www.66773388.com/newslie-1.htm">lv handbags</a> <a href="http://www.66773388.com/newslie-1.htm" target="_blank">http://www.66773388.com/newslie-1.htm">ed hardy</a> <a href="http://www.66773388.com/newslie-1.htm" target="_blank">http://www.66773388.com/newslie-1.htm">new era</a> <a href="http://www.rajayj.cn">???</a> <a href="http://www.rajayj.cn">?????</a> <a href="http://www.rajayj.cn">???</a> <a href="http://www.rajayj.cn/gsjj.asp" target="_blank">http://www.rajayj.cn/gsjj.asp">?????</a> <a href="http://www.rajayj.cn/product/index.asp">?????</a>
<BR>
<a href="http://www.3721call.cn/plist456.htm">???</a> <a href="http://www.3721call.cn/plist455.htm" target="_blank">http://www.3721call.cn/plist455.htm">???</a> <a href="http://www.3721call.cn/plist454.htm">???</a> <a href="http://www.3721call.cn/plist453.htm">???</a> <a href="http://www.3721call.cn/plist452.htm">???</a> <a href="http://www.3721call.cn/plist451.htm">???</a> <a href="http://www.3721call.cn/plist450.htm" target="_blank">http://www.3721call.cn/plist450.htm">???</a> <a href="http://www.3721call.cn/plist449.htm" target="_blank">http://www.3721call.cn/plist449.htm">???</a> <a href="http://www.3721call.cn/plist448.htm">???</a> <a href="http://www.3721call.cn/plist447.htm">???</a> <a href="http://www.3721call.cn/plist446.htm">???</a> <a href="http://www.3721call.cn/plist445.htm">???</a> <a href="http://www.3721call.cn/plist444.htm" target="_blank">http://www.3721call.cn/plist444.htm">???</a> <a href="http://www.3721call.cn/plist443.htm">????</a> <a href="http://www.3721call.cn/plist442.htm">???</a> <a href="http://www.3721call.cn/plist441.htm">???</a> <a href="http://www.3721call.cn/plist440.htm">???</a> <a href="http://www.3721call.cn/plist439.htm" target="_blank">http://www.3721call.cn/plist439.htm">???</a> <a href="http://www.3721call.cn/plist438.htm">???</a> <a href="http://www.3721call.cn/plist437.htm">???</a> <a href="http://www.3721call.cn/plist436.htm">???</a> <a href="http://www.3721call.cn/plist435.htm">???</a> <a href="http://www.3721call.cn/plist434.htm">????</a> <a href="http://www.3721call.cn/plist433.htm">???</a> <a href="http://www.3721call.cn/plist432.htm">???</a> <a href="