Wish List for RevMobile

2010-04-14 Thread Alejandro Tejada

Hi all,

After reading an article written
by Charles Moir, software Architect
at Xara LTD where he wrote:
http://charlesmoir.com/page2.htm
(click at: For the techies, more details here)

The ARM processor is fast. Having spent
nearly 10 years writing native ARM assembler
code I know that it’s perhaps the easiest,
most elegant assembly language out there.
I’ve written high-level apps that were 100%
pure ARM assembly.

my great good wish for RevMobile is that
Runrev contact Charles Moir for consulting... :-)

And, at the same time, talk about the possibility
of licensing Xara Vector graphics engine... :D

Read here:
http://www.xara.com/uk/products/xtreme/performance

Just imagine, the extraordinary performance of this
Vector graphics engine coupled with revTalk!

Alejandro

-- 
View this message in context: 
http://n4.nabble.com/Wish-List-for-RevMobile-tp1839345p1839345.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Wish List for RevMobile

2010-04-14 Thread Richmond Mathewson

 On 14/04/2010 09:24, Alejandro Tejada wrote:

Hi all,

After reading an article written
by Charles Moir, software Architect
at Xara LTD where he wrote:
http://charlesmoir.com/page2.htm
(click at: For the techies, more details here)

The ARM processor is fast. Having spent
nearly 10 years writing native ARM assembler
code I know that it’s perhaps the easiest,
most elegant assembly language out there.
I’ve written high-level apps that were 100%
pure ARM assembly.

my great good wish for RevMobile is that
Runrev contact Charles Moir for consulting... :-)

And, at the same time, talk about the possibility
of licensing Xara Vector graphics engine... :D

Read here:
http://www.xara.com/uk/products/xtreme/performance

Just imagine, the extraordinary performance of this
Vector graphics engine coupled with revTalk!

Alejandro


I have no doubts about Xara Xtreme as I use the Free-for-Linux version
on my Ubuntu box:

http://www.xaraxtreme.org/

[Wow; there is another reason to have a computer in one's HAM (Home Area 
Mess)

that runs Linux]

it is now Open Source!
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: specialFolderPath

2010-04-14 Thread Klaus on-rev
Hi Charles,

 Thanks Devin and Mark,
 
 Your suggestions solved my problem. But I do have one question: if I do use
 slash will this also work on Windows? Do I need to specify a back slash for
 Windows?

Rev uses always the SLASH / as a path delimiter internaylly on ALL platforms!
You only need to use the backslash if you use a pathname inside of a SHELL 
command on windows.


Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.com

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Rev multiline String read and write

2010-04-14 Thread Shani
HI, 

 

Like  via socket

write 20  to socket tSocket

and 

read from socket tSocket until return

 

 

.

Can I write multi line string in the following way,

Mean if I use x axis and y axis in java and connect through Socket.

 

write 20  to socket tSocket  --xa=20 in java

write 233  to socket tSocket -ya=233 in java

 

 

and this command read all the string from java 

read from socket tSocket until return

 

Regards,

SHANI

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Object Speed ?

2010-04-14 Thread Shani
HO can i change the speed of different objects.

 

  move graphic xyz from the loc of grc xyz to the loc of grc (xz) in 2
seconds.

 

 

When I apply this command this wait for 2 second then go toward the goal,
but I need it like when I have 4 objects and four different goal. 

It goes toward goal with different speed mean some fast and some slow like
that .

 

 

How can I set their speed.

 

 

Regards,

SHANI

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Object Speed ?

2010-04-14 Thread Klaus on-rev
Hi Shani,

 HO can i change the speed of different objects.
 
  move graphic xyz from the loc of grc xyz to the loc of grc (xz) in 2
 seconds.
 
 
 
 When I apply this command this wait for 2 second then go toward the goal,
 but I need it like when I have 4 objects and four different goal. 
 
 It goes toward goal with different speed mean some fast and some slow like
 that .
 
 
 How can I set their speed.

use lock moves first, then move all objects and then use unlock moves:
...
lock moves
## or - set the lockmoves to true

move grc 1 from X,Y to Y,Z in 2 secs
move grc 2 from Z,W to H,K in 3 secs
## more moving objects here...
unlock moves
...

unlock moves (or set the lockmoves to false) acts like the starting shot in 
a race :-)

 Regards,
 
 SHANI

Best from germany

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.com

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: Object Speed ?

2010-04-14 Thread Shani
HI, 
Thanks

It works same as i mention before. 
http://www.4shared.com/file/iyM6-FY7/test.html


Example:-
like consider that I have two object (car) they both start same time. One is
moving on speed 75km/h and other is on 120 km/h, the car which is on 120
km/h reach before and other one reach later.

So that I want to move like that on different speed.

REGARDS,
SHANI

-Original Message-
From: use-revolution-boun...@lists.runrev.com
[mailto:use-revolution-boun...@lists.runrev.com] On Behalf Of Klaus on-rev
Sent: Wednesday, April 14, 2010 10:29 AM
To: How to use Revolution
Subject: Re: Object Speed ?

Hi Shani,

 HO can i change the speed of different objects.
 
  move graphic xyz from the loc of grc xyz to the loc of grc (xz) in 2
 seconds.
 
 
 
 When I apply this command this wait for 2 second then go toward the goal,
 but I need it like when I have 4 objects and four different goal. 
 
 It goes toward goal with different speed mean some fast and some slow like
 that .
 
 
 How can I set their speed.

use lock moves first, then move all objects and then use unlock moves:
...
lock moves
## or - set the lockmoves to true

move grc 1 from X,Y to Y,Z in 2 secs
move grc 2 from Z,W to H,K in 3 secs
## more moving objects here...
unlock moves
...

unlock moves (or set the lockmoves to false) acts like the starting shot
in a race :-)

 Regards,
 
 SHANI

Best from germany

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.com

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Object Speed ?

2010-04-14 Thread Klaus on-rev
Hi Shani,

 HI, 
 Thanks
 
 It works same as i mention before. 
 http://www.4shared.com/file/iyM6-FY7/test.html
 
 
 Example:-
 like consider that I have two object (car) they both start same time. One is
 moving on speed 75km/h and other is on 120 km/h, the car which is on 120
 km/h reach before and other one reach later.
 
 So that I want to move like that on different speed.

oh, sorry, I forgot important things - without waiting!

...
lock moves
## or - set the lockmoves to true

move grc 1 from X,Y to Y,Z in 2 secs without waiting
move grc 2 from Z,W to H,K in 3 secs without waiting
## more moving objects here...
unlock moves
...

Because I forgot to add without waiting the first graphic moves and blocked
the moves of the other objects! That's why this did not work as exspected!

Tested and works!
You had this already in your comented lines in your test stack ;-)

 REGARDS,
 SHANI

Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.com

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: Object Speed ?

2010-04-14 Thread Shani
Thanks  

Its done

It is working now.

Bundle of thanks

Regards,
SHANI 

-Original Message-
From: use-revolution-boun...@lists.runrev.com
[mailto:use-revolution-boun...@lists.runrev.com] On Behalf Of Klaus on-rev
Sent: Wednesday, April 14, 2010 11:05 AM
To: How to use Revolution
Subject: Re: Object Speed ?

