Questions tagged [alice]

Alice is an innovative 3D programming environment that makes it easy to create an animation for telling a story, playing an interactive game, or a video to share on the web.

Alice is an innovative 3D programming environment that makes it easy to create an animation for telling a story, playing an interactive game, or a video to share on the web. Alice is a freely available teaching tool designed to be a student's first exposure to object-oriented programming. It allows students to learn fundamental programming concepts in the context of creating animated movies and simple video games. In Alice, 3-D objects (e.g., people, animals, and vehicles) populate a virtual world and students create a program to animate the objects.

In Alice's interactive interface, students drag and drop graphic tiles to create a program, where the instructions correspond to standard statements in a production oriented programming language, such as Java, C++, and C#. Alice allows students to immediately see how their animation programs run, enabling them to easily understand the relationship between the programming statements and the behavior of objects in their animation. By manipulating the objects in their virtual world, students gain experience with all the programming constructs typically taught in an introductory programming course.

http://www.alice.org

24 questions
0
votes
1 answer

Can't start Alice HTTP Inspector. Please add NavigatorKey to your application

navigatorKey has already been added to the code, still it shows error(red line) under the navigatorKey. @override Widget build(BuildContext context) { return WillPopScope( navigatorKey: _alice.getNavigatorKey(), child: Theme( data:…
0
votes
1 answer

Alice 3 crashing upon opening in Linux Mint 19.2

Alice 3 crashes every time I open it and select a default scene. OS: Linux Mint 19.2 Terminal output: libpng warning: iCCP: known incorrect sRGB profile version: 3.5.0.0+build229 investigate: hierarchyChanged seems to not be actually changing the…
Clifton
  • 29
  • 4
0
votes
1 answer

artificial intelligence - implement named entity recognition into AIML

Good day, everyone. So I found a paper that implement named entity recognition as pattern in AIML. As far as I know, in AIML must be uppercase and have no punctuation in it. But in the paper that I mention earlier, they use their pattern with…
Irfan HP
  • 123
  • 4
0
votes
1 answer

Jar from Alice project in Netbeans not working

After using Netbeans to create a runnable jar from an existing Alice 3 project, I get the following error: system property: org.alice.ide.rootDirectory is not set and it seems to me that it is set. I am using Linux Mint. Java works. Other…
0
votes
1 answer

Changing the color of the ground in Alice?

I'm super new to programming and taking my first class now. I'm trying to change the color of the moon in Alice 3.2 (so instead of a gray moon with craters I'd have a green moon with all the craters and everything). This seems like the kind of thing…
0
votes
1 answer

Symfony2 API test POST using YAML/Faker

I'm building a REST API using Symfony2. I am already using Liip bundle for my functional tests together with Alice and Faker to genereate all the fixtures. However, I have little trouble when I want to directly test POST calls themselves as long…
MarcSitges
  • 282
  • 3
  • 11
0
votes
1 answer

I can't see the output of NSTask - objective-c JAVA

Here is my code: NSTask *setupTask = [NSTask new]; [setupTask setLaunchPath:@"/bin/sh"]; [setupTask setArguments:[NSArray arrayWithObject:@"/applications/jarvis/brain/server.sh"]]; [setupTask setCurrentDirectoryPath:@"/"]; NSPipe *outputPipeSetup =…
objectiveccoder001
  • 2,929
  • 10
  • 43
  • 71
-1
votes
1 answer

Functions - different meanings in different languages?

I am a very novice programmer, taking a course on the fundamentals of Java. In Alice 3, a function is defined as: A Function computes and answers a question about an object, such as, “What is its width or height?" I have used Blockly before and in…
-3
votes
2 answers

Error while importing library in android studio

i'm using android studio to make a chatbot but i get error while importing alice libraries " Can't resolve alicebot" import org.alicebot.ab.Bot; import org.alicebot.ab.Chat;
Omar Khaled
  • 13
  • 1
  • 4
1
2