Search the web
Sign In
New User? Sign Up
chipmunkbasicforum · Chipmunk Basic Forum - Discussions about Chipmunk Basic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Click here for the latest updates on Groups Message search

Messages

  Messages Help
Advanced
Messages 512 - 541 of 831   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
512
I am trying to write to a serial port (which is actually a USB device) via Chipmunk BASIC in Windows XP. This works when I open the port, print something to...
mhberkson
Offline Send Email
Nov 1, 2007
9:35 pm
513
What commands do you use to open the port on which version of Chipmunk Basic? I didn't know that this would work at all......
rhnlogic
Offline Send Email
Nov 1, 2007
10:05 pm
514
open "COM9:9600,8,N,1" for output as #1 version 3.6.4b1, 2007-Aug...
mhberkson
Offline Send Email
Nov 2, 2007
12:47 am
515
The documentation for 4 quadrant atn says that the function takes the parameters as atn(x,y). It looks like the results are given for atn(y,x). So the...
mhberkson
Offline Send Email
Nov 3, 2007
2:22 am
516
I'm using the Mac OSX version of Chipmunk Basicin a Mac Mini with a dotMac account and iDisk. How do I open a sequential file for input or output from/to the...
wmeevans
Offline Send Email
Nov 7, 2007
7:24 am
517
Try calling the eof() function to flush file output. ... Try: x = eof(1) This should flush file writes on Mac OS X and linux, not sure about Windows XP or...
rhnlogic
Offline Send Email
Nov 7, 2007
7:30 am
518
I gather that this function is intended to replae the call "launch",appname$ function that was in the non-OSX version of CB. But I sure haven't been able to...
wmeevans
Offline Send Email
Nov 9, 2007
8:20 am
519
The "launch" macfunction may only work with Mac OS Classic apps. For Chipmunk Basic under OS X, try the sys() system call: sys("open /Applications/iTunes.app")...
rhnlogic
Offline Send Email
Nov 9, 2007
8:27 am
520
Is there a way I can send the output from CB to another program? Mitch...
mhberkson
Offline Send Email
Nov 10, 2007
1:50 am
521
... With linux and Mac OS X one can use the open "pipe:" command. This isn't available in Mac OS Classic. I have no idea whether any Windows OS supports pipes...
rhnlogic
Offline Send Email
Nov 10, 2007
6:39 am
522
Hello! I have built a collection of data files, all alike (same length), written in a format of my own. Now I want to convert them to a more portable format...
charles.trois
Offline Send Email
Nov 11, 2007
9:19 am
523
Is there a limit on how many methods or much code a class object may contain? I have a class with 13 subroutines, and the program hangs (with Chipmunk Basic at...
Jim DeVona
jd_anoved
Offline Send Email
Nov 11, 2007
3:34 pm
524
I've updated my Chipmunk Basic language module for TextWrangler/ BBEdit. Named subroutines now appear in the function popup menu, making it easier to navigate...
Jim DeVona
jd_anoved
Offline Send Email
Nov 12, 2007
9:19 pm
525
... Thanks, Jim. This sounded interesting so I took a look at it. Unfortunately, I found that Text Wrangler 2.2 (currently 2.2.1) requires OSX 10.4. Since I am...
Jeff Avery
jeffz8user
Offline Send Email
Nov 13, 2007
5:26 pm
526
... I couldn't figure out how to recognize functions properly with prior versions of TextWrangler; 2.2 introduced more flexible pattern matching options for...
Jim DeVona
jd_anoved
Offline Send Email
Nov 13, 2007
9:23 pm
527
A very naive test case with 1 instantiated object of a class with 1 public data variable and 13 public method subroutines seems to return from the object's...
rhnlogic
Offline Send Email
Nov 14, 2007
3:17 am
528
... The function popup menu is a very pleasant feature indeed. However, I observe that the menu length is limited to 19 items, which is not enough for my...
charles.trois
Offline Send Email
Nov 14, 2007
11:52 am
529
... There isn't a limit. I have a program with 57 subroutines, all of which appear in the menu. It's conceivable that some sort of syntax (error or otherwise) ...
Jim DeVona
jd_anoved
Offline Send Email
Nov 14, 2007
2:08 pm
530
... O.K. I'm running OSX 10.3.9 and TextWrangler 2.1.3. I downloaded <http://anoved.net/files/cbastw-nofunc.plist.zip>, unzipped and got the file cbastw.plist....
Jeff Avery
jeffz8user
Offline Send Email
Nov 14, 2007
3:33 pm
531
... As explained at the link given in my initial announcement (http:// anoved.net/cbas.html#tw), put the file in the folder ~/Library/ Application...
Jim DeVona
jd_anoved
Offline Send Email
Nov 14, 2007
4:01 pm
532
... Sorry about that. I put the file in the Languages folder and it worked. There is no popup in the left bottom but I found the languages sub-menu in the Text...
Jeff Avery
jeffz8user
Offline Send Email
Nov 14, 2007
5:53 pm
533
... Thanks. As you suggested, there was some confusion, but I just can't understand exactly what it was. The trouble arose with a single sub: when this was put...
charles.trois
Offline Send Email
Nov 15, 2007
11:09 am
534
... I don't know. I'm glad you figured out a work-around, but I can't explain the problem, either. What sort of blocks were in that subroutine? One limitation...
Jim DeVona
jd_anoved
Offline Send Email
Nov 15, 2007
5:33 pm
535
... Nothing very special: each "block" is just a for-next statement, with about 60 lines of very plain code inside. ... No, no; nothing as fancy as that. ... ...
charles.trois
Offline Send Email
Nov 16, 2007
11:31 am
536
Hello, I read the interesting thread about "Updated TextWrangler/BBEdit syntax module", and downloaded TW to check it out. Jim, the Language Module you wrote...
Rob Keister
rskeister
Offline Send Email
Nov 20, 2007
4:08 pm
537
... Good question. The answer is that I simply don't use line numbers! I write the code in TW, save it as a .bas file, and run it in CB, which automatically...
Jim DeVona
jd_anoved
Offline Send Email
Nov 20, 2007
6:11 pm
538
nevermind. I substituted "TextWrangler" for "TextEdit" in the te2cbas script and it works the same way for TW now. rob ______________________________ How do...
Rob Keister
rskeister
Offline Send Email
Nov 21, 2007
8:17 am
539
Hello, First of all, great program. My kids started to have interest in programming and when I searched for BASIC programming on Mac, wow, I feel like I hit...
Kojiro Shiraiwa
kojiroshiraiwa
Offline Send Email
Nov 23, 2007
5:44 pm
540
if you put the .pict or .jpg file is in the same folder as the CB application then just name the file: graphics PICT x,y, "baseball.PICT" I made a resources...
Rob Keister
rskeister
Offline Send Email
Nov 24, 2007
6:26 am
541
Thanks Rob, Yes, I tried this before. I try to copy your method by creating "resources" folder in "Chipmunk" folder in Applications folder, and placed...
SHIRAIWA KOJIRO
kojiroshiraiwa
Offline Send Email
Nov 24, 2007
6:00 pm
Messages 512 - 541 of 831   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help