Hi Shani,

 HI, 
 Thanks
 
 It works same as i mention before. 
 http://www.4shared.com/file/iyM6-FY7/test.html
 
 
 Example:-
 like consider that I have two object (car) they both start same time. One
is
 moving on speed 75km/h and other is on 120 km/h, the car which is on 120
 km/h reach before and other one reach later.
 
 So that I want to move like that on different speed.

oh, sorry, I forgot important things - without waiting!

...
lock moves
## or - set the lockmoves to true

move grc 1 from X,Y to Y,Z in 2 secs without waiting
move grc 2 from Z,W to H,K in 3 secs without waiting
## more moving objects here...
unlock moves
...

Because I forgot to add without waiting the first graphic moves and
blocked
the moves of the other objects! That's why this did not work as exspected!

Tested and works!
You had this already in your comented lines in your test stack ;-)

 REGARDS,
 SHANI

Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.com

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Display the message ?

2010-04-14 Thread Shani
When one object reach the other object (goal)

How can I display comments that reach the goal.

 

  move graphic XYZ from the loc of grc XYZ to the loc of grc (ABC) in
2 seconds without waiting  

--corrected by Klaus

 

Display Reached on Goal

 

 

Regars,

SHANI

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Display the message ?

2010-04-14 Thread Klaus on-rev
Hi Shani,

 When one object reach the other object (goal)
 How can I display comments that reach the goal.
   move graphic XYZ from the loc of grc XYZ to the loc of grc (ABC) in
 2 seconds without waiting  
 
 --corrected by Klaus

my pleasure :-)

 Display Reached on Goal

answer Reached the goal!

Read the Rev dictionary about answer and the related ask commands.

 Regars,
 
 SHANI

Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.com

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: Display the message ?

2010-04-14 Thread Shani
HI, 

Thanks
Using answer Reached the goal


Display message before the object reached to the goal. 
I want to do this, when object reached on Goal then it display the message.

Regards,
SHANI

-Original Message-
From: use-revolution-boun...@lists.runrev.com
[mailto:use-revolution-boun...@lists.runrev.com] On Behalf Of Klaus on-rev
Sent: Wednesday, April 14, 2010 12:30 PM
To: How to use Revolution
Subject: Re: Display the message ?

Hi Shani,

 When one object reach the other object (goal)
 How can I display comments that reach the goal.
   move graphic XYZ from the loc of grc XYZ to the loc of grc (ABC)
in
 2 seconds without waiting  
 
 --corrected by Klaus

my pleasure :-)

 Display Reached on Goal

answer Reached the goal!

Read the Rev dictionary about answer and the related ask commands.

 Regars,
 
 SHANI

Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.com

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Display the message ?

2010-04-14 Thread Klaus on-rev
Hi Shani,

 HI, 
 
 Thanks
 Using answer Reached the goal
 
 Display message before the object reached to the goal. 
 I want to do this, when object reached on Goal then it display the message.

check the movestopped message in the dictionary!

Put this into the card script:
on movestopped tTarget
   put the target
end movestopped

This will put the name of the object that has stopped moving in the message box 
like
graphic xyz

 Regards,
 SHANI

Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.com

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: How do I use substrings in regular expressions?

2010-04-14 Thread Michael Kann
Terry, 

Here's a somewhat generic script to find any HTML element by its ID and make 
the replacements you need. It doesn't use regex. I apologize.


on mouseUp

put ID4 into chosen_id
put ID= into id_part_uno
put quotechosen_idquote into id_part_dos
put id_part_uno  id_part_dos into id_target
--
put fld 1 into  v -- original data
put numToChar(255) into z -- arbitrary item delimiter
set the itemDelimiter to z
--
-- put a marker before and after the image elements
-- to confine them to their own item
--
put IMG SRC into item_start
put  into item_stop
replace item_start with zitem_start in v
replace item_stop with item_stopz in v
--
repeat for each item i in v

if id_target is in i then
put flashblocks/editors/Mediablock.swf into bad
put flashblocks/data/resize/home1_holder_txt_IDPLACE_mb.jpg into good
replace bad with good in i
replace IDPLACE with chosen_id in i
put i after h
end if

end repeat
--
-- remove the item separators
--
replace z with empty in h
put h into fld 2 -- holds output
end mouseUp


I noticed that your jpg image doesn't have an ID attribute. In the above script 
the ID remains the same. That is probably a good idea since the ID is embedded 
in the jpg name and it would be confusing to have an ID attribute that was 
different. You'll need an ID to manipulate it with javascript (which I'm sure 
you know).


Hope this at least gives you something to think about.

Mike

--- On Tue, 4/13/10, Terry Vogelaar tvogel...@de-mare.nl wrote:

 From: Terry Vogelaar tvogel...@de-mare.nl
 Subject: How do I use substrings in regular expressions?
 To: use-revolution@lists.runrev.com
 Date: Tuesday, April 13, 2010, 1:55 PM
 I cannot get this regex to work:
 
 put replacetext(textBlock,q(IMG SRC='([^']*)'
 ([^]*) ID='  idNumber  ' ([^]*)),
 q(IMG SRC='  newPath  ' \2 \3)) into
 textBlock
 
 The purpose is to replace:
 IMG SRC=flashblocks/editors/Mediablock.swf
 WIDTH=300 HEIGHT=100 ID=ID3 ALIGN=left VSPACE=2
 HSPACE=8
 with:
 IMG
 SRC=flashblocks/data/resize/home1_holder_txt_ID3_mb.jpg
 WIDTH=300 HEIGHT=100 ALIGN=left VSPACE=2
 HSPACE=8
 
 The \2 and \3 part should insert the substrings matching
 ([^]*). This is working in BBEdit, but Rev gave me
 literally \2 \3: 
 IMG
 SRC=flashblocks/data/resize/home1_holder_txt_ID3_mb.jpg \2
 \3
 
 I cannot use the normal replace command, because it should
 only work when the ID attribute is matched. 
 
 Terry___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage
 your subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 


  
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Replace command

2010-04-14 Thread David Coker
Howdy folks!
This is just to follow up with a gigantic THANK YOU! to all who have
replied to my message...

After 2-3 days now of working with the wordOffset function and a lot
of head scratching to figure out how to implement it into my code
properly, I finally found the perfect combination this morning. :-)

I ended up building a test stack that represents all of the different
combination's of data that I'm working with and it now looks to be a
complete success. (believe me that I had some very serious doubts for
awhile)

I should be able to work the sample code into my application this
afternoon and move on to the finish line with this little baby.

Again, thank you very much for the great help and patience where required!

Best regards,
David C.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: How do I use substrings in regular expressions?

2010-04-14 Thread Richard Gaskin

Michael Kann wrote:
 Here's a somewhat generic script to find any HTML element by its ID
 and make the replacements you need. It doesn't use regex. I apologize.

No need to apologize. RegEx is convenient, but it's able to offer that 
convenience usually at the price of performance.


It almost always takes more lines of code to do the same thing with 
chunk expressions as one can do in RegEx, but is often much faster.


And when someone else writes the code, as you've done here, you get both 
speed and convenience. :)


