[Flashcoders] [Flash eLearning] Introduction of a self-made programmer

2009-04-17 Thread Guillaume Malartre
Well Hi!

I've been developing eLearning application for 5 years now (rigth after
finishing my Electronical Conception degrees). I joined my brother in a
startup company named "Scolab" and all we do 365 days a years is develop
educational applications/exercises distributed through our platform. I
invite you to take a look at my uncomplete folio
<http://www.gmalartre.com>and at my geeky
blog <http://gmalartre.blogspot.com>.

If somehow you want a more indeep look at what I/we
<http://www.scolab.com>do, just mail me!

Merci,
Guillaume

Guillaume Malartre
Consultant, Programmeur-Analyste
(514)528-8066, 1(888)528-8066

Besoin d'aide en maths? Need help in maths?
www.Netmaths.net, www.Buzzmath.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Tree Table Component

2007-02-28 Thread Guillaume Malartre

here's a simple treeGrid
http://www.jamesward.org/wordpress/?p=36
It juste render tree cell differently.

I'm using the one from http://flex2components.sourceforge.net/ currently.
It's a little bit buggy. I've come around some difficulty with it. But in my
opinion it's the best one I've found for flex.

If you want to do something similar to the one you shown just work on the
header and try to make the sort work. Or do a header outside the compenent
and generate differents treeGrids.

On 2/27/07, Charlie Skinner <[EMAIL PROTECTED]> wrote:


Has anyone seen any examples of Flash and/or Flex Components that can do
something similar to this:



http://www.teamdev.com/quipukit/demo/treetable/TreeTable1.jsf







___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com





--
Merci,
Guillaume

Guillaume Malartre
Programmeur-Analyste, Scolab
514-528-8066, 1-888-528-8066

Besoin d'aide en maths?
www.NetMaths.net
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] TabNavigator customized; weird button(tab) refresh glitch

2007-02-18 Thread Guillaume Malartre

Well it seems I'm in a alone in this thread but I'll post the solution I've
found so far...
The real problem was that when you extend the class Tab in order to a custom
TabNavigator you have to add a TAB_CREATED event to work around the glitch.
Once the TAB.TAB_CREATED(refer to the button in the tabbar) is triggered in
my application I have to make sure its the first tab added to the
tabNavigator and then set the tab.selected to true manually.

In my application
   public function tabIsCreated(evt:FlexEvent):void {
   //WorkAround of a glitch when there's no child in the
TabNavigator the button don't get selected
   if (evt.target is Button && chatTabs.numChildren == 1) {
   Button(evt.target).selected = true
   }
   }

In tab class
   public static const TAB_CREATED:String = "btnTabCreated2";
   public function ViewTab(){
   super();
   addEventListener(FlexEvent.CREATION_COMPLETE,
myCreationComplete);
   }
   private function myCreationComplete(event:Event):void {
dispatchEvent(new FlexEvent(TAB_CREATED,true,false))
 }

Well I hope this migth help someone else.

On 2/17/07, Guillaume Malartre <[EMAIL PROTECTED]> wrote:


Sorry just updated the .swf online :P
the glitch is now online

On 2/17/07, Guillaume Malartre <[EMAIL PROTECTED] > wrote:
>
> I'll start this message with the problem:
> My chat application:
> http://ded692cale.maximumasp.com/NetMaths111/SWF/ExplorationsBeta/NMChat.swf
>
>
> When I open a client by double-clicking in the list(in order to work you
> need to login 2 user) and then I close it with a removeChildren() I'll get a
> glitch with the tab button in the TabBar.
> The button doesn't appear white like he should be (selected), I tried
> selectedIndex etc.. And everything seems to be well coded. Anyone got a
> suggestion?
>
> private function createTab(name:String):void {
> var bool:Boolean = true
> for (var x:Object in allChatConversation) {
> if (x == name && allChatConversation[x] != null) {
> bool = false
> }
> }
> if (bool) {
> chatTabs.visible = true
> var chatRoom:NMChatRoom = new NMChatRoom()
> chatRoom.id = "chatRoom"
> chatTabs.addChild(chatRoom)
> chatRoom.label = name
> allChatConversation[name] = chatRoom //this is an
> object to keep a track on all the chatRoom opened
> chatList.setFocus()
> if (chatTabs.numChildren == 1) {
>  chatTabs.visible = true
> }
> chatTabs.selectedChild = allChatConversation[name]
>     }
> }
> selectedChild work well when there's already at least one child created
> but when there is zero child the glitch happen.
>
> --
> Merci,
> Guillaume
>
> Guillaume Malartre
> Programmeur-Analyste, Scolab
> 514-528-8066, 1-888-528-8066
>
> Besoin d'aide en maths?
> www.NetMaths.net




--
Merci,
Guillaume

Guillaume Malartre
Programmeur-Analyste, Scolab
514-528-8066, 1-888-528-8066

Besoin d'aide en maths?
www.NetMaths.net





--
Merci,
Guillaume

Guillaume Malartre
Programmeur-Analyste, Scolab
514-528-8066, 1-888-528-8066

Besoin d'aide en maths?
www.NetMaths.net
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] TabNavigator customized; weird button(tab) refresh glitch

2007-02-17 Thread Guillaume Malartre

Sorry just updated the .swf online :P
the glitch is now online

On 2/17/07, Guillaume Malartre <[EMAIL PROTECTED]> wrote:


I'll start this message with the problem:
My chat application:
http://ded692cale.maximumasp.com/NetMaths111/SWF/ExplorationsBeta/NMChat.swf


