From skip at skipcomer.com Tue Jun 1 18:32:10 2004 From: skip at skipcomer.com (skip comer) Date: Tue Jun 1 18:22:45 2004 Subject: [Hecdev] New RFID feature In-Reply-To: <5.1.1.6.0.20040206154550.02a58290@magiclamp.org> Message-ID: Hi Mary, I was adding a feature to the food interface that defined which type of graph to display. I went back to check your message format, and I didn't see any properties for defining the graph style --although it looked like you may have meant for it to be another item in the list of controlID's. I wasn't sure, so for now I'm adding a property to the object in list named "graphType", with the expected values to be "vbar", "hbar", or "pieChart". Let me know whether this solution fits in with your thinking. --Skip On Friday, February 6, 2004, at 04:53 PM, Mary Pietrowicz wrote: > Hi, > > I've added nutrient selection through the physical object interface. > To use it, you put a token representing the nutrient/nutrients on the > tray along with the foods. Then, the display client can either > emphasize information about the selected nutrients, or display > nutrient information only for the nutrients selected. Here is a short > description of the feature. > > This feature adds a "nutrientInfo" section to the message which is > sent to the server. It shouldn't affect any of the existing code. > > Mary__________________________________ > _____________ > Hecdev mailing list > Hecdev@spvi.com > http://mailman.spvi.com/mailman/listinfo/hecdev From maryp at iupui.edu Thu Jun 3 09:56:36 2004 From: maryp at iupui.edu (Mary Pietrowicz) Date: Thu Jun 3 09:57:21 2004 Subject: [Hecdev] New RFID feature In-Reply-To: References: <5.1.1.6.0.20040206154550.02a58290@magiclamp.org> Message-ID: <5.1.1.6.0.20040603093744.00b4ecd0@imap0.iupui.edu> Hi, Skip - The existing message coming from the food tray to the server looks something like this: [{'foodInfo':[{'weightID': '3647', 'foodID': '1811'}], 'controlInfo':[{'controlID': 'FoodCalculator'}, {'controlID': 'NutGraph'}, {'controlID': 'FoodPyramid'}], 'activationInfo': [{'activationID': 'MagicWand'}]}] This one doesn't give any information about what type of graph. The server could interpret this any way desired, and message the display code with horizontal bar, vertical bar, pie, or whatever is desired given the context. So I think that it's still a good idea to have a generic graph control in there. But we can add some more specific controls to the physical object interface that might look like this in the message to the server: ..... {'controlID': 'VBarChart'}, {'controlID': 'HBarChart'}, {'controlID': 'PieChartChart'} .... The user could select one or more graphs with the physical object interface by placing the desired tokens on the tray. We can also give the user a selection "cube" or "pyramid" that the user will turn like a dial to select the desired kind of graph. This will force selection of zero or one graph (sort of a radio button selector). The message the server receives from the tablet will still be different from the message that the display app receives from the server. Does this sound okay? Mary At 06:32 PM 6/1/2004 -0500, you wrote: >Hi Mary, > >I was adding a feature to the food interface that defined which type of >graph to display. I went back to check your message format, and I >didn't see any properties for defining the graph style --although it >looked like you may have meant for it to be another item in the list of >controlID's. I wasn't sure, so for now I'm adding a property to the >object in list named "graphType", with the expected values to be >"vbar", "hbar", or "pieChart". Let me know whether this solution fits >in with your thinking. > >--Skip > > >On Friday, February 6, 2004, at 04:53 PM, Mary Pietrowicz wrote: > >>Hi, >> >>I've added nutrient selection through the physical object interface. >>To use it, you put a token representing the nutrient/nutrients on the >>tray along with the foods. Then, the display client can either >>emphasize information about the selected nutrients, or display >>nutrient information only for the nutrients selected. Here is a short >>description of the feature. >> >>This feature adds a "nutrientInfo" section to the message which is >>sent to the server. It shouldn't affect any of the existing code. >> >>Mary__________________________________ >>_____________ >>Hecdev mailing list >>Hecdev@spvi.com >>http://mailman.spvi.com/mailman/listinfo/hecdev > >_______________________________________________ >Hecdev mailing list >Hecdev@spvi.com >http://mailman.spvi.com/mailman/listinfo/hecdev > > From skipcomer at iquest.net Thu Jun 3 10:46:48 2004 From: skipcomer at iquest.net (skip comer) Date: Thu Jun 3 10:37:17 2004 Subject: [Hecdev] New RFID feature In-Reply-To: <5.1.1.6.0.20040603093744.00b4ecd0@imap0.iupui.edu> Message-ID: <39183032-B575-11D8-AC0E-000393A575D2@iquest.net> Hi Mary, Hmm... so what do I do if you send me a horiz. bar AND a pie chart message? should I just look at the last thing I get and go with that? --also, would the VBarChart, HBarChart, etc., be instead of the NutGraph message? maybe NutGraph would default to a bar graph? One correction: The display app does get your message coming from the food tray directly. It takes the foodInfo list and passes it on to the server as part of a request for nutrient data. So, we'll need to be in sync with the controlID message. --Skip On Thursday, June 3, 2004, at 09:56 AM, Mary Pietrowicz wrote: > Hi, Skip - > > The existing message coming from the food tray to the server looks > something like this: > > [{'foodInfo':[{'weightID': '3647', 'foodID': '1811'}], > 'controlInfo':[{'controlID': 'FoodCalculator'}, > {'controlID': 'NutGraph'}, > {'controlID': 'FoodPyramid'}], > 'activationInfo': [{'activationID': 'MagicWand'}]}] > > This one doesn't give any information about what type of graph. The > server could interpret > this any way desired, and message the display code with horizontal > bar, vertical bar, pie, or whatever is desired given the context. So > I think that it's still a good idea to have a generic graph control in > there. > > But we can add some more specific controls to the physical object > interface that might look like this in the message to the server: > ..... > {'controlID': 'VBarChart'}, > {'controlID': 'HBarChart'}, > {'controlID': 'PieChartChart'} > .... > > The user could select one or more graphs with the physical object > interface by placing the desired tokens on the tray. > > We can also give the user a selection "cube" or "pyramid" that the > user will turn like a dial to select the desired kind of graph. This > will force selection of zero or one graph (sort of a radio button > selector). > > The message the server receives from the tablet will still be > different from the message that the display app receives from the > server. > > Does this sound okay? > > Mary > > > At 06:32 PM 6/1/2004 -0500, you wrote: >> Hi Mary, >> >> I was adding a feature to the food interface that defined which type >> of >> graph to display. I went back to check your message format, and I >> didn't see any properties for defining the graph style --although it >> looked like you may have meant for it to be another item in the list >> of >> controlID's. I wasn't sure, so for now I'm adding a property to the >> object in list named "graphType", with the expected values to be >> "vbar", "hbar", or "pieChart". Let me know whether this solution fits >> in with your thinking. >> >> --Skip >> >> >> On Friday, February 6, 2004, at 04:53 PM, Mary Pietrowicz wrote: >> >>> Hi, >>> >>> I've added nutrient selection through the physical object interface. >>> To use it, you put a token representing the nutrient/nutrients on the >>> tray along with the foods. Then, the display client can either >>> emphasize information about the selected nutrients, or display >>> nutrient information only for the nutrients selected. Here is a >>> short >>> description of the feature. >>> >>> This feature adds a "nutrientInfo" section to the message which is >>> sent to the server. It shouldn't affect any of the existing code. >>> >>> Mary________________________________ >>> __ _____________ >>> Hecdev mailing list >>> Hecdev@spvi.com >>> http://mailman.spvi.com/mailman/listinfo/hecdev >> >> _______________________________________________ >> Hecdev mailing list >> Hecdev@spvi.com >> http://mailman.spvi.com/mailman/listinfo/hecdev >> >> > > _______________________________________________ > Hecdev mailing list > Hecdev@spvi.com > http://mailman.spvi.com/mailman/listinfo/hecdev > From maryp at iupui.edu Thu Jun 3 10:37:57 2004 From: maryp at iupui.edu (Mary Pietrowicz) Date: Thu Jun 3 10:38:42 2004 Subject: Fwd: Re: [Hecdev] New RFID feature Message-ID: <5.1.1.6.0.20040603103635.00bdc4f8@imap0.iupui.edu> Oops - that was supposed to be 'PieChart' instead of 'PieChartChart'. >..... > {'controlID': 'VBarChart'}, > {'controlID': 'HBarChart'}, > {'controlID': 'PieChartChart'} >.... From skipcomer at iquest.net Thu Jun 3 10:57:45 2004 From: skipcomer at iquest.net (skip comer) Date: Thu Jun 3 10:48:31 2004 Subject: [Hecdev] New RFID feature In-Reply-To: <5.1.1.6.0.20040603103635.00bdc4f8@imap0.iupui.edu> Message-ID: Could we just shorten it to vbar, hbar, and pieChart? that's what the code is using now. --Skip On Thursday, June 3, 2004, at 10:37 AM, Mary Pietrowicz wrote: > Oops - that was supposed to be 'PieChart' instead of 'PieChartChart'. > >> ..... >> {'controlID': 'VBarChart'}, >> {'controlID': 'HBarChart'}, >> {'controlID': 'PieChartChart'} >> .... > > _______________________________________________ > Hecdev mailing list > Hecdev@spvi.com > http://mailman.spvi.com/mailman/listinfo/hecdev > From maryp at iupui.edu Thu Jun 3 11:58:52 2004 From: maryp at iupui.edu (Mary Pietrowicz) Date: Thu Jun 3 12:00:38 2004 Subject: [Hecdev] New RFID feature In-Reply-To: <39183032-B575-11D8-AC0E-000393A575D2@iquest.net> References: <5.1.1.6.0.20040603093744.00b4ecd0@imap0.iupui.edu> Message-ID: <5.1.1.6.0.20040603114048.00ba3258@imap0.iupui.edu> Skip - >Hmm... so what do I do if you send me a horiz. bar AND a pie chart >message? should I just look at the last thing I get and go with that? >--also, would the VBarChart, HBarChart, etc., be instead of the >NutGraph message? maybe NutGraph would default to a bar graph? At this point if you got more than one chart selection, you could just default to one. Or we could go with the cube selector that forces someone to pick one graph (or none), and we'll never have a case where the user can select more than one graph. I think we should keep the NutGraph token so that we have a generic token where the app that receives it can decide what to do, depending on the context. Also, the same message could be broadcast simultaneously to a PDA, large screen, or voice module, and the applications could interpret it as desired. More than one entity can get messages from a channel on the server. If you don't want to go there now, then we don't have to give the users a NutGraph token, or we can default NutGraph on the server to VBarChart or to whatever makes sense. >One correction: The display app does get your message coming from the >food tray directly. It takes the foodInfo list and passes it on to the >server as part of a request for nutrient data. So, we'll need to be in >sync with the controlID message. Isn't it still passing through the server? I connect to http://mail.healtheducationcenter.org:9180/HECPlone/Peripherals/RID1 >--Skip > >On Thursday, June 3, 2004, at 09:56 AM, Mary Pietrowicz wrote: > >>Hi, Skip - >> >>The existing message coming from the food tray to the server looks >>something like this: >> >>[{'foodInfo':[{'weightID': '3647', 'foodID': '1811'}], >> 'controlInfo':[{'controlID': 'FoodCalculator'}, >> {'controlID': 'NutGraph'}, >> {'controlID': 'FoodPyramid'}], >> 'activationInfo': [{'activationID': 'MagicWand'}]}] >> >>This one doesn't give any information about what type of graph. The >>server could interpret >>this any way desired, and message the display code with horizontal >>bar, vertical bar, pie, or whatever is desired given the context. So >>I think that it's still a good idea to have a generic graph control in >>there. >> >>But we can add some more specific controls to the physical object >>interface that might look like this in the message to the server: >>..... >> {'controlID': 'VBarChart'}, >> {'controlID': 'HBarChart'}, >> {'controlID': 'PieChartChart'} >>.... >> >>The user could select one or more graphs with the physical object >>interface by placing the desired tokens on the tray. >> >>We can also give the user a selection "cube" or "pyramid" that the >>user will turn like a dial to select the desired kind of graph. This >>will force selection of zero or one graph (sort of a radio button >>selector). >> >>The message the server receives from the tablet will still be >>different from the message that the display app receives from the >>server. >> >>Does this sound okay? >> >>Mary >> >> >>At 06:32 PM 6/1/2004 -0500, you wrote: >>>Hi Mary, >>> >>>I was adding a feature to the food interface that defined which type >>>of >>>graph to display. I went back to check your message format, and I >>>didn't see any properties for defining the graph style --although it >>>looked like you may have meant for it to be another item in the list >>>of >>>controlID's. I wasn't sure, so for now I'm adding a property to the >>>object in list named "graphType", with the expected values to be >>>"vbar", "hbar", or "pieChart". Let me know whether this solution fits >>>in with your thinking. >>> >>>--Skip >>> >>> >>>On Friday, February 6, 2004, at 04:53 PM, Mary Pietrowicz wrote: >>> >>>>Hi, >>>> >>>>I've added nutrient selection through the physical object interface. >>>>To use it, you put a token representing the nutrient/nutrients on the >>>>tray along with the foods. Then, the display client can either >>>>emphasize information about the selected nutrients, or display >>>>nutrient information only for the nutrients selected. Here is a >>>>short >>>>description of the feature. >>>> >>>>This feature adds a "nutrientInfo" section to the message which is >>>>sent to the server. It shouldn't affect any of the existing code. >>>> >>>>Mary________________________________ >>>>__ _____________ >>>>Hecdev mailing list >>>>Hecdev@spvi.com >>>>http://mailman.spvi.com/mailman/listinfo/hecdev >>> >>>_______________________________________________ >>>Hecdev mailing list >>>Hecdev@spvi.com >>>http://mailman.spvi.com/mailman/listinfo/hecdev >>> >> >>_______________________________________________ >>Hecdev mailing list >>Hecdev@spvi.com >>http://mailman.spvi.com/mailman/listinfo/hecdev > >_______________________________________________ >Hecdev mailing list >Hecdev@spvi.com >http://mailman.spvi.com/mailman/listinfo/hecdev > > From maryp at iupui.edu Thu Jun 3 12:00:14 2004 From: maryp at iupui.edu (Mary Pietrowicz) Date: Thu Jun 3 12:01:04 2004 Subject: [Hecdev] New RFID feature In-Reply-To: References: <5.1.1.6.0.20040603103635.00bdc4f8@imap0.iupui.edu> Message-ID: <5.1.1.6.0.20040603115959.00bdc4f8@imap0.iupui.edu> Fine. At 10:57 AM 6/3/2004 -0500, you wrote: >Could we just shorten it to vbar, hbar, and pieChart? that's what the >code is using now. > >--Skip > >On Thursday, June 3, 2004, at 10:37 AM, Mary Pietrowicz wrote: > >>Oops - that was supposed to be 'PieChart' instead of 'PieChartChart'. >> >>>..... >>> {'controlID': 'VBarChart'}, >>> {'controlID': 'HBarChart'}, >>> {'controlID': 'PieChartChart'} >>>.... >> >>_______________________________________________ >>Hecdev mailing list >>Hecdev@spvi.com >>http://mailman.spvi.com/mailman/listinfo/hecdev > >_______________________________________________ >Hecdev mailing list >Hecdev@spvi.com >http://mailman.spvi.com/mailman/listinfo/hecdev > > From xqbao at yahoo.com Thu Jun 3 10:32:32 2004 From: xqbao at yahoo.com (xqbao) Date: Thu Jun 3 12:33:20 2004 Subject: [Hecdev] window focus Message-ID: <20040603173232.15169.qmail@web41106.mail.yahoo.com> Hi Steve, I am wondering if you have solved the window focusing problem that the director movie had. Please let me know. Thanks! Xiaoqiu __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/ From steve at spvi.com Thu Jun 3 15:03:06 2004 From: steve at spvi.com (Steve Spicklemire) Date: Thu Jun 3 15:03:46 2004 Subject: [Hecdev] window focus In-Reply-To: <20040603173232.15169.qmail@web41106.mail.yahoo.com> References: <20040603173232.15169.qmail@web41106.mail.yahoo.com> Message-ID: <077281F6-B599-11D8-913B-000393468020@spvi.com> Hi Xiaoqiu, Sorry.. yes I meant to send you something. I found that if I simply save an applescript like this: tell application "testapp.osx" activate end tell As an 'application', called 'doActivate' (it's really saved as 'doActivate.app'). Then in a handler in director (e.g., of a button); on click _movie.goToNetPage("http:www.apple.com") _player.open("","doActivate.app") end It will open the URL in a browser, then run the applescript.. which brings the app back to the front. enjoy, -steve On Jun 3, 2004, at 12:32 PM, xqbao wrote: > Hi Steve, > > I am wondering if you have solved the window focusing problem that the > director movie had. Please let me know. > > Thanks! > > Xiaoqiu > > > > > __________________________________ > Do you Yahoo!? > Friends. Fun. Try the all-new Yahoo! Messenger. > http://messenger.yahoo.com/ > _______________________________________________ > Hecdev mailing list > Hecdev@spvi.com > http://mailman.spvi.com/mailman/listinfo/hecdev > From steve at spvi.com Thu Jun 3 15:05:30 2004 From: steve at spvi.com (Steve Spicklemire) Date: Thu Jun 3 15:06:09 2004 Subject: [Hecdev] window focus In-Reply-To: <077281F6-B599-11D8-913B-000393468020@spvi.com> References: <20040603173232.15169.qmail@web41106.mail.yahoo.com> <077281F6-B599-11D8-913B-000393468020@spvi.com> Message-ID: <5D6EB507-B599-11D8-913B-000393468020@spvi.com> Oh.. forgot to mention here.. testapp.osx is the filename of the Director projector that has the button handler... so the applescript is simply bringing the projector back to focus again. -steve On Jun 3, 2004, at 3:03 PM, Steve Spicklemire wrote: > Hi Xiaoqiu, > > Sorry.. yes I meant to send you something. I found that if I simply > save an applescript like this: > > tell application "testapp.osx" > activate > end tell > > As an 'application', called 'doActivate' (it's really saved as > 'doActivate.app'). > > Then in a handler in director (e.g., of a button); > > on click > _movie.goToNetPage("http:www.apple.com") > _player.open("","doActivate.app") > end > > It will open the URL in a browser, then run the applescript.. which > brings the app back to the front. > > enjoy, > -steve > > > On Jun 3, 2004, at 12:32 PM, xqbao wrote: > >> Hi Steve, >> >> I am wondering if you have solved the window focusing problem that the >> director movie had. Please let me know. >> >> Thanks! >> >> Xiaoqiu >> >> >> >> >> __________________________________ >> Do you Yahoo!? >> Friends. Fun. Try the all-new Yahoo! Messenger. >> http://messenger.yahoo.com/ >> _______________________________________________ >> Hecdev mailing list >> Hecdev@spvi.com >> http://mailman.spvi.com/mailman/listinfo/hecdev >> > From xqbao at yahoo.com Thu Jun 3 13:06:59 2004 From: xqbao at yahoo.com (xqbao) Date: Thu Jun 3 15:07:43 2004 Subject: [Hecdev] window focus In-Reply-To: <077281F6-B599-11D8-913B-000393468020@spvi.com> Message-ID: <20040603200659.87757.qmail@web41101.mail.yahoo.com> Hi Steve, Thank you very much! Xiaoqiu --- Steve Spicklemire wrote: > Hi Xiaoqiu, > > Sorry.. yes I meant to send you something. I found that if I simply > save an applescript like this: > > tell application "testapp.osx" > activate > end tell > > As an 'application', called 'doActivate' (it's really saved as > 'doActivate.app'). > > Then in a handler in director (e.g., of a button); > > on click > _movie.goToNetPage("http:www.apple.com") > _player.open("","doActivate.app") > end > > It will open the URL in a browser, then run the applescript.. which > brings the app back to the front. > > enjoy, > -steve > > > On Jun 3, 2004, at 12:32 PM, xqbao wrote: > > > Hi Steve, > > > > I am wondering if you have solved the window focusing problem that > the > > director movie had. Please let me know. > > > > Thanks! > > > > Xiaoqiu > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > Friends. Fun. Try the all-new Yahoo! Messenger. > > http://messenger.yahoo.com/ > > _______________________________________________ > > Hecdev mailing list > > Hecdev@spvi.com > > http://mailman.spvi.com/mailman/listinfo/hecdev > > > > _______________________________________________ > Hecdev mailing list > Hecdev@spvi.com > http://mailman.spvi.com/mailman/listinfo/hecdev __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/ From jkernick at iupui.edu Fri Jun 4 13:16:10 2004 From: jkernick at iupui.edu (jolene m. kernick) Date: Fri Jun 4 13:16:59 2004 Subject: [Hecdev] food graphics In-Reply-To: <1085772888.7380.jared@mail2000.com.tw> References: <1085772888.7380.jared@mail2000.com.tw> Message-ID: <1086372970.40c0bc6a85f50@webmail.iu.edu> Ren, I got your food graphics, they look great - thanks! I'm going to plug them into the last question .fla and upload it to the server this afternoon. Thanks again!! Jolene From xqbao at yahoo.com Fri Jun 11 12:22:03 2004 From: xqbao at yahoo.com (xqbao) Date: Fri Jun 11 14:22:52 2004 Subject: [Hecdev] flash question In-Reply-To: <1086372970.40c0bc6a85f50@webmail.iu.edu> Message-ID: <20040611192203.64796.qmail@web41106.mail.yahoo.com> Hi Steve, I was trying to create a vertical dynamic textfield. I rotated a dynamic textfield in flash, but it could not be seen. Could you help me with this, please? The following is my code: this.textFormat = new TextFormat(); textLFormat.color = 0xff0000; textLFormat.font = "Trebuchet MS"; textLFormat.align = "left"; textLFormat.size = 20; this.attachMovie("textClip", "textClip_5", 5); var thisText = eval("this.textClip_5"); thisText.createTextField("thisField", 1, 0, 0, 200, 40); thisTextField = eval("thisText.thisField"); thisTextField.text = "test text"; thisTextField.setTextFormat(this.textFormat); thisText._x = 50; thisText._y = 50; thisText._rotation=-90; Thanks! Xiaoqiu __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/ From skipcomer at iquest.net Fri Jun 11 16:46:17 2004 From: skipcomer at iquest.net (skip comer) Date: Fri Jun 11 16:36:37 2004 Subject: [Hecdev] flash question In-Reply-To: <20040611192203.64796.qmail@web41106.mail.yahoo.com> Message-ID: Hi Xiaoqiu, this is the problem I told you about... the only solution I know of is to make a movie clip that has several frames. Put a text box on each frame with static (not dynamic) text. Make sure each frame is a key frame, and put each text string you expect to need on the frames. Put a stop(); action on each frame. You can turn this movie clip at 90 degrees and it will still work. To get the text strings to display, use something like: textMC.goToAndStop(3); this will give you the text on frame 3. It's crude... but it works! --Skip On Friday, June 11, 2004, at 02:22 PM, xqbao wrote: > Hi Steve, > > I was trying to create a vertical dynamic textfield. I rotated a > dynamic textfield in flash, but it could not be seen. Could you help me > with this, please? > > > The following is my code: > > this.textFormat = new TextFormat(); > textLFormat.color = 0xff0000; > textLFormat.font = "Trebuchet MS"; > textLFormat.align = "left"; > textLFormat.size = 20; > > this.attachMovie("textClip", "textClip_5", 5); > var thisText = eval("this.textClip_5"); > thisText.createTextField("thisField", 1, 0, 0, 200, 40); > thisTextField = eval("thisText.thisField"); > thisTextField.text = "test text"; > thisTextField.setTextFormat(this.textFormat); > thisText._x = 50; > thisText._y = 50; > thisText._rotation=-90; > > Thanks! > > Xiaoqiu > > > > > __________________________________ > Do you Yahoo!? > Friends. Fun. Try the all-new Yahoo! Messenger. > http://messenger.yahoo.com/ > _______________________________________________ > Hecdev mailing list > Hecdev@spvi.com > http://mailman.spvi.com/mailman/listinfo/hecdev > From xqbao at yahoo.com Fri Jun 11 14:43:15 2004 From: xqbao at yahoo.com (xqbao) Date: Fri Jun 11 16:44:00 2004 Subject: [Hecdev] flash question In-Reply-To: Message-ID: <20040611214315.1058.qmail@web41106.mail.yahoo.com> Hi Skip, Thanks! I will apply this to the flash movie. Have a nice weekend in Milwaukee! Xiaoqiu --- skip comer wrote: > Hi Xiaoqiu, > > this is the problem I told you about... the only solution I know of > is > to make a movie clip that has several frames. Put a text box on each > > frame with static (not dynamic) text. Make sure each frame is a key > frame, and put each text string you expect to need on the frames. > Put > a stop(); action on each frame. You can turn this movie clip at 90 > degrees and it will still work. To get the text strings to display, > use something like: textMC.goToAndStop(3); this will give you the > text > on frame 3. It's crude... but it works! > > --Skip > > > On Friday, June 11, 2004, at 02:22 PM, xqbao wrote: > > > Hi Steve, > > > > I was trying to create a vertical dynamic textfield. I rotated a > > dynamic textfield in flash, but it could not be seen. Could you > help me > > with this, please? > > > > > > The following is my code: > > > > this.textFormat = new TextFormat(); > > textLFormat.color = 0xff0000; > > textLFormat.font = "Trebuchet MS"; > > textLFormat.align = "left"; > > textLFormat.size = 20; > > > > this.attachMovie("textClip", "textClip_5", 5); > > var thisText = eval("this.textClip_5"); > > thisText.createTextField("thisField", 1, 0, 0, 200, 40); > > thisTextField = eval("thisText.thisField"); > > thisTextField.text = "test text"; > > thisTextField.setTextFormat(this.textFormat); > > thisText._x = 50; > > thisText._y = 50; > > thisText._rotation=-90; > > > > Thanks! > > > > Xiaoqiu > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > Friends. Fun. Try the all-new Yahoo! Messenger. > > http://messenger.yahoo.com/ > > _______________________________________________ > > Hecdev mailing list > > Hecdev@spvi.com > > http://mailman.spvi.com/mailman/listinfo/hecdev > > > > _______________________________________________ > Hecdev mailing list > Hecdev@spvi.com > http://mailman.spvi.com/mailman/listinfo/hecdev __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/ From xqbao at yahoo.com Tue Jun 15 15:06:12 2004 From: xqbao at yahoo.com (xqbao) Date: Tue Jun 15 20:06:32 2004 Subject: [Hecdev] usrda, dri In-Reply-To: Message-ID: <20040615220612.54715.qmail@web41109.mail.yahoo.com> Hi Verlyn, Please let me know what you and other teachers think about the usrda and dri. Please find the attached file dri.pdf. Thanks! Xiaoqiu __________________________________ Do you Yahoo!? Yahoo! Mail is new and improved - Check it out! http://promotions.yahoo.com/new_mail -------------- next part -------------- A non-text attachment was scrubbed... Name: dri.pdf Type: application/pdf Size: 200788 bytes Desc: dri.pdf Url : http://mailman.spvi.com/pipermail/hecdev/attachments/20040615/10fe057a/dri-0001.pdf From maryp at iupui.edu Thu Jun 17 13:02:19 2004 From: maryp at iupui.edu (Mary Pietrowicz) Date: Thu Jun 17 13:03:10 2004 Subject: [Hecdev] Sample message with graph tag and nutrients Message-ID: <5.1.1.6.0.20040617125631.00b4f768@magiclamp.org> Hi, Here is a sample message from the RFID reader software showing use of graph selection tags and nutrient selection... XML-RPC message is: [{controlInfo=[{controlID=hbar}], foodInfo=[{weightID=1, foodListID=2, foodID=01085}], nutrientInfo=[{usdaAbbrevName=Tot_Lipid, usdaNutrNo=204, nutrientName=Fat}, {usdaAbbrevName=Vit_C, usdaNutrNo=401, nutrientName=Vitamin C}], dynamicGroupInfo=[], activationInfo=[{activationID=MagicWand}]}] Mary From skip at skipcomer.com Thu Jun 17 13:39:28 2004 From: skip at skipcomer.com (skip comer) Date: Thu Jun 17 13:29:33 2004 Subject: [Hecdev] Sample message with graph tag and nutrients In-Reply-To: <5.1.1.6.0.20040617125631.00b4f768@magiclamp.org> Message-ID: Hi Mary, here's the code Xiaoqiu wrote to translate the variations in nutrient names into standard form: tagObj["protein"] = "protein_grams"; tagObj["fat"] = "fat_grams"; tagObj["carbs"] = "carbohydrate_grams"; tagObj["carbohydrates"] = "carbohydrate_grams"; tagObj["fiber"] = "fiber_grams"; tagObj["cholesterol"] = "cholesterol_mg"; tagObj["vitamin A"] = "vitamin_a_iu"; tagObj["vitamin B1"] = "vitamin_b1_mg"; tagObj["vitamin B2"] = "vitamin_b2_mg"; tagObj["vitamin B3"] = "vitamin_b3_mg"; tagObj["vitamin C"] = "vitamin_c_mg"; tagObj["sodium"] = "sodium_mg"; tagObj["calcium"] = "calcium_mg"; tagObj["iron"] = "iron_mg"; I don't know whether this is case-sensitive or not, but you should get together with Xiaoqiu and do a little test to see that the values all match up. --Skip On Thursday, June 17, 2004, at 01:02 PM, Mary Pietrowicz wrote: > Hi, > > Here is a sample message from the RFID reader software showing use of > graph selection tags and nutrient selection... > > XML-RPC message is: > [{controlInfo=[{controlID=hbar}], foodInfo=[{weightID=1, foodListID=2, > foodID=01085}], nutrientInfo=[{usdaAbbrevName=Tot_Lipid, > usdaNutrNo=204, nutrientName=Fat}, {usdaAbbrevName=Vit_C, > usdaNutrNo=401, nutrientName=Vitamin C}], dynamicGroupInfo=[], > activationInfo=[{activationID=MagicWand}]}] > > Mary > > _______________________________________________ > Hecdev mailing list > Hecdev@spvi.com > http://mailman.spvi.com/mailman/listinfo/hecdev > From maryp at iupui.edu Thu Jun 17 14:12:48 2004 From: maryp at iupui.edu (Mary Pietrowicz) Date: Thu Jun 17 14:15:17 2004 Subject: [Hecdev] Info on Nutrient Selection Message-ID: <5.1.1.6.0.20040617135609.02779d10@magiclamp.org> Hi, Here is the spec on nutrient selection. I've used the names that were in the spec. There is a table in the doc that cross references the nutrient numbers used in the full and abbreviated USDA database with a human-readable consistent name suitable for a display. I'll always send all three things in the xml message. usdaAbbrevName is the column name of the nutrient in the USDA abbreviated database usdaNutrNo is the nutrient number used by the full USDA database nutrientName is a human-readable consistent name Mary -------------- next part -------------- A non-text attachment was scrubbed... Name: MakeaMeal_NutSelection_v1.0.doc Type: application/msword Size: 70144 bytes Desc: not available Url : http://mailman.spvi.com/pipermail/hecdev/attachments/20040617/2ec68f32/MakeaMeal_NutSelection_v1.0-0001.bin From steve at spvi.com Sat Jun 19 17:14:07 2004 From: steve at spvi.com (Steve Spicklemire) Date: Sat Jun 19 17:14:46 2004 Subject: [Hecdev] flash question In-Reply-To: <20040611192203.64796.qmail@web41106.mail.yahoo.com> References: <20040611192203.64796.qmail@web41106.mail.yahoo.com> Message-ID: Hi Xiaoqiu, Sorry I've been out of town a bunch lately.. but I'm back for a bit, at least through Thursday of this coming week. I saw Skip's reply to this one.. so maybe it's moot... but have you tried embedding fonts in the field? Should we get together this week? thanks, -steve On Jun 11, 2004, at 2:22 PM, xqbao wrote: > Hi Steve, > > I was trying to create a vertical dynamic textfield. I rotated a > dynamic textfield in flash, but it could not be seen. Could you help me > with this, please? > > > The following is my code: > > this.textFormat = new TextFormat(); > textLFormat.color = 0xff0000; > textLFormat.font = "Trebuchet MS"; > textLFormat.align = "left"; > textLFormat.size = 20; > > this.attachMovie("textClip", "textClip_5", 5); > var thisText = eval("this.textClip_5"); > thisText.createTextField("thisField", 1, 0, 0, 200, 40); > thisTextField = eval("thisText.thisField"); > thisTextField.text = "test text"; > thisTextField.setTextFormat(this.textFormat); > thisText._x = 50; > thisText._y = 50; > thisText._rotation=-90; > > Thanks! > > Xiaoqiu > > > > > __________________________________ > Do you Yahoo!? > Friends. Fun. Try the all-new Yahoo! Messenger. > http://messenger.yahoo.com/ > _______________________________________________ > Hecdev mailing list > Hecdev@spvi.com > http://mailman.spvi.com/mailman/listinfo/hecdev > From steve at spvi.com Sat Jun 19 17:23:22 2004 From: steve at spvi.com (Steve Spicklemire) Date: Sat Jun 19 17:24:02 2004 Subject: [Hecdev] flash question In-Reply-To: References: <20040611192203.64796.qmail@web41106.mail.yahoo.com> Message-ID: <461DECEB-C23F-11D8-A1B8-000393468020@spvi.com> Dumb example -------------- next part -------------- A non-text attachment was scrubbed... Name: textRot.fla Type: application/octet-stream Size: 15872 bytes Desc: not available Url : http://mailman.spvi.com/pipermail/hecdev/attachments/20040619/7554c572/textRot.exe -------------- next part -------------- On Jun 19, 2004, at 5:14 PM, Steve Spicklemire wrote: > Hi Xiaoqiu, > > Sorry I've been out of town a bunch lately.. but I'm back for a bit, > at least through Thursday of this coming week. I saw Skip's reply to > this one.. so maybe it's moot... but have you tried embedding fonts in > the field? > > Should we get together this week? > > thanks, > -steve > > On Jun 11, 2004, at 2:22 PM, xqbao wrote: > >> Hi Steve, >> >> I was trying to create a vertical dynamic textfield. I rotated a >> dynamic textfield in flash, but it could not be seen. Could you help >> me >> with this, please? >> >> >> The following is my code: >> >> this.textFormat = new TextFormat(); >> textLFormat.color = 0xff0000; >> textLFormat.font = "Trebuchet MS"; >> textLFormat.align = "left"; >> textLFormat.size = 20; >> >> this.attachMovie("textClip", "textClip_5", 5); >> var thisText = eval("this.textClip_5"); >> thisText.createTextField("thisField", 1, 0, 0, 200, 40); >> thisTextField = eval("thisText.thisField"); >> thisTextField.text = "test text"; >> thisTextField.setTextFormat(this.textFormat); >> thisText._x = 50; >> thisText._y = 50; >> thisText._rotation=-90; >> >> Thanks! >> >> Xiaoqiu >> >> >> >> >> __________________________________ >> Do you Yahoo!? >> Friends. Fun. Try the all-new Yahoo! Messenger. >> http://messenger.yahoo.com/ >> _______________________________________________ >> Hecdev mailing list >> Hecdev@spvi.com >> http://mailman.spvi.com/mailman/listinfo/hecdev >> > > _______________________________________________ > Hecdev mailing list > Hecdev@spvi.com > http://mailman.spvi.com/mailman/listinfo/hecdev > From skip at skipcomer.com Mon Jun 21 09:24:05 2004 From: skip at skipcomer.com (skip comer) Date: Mon Jun 21 09:14:01 2004 Subject: [Hecdev] meeting at RLHEC today In-Reply-To: <5.1.1.6.0.20040617135609.02779d10@magiclamp.org> Message-ID: Hi Mary, We are going to meet at RLHEC this afternoon to get things set for the presentation tomorrow. Will 2:30 work for you? --Skip From steve at spvi.com Mon Jun 21 09:21:59 2004 From: steve at spvi.com (Steve Spicklemire) Date: Mon Jun 21 09:22:37 2004 Subject: [Hecdev] meeting at RLHEC today In-Reply-To: References: Message-ID: <5B5E6322-C38E-11D8-827D-000393468020@spvi.com> Hi Skip, When is the presentation tomorrow? thanks, -steve On Jun 21, 2004, at 9:24 AM, skip comer wrote: > Hi Mary, > > We are going to meet at RLHEC this afternoon to get things set for the > presentation tomorrow. Will 2:30 work for you? > > --Skip > > _______________________________________________ > Hecdev mailing list > Hecdev@spvi.com > http://mailman.spvi.com/mailman/listinfo/hecdev > From maryp at iupui.edu Mon Jun 21 09:37:45 2004 From: maryp at iupui.edu (Mary Pietrowicz) Date: Mon Jun 21 09:38:39 2004 Subject: [Hecdev] meeting at RLHEC today In-Reply-To: References: <5.1.1.6.0.20040617135609.02779d10@magiclamp.org> Message-ID: <5.1.1.6.0.20040621093720.02c79c20@imap0.iupui.edu> Skip, 2:30 is great. See you there. Mary At 09:24 AM 6/21/2004 -0500, skip comer wrote: >Hi Mary, > >We are going to meet at RLHEC this afternoon to get things set for the >presentation tomorrow. Will 2:30 work for you? > >--Skip > >_______________________________________________ >Hecdev mailing list >Hecdev@spvi.com >http://mailman.spvi.com/mailman/listinfo/hecdev > > From rscomer at iupui.edu Mon Jun 21 09:36:20 2004 From: rscomer at iupui.edu (Comer, Robert Skipworth) Date: Mon Jun 21 09:39:56 2004 Subject: [Hecdev] meeting at RLHEC today Message-ID: Hi Steve, we're showing the project to the teachers at 9:00, then we're presenting to a group from Logansport at 9:30. The Logansport group is starting a new health ed center there, and there are discussions about RLHEC handling the programming for them. Julian wanted to have the team there, so you would be welcome if you can make it. If you think you want to stay for lunch, we should let the center know, so they will know how many people will be there. --Skip -----Original Message----- From: hecdev-bounces@spvi.com on behalf of Steve Spicklemire Sent: Mon 6/21/2004 9:21 AM To: HEC Development Cc: Steve Spicklemire Subject: Re: [Hecdev] meeting at RLHEC today Hi Skip, When is the presentation tomorrow? thanks, -steve On Jun 21, 2004, at 9:24 AM, skip comer wrote: > Hi Mary, > > We are going to meet at RLHEC this afternoon to get things set for the > presentation tomorrow. Will 2:30 work for you? > > --Skip > > _______________________________________________ > Hecdev mailing list > Hecdev@spvi.com > http://mailman.spvi.com/mailman/listinfo/hecdev > _______________________________________________ Hecdev mailing list Hecdev@spvi.com http://mailman.spvi.com/mailman/listinfo/hecdev -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/ms-tnef Size: 2940 bytes Desc: not available Url : http://mailman.spvi.com/pipermail/hecdev/attachments/20040621/5ff839b3/attachment.bin From steve at spvi.com Mon Jun 21 10:01:01 2004 From: steve at spvi.com (Steve Spicklemire) Date: Mon Jun 21 10:01:41 2004 Subject: [Hecdev] meeting at RLHEC today In-Reply-To: References: Message-ID: Hi Skip, I'll come today, if that's OK, and we can figure out what makes sense. I've got a meeting at U of I at 1pm, but I should be able to get out in time to help out with the preparations. thanks! -steve On Jun 21, 2004, at 9:36 AM, Comer, Robert Skipworth wrote: > Hi Steve, > > we're showing the project to the teachers at 9:00, then we're > presenting to a group from Logansport at 9:30. The Logansport group > is starting a new health ed center there, and there are discussions > about RLHEC handling the programming for them. Julian wanted to have > the team there, so you would be welcome if you can make it. If you > think you want to stay for lunch, we should let the center know, so > they will know how many people will be there. > > --Skip > > -----Original Message----- > From: hecdev-bounces@spvi.com on behalf of Steve Spicklemire > Sent: Mon 6/21/2004 9:21 AM > To: HEC Development > Cc: Steve Spicklemire > Subject: Re: [Hecdev] meeting at RLHEC today > > Hi Skip, > > When is the presentation tomorrow? > > thanks, > -steve > > On Jun 21, 2004, at 9:24 AM, skip comer wrote: > >> Hi Mary, >> >> We are going to meet at RLHEC this afternoon to get things set for the >> presentation tomorrow. Will 2:30 work for you? >> >> --Skip >> >> _______________________________________________ >> Hecdev mailing list >> Hecdev@spvi.com >> http://mailman.spvi.com/mailman/listinfo/hecdev >> > > _______________________________________________ > Hecdev mailing list > Hecdev@spvi.com > http://mailman.spvi.com/mailman/listinfo/hecdev > > > > _______________________________________________ > Hecdev mailing list > Hecdev@spvi.com > http://mailman.spvi.com/mailman/listinfo/hecdev From jared at mail2000.com.tw Thu Jun 24 22:41:15 2004 From: jared at mail2000.com.tw (Ren-Jiun) Date: Thu Jun 24 09:42:21 2004 Subject: [Hecdev] Today's Demo Message-ID: <1088088075.20516.jared@mail2000.com.tw> Hi, Skip I am sorry, I seems got a bad cold last night. I cannot stop cough and feel very uncomfortable this morning. I may not come in lab until noon. I am also really sorry I won't go to today's demo. Wish everything will go well in demo. Ren RenJiun Huang Indianapolis, IN USA URL: http://vis.uits.iupui.edu/~renhuang/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.spvi.com/pipermail/hecdev/attachments/20040624/94c02afc/attachment.html