--
 Richard Gaskin
 Fourth World
 Rev training and consulting: http://www.fourthworld.com
 Webzine for Rev developers: http://www.revjournal.com
 revJournal blog: http://revjournal.com/blog.irv

 
 
 on mouseUp

 put ID4 into chosen_id
 put ID= into id_part_uno
 put quotechosen_idquote into id_part_dos
 put id_part_uno  id_part_dos into id_target
 --
 put fld 1 into  v -- original data
 put numToChar(255) into z -- arbitrary item delimiter
 set the itemDelimiter to z
 --
 -- put a marker before and after the image elements
 -- to confine them to their own item
 --
 put IMG SRC into item_start
 put  into item_stop
 replace item_start with zitem_start in v
 replace item_stop with item_stopz in v
 --
 repeat for each item i in v

 if id_target is in i then
 put flashblocks/editors/Mediablock.swf into bad
 put flashblocks/data/resize/home1_holder_txt_IDPLACE_mb.jpg into good
 replace bad with good in i
 replace IDPLACE with chosen_id in i
 put i after h
 end if

 end repeat
 --
 -- remove the item separators
 --
 replace z with empty in h
 put h into fld 2 -- holds output
 end mouseUp


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


OT: Microsoft is really annoying!

2010-04-14 Thread Wilhelm Sanke
Since this morning - after 2 automatic updates on my WindowsXP PC, which 
took place when I shut my computer down after the first session - I am 
constantly being pestered by the Microsoft Internet Explorer popping up 
when I connect to the net. When I close the Explorer with the dialog 
Internet Explorer is your default web browser? Yes, No (or similar) 
with the no button, it closes, but reappears after a while.


This is a real nuisance!

Anybody else has experienced this, too?
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: Microsoft is really annoying!

2010-04-14 Thread Neal Campbell
Obviously you have:
1. Automatic updates which is not a great idea, the most I recommend is
Download and notify.
2. It probably installed IE8 in the update which has, by default, check
whether its the default browser everytime it starts up. You can go into the
options and turn this check off.

73


Neal Campbell
Abroham Neal Software
www.abrohamnealsoftware.com
(540) 645 5394 NEW PHONE NUMBER

Amateur Radio: K3NC
Blog: http://www.abrohamnealsoftware.com/blog/
DXBase bug reports: email to ca...@dxbase.fogbugz.com
Abroham Neal forums: http:/www.abrohamnealsoftware.com/community/





On Wed, Apr 14, 2010 at 11:24 AM, Wilhelm Sanke sa...@hrz.uni-kassel.dewrote:

 Since this morning - after 2 automatic updates on my WindowsXP PC, which
 took place when I shut my computer down after the first session - I am
 constantly being pestered by the Microsoft Internet Explorer popping up when
 I connect to the net. When I close the Explorer with the dialog Internet
 Explorer is your default web browser? Yes, No (or similar) with the no
 button, it closes, but reappears after a while.

 This is a real nuisance!

 Anybody else has experienced this, too?
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: Microsoft is really annoying!

2010-04-14 Thread Jeff Massung
So, I'm a Mac user, and I very often debate as to whether or not I want to
deal with these sorts of Windows issues over the Mac ones (yes, we Mac users
also have issues ;-)).

As for your issue, I think you can just go into the Internet Explorer
options and under advanced (iirc) is an option for Check to see if IE is
your default browser. Just turn that off.

...or you could switch to Chrome/FireFox.

Jeff M.


On Wed, Apr 14, 2010 at 10:24 AM, Wilhelm Sanke sa...@hrz.uni-kassel.dewrote:

 Since this morning - after 2 automatic updates on my WindowsXP PC, which
 took place when I shut my computer down after the first session - I am
 constantly being pestered by the Microsoft Internet Explorer popping up when
 I connect to the net. When I close the Explorer with the dialog Internet
 Explorer is your default web browser? Yes, No (or similar) with the no
 button, it closes, but reappears after a while.

 This is a real nuisance!


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [slightly OT] Off for a couple of days

2010-04-14 Thread Malte Pfaff-Brill
And just after I wrote the mail, my wife went into labour. g I must have felt 
it in the office. Anyhow...  Thanks for the kind words everyone!

And please welcome the next revolutionary, Hannes Leander Pfaff. :-)

All the best,

Malte___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [slightly OT] Off for a couple of days

2010-04-14 Thread Mike Brown
Congratulations!


Mike Brown
Cyber-NY Interactive
212-475-2721 Ext. 306
www.cyber-ny.com
m...@cyber-ny.com

Follow Us On Twitter
http://www.twitter.com/cyberny



On Apr 14, 2010, at 11:38 AM, Malte Pfaff-Brill wrote:

 And just after I wrote the mail, my wife went into labour. g I must have 
 felt it in the office. Anyhow...  Thanks for the kind words everyone!
 
 And please welcome the next revolutionary, Hannes Leander Pfaff. :-)
 
 All the best,
 
 Malte___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [slightly OT] Off for a couple of days

2010-04-14 Thread Devin Asay
Congratulations, Malte! Hope wife and baby son are doing well.

Regards,

Devin

On Apr 14, 2010, at 9:38 AM, Malte Pfaff-Brill wrote:

 And just after I wrote the mail, my wife went into labour. g I must have 
 felt it in the office. Anyhow...  Thanks for the kind words everyone!
 
 And please welcome the next revolutionary, Hannes Leander Pfaff. :-)

Devin Asay
Humanities Technology and Research Support Center
Brigham Young University

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: Microsoft is really annoying!

2010-04-14 Thread Wilhelm Sanke

I had just written:

Since this morning - after 2 automatic updates on my WindowsXP PC, 
which took place when I shut my computer down after the first session 
- I am constantly being pestered by the Microsoft Internet Explorer 
popping up when I connect to the net. When I close the Explorer with 
the dialog Internet Explorer is your default web browser? Yes, No 
(or similar) with the no button, it closes, but reappears after a while.


This is a real nuisance!

Anybody else has experienced this, too? 



In the meantime during a half hour this happened 4 times.

Last time the website

http://www.planet49.com/cgi-bin/wingame.pl?partner_pk=607wingame_pk=74sub_id=

came up with the Internet Explorer, featuring iMac, iPhone, and iPad, 
and telling me to choose my gift - and to solve a problem before and 
submit my data.


and 5 minutes later while I am writing this:

http://www.freelotto.com/register.asp?skin=Rainbownoepu=1partner=1060965affiliateid=

congratulating me to have won 2,087.56 $.

Happily my - apparently my somewhat obsolete and slow- virus-detecting 
program stepped in at that point and I deleted the trojan. Hope this is 
the end of the story.


Sorry to have bothered  you with this crap.

Regards,

Wilhelm Sanke

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [slightly OT] Off for a couple of days

2010-04-14 Thread Richmond Mathewson

 On 14/04/2010 18:38, Malte Pfaff-Brill wrote:

And just after I wrote the mail, my wife went into labour.g  I must have felt 
it in the office. Anyhow...  Thanks for the kind words everyone!

And please welcome the next revolutionary, Hannes Leander Pfaff. :-)

All the best,


Bravo; a Leander rather than a Hero - but Heroic nevertheless!
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: Microsoft is really annoying!

