My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Last 30 days

  • Dec 13, 2009
    issue 3 (Unexpected file format) commented on by onercorr   -   Problem resolved: combination of example1.fla from version 6 with code from version 7 :) Sorry for disturbing.
    Problem resolved: combination of example1.fla from version 6 with code from version 7 :) Sorry for disturbing.
  • Dec 13, 2009
    issue 3 (Unexpected file format) reported by onercorr   -   What steps will reproduce the problem? 1.Error occur when opening example1.fla Adobe Flash CS3 PRO Version 9.0 In what version example1.fla was created? Thanks for any help.
    What steps will reproduce the problem? 1.Error occur when opening example1.fla Adobe Flash CS3 PRO Version 9.0 In what version example1.fla was created? Thanks for any help.

Older

  • Nov 29, 2009
    issue 2 (ITEM_ADDED event not firing) changed by jeremymrodgers   -   Thanks for your report, I am not using AIR but I think I know what the problem is. I'll try to fix it for the next release.
    Owner: jeremymrodgers
    Labels: Component-UI
    Thanks for your report, I am not using AIR but I think I know what the problem is. I'll try to fix it for the next release.
    Owner: jeremymrodgers
    Labels: Component-UI
  • Nov 29, 2009
    issue 1 (Bug while drag and drop in same list) Owner changed by jeremymrodgers   -   Thanks, I'll put this fix in the next release.
    Owner: jeremymrodgers
    Thanks, I'll put this fix in the next release.
    Owner: jeremymrodgers
  • Nov 12, 2009
    FlexBuilderIntegration (How to use as3-drag-and-drop-tilelist with Flex Builder 3.) Wiki page edited by jeremymrodgers   -   Revision r22 Edited wiki page through web user interface.
    Revision r22 Edited wiki page through web user interface.
  • Nov 12, 2009
    FlexBuilderIntegration (How to use as3-drag-and-drop-tilelist with Flex Builder 3.) Wiki page edited by jeremymrodgers   -   Revision r21 Edited wiki page through web user interface.
    Revision r21 Edited wiki page through web user interface.
  • Nov 11, 2009
    r20 (added code added patches from Frank McGuire ) committed by jeremymrodgers   -   added code added patches from Frank McGuire
    added code added patches from Frank McGuire
  • Nov 11, 2009
    dd_tile_list-v7.zip (dd_tile_list class file. Version 7.) file uploaded by jeremymrodgers   -  
    Labels: Featured Type-Archive OpSys-All
    Labels: Featured Type-Archive OpSys-All
  • Nov 11, 2009
    dd_tile_list_example-v7.zip (Example files for dd_tile_list class. Version 7.) file uploaded by jeremymrodgers   -  
    Labels: Type-Archive OpSys-All Featured
    Labels: Type-Archive OpSys-All Featured
  • Nov 11, 2009
    dd_tile_list_example_2-v7.zip (Video player example files for dd_tile_list class. Version 7...) file uploaded by jeremymrodgers   -  
    Labels: Type-Archive OpSys-All Featured
    Labels: Type-Archive OpSys-All Featured
  • Nov 11, 2009
    dd_TileList.swc (.swc for Flex Builder 3) file uploaded by jeremymrodgers   -  
    Labels: Type-Package OpSys-All
    Labels: Type-Package OpSys-All
  • Nov 11, 2009
    FlexBuilderIntegration (How to use as3-drag-and-drop-tilelist with Flex Builder 3.) Wiki page added by jeremymrodgers   -   Revision r19 Created wiki page through web user interface.
    Revision r19 Created wiki page through web user interface.
  • Nov 07, 2009
    issue 2 (ITEM_ADDED event not firing) reported by wesbeyrent   -   What steps will reproduce the problem? 1. addEventListener for ITEM_ADDED event on dd_tile_list instance 2. Drop JPG file onto AIR app which adds item to TileList component 3. TileList is updated with item showing JPG that was dropped What is the expected output? What do you see instead? Expect to see trace statement. I have a function for the ITEM_ADDED, ITEM_REMOVED, and LIST_REORDERED events. It only shows for ITEM_REMOVED and LIST_REORDERED events. What version of the product are you using? On what operating system? dd_tile_list v6, Windows XP. Developing in FlashDevelop with Flex SDK 3.0. Using Flash CS4 components from a compiled SWC file. Using in an AIR app, dropping files onto the AIR app. Please provide any additional information below. Here's my code: private function init(e:Event):void { dp = new DataProvider(slides); tList = new dd_tile_list(); tList.x = 10; tList.y = 10; tList.dataProvider = dp; tList.direction = ScrollBarDirection.VERTICAL; tList.rowHeight = 100; tList.columnWidth = 200; tList.columnCount = 1; tList.rowCount = 4; tList.width = 200; tList.height = 380; tList.canDragFrom = false; tList.dragRemovesItem = true; tList.dropOffRemovesItem = true; tList.canDropOn = true; tList.dragAlpha = .7; tList.autoScroll = true; tList.scrollZone = .15; tList.scrollSpeed = 3; tList.allowDuplicates = true; addChild(tList); tList.addEventListener( dd_tile_list.ITEM_ADDED, updateXML ); tList.addEventListener( dd_tile_list.ITEM_REMOVED, updateXML ); tList.addEventListener( dd_tile_list.LIST_REORDERED, updateXML ); } private function updateXML(e:Event):void { trace("listEvent: " + e.type); }
    What steps will reproduce the problem? 1. addEventListener for ITEM_ADDED event on dd_tile_list instance 2. Drop JPG file onto AIR app which adds item to TileList component 3. TileList is updated with item showing JPG that was dropped What is the expected output? What do you see instead? Expect to see trace statement. I have a function for the ITEM_ADDED, ITEM_REMOVED, and LIST_REORDERED events. It only shows for ITEM_REMOVED and LIST_REORDERED events. What version of the product are you using? On what operating system? dd_tile_list v6, Windows XP. Developing in FlashDevelop with Flex SDK 3.0. Using Flash CS4 components from a compiled SWC file. Using in an AIR app, dropping files onto the AIR app. Please provide any additional information below. Here's my code: private function init(e:Event):void { dp = new DataProvider(slides); tList = new dd_tile_list(); tList.x = 10; tList.y = 10; tList.dataProvider = dp; tList.direction = ScrollBarDirection.VERTICAL; tList.rowHeight = 100; tList.columnWidth = 200; tList.columnCount = 1; tList.rowCount = 4; tList.width = 200; tList.height = 380; tList.canDragFrom = false; tList.dragRemovesItem = true; tList.dropOffRemovesItem = true; tList.canDropOn = true; tList.dragAlpha = .7; tList.autoScroll = true; tList.scrollZone = .15; tList.scrollSpeed = 3; tList.allowDuplicates = true; addChild(tList); tList.addEventListener( dd_tile_list.ITEM_ADDED, updateXML ); tList.addEventListener( dd_tile_list.ITEM_REMOVED, updateXML ); tList.addEventListener( dd_tile_list.LIST_REORDERED, updateXML ); } private function updateXML(e:Event):void { trace("listEvent: " + e.type); }
  • Oct 28, 2009
    issue 1 (Bug while drag and drop in same list) commented on by winxalex   -   private function tl_mouse_move( _me:MouseEvent ):void { if( _ic != null && !_dragging && _ic.listData) { Abouve code would do just fine
    private function tl_mouse_move( _me:MouseEvent ):void { if( _ic != null && !_dragging && _ic.listData) { Abouve code would do just fine
  • Oct 28, 2009
    issue 1 (Bug while drag and drop in same list) commented on by winxalex   -   setStyle("upSkin", noskin); setStyle("downSkin", noskin); setStyle("overSkin", noskin); setStyle("selectedUpSkin", noskin); //mediumBackground); setStyle("selectedDownSkin", noskin);// lightBackground); setStyle("selectedOverSkin", noskin);// lightBackground);
    setStyle("upSkin", noskin); setStyle("downSkin", noskin); setStyle("overSkin", noskin); setStyle("selectedUpSkin", noskin); //mediumBackground); setStyle("selectedDownSkin", noskin);// lightBackground); setStyle("selectedOverSkin", noskin);// lightBackground);
  • Oct 28, 2009
    issue 1 (Bug while drag and drop in same list) commented on by winxalex   -   Actually I find why is that happend. I've png or movie with transparten background. I'm clicking on list on transparent,empty part of the item and list got mouse down item but _ic is null. So after mouse move _ic.data and _ic.listdata are empty. I think better way is to listen to fl.events.ListEvent ITEM_CLICK to start listining for mouse move. Thx Alex
    Actually I find why is that happend. I've png or movie with transparten background. I'm clicking on list on transparent,empty part of the item and list got mouse down item but _ic is null. So after mouse move _ic.data and _ic.listdata are empty. I think better way is to listen to fl.events.ListEvent ITEM_CLICK to start listining for mouse move. Thx Alex
  • Oct 28, 2009
    issue 1 (Bug while drag and drop in same list) reported by winxalex   -   What steps will reproduce the problem? 1. I'm drag(on left) drop element in same list fast couple of times Probably I'm clicking before element is back on the position!? What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below.
    What steps will reproduce the problem? 1. I'm drag(on left) drop element in same list fast couple of times Probably I'm clicking before element is back on the position!? What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below.
  • Sep 15, 2008
    r18 (changed the drop arrow back to the original.) committed by jeremymrodgers   -   changed the drop arrow back to the original.
    changed the drop arrow back to the original.
  • Sep 15, 2008
    r17 (Changed some internals to work better with custom CellRender...) committed by jeremymrodgers   -   Changed some internals to work better with custom CellRenderers. If you have relied on the _ic.data.index or _ic.data.listData vars you will need to change them. The new structure is better: _ic.data is just the dataprovider data. _ic.listData is the cell metadata. Also, _drag_item.data is populated on drag start.
    Changed some internals to work better with custom CellRenderers. If you have relied on the _ic.data.index or _ic.data.listData vars you will need to change them. The new structure is better: _ic.data is just the dataprovider data. _ic.listData is the cell metadata. Also, _drag_item.data is populated on drag start.
  • Sep 02, 2008
    r16 (Added LIST_REORDERED event. Added some return types to funct...) committed by jeremymrodgers   -   Added LIST_REORDERED event. Added some return types to functions to prevent flex compiler warnings.
    Added LIST_REORDERED event. Added some return types to functions to prevent flex compiler warnings.
  • Sep 01, 2008
    r15 (Added event code from Mathias Wedeken ITEM_ADDED, ITEM_REMOV...) committed by jeremymrodgers   -   Added event code from Mathias Wedeken ITEM_ADDED, ITEM_REMOVED these events are not fired when simply re-ordering within a dd_tile_list instance.
    Added event code from Mathias Wedeken ITEM_ADDED, ITEM_REMOVED these events are not fired when simply re-ordering within a dd_tile_list instance.
  • Sep 01, 2008
    r14 (minor update to drop detection code.) committed by jeremymrodgers   -   minor update to drop detection code.
    minor update to drop detection code.
  • Aug 07, 2008
    LibraryTricks (How to use both TileList and dd_tile_list in the same projec...) Wiki page edited by jeremymrodgers
  • Aug 04, 2008
    LibraryTricks (How to use both TileList and dd_tile_list in the same projec...) Wiki page edited by jeremymrodgers
  • Aug 04, 2008
    LibraryTricks (How to use both !TileList and dd_tile_list in the same proje...) Wiki page edited by jeremymrodgers
  • Aug 04, 2008
    LibraryTricks (How to use both TileList and dd_tile_list in the same projec...) Wiki page added by jeremymrodgers
  • Jul 24, 2008
    r9 (Version 4 released. * New method to determine TileList a...) committed by jeremymrodgers   -   Version 4 released. * New method to determine TileList and CellRenderer under mouse, fixes a problem with swf files in TileList. * Should be compatible with previous versions. * emBRACE-ing new code formatting.
    Version 4 released. * New method to determine TileList and CellRenderer under mouse, fixes a problem with swf files in TileList. * Should be compatible with previous versions. * emBRACE-ing new code formatting.
  • Jul 24, 2008
    BasicUsageDocumentation (Basic Usage Documentation.) Wiki page added by jeremymrodgers
  • Jul 24, 2008
    PageName Wiki page deleted by jeremymrodgers
 
Hosted by Google Code