When I open a client by double-clicking in the list(in order to work you
need to login 2 user) and then I close it with a removeChildren() I'll get a
glitch with the tab button in the TabBar.
The button doesn't appear white like he should be (selected), I tried
selectedIndex etc.. And everything seems to be well coded. Anyone got a
suggestion?

private function createTab(name:String):void {
var bool:Boolean = true
for (var x:Object in allChatConversation) {
if (x == name && allChatConversation[x] != null) {
bool = false
}
}
if (bool) {
chatTabs.visible = true
var chatRoom:NMChatRoom = new NMChatRoom()
chatRoom.id = "chatRoom"
chatTabs.addChild(chatRoom)
chatRoom.label = name
allChatConversation[name] = chatRoom //this is an
object to keep a track on all the chatRoom opened
chatList.setFocus()
if (chatTabs.numChildren == 1) {
 chatTabs.visible = true
}
chatTabs.selectedChild = allChatConversation[name]
}
}
selectedChild work well when there's already at least one child created
but when there is zero child the glitch happen.

--
Merci,
Guillaume

Guillaume Malartre
Programmeur-Analyste, Scolab
514-528-8066, 1-888-528-8066

Besoin d'aide en maths?
www.NetMaths.net





--
Merci,
Guillaume

Guillaume Malartre
Programmeur-Analyste, Scolab
514-528-8066, 1-888-528-8066

Besoin d'aide en maths?
www.NetMaths.net
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] TabNavigator customized; weird button(tab) refresh glitch

2007-02-17 Thread Guillaume Malartre

I'll start this message with the problem:
My chat application:
http://ded692cale.maximumasp.com/NetMaths111/SWF/ExplorationsBeta/NMChat.swf


When I open a client by double-clicking in the list(in order to work you
need to login 2 user) and then I close it with a removeChildren() I'll get a
glitch with the tab button in the TabBar.
The button doesn't appear white like he should be (selected), I tried
selectedIndex etc.. And everything seems to be well coded. Anyone got a
suggestion?

   private function createTab(name:String):void {
   var bool:Boolean = true
   for (var x:Object in allChatConversation) {
   if (x == name && allChatConversation[x] != null) {
   bool = false
   }
   }
   if (bool) {
   chatTabs.visible = true
   var chatRoom:NMChatRoom = new NMChatRoom()
   chatRoom.id = "chatRoom"
   chatTabs.addChild(chatRoom)
   chatRoom.label = name
   allChatConversation[name] = chatRoom //this is an object
to keep a track on all the chatRoom opened
   chatList.setFocus()
   if (chatTabs.numChildren == 1) {
chatTabs.visible = true
   }
   chatTabs.selectedChild = allChatConversation[name]
   }
   }
selectedChild work well when there's already at least one child created but
when there is zero child the glitch happen.

--
Merci,
Guillaume

Guillaume Malartre
Programmeur-Analyste, Scolab
514-528-8066, 1-888-528-8066

Besoin d'aide en maths?
www.NetMaths.net
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] What do you think are the best Flash projects andRIA's

2007-02-17 Thread Guillaume Malartre

I'm working full-time on one www.NetMaths.net
We are almost living from it :P

On 2/15/07, Steven Sacks | BLITZ <[EMAIL PROTECTED]> wrote:


Looks like they're using DENG or something like it.


> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf
> Of Glen Pike
> Sent: Thursday, February 15, 2007 3:44 PM
> To: Flashcoders mailing list
> Subject: Re: [Flashcoders] What do you think are the best
> Flash projects andRIA's
>
> Hi,
>
> It might not be a full on application as such, but I
> really liked the way that Pier Inc's site uses Flash to
> enhance the blog as I see it.
>
> http://pierinc.com/
>
> Check it out, there is some nifty ideas and slick stuff
> in there.
> Then set your user-agent to GoogleBot and see what is served.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com





--
Merci,
Guillaume

Guillaume Malartre
Programmeur-Analyste, Scolab
514-528-8066, 1-888-528-8066

Besoin d'aide en maths?
www.NetMaths.net
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] TabNavigator customized; weird button(tab) refresh glitch

2007-02-17 Thread Guillaume Malartre

I'll start this message with the problem:
My chat application:
http://ded692cale.maximumasp.com/NetMaths111/SWF/ExplorationsBeta/NMChat.swf

When I open a client by double-clicking in the list(in order to work you
need to login 2 user) and then I close it with a removeChildren() I'll get a
glitch with the tab button in the TabBar.
The button doesn't appear white like he should be (selected), I tried
selectedIndex etc.. And everything seems to be well coded. Anyone got a
suggestion?

   private function createTab(name:String):void {
   var bool:Boolean = true
   for (var x:Object in allChatConversation) {
   if (x == name && allChatConversation[x] != null) {
   bool = false
   }
   }
   if (bool) {
   chatTabs.visible = true
   var chatRoom:NMChatRoom = new NMChatRoom()
   chatRoom.id = "chatRoom"
   chatTabs.addChild(chatRoom)
   chatRoom.label = name
   allChatConversation[name] = chatRoom //this is an object
to keep a track on all the chatRoom opened
   chatList.setFocus()
   if (chatTabs.numChildren == 1) {
chatTabs.visible = true
   }
   chatTabs.selectedChild = allChatConversation[name]
   }
   }
selectedChild work well when there's already at least one child created but
when there is zero child the glitch happen.
--
Merci,
Guillaume

Guillaume Malartre
Programmeur-Analyste, Scolab
514-528-8066, 1-888-528-8066

Besoin d'aide en maths?
www.NetMaths.net
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com