2010-04-14 Thread Michael Kann
The free program Adaware from lavasoft.com might help. I've used it to clean 
out malware.


--- On Wed, 4/14/10, Wilhelm Sanke sa...@hrz.uni-kassel.de wrote:

 From: Wilhelm Sanke sa...@hrz.uni-kassel.de
 Subject: Re: OT: Microsoft is really annoying!
 To: RunRev Ltd use-revolution@lists.runrev.com
 Date: Wednesday, April 14, 2010, 11:09 AM
 I had just written:
 
  Since this morning - after 2 automatic updates on my
 WindowsXP PC, which took place when I shut my computer down
 after the first session - I am constantly being pestered by
 the Microsoft Internet Explorer popping up when I connect to
 the net. When I close the Explorer with the dialog Internet
 Explorer is your default web browser? Yes, No (or similar)
 with the no button, it closes, but reappears after a
 while.
  
  This is a real nuisance!
  
  Anybody else has experienced this, too? 
 
 
 In the meantime during a half hour this happened 4 times.
 
 Last time the website
 
 http://www.planet49.com/cgi-bin/wingame.pl?partner_pk=607wingame_pk=74sub_id=
 
 came up with the Internet Explorer, featuring iMac, iPhone,
 and iPad, and telling me to choose my gift - and to solve a
 problem before and submit my data.
 
 and 5 minutes later while I am writing this:
 
 http://www.freelotto.com/register.asp?skin=Rainbownoepu=1partner=1060965affiliateid=
 
 congratulating me to have won 2,087.56 $.
 
 Happily my - apparently my somewhat obsolete and slow-
 virus-detecting program stepped in at that point and I
 deleted the trojan. Hope this is the end of the story.
 
 Sorry to have bothered  you with this crap.
 
 Regards,
 
 Wilhelm Sanke
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage
 your subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Stopping Handlers

2010-04-14 Thread J. Landman Gay

Andrew Kluthe wrote:

I have a moveStack handler that triggers sometimes accidentally before all of
my windows open and causes it to error out and not finish opening what is
needed for the application.

Can I use lock messages in my preOpenStack to keep the moveStack from being
handled, or am I misunderstanding lock messages?


You could. Or you could put a check at the top of the handler that looks 
to see if the last window exists yet:


 if there is no window lastWindowToOpen then pass movestack

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: Microsoft is really annoying!

2010-04-14 Thread Wilhelm Sanke

Thanks for the various hints!

As browsers on Windows I use Firefox and SeaMonkey, the open-source 
successor of Netscape, the latter on recommendation of our Information 
Science department. SeaMonkey, like the older Netscape, preserves the 
unity of web browsing and mail services.


Regards,

Wilhelm Sanke
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: specialFolderPath

2010-04-14 Thread J. Landman Gay

Klaus on-rev wrote:


Rev uses always the SLASH / as a path delimiter internaylly on ALL platforms!
You only need to use the backslash if you use a pathname inside of a SHELL 
command on windows.


Which brings up an interface question. My app lets users choose a folder 
and then displays the folder path in a field. I've never bothered to 
change it in the past, but now I'm wondering if I should translate all 
the slashes to backslashes just for display on Windows, and then change 
them back to regular slashes in the script when I need to work with the 
path.


What do others do?

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: specialFolderPath

2010-04-14 Thread Devin Asay

On Apr 14, 2010, at 11:12 AM, J. Landman Gay wrote:

 Klaus on-rev wrote:
 
 Rev uses always the SLASH / as a path delimiter internaylly on ALL platforms!
 You only need to use the backslash if you use a pathname inside of a SHELL 
 command on windows.
 
 Which brings up an interface question. My app lets users choose a folder 
 and then displays the folder path in a field. I've never bothered to 
 change it in the past, but now I'm wondering if I should translate all 
 the slashes to backslashes just for display on Windows, and then change 
 them back to regular slashes in the script when I need to work with the 
 path.
 
 What do others do?

Don't ask me, my guideline on most things is WWJD? (What Would Jacque Do?).

Devin


Devin Asay
Humanities Technology and Research Support Center
Brigham Young University

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: specialFolderPath

2010-04-14 Thread J. Landman Gay

Devin Asay wrote:

On Apr 14, 2010, at 11:12 AM, J. Landman Gay wrote:


Klaus on-rev wrote:


Rev uses always the SLASH / as a path delimiter internaylly on ALL platforms!
You only need to use the backslash if you use a pathname inside of a SHELL 
command on windows.
Which brings up an interface question. My app lets users choose a folder 
and then displays the folder path in a field. I've never bothered to 
change it in the past, but now I'm wondering if I should translate all 
the slashes to backslashes just for display on Windows, and then change 
them back to regular slashes in the script when I need to work with the 
path.


What do others do?


Don't ask me, my guideline on most things is WWJD? (What Would Jacque Do?).


LOL! I gave up trying to be perfect. I'd rather be real than ideal.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


OT: MacPro is playing up - any tips?

2010-04-14 Thread David Bovill
Today my MacPro suddenly decided to freeze - with pretty green stipes and
pink squares all over the screen. Restarting only worked after resetting
PRAM and rebooting in Single User Mode. It's been a very long time since
I've had a problem with an OSX machine - so I am wandering if there are any
diagnostic tips out there? If feels like an Xwindows / video card issue -
but I am wandering what steps I can take to help diagnose the issue?

