Search found 12 matches

by t-rex22
Thu Apr 01, 2010 11:23 am
Forum: Off-Topic
Topic: iPhone controls
Replies: 2
Views: 3704

Re: iPhone controls

Okay, thanks for the report!
by t-rex22
Thu Apr 01, 2010 1:01 am
Forum: Off-Topic
Topic: iPhone controls
Replies: 2
Views: 3704

iPhone controls

I cannot seem to find any reference to whether revMobile can use the iPhone "picker" (i.e. spinner) control. Can anyone tell me whether it is available, and if so, how can I implement it into my app?

Thanks
by t-rex22
Thu Feb 18, 2010 1:19 am
Forum: Talking LiveCode
Topic: Problems compiling app with RunRev 4
Replies: 20
Views: 14138

Re: Problems compiling app with RunRev 4

Apparently my problem was tied to using a trial version of Studio. Once I purchased the license the destroystack command appeared to work.
by t-rex22
Tue Feb 16, 2010 12:25 pm
Forum: Talking LiveCode
Topic: Problems compiling app with RunRev 4
Replies: 20
Views: 14138

Re: Problems compiling app with RunRev 4

I'm finding an issue where destroystacks (set during standalone creation) is not actually removing the stacks from memory on Windows PC's. It appears to work on Mac, but not Window's.
by t-rex22
Fri Aug 28, 2009 10:17 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Pulldown text selection to select column in CSV file
Replies: 5
Views: 5232

That worked, thank you very much!!!
by t-rex22
Thu Aug 27, 2009 11:29 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Pulldown text selection to select column in CSV file
Replies: 5
Views: 5232

A rough sample of my data is: Time,Velocity,ProbeAccel ms,m/s,m/s^2 -1.00000,1.00000,-4.56789 ... I have so far succeeded at filling the pulldown menu with the header row (row 1) but I have not yet figured out how to allow the user to pick one of the options (Velocity or ProbeAccel) and have "it" pl...
by t-rex22
Thu Aug 27, 2009 8:36 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Pulldown text selection to select column in CSV file
Replies: 5
Views: 5232

Pulldown text selection to select column in CSV file

I am placing the header row from a CSV file into a pulldown button. I want to have the user selection ("ColumnValue") in the pulldown set the column to be plotted. repeat for each line aLine in tFileData put item 1 of aLine & comma & ColumnValue & return after tChartData end repeat The button appear...
by t-rex22
Mon Aug 24, 2009 2:43 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Fill pulldown with CSV file header
Replies: 4
Views: 5232

Yes! Thanks BvG, replacing the comma delimiter with a return works for loading the menu items.

Now, I have to figure out how to make the selection(s) use the desired column(s) of data.

thnx!!
by t-rex22
Mon Aug 24, 2009 1:12 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Fill pulldown with CSV file header
Replies: 4
Views: 5232

Thanks for the input SparkOut. Unfortunately, when I stated that I had succeeded at filling the menu I was not clear (not even truly accurate). I filled the menu with the header row of my file but the entire row is "put" as one item. I was thinking of attempting a switch/case method (as you describe...
by t-rex22
Mon Aug 24, 2009 11:36 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Fill pulldown with CSV file header
Replies: 4
Views: 5232

Fill pulldown with CSV file header

I'm trying to read the header of a CSV file and put "it" into a pulldown list (i.e., menu) which will allow me to select a column of data to be used as the 'Y' axis chart data with the 'X' axis always being the first column. The number of columns of data and names of each column could be different f...
by t-rex22
Wed Apr 01, 2009 4:59 pm
Forum: Talking LiveCode
Topic: Separate CSV columns into files
Replies: 2
Views: 2690

Thanks Bernd, that was very helpful!!
by t-rex22
Tue Mar 31, 2009 7:17 pm
Forum: Talking LiveCode
Topic: Separate CSV columns into files
Replies: 2
Views: 2690

Separate CSV columns into files

I have files of comma separated data with columns: time, velocity, acceleration, and displacement (for example). I want to write files that combine time with each of these columns (i.e., time and velocity, time and acceleration, etc...). I cannot figure out how to call each column and then write onl...