Thanks in advance :(
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: MacPro is playing up - any tips?

2010-04-14 Thread Neal Campbell
I had almost the exact same thing a year ago and ultimately it would not
boot at all (no chime, nothing). From what I understand, if it doesn't
chime, it didn't pass the POST routine on the motherboard.

You are right on, it turned out that the graphics card had burned out. I
took it as an opportunity to upgrade to the 3870 radeon card which was
crazily expensive versus what you get in the PC world but you gotta pay for
no driver issues someway!

Best wishes
Neal Campbell
Abroham Neal Software
www.abrohamnealsoftware.com
(540) 645 5394 NEW PHONE NUMBER




On Wed, Apr 14, 2010 at 1:46 PM, David Bovill da...@vaudevillecourt.tvwrote:

 Today my MacPro suddenly decided to freeze - with pretty green stipes and
 pink squares all over the screen. Restarting only worked after resetting
 PRAM and rebooting in Single User Mode. It's been a very long time since
 I've had a problem with an OSX machine - so I am wandering if there are any
 diagnostic tips out there? If feels like an Xwindows / video card issue -
 but I am wandering what steps I can take to help diagnose the issue?

 Thanks in advance :(
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: MacPro is playing up - any tips?

2010-04-14 Thread David Bovill
Thanks Neal - any way to test it is the graphics card without going out and
buying another one - I don't have any spare cards to hand?

The machine and graphics card is just over a of year old - so I guess I'll
just have to go out and buy a new card, it was a farily expensive NVidia
effort hmmm can't even see how to buy one on the Apple UK Online Store.

On 14 April 2010 18:50, Neal Campbell nealk...@gmail.com wrote:

 I had almost the exact same thing a year ago and ultimately it would not
 boot at all (no chime, nothing). From what I understand, if it doesn't
 chime, it didn't pass the POST routine on the motherboard.

 You are right on, it turned out that the graphics card had burned out. I
 took it as an opportunity to upgrade to the 3870 radeon card which was
 crazily expensive versus what you get in the PC world but you gotta pay for
 no driver issues someway!

 Best wishes
 Neal Campbell
 Abroham Neal Software
 www.abrohamnealsoftware.com
 (540) 645 5394 NEW PHONE NUMBER




 On Wed, Apr 14, 2010 at 1:46 PM, David Bovill da...@vaudevillecourt.tv
 wrote:

  Today my MacPro suddenly decided to freeze - with pretty green stipes and
  pink squares all over the screen. Restarting only worked after resetting
  PRAM and rebooting in Single User Mode. It's been a very long time since
  I've had a problem with an OSX machine - so I am wandering if there are
 any
  diagnostic tips out there? If feels like an Xwindows / video card issue -
  but I am wandering what steps I can take to help diagnose the issue?
 
  Thanks in advance :(
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: MacPro is playing up - any tips?

2010-04-14 Thread Bob Sneidar
Hi Dave. 

If you take it to Apple and complain that the video card died just over a year 
they may take care of you. Sometimes they have extended warranty programs that 
you wouldn't know about unless you go ask. If you got the Applecare Protection 
Plan then it is still under warranty and you should DEFINITELY take it into 
Apple.

Bob


On Apr 14, 2010, at 11:15 AM, David Bovill wrote:

 Thanks Neal - any way to test it is the graphics card without going out and
 buying another one - I don't have any spare cards to hand?
 
 The machine and graphics card is just over a of year old - so I guess I'll
 just have to go out and buy a new card, it was a farily expensive NVidia
 effort hmmm can't even see how to buy one on the Apple UK Online Store.
 
 On 14 April 2010 18:50, Neal Campbell nealk...@gmail.com wrote:
 
 I had almost the exact same thing a year ago and ultimately it would not
 boot at all (no chime, nothing). From what I understand, if it doesn't
 chime, it didn't pass the POST routine on the motherboard.
 
 You are right on, it turned out that the graphics card had burned out. I
 took it as an opportunity to upgrade to the 3870 radeon card which was
 crazily expensive versus what you get in the PC world but you gotta pay for
 no driver issues someway!
 
 Best wishes
 Neal Campbell
 Abroham Neal Software
 www.abrohamnealsoftware.com
 (540) 645 5394 NEW PHONE NUMBER
 
 
 
 
 On Wed, Apr 14, 2010 at 1:46 PM, David Bovill da...@vaudevillecourt.tv
 wrote:
 
 Today my MacPro suddenly decided to freeze - with pretty green stipes and
 pink squares all over the screen. Restarting only worked after resetting
 PRAM and rebooting in Single User Mode. It's been a very long time since
 I've had a problem with an OSX machine - so I am wandering if there are
 any
 diagnostic tips out there? If feels like an Xwindows / video card issue -
 but I am wandering what steps I can take to help diagnose the issue?
 
 Thanks in advance :(
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: MacPro is playing up - any tips?

2010-04-14 Thread David Bovill
Thanks Bob - will give it a go!


On 14 April 2010 19:38, Bob Sneidar b...@twft.com wrote:

 Hi Dave.

 If you take it to Apple and complain that the video card died just over a
 year they may take care of you. Sometimes they have extended warranty
 programs that you wouldn't know about unless you go ask. If you got the
 Applecare Protection Plan then it is still under warranty and you should
 DEFINITELY take it into Apple.

 Bob


 On Apr 14, 2010, at 11:15 AM, David Bovill wrote:

  Thanks Neal - any way to test it is the graphics card without going out
 and
  buying another one - I don't have any spare cards to hand?
 
  The machine and graphics card is just over a of year old - so I guess
 I'll
  just have to go out and buy a new card, it was a farily expensive NVidia
  effort hmmm can't even see how to buy one on the Apple UK Online
 Store.
 
  On 14 April 2010 18:50, Neal Campbell nealk...@gmail.com wrote:
 
  I had almost the exact same thing a year ago and ultimately it would not
  boot at all (no chime, nothing). From what I understand, if it doesn't
  chime, it didn't pass the POST routine on the motherboard.
 
  You are right on, it turned out that the graphics card had burned out. I
  took it as an opportunity to upgrade to the 3870 radeon card which was
  crazily expensive versus what you get in the PC world but you gotta pay
 for
  no driver issues someway!
 
  Best wishes
  Neal Campbell
  Abroham Neal Software
  www.abrohamnealsoftware.com
  (540) 645 5394 NEW PHONE NUMBER
 
 
 
 
  On Wed, Apr 14, 2010 at 1:46 PM, David Bovill da...@vaudevillecourt.tv
  wrote:
 
  Today my MacPro suddenly decided to freeze - with pretty green stipes
 and
  pink squares all over the screen. Restarting only worked after
 resetting
  PRAM and rebooting in Single User Mode. It's been a very long time
 since
  I've had a problem with an OSX machine - so I am wandering if there are
  any
  diagnostic tips out there? If feels like an Xwindows / video card issue
 -
  but I am wandering what steps I can take to help diagnose the issue?
 
  Thanks in advance :(
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution

 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: MacPro is playing up - any tips?

2010-04-14 Thread Neal Campbell
Take the card with you, they might be able to test it for you!

73
Neal

On Wednesday, April 14, 2010, David Bovill david.bov...@gmail.com wrote:
 Thanks Bob - will give it a go!


 On 14 April 2010 19:38, Bob Sneidar b...@twft.com wrote:

 Hi Dave.

 If you take it to Apple and complain that the video card died just over a
 year they may take care of you. Sometimes they have extended warranty
 programs that you wouldn't know about unless you go ask. If you got the
 Applecare Protection Plan then it is still under warranty and you should
 DEFINITELY take it into Apple.

 Bob


 On Apr 14, 2010, at 11:15 AM, David Bovill wrote:

  Thanks Neal - any way to test it is the graphics card without going out
 and
  buying another one - I don't have any spare cards to hand?
 
  The machine and graphics card is just over a of year old - so I guess
 I'll
  just have to go out and buy a new card, it was a farily expensive NVidia
  effort hmmm can't even see how to buy one on the Apple UK Online
 Store.
 
  On 14 April 2010 18:50, Neal Campbell nealk...@gmail.com wrote:
 
  I had almost the exact same thing a year ago and ultimately it would not
  boot at all (no chime, nothing). From what I understand, if it doesn't
  chime, it didn't pass the POST routine on the motherboard.
 
  You are right on, it turned out that the graphics card had burned out. I
  took it as an opportunity to upgrade to the 3870 radeon card which was
  crazily expensive versus what you get in the PC world but you gotta pay
 for
  no driver issues someway!
 
  Best wishes
  Neal Campbell
  Abroham Neal Software
  www.abrohamnealsoftware.com
  (540) 645 5394 NEW PHONE NUMBER
 
 
 
 
  On Wed, Apr 14, 2010 at 1:46 PM, David Bovill da...@vaudevillecourt.tv
  wrote:
 
  Today my MacPro suddenly decided to freeze - with pretty green stipes
 and
  pink squares all over the screen. Restarting only worked after
 resetting
  PRAM and rebooting in Single User Mode. It's been a very long time
 since
  I've had a problem with an OSX machine - so I am wandering if there are
  any
  diagnostic tips out there? If feels like an Xwindows / video card issue
 -
  but I am wandering what steps I can take to help diagnose the issue?
 
  Thanks in advance :(
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution

 

-- 
Neal Campbell
Abroham Neal Software
www.abrohamnealsoftware.com
(540) 645 5394 NEW PHONE NUMBER

Amateur Radio: K3NC
Blog: http://www.abrohamnealsoftware.com/blog/
DXBase bug reports: email to ca...@dxbase.fogbugz.com
Abroham Neal forums: http:/www.abrohamnealsoftware.com/community/
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


specialfolderpath(preferences) on windows

2010-04-14 Thread David Glasgow
Hello folks,

I wrote script to save a text file to specialFolderPath(Preferences)  and 
then reference it on subsequent startups.  I had planned to write an 
alternative bit of script for Windows using specialFolderPath(26), but hadn't 
quite got round to it.

I am using Rev Studio on Mac, so I have to build check, build check etc. on 
Windows.  I built to check something else on Windows, only to find that the 
specialFolderPath(Preferences) script seems to be working.  (It's usually 
things I expect to work, not working, not the other way around, so this was an 
unusual experience).

The file was saved, and found on subsequent startups.  So is 
specialFolderPath(Preferences) cross platform?  If so, where is it?  I tried 
searching for my file but couldn't find it.

David Glasgow
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: How do I use substrings in regular expressions?

2010-04-14 Thread Terry Vogelaar
Hi Michael,

I agree with Richard and want to thank you for the script. I don't really 
demand a regex; I just need to replace the SWF reference with the appropriate 
JPG. 

I used a regex because I often use GREP in BBEdit. But apparently the 
implementation in runrev is a bit different. It should be based on PCRE, and 
that supports this behavior. Might this be a little bug? Whatever the case, I 
am helped!

You noticed the ID was gone in the IMG tag with the JPG. I removed it because I 
didn't need it. But it's cool with me if it stays in. 

Terry

 Michael Kann wrote:
 Here's a somewhat generic script to find any HTML element by its ID
 and make the replacements you need. It doesn't use regex. I apologize.
 
 No need to apologize. RegEx is convenient, but it's able to offer that 
 convenience usually at the price of performance.
 
 It almost always takes more lines of code to do the same thing with 
 chunk expressions as one can do in RegEx, but is often much faster.
 
 And when someone else writes the code, as you've done here, you get both 
 speed and convenience. :)
 
 --
  Richard Gaskin
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: How to generate a runnable Mac standalone from Windows

2010-04-14 Thread Douglas

Hi Kay,
I agree with some of your comments, but in Richard's case it is 
irrelevant, as he specifically wants his installer to install both 
flavours to the same destination - such as a USB flash drive
Unfortunately most USB drives are formatted in FAT or FAT32 - can these 
file systems even recognise the executable bit?


How many car owners don't know how to test the tyre pressure. (or even 
know that you are supposed to!)

There is water in the engine? - where?
etc. etc.

Computer users are just the same -
What do you mean I shouldn't have washed it?
You never told me there was a switch at the back!
etc. etc.

Brains are an optional extra, no matter what people are doing.

Douglas

On 19/03/2010 04:08, Kay C Lan wrote:

Sorry, taking your thread off topic here, this probably should be
directed to your blog, but I see this simply as how experienced do you
want to make your users. Yes I am an experienced Mac user so I'm
thoroughly happy with DMGs, I like to be involved in where I put
things on my Mac, and IMO, I think newbies should become involved as
well. Yes, a little confusing to start with, but not too difficult to
master.

To take this way OT, let me liken it to Toyota's stuck on full
throttle. Some people think the deaths cause by these incidents were
the result of faulty engineering. I know the deaths were caused by
poor driver training. You see, far too many people put their car in
Drive and then their mind in Neutral. Not one of these accidents would
have occurred if the person was driving a Manual car. A manual driver
would have engaged the clutch and/or selected Neutral, and instinctive
manoeuver. Automatic drivers seem to forget that they have a means to
disconnect the engine from the wheels. Also, both have the ability to
turn the ignition off, but neither are likely to think of this as they
haven't been taught it - hazardous as you need to remember the
steering lock and only do it on straight roads.

So, to me, Installers are like Automatics, loved by masses but
inevitably create an 'mind in Neutral' situation where the vast
majority of users really haven't got a clue. Is the rampant spread of
viruses, spam and phishing the result of vastly intelligent
instigators or the Pavlov's automatic response of a Users who's mind
is in Neutral?

IMO, computers are far more important to us than the car. Computers
are more and more intricately entwined into almost all aspects of our
lives. It's a fine line, because they are so entwined, they need to be
easy, intuitive, productive, not frustrating. But because the are so
entwined I feel we need to be somewhat involved in the process. If you
can't figure out how to open a DMG and drag an App to the folder or
your desire, how are you ever going to get your head around running
back-up and archive software and actually restoring a single corrupted
file?

DMG is the Mac standard, and whilst it might not be the best solution,
if everyone does the same thing, it shouldn't take long to catch the
drift. On the other hand, I'm highly skeptical of files that don't
install the DMG way or use the Mac Installer. I've Trashed Apps
straight off the bat that have installed themselves. Or, to put it
another way, if the Automatic starts misbehaving, I treat it like a
Manual and force it into the gear I want.

If a person really can't grasp the concept of opening a DMG, and
dragging the file to a folder after 3 or 4 attempts, then I guess I
wouldn't be surprised if they send a large sum money to an Nigerian
Bank account after receiving an important email because it was all in
CAPITALS.

(I just note that Jeffery posted to the list a possible bogus email
doing the rounds. Obviously doesn't open emails with his brain in
Neutral and I bet he knows how to work a DMG)

Just my Mac Dollars worth

:-)
PS Should Toyota's be better engineered - Yes
PPS Should drivers be better trained - Absolutely
PPPS Strange how there can only be one Neutral, your Brain or the
Transmission, but never both.
S In my Fantasy World all drivers would be trained and tested on
bringing a car to a halt after suffering a brake failure at 55 mph.
___
   


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: specialfolderpath(preferences) on windows

2010-04-14 Thread Paul D. DeRocco
 From: David Glasgow

 I wrote script to save a text file to
 specialFolderPath(Preferences)  and then reference it on
 subsequent startups.  I had planned to write an alternative bit
 of script for Windows using specialFolderPath(26), but hadn't
 quite got round to it.

 I am using Rev Studio on Mac, so I have to build check, build
 check etc. on Windows.  I built to check something else on
 Windows, only to find that the specialFolderPath(Preferences)
 script seems to be working.  (It's usually things I expect to
 work, not working, not the other way around, so this was an
 unusual experience).

 The file was saved, and found on subsequent startups.  So is
 specialFolderPath(Preferences) cross platform?  If so, where is
 it?  I tried searching for my file but couldn't find it.

No, it's not supported in Windows. Entering

put specialFolderPath(Preferences)

in the message box returns nothing in Windows. So your file would have gone
into the root if you added a slash and your file name.

On advice from folks in the forum, I use specialFolderPath(asup) on the
Mac, and specialFolderPath(26) on Windows, and append a slash and my app
name, to get the name of the folder to put my app preferences in. If the
folder doesn't exist, I create it.

--

Ciao,   Paul D. DeRocco
Paulmailto:pdero...@ix.netcom.com

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: Microsoft is really annoying!

2010-04-14 Thread Andrew Kluthe

Sounds like you got some hijacks or some other kind of malware. 

Look it over with Malware Bytes Anti-Malware. 

I haven't used Adaware in quite a few years, but it might give you some
solutions as well.
-- 
View this message in context: 
http://n4.nabble.com/OT-Microsoft-is-really-annoying-tp1839949p1840457.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [slightly OT] Off for a couple of days

2010-04-14 Thread Thomas McGrath III
AWESOME..  Congratulations and welcome to Hannes Leander Pfaff 


Tom McGrath III
Lazy River Software
http://lazyriver.on-rev.com
3mcgr...@comcast.net

I Can Speak - Communication for the rest of us...
http://mypad.lazyriver.on-rev.com

I Can Speak on the iPad Store
http://itunes.apple.com/us/app/i-can-speak/id364733279?mt=8

DeMoted - Have you DeMoted Someone today?
http://demoted.lazyriver.on-rev.com

DeMoted on the iTune App Store
http://itunes.apple.com/us/app/demoted/id355925236?mt=8











On Apr 14, 2010, at 11:38 AM, Malte Pfaff-Brill wrote:

 And just after I wrote the mail, my wife went into labour. g I must have 
 felt it in the office. Anyhow...  Thanks for the kind words everyone!
 
 And please welcome the next revolutionary, Hannes Leander Pfaff. :-)
 
 All the best,
 
 Malte___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


[OT] iPads delayed internationally

2010-04-14 Thread Sarah Reichelt
http://www.apple.com/pr/library/2010/04/14advisory_ipad.html

If all you Americans who bought iPads could please return them ASAP,
then maybe Steve would change his mind and I could get mine sooner.

Thanks,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [slightly OT] Off for a couple of days

2010-04-14 Thread stephen barncard
Thomas.. is your iPad app made with rev?


sqb

On 14 April 2010 14:21, Thomas McGrath III mcgra...@mac.com wrote:

 AWESOME..  Congratulations and welcome to Hannes Leander Pfaff 


 Tom McGrath III
 Lazy River Software
 http://lazyriver.on-rev.com
 3mcgr...@comcast.net

 I Can Speak - Communication for the rest of us...
 http://mypad.lazyriver.on-rev.com

 I Can Speak on the iPad Store
 http://itunes.apple.com/us/app/i-can-speak/id364733279?mt=8

 DeMoted - Have you DeMoted Someone today?
 http://demoted.lazyriver.on-rev.com

 DeMoted on the iTune App Store
 http://itunes.apple.com/us/app/demoted/id355925236?mt=8











 On Apr 14, 2010, at 11:38 AM, Malte Pfaff-Brill wrote:

  And just after I wrote the mail, my wife went into labour. g I must
 have felt it in the office. Anyhow...  Thanks for the kind words everyone!
 
  And please welcome the next revolutionary, Hannes Leander Pfaff. :-)
 
  All the best,
 
  Malte___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution

 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution




-- 
-
Stephen Barncard
Back home in SF
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] iPads delayed internationally

2010-04-14 Thread J. Landman Gay

Sarah Reichelt wrote:

http://www.apple.com/pr/library/2010/04/14advisory_ipad.html

If all you Americans who bought iPads could please return them ASAP,
then maybe Steve would change his mind and I could get mine sooner.


And then will you send me any extras you get?

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [slightly OT] Off for a couple of days

2010-04-14 Thread Andre Garzia
it can't be made with rev or it would not be accepted into the app store...
it must be objc

On Wed, Apr 14, 2010 at 8:11 PM, stephen barncard 
stephenrevoluti...@barncard.com wrote:

 Thomas.. is your iPad app made with rev?


 sqb

 On 14 April 2010 14:21, Thomas McGrath III mcgra...@mac.com wrote:

  AWESOME..  Congratulations and welcome to Hannes Leander Pfaff 
 
 
  Tom McGrath III
  Lazy River Software
  http://lazyriver.on-rev.com
  3mcgr...@comcast.net
 
  I Can Speak - Communication for the rest of us...
  http://mypad.lazyriver.on-rev.com
 
  I Can Speak on the iPad Store
  http://itunes.apple.com/us/app/i-can-speak/id364733279?mt=8
 
  DeMoted - Have you DeMoted Someone today?
  http://demoted.lazyriver.on-rev.com
 
  DeMoted on the iTune App Store
  http://itunes.apple.com/us/app/demoted/id355925236?mt=8
 
 
 
 
 
 
 
 
 
 
 
  On Apr 14, 2010, at 11:38 AM, Malte Pfaff-Brill wrote:
 
   And just after I wrote the mail, my wife went into labour. g I must
  have felt it in the office. Anyhow...  Thanks for the kind words
 everyone!
  
   And please welcome the next revolutionary, Hannes Leander Pfaff. :-)
  
   All the best,
  
   Malte___
   use-revolution mailing list
   use-revolution@lists.runrev.com
   Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
   http://lists.runrev.com/mailman/listinfo/use-revolution
 
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 



 --
 -
 Stephen Barncard
 Back home in SF
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution




-- 
http://www.andregarzia.com All We Do Is Code.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [slightly OT] Off for a couple of days

2010-04-14 Thread stephen barncard
I was hoping for a test case.

On 14 April 2010 16:20, Andre Garzia an...@andregarzia.com wrote:

 it can't be made with rev or it would not be accepted into the app store...
 it must be objc

 On Wed, Apr 14, 2010 at 8:11 PM, stephen barncard 
 stephenrevoluti...@barncard.com wrote:

  Thomas.. is your iPad app made with rev?
 
 
  sqb
 
  On 14 April 2010 14:21, Thomas McGrath III mcgra...@mac.com wrote:
 
   AWESOME..  Congratulations and welcome to Hannes Leander Pfaff 
  
  
   Tom McGrath III
   Lazy River Software
   http://lazyriver.on-rev.com
   3mcgr...@comcast.net
  
   I Can Speak - Communication for the rest of us...
   http://mypad.lazyriver.on-rev.com
  
   I Can Speak on the iPad Store
   http://itunes.apple.com/us/app/i-can-speak/id364733279?mt=8
  
   DeMoted - Have you DeMoted Someone today?
   http://demoted.lazyriver.on-rev.com
  
   DeMoted on the iTune App Store
   http://itunes.apple.com/us/app/demoted/id355925236?mt=8
  
  
  
  
  
  
  
  
  
  
  
   On Apr 14, 2010, at 11:38 AM, Malte Pfaff-Brill wrote:
  
And just after I wrote the mail, my wife went into labour. g I must
   have felt it in the office. Anyhow...  Thanks for the kind words
  everyone!
   
And please welcome the next revolutionary, Hannes Leander Pfaff. :-)
   
All the best,
   
Malte___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
   subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution
  
   ___
   use-revolution mailing list
   use-revolution@lists.runrev.com
   Please visit this url to subscribe, unsubscribe and manage your
   subscription preferences:
   http://lists.runrev.com/mailman/listinfo/use-revolution
  
 
 
 
  --
  -
  Stephen Barncard
  Back home in SF
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 



 --
 http://www.andregarzia.com All We Do Is Code.
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution




-- 
-
Stephen Barncard
Back home in SF
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [slightly OT] Off for a couple of days

2010-04-14 Thread Tereza Snyder

On Apr 14, 2010, at 10:38 AM, Malte Pfaff-Brill wrote:

 And just after I wrote the mail, my wife went into labour. g I must have 
 felt it in the office. Anyhow...  Thanks for the kind words everyone!
 
 And please welcome the next revolutionary, Hannes Leander Pfaff. :-)

Welcome Hannes! 

Congratulations to you, Malte, and to your wife, who must be thankful you 
finished your work work work  the week before.

t___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [slightly OT] Off for a couple of days

2010-04-14 Thread Thomas McGrath III
My iPad app was designed in RunRev (as are most of my ideas) and then built in 
ObjC in xCode with xib files done in Interface Builder. The XML/PLIST creator 
and editor for all of the pList files was built in RunRev as well. The logic is 
pretty much the same but the syntax of course is very different.

I use pLists for the databases (4 of them) and in my ObjC code I use pretty 
much the same switch/case and if/thens and repeats. It is the API calls that 
are very different. The biggest problem I have coming from RunRev is Global 
variables (I have to use NSUserDefaults for a lot of my needs) and poor string 
manipulation(string to integer, string to methods, parameters, etc., what I 
would do for 'put word 2 to -1 of it into gVariable'). I don't know how many 
times I have said 'If only this were in rev! I would know just the quickest way 
to do this and be done by now.' Still this entire app was thought out, 
designed, built and debugged and tested in under four weeks, just in time for 
inclusion in the app store grand opening. That's pretty cool. 

My next app will be designed in RunRev and then I will build it in ObjC (unless 
RevMobile is done) and will have a RunRev backend on my on-rev server. I 
foresee many levels of integration like that in my apps, no matter what happens 
with RevMobile.

HTHs


Tom McGrath III
Lazy River Software
http://lazyriver.on-rev.com
3mcgr...@comcast.net

I Can Speak - Communication for the rest of us...
http://mypad.lazyriver.on-rev.com

I Can Speak on the iPad Store
http://itunes.apple.com/us/app/i-can-speak/id364733279?mt=8

DeMoted - Have you DeMoted Someone today?
http://demoted.lazyriver.on-rev.com

DeMoted on the iTune App Store
http://itunes.apple.com/us/app/demoted/id355925236?mt=8











On Apr 14, 2010, at 7:25 PM, stephen barncard wrote:

 I was hoping for a test case.
 
 On 14 April 2010 16:20, Andre Garzia an...@andregarzia.com wrote:
 
 it can't be made with rev or it would not be accepted into the app store...
 it must be objc
 
 On Wed, Apr 14, 2010 at 8:11 PM, stephen barncard 
 stephenrevoluti...@barncard.com wrote:
 
 Thomas.. is your iPad app made with rev?
 
 
 sqb
 
 On 14 April 2010 14:21, Thomas McGrath III mcgra...@mac.com wrote:
 
 AWESOME..  Congratulations and welcome to Hannes Leander Pfaff 
 
 
 Tom McGrath III
 Lazy River Software
 http://lazyriver.on-rev.com
 3mcgr...@comcast.net
 
 I Can Speak - Communication for the rest of us...
 http://mypad.lazyriver.on-rev.com
 
 I Can Speak on the iPad Store
 http://itunes.apple.com/us/app/i-can-speak/id364733279?mt=8
 
 DeMoted - Have you DeMoted Someone today?
 http://demoted.lazyriver.on-rev.com
 
 DeMoted on the iTune App Store
 http://itunes.apple.com/us/app/demoted/id355925236?mt=8
 
 
 
 
 
 
 
 
 
 
 
 On Apr 14, 2010, at 11:38 AM, Malte Pfaff-Brill wrote:
 
 And just after I wrote the mail, my wife went into labour. g I must
 have felt it in the office. Anyhow...  Thanks for the kind words
 everyone!
 
 And please welcome the next revolutionary, Hannes Leander Pfaff. :-)
 
 All the best,
 
 Malte___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 --
 -
 Stephen Barncard
 Back home in SF
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 --
 http://www.andregarzia.com All We Do Is Code.
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 -- 
 -
 Stephen Barncard
 Back home in SF
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


revMail in Windows

2010-04-14 Thread Sarah Reichelt
Hi All,

I have just realised that under Windows, revMail will not send emails
over a certain size. The limit seems to vary depending on the number
of lines as well as the number of characters, but it seems that you
cannot rely on revMail to create an email with more than 1000
characters. Any when it fails, there is no error, just nothing
happens.

This means that my Windows users have been thinking they are sending
bug reports and I have not been getting them for about the last year.
Bug 7995 http://quality.runrev.com/qacenter/show_bug.cgi?id=7995 was
filed as a blocker on 24th April 2009 and is still labelled as new
with no comments from anyone at RunRev.

I have tried constructing my own mailto URL and using both launch URL
and revGoURL to activate that.

All these options work fine on my Mac, it's just Windows that causes
the problems.
I keep archived copies of old versions of Rev, and in 2.8.1, revMail
worked OK. All versions since then are displaying this problem.

I can't get all the data I need in my bug report down to 1000
characters, so does anyone know of an alternative way to send emails
on Windows?
I want it to go through the user's mail client as I ask them to supply
additional information and attach screen shots. Otherwise I could use
an irev script on my web site.

Cheers,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revMail in Windows

2010-04-14 Thread Mark Wieder
Sarah-

Well, that *is* depressing. I just tried out a test stack and out of
29000 chars in a text variable, 247 of them were put into the body of
an email using rev 4.0.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] iPads delayed internationally

2010-04-14 Thread Richmond Mathewson

 On 15/04/2010 02:17, J. Landman Gay wrote:

Sarah Reichelt wrote:

http://www.apple.com/pr/library/2010/04/14advisory_ipad.html

If all you Americans who bought iPads could please return them ASAP,
then maybe Steve would change his mind and I could get mine sooner.


And then will you send me any extras you get?


I'll be happy when I get my conference DVDs . . .  :)
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] iPads delayed internationally

2010-04-14 Thread J. Landman Gay

Richmond Mathewson wrote:

 On 15/04/2010 02:17, J. Landman Gay wrote:

Sarah Reichelt wrote:

http://www.apple.com/pr/library/2010/04/14advisory_ipad.html

If all you Americans who bought iPads could please return them ASAP,
then maybe Steve would change his mind and I could get mine sooner.


And then will you send me any extras you get?


I'll be happy when I get my conference DVDs . . .  :)


You haven't yet? Last I asked, which was quite a while ago, RR said 
they'd all been sent, all the orders were completed. Better check with 
support, I guess. You should have received them a long time ago.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution