Re: Moving a Folder to Recycle Bin in Windows XP

2008-10-11 Thread Ken Ray



On 9/16/08 3:49 PM, Philip Usher [EMAIL PROTECTED] wrote:

 Is it possible to use revMoveFolder to move a folder to the Recylcle
 Bin in Windows XP and what would the destination folder path be?

I don't think you can use revMoveFolder, but you can run this VBScript using
do script as VBScript from Rev 2.9 or higher:

Const RECYCLE_BIN = Ha
Const FILE_TO_MOVE = C:\yourFileGoesHere.txt
Set objShell = CreateObject(Shell.Application)
Set recycleFolder = objShell.NameSpace(RECYCLE_BIN)
recycleFolder.MoveHere FILE_TO_MOVE
result = Err.Number

HTH,

Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.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: Email Client (Outlook Express) won't start after console

2008-10-11 Thread Ken Ray

 While coding in the IDE (Windows XP Pro) and using 2.5* and then running the
 program within the IDE to check functionality of the error reporting of the
 finished program an error was encountered.  The email client facilitated
 reporting mechanism came up and stupidly without either cancelling or sending
 the reported error I quit the program by quitting the IDE.  Since doing that
 Outlook Express 5 will not start up as an  email program and acts as if it is
 hung up.
 
 Some years back this same thing happened to me and it turned out that Outlook
 was stuck' in the waiting to report the error mode.  If I remember correctly
 that was fixed by a registry tweak.  Unfortunately I can't find my notes on
 that little issue if I made any.  I do remember that it was someone from the
 Rev list (old list) who came up with this explanation and fix for me.  I have
 searched the list as far back as I could, the web and mickeysoft without
 success. 

It's possible that the Outlook Express *process* is stuck open so you may
need to kill the process to get it to terminate even though it thinks it's
supposed to be reporting an error.

If this is the case, you can look for the msimn.exe process; there
actually may be more than one instance of it and you can terminate them all.

Here are the VBScripts for checking for the instance(s) and for killing them
if they exist; since you're running 2.5, you'll have to write these
VBScripts out to a .vbs file and execute them - see the stsDoScript
handler at the bottom for my implementation of doing just that.

Watch line wraps!

Getting a List of Running Processes
--
Set ProcessSet = 
GetObject(winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2).ExecQu
ery(Select * from Win32_Process)

tList = 
For each Process in ProcessSet
if Process.ExecutablePath   Then
tList = tList  Process.Name  vbcrlf
End If
Next
WScript.Echo tList


Killing a Process 
(Note that PROCVALUE needs to be replaced with the name
of the process in lowercase letters)
-
Set ProcessSet = 
GetObject(winmgmts:{impersonationLevel=impersonate}).ExecQuery(select *
from Win32_Process)

tList = 
For each Process in ProcessSet
If Process.ExecutablePath   Then
If LCase(Process.Caption)=PROCVALUE Then
Process.Terminate (Process.ProcessID)
Else
tList=Error: Process not found.
End If
End If
Next
WScript.Echo tList


Running the Scripts
--

on stsDoVBS pScript
  set the hideConsoleWindows to true
  put C:\VBS_temp.vbs into tVBSPath
  put pScript into url (file:  tVBSPath)
  get shell(cscript.exe //nologo  tVBSPath)
  put it into tResult
  if there is a file tVBSPath then
send delete file  quote  tVBSPath  quote to me in 1 second
  end if
end stsDoVBS


Of course, if this is *not* the problem, then let me know...

Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.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


AW: How does RunRev finds externals when building the standalone? -- SOLVED!

2008-10-11 Thread Tiemo Hollmann TB

Hi Ruslan,
finally we got it! After I didn't got the database drivers folder created, I
didn't tried to build the deployment anymore. You were right, it worked
already only with the v4rev.bundle. Now I also found out how to get the
database drivers bundle bound. I had to check in the standalone settings
beside Valentina2 also the database script library.
For those who will follow this thread someday building a Rev-Valentina Mac
standalone on Win XP, here is the compendium:
First follow the Valentina install instructions. Now follow these steps for
Universal standalone on Win XP:
Create dir: .../Runtime/MAC OS X/Universal/Externals
Put bundle: .../Runtime/MAC OS X/Universal/Externals/V4REV.bundle (copied
from V4Rev_3 folder on Mac, after having installed V4Rev_3 on Mac)
Create file: .../Runtime/MAC OS X/Universal/Externals/Externals.txt (content
one line: Valentina2,v4rev.bundle) don't take the TXTs from Win!
Create dir: .../Runtime/MAC OS X/Universal/Externals/Database Drivers
Put bundle: .../Runtime/MAC OS X/Universal/Externals/Database
Drivers/dbvalentina2 (copied from V4Rev_3 folder on Mac, after having
installed V4Rev_3 on Mac)
Create file: .../Runtime/MAC OS X/Universal/Externals/Database
Drivers/Database Drivers.txt (content one line: Valentina2,dbvalentina2)
Select in the standalone app settings of your stack:
Script libraries: Database and Valentina2
Database Support: Valentina2
When building the deployment on Mac, after having dragged the script and the
stack into the terminal window: add a backslash after your .app !!!
Note that the Database Drivers folder in .../Runtime/MAC OS
X/Universal/Externals/Database Drivers is named without underscore but in
the Mac standalone package it gets automatically an underscore
database_drivers.
P.S. not directly related: the db name in the rev stack should be named with
the .vdb extension. On Win not needed, but the Mac standalone likes it
better with it
Thanks for your support and patience!
Tiemo


___
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


AW: How does RunRev finds externals when building the standalone?

2008-10-11 Thread Tiemo Hollmann TB
Thanks Ken, I have thought of this, but the installer needs an existing Rev
setup structure.
Tiemo

 -Ursprüngliche Nachricht-
 Von: [EMAIL PROTECTED] [mailto:use-revolution-
 [EMAIL PROTECTED] Im Auftrag von Ken Ray
 Gesendet: Samstag, 11. Oktober 2008 07:26
 An: Use Revolution List
 Betreff: Re: How does RunRev finds externals when building the standalone?
 
  I executed the install.rev on my Win and it ran whatever it did :)
 
  But not on MAC.
 
  S.
 
  How should I run installer.rev, when not having a Mac licence for
 RunRev?
 
 You could try using StackRunner, which is a free player app for all
 platforms:
 
 http://www.sonsothunder.com/devres/revolution/downloads/StackRunner.htm
 
 
 Ken Ray
 Sons of Thunder Software, Inc.
 Email: [EMAIL PROTECTED]
 Web Site: http://www.sonsothunder.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


ANN: Library for Mac OSX Textured Buttons on metal windows

2008-10-11 Thread SteveTheWhelk

Hello all,

I've been a bit busy of late. :o)

First thing today is that I've knocked together a little library for easily
creating Mac OS X style textured buttons, which are useful for getting the
right look on metal windows
(http://theworcestersource.com/downloads/MacOSXtexturedbutton/tabid/56/Default.aspx).

I've also been working on a web site for Rev developers
(http://www.theworcestersource.com). It's early work at the mo, but as I
intend it to be a Rev community site, I've built it using a content
management system and I'm inviting other people to help me build and run it.
I've got ideas for what I want to put in there after chatting to the
developers at work, but will be happy for suggestions.

Let's see where this goes... :o)

Thanks,


Steve

P.S. Yes, I'm using an inexpensive, slow host for the time being!
-- 
View this message in context: 
http://www.nabble.com/ANN%3A-Library-for-Mac-OSX-Textured-Buttons-on-metal-windows-tp19931518p19931518.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


Table inspector from 4W

2008-10-11 Thread Josep M Yepes

Hi,

Somebody know where can try this Inspector Palette that appear in the  
jpg? Or many info about this?

I read this in the improve-revolution list some days ago...


For example, a lot of my stuff lately requires display of data in lists
in which I need an iTunes-quality display, with resizable columns that
support sorting, etc.:
http://fourthworldlabs.com/table.jpg

Cheers,
Josep M
___
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: iPhone again

2008-10-11 Thread Joe Lewis Wilkins

Cheers back dear Sarah,

I couldn't agree with you more. Not knowing what direction Apple may  
take at any point in time would make developing without some sort of  
pre-approval; or, at least, approval of concept a most hazardous  
venture. On the other hand, I can see that many developers would find  
this sort of revelation even more dangerous; particularly if they feel  
what they are proposing to do is most revolutionary. (smile) After  
all, there are leaks everywhere and lead-time can be important in the  
developmental process.


Just MHO,

Joe Wilkins

On Oct 10, 2008, at 8:22 PM, Sarah Reichelt wrote:


As I read Gruber's article, his main point is that the policy is
wrong, not that the pulled app was in contravention of the current
agreement. However I do think a pre-approval mechanism would be
beneficial.

And please don't apologize for disagreeing with me. If we can't have a
reasonable  courteous debate on this list, then I would be very sorry
:-)

Cheers,
Sara






___
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 does RunRev finds externals when building the standalone? -- SOLVED! :-)

2008-10-11 Thread Ruslan Zasukhin
On 10/11/08 12:52 PM, Tiemo Hollmann TB [EMAIL PROTECTED] wrote:

Hi Tiemo,

 Hi Ruslan,
 finally we got it!

Excellent! :-)

 After I didn't got the database drivers folder created, I
 didn't tried to build the deployment anymore. You were right, it worked
 already only with the v4rev.bundle.

Clear. 

 Now I also found out how to get the
 database drivers bundle bound. I had to check in the standalone settings
 beside Valentina2 also the database script library.

Of course. I have point this 2-3 days ago.
Exists 2 list boxes in the dialog box.

--
 For those who will follow this thread someday building a Rev-Valentina Mac
 standalone on Win XP, here is the compendium:

 First follow the Valentina install instructions.

 Now follow these steps for Universal standalone on Win XP:

 Create dir: .../Runtime/MAC OS X/Universal/Externals

 Put bundle: .../Runtime/MAC OS X/Universal/Externals/V4REV.bundle (copied
 from V4Rev_3 folder on Mac, after having installed V4Rev_3 on Mac)

 Create file: .../Runtime/MAC OS X/Universal/Externals/Externals.txt (content
 one line: Valentina2,v4rev.bundle) don't take the TXTs from Win!

 Create dir: .../Runtime/MAC OS X/Universal/Externals/Database Drivers

 Put bundle: .../Runtime/MAC OS X/Universal/Externals/Database
 Drivers/dbvalentina2 (copied from V4Rev_3 folder on Mac, after having
 installed V4Rev_3 on Mac)

 Create file: .../Runtime/MAC OS X/Universal/Externals/Database
 Drivers/Database Drivers.txt (content one line: Valentina2,dbvalentina2)

 Select in the standalone app settings of your stack:
 Script libraries: Database and Valentina2
 Database Support: Valentina2

 When building the deployment on Mac, after having dragged the script and the
 stack into the terminal window: add a backslash after your .app !!!

 Note that the Database Drivers folder in .../Runtime/MAC OS
 X/Universal/Externals/Database Drivers is named without underscore but in
 the Mac standalone package it gets automatically an underscore
 database_drivers.

 P.S. not directly related: the db name in the rev stack should be named with
 the .vdb extension. On Win not needed, but the Mac standalone likes it
 better with it

 Thanks for your support and patience!

-- 
Best regards,

Ruslan Zasukhin
VP Engineering and New Technology
Paradigma Software, Inc

Valentina - Joining Worlds of Information
http://www.paradigmasoft.com

[I feel the need: the need for speed]


___
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: Table inspector from 4W

2008-10-11 Thread Bernard Devlin
Josep, I'm not sure if Richard Gaskin is licensing that table component yet
or not (www.fourthworld.com).  He had qualms a couple of years ago about it
not being ready, but that may have changed.

You could also look at Chipp's AltFldHeader.  I believe it is doing
something similar.  It is a deceptively simple approach to table fields, and
is configured somewhat differently to Richard's.  Hmm.. I just searched
Chipp's website (www.altuit.com), and couldn't find it.  Maybe he has
withdrawn it.  Hopefully, he'll see this and mention if it is still
available.

Bernard

On Sat, Oct 11, 2008 at 12:12 PM, Josep M Yepes [EMAIL PROTECTED] wrote:

 Hi,

 Somebody know where can try this Inspector Palette that appear in the jpg?
 Or many info about this?
 I read this in the improve-revolution list some days ago...


 For example, a lot of my stuff lately requires display of data in lists
 in which I need an iTunes-quality display, with resizable columns that
 support sorting, etc.:
 http://fourthworldlabs.com/table.jpg

 Cheers,
 Josep M
 ___
 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


How to create a quicktime movie from a sequence of pictures?

2008-10-11 Thread Richmond Mathewson
If you don't have Quicktime Pro, and you don't have the money (or you would 
rather use it to take you favourite person out to supper!), this works well:

http://avidemux.sourceforge.net/

ready to run for Ubuntu, Mac, and Windows and ready for roll-your-own for 
other Linux variants.

All about image import with Avidemux here:

http://www.avidemux.org/admWiki/index.php?title=Input_formats

It is FREE, as in open source. However, as nothing is ever entirely free, there 
is a price, and that is that using it involves a lot more fiddling around than 
with QT Pro.

You can, however, do rather more movie editing with Avidemux than with QT Pro.

sincerely, Richmond Mathewson.



A Thorn in the flesh is better than a failed Systems Development Life Cycle.




___
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


Sticking an image to the cursor

2008-10-11 Thread Sue Smith
Is is possible for an image to smoothly stick onto the cursor? I am working 
on a jigsaw puzzle for children. I know that I can set the image to the mouse 
location, but it is very choppy and and the image will drop if the user 
accelerates mouse speed and it can't leep up.

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


How to create a quicktime movie from a sequence of pictures?

2008-10-11 Thread Richmond Mathewson
If you don't have Quicktime Pro, and you don't have the money (or you would 
rather use it to take you favourite person out to supper!), this works well:

http://avidemux.sourceforge.net/

ready to run for Ubuntu, Mac, and Windows and ready for roll-your-own for 
other Linux variants.

All about image import with Avidemux here:

http://www.avidemux.org/admWiki/index.php?title=Input_formats

It is FREE, as in open source. However, as nothing is ever entirely free, there 
is a price, and that is that using it involves a lot more fiddling around than 
with QT Pro.

You can, however, do rather more movie editing with Avidemux than with QT Pro.

sincerely, Richmond Mathewson.



A Thorn in the flesh is better than a failed Systems Development Life Cycle.




___
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: iPhone again

2008-10-11 Thread Andre Garzia
Hello,

 As for App Store considerations, a lot of people use tools like Rev for
 making things for themselves. You can publish iPhone apps to your own iPhone
 without having to get it approved by Apple.


No you can't. I have an iPhone and the SDK and the latest revision of
everything. You can't upload to the iPhone without an account (USD 99)
with apple, it will not sign the software and it will refuse to
upload.

I believe you could and bought the phone thinking, at least, I'll do
software for myself, that is not true. I've submit my application to
the developer program in august and till today, I haven't been
approved.

I am getting tired.


-- 
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: Sticking an image to the cursor

2008-10-11 Thread Sue Smith
I did, but it only works with mouseDown. I need it to work on the mouseEnter 
handler. I am developing (freeware) for children with disabilities - so many 
are unable to click the mouse button, let alone keep it held down.

Thanks!


--- On Sat, 10/11/08, Klaus Major [EMAIL PROTECTED] wrote:

 From: Klaus Major [EMAIL PROTECTED]
 Subject: Re: Sticking an image to the cursor
 To: How to use Revolution use-revolution@lists.runrev.com
 Date: Saturday, October 11, 2008, 9:00 AM
 Hi Sue,
 
  Is is possible for an image to smoothly
 stick onto the cursor? I  
  am working on a jigsaw puzzle for children. I know
 that I can set  
  the image to the mouse location, but it is very choppy
 and and the  
  image will drop if the user accelerates mouse speed
 and it can't  
  leep up.
 
  Thanks in advance!
 
 did you try the grab command?
 That may be the solution for you.
 
 Put this into the script of your jigsaw image(s)
 
 on mousedown
grab me
 end mousedown
 
 That's all to make an image smoothly
 stick onto the cursor :-)
 
 
 Best
 
 Klaus Major
 [EMAIL PROTECTED]
 http://www.major-k.de
 
 
 ___
 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: Sticking an image to the cursor

2008-10-11 Thread Klaus Major

Hi Sue,

Is is possible for an image to smoothly stick onto the cursor? I  
am working on a jigsaw puzzle for children. I know that I can set  
the image to the mouse location, but it is very choppy and and the  
image will drop if the user accelerates mouse speed and it can't  
leep up.


Thanks in advance!


did you try the grab command?
That may be the solution for you.

Put this into the script of your jigsaw image(s)

on mousedown
  grab me
end mousedown

That's all to make an image smoothly stick onto the cursor :-)


Best

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de


___
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: iPhone again

2008-10-11 Thread Colin Holgate


On Oct 11, 2008, at 11:09 AM, Andre Garzia wrote:

As for App Store considerations, a lot of people use tools like Rev  
for
making things for themselves. You can publish iPhone apps to your  
own iPhone

without having to get it approved by Apple.



No you can't. I have an iPhone and the SDK and the latest revision of
everything. You can't upload to the iPhone without an account (USD 99)
with apple, it will not sign the software and it will refuse to
upload.


You may have misread what I said. I was talking about the App Store.  
To get an app sold on the App Store it has to go through approval. To  
get it to work on your own phone you only have to have the  
provisioning files you paid for. When I said above having to get it  
approved by Apple, the it was the application, not you the  
developer.



___
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: creating a Mac download

2008-10-11 Thread Rob Cozens

Mark, et al:


You need to make a zip or dmg file of the
standalone.


How do creator/file types get set and creator/document types get registered?

Rob Cozens

The current near-hysterical preoccupation with safety is at best a 
waste of resources and a crimp on the human spirit, and at worst an 
invitation to totalitarianism.


-- Michael Crichton, State of Fear, 2004
___
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


ANN: Seamless Tiles Generator 2 updated

2008-10-11 Thread Wilhelm Sanke, FB01

 Just uploaded a slightly updated version of the Seamless Tiles Generator 2 to

http://www.sanke.org/Software/SeamlessTiles2.zip

See the descriptions on page Sample Stacks on my website
http://www.sanke.org/MetaMedia.

Among other things this stack features an improved resizable and draggable
selection graphic that lets you choose a segment of any size from the imported
source image  to create a seamless tile.

The ink of the selection graphic needed to be adapted both to the differences
between Windows and MacOS and the stackfileversions 2.4 and 2.7.

With engine versions  2.7 we need admin for MacOS and srcAnd for Windows.
For engine versions  2.7 and higher srccopy is necessary for both platforms to
show a transparent graphic.

Moreover, I have changed the stack extension from *.mc to *.rev, to enable
users of Rev 3.0 to see and load the stack.

See the quote of my earlier post (to the Metacard- and Improve-lists) concerning
 this special problem:

 Strange change of file associations with Rev 3-gm-3 engine

 Wilhelm Sanke
 Sat, 20 Sep 2008 11:59:50 -0700
 Rev engine 3-gm-2 displays both *.rev and *.mc-files in the open stack 
dialog as Revolution stacks. Engine 3-gm-3 restricts the displayed stacks to 
files with the *.rev extension; even when you choose All files the display 
of mc-files is suppressed, but other files like dlls and txt files are shown. 
It is even impossible to enforce the display of mc-files by typing *.mc into
 the file name box of the open stack dialog. Putting the Revolution.exe engine 
3-gm-3 into the Metacard IDE shows the same restrictions: No mc-files are 
displayed. However, when you rename Revolution.exe to MC.exe, both 
Revolution stack-files rev and mc are displayed in the open stack 
dialog - like before in gm-2 with Revolution.exe. This holds for both IDEs,
 the Revolution and the Metacard IDE. The consequence for users that primarily
 work with the Rev IDE - but wish to access Metacard files once in a while - 
would be to rename their Rev engine to MC.exe. This works fine within the Rev
 IDE. 


Regards,


Wilhelm Sanke
www.sanke.org/MetaMedia



This mail sent through http://www.uni-kassel.de/www-mail

___
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: Great Article by Judy Perry on Rev in Ed in RevUp Newsletter

2008-10-11 Thread J. Landman Gay

Mark Srebnik wrote:

Congrats to Judy Perry on her inspiring article in the new RevUp Newsletter
on Rev in Education!


Judy's been one of Runtime's greatest advocates for education for many 
years -- nice going, Judy. I love how you didn't name the other 
program except by inference. ;)


--
Jacqueline Landman Gay | [EMAIL PROTECTED]
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: Sticking an image to the cursor

2008-10-11 Thread Colin Holgate


On Oct 11, 2008, at 11:00 AM, Sue Smith wrote:

Is is possible for an image to smoothly stick onto the cursor? I  
am working on a jigsaw puzzle for children. I know that I can set  
the image to the mouse location, but it is very choppy and and the  
image will drop if the user accelerates mouse speed and it can't  
leep up.



I imagine you're using mousewithin, or something like that? You can do  
all the dragging control in the card script. I probably haven't done  
this in the most advanced way, but it works, this will make anything  
you drag follow the mouse:


on idle
   global dragging,dx,dy,dragwhat
   if dragging then
  set the loc of dragwhat to the mouseh - dx,the mousev - dy
   end if
end idle

on mouseDown
   global dragging,dx,dy,dragwhat
   put true into dragging
   put the target into dragwhat
   put the clickh - item 1 of the loc of the target into dx
   put the clickv - item 2 of the loc of the target into dy
end mouseDown

on mouseUp
   global dragging
   put false into dragging
end mouseUp

Of course, you might check to see what is being clicked on to limit it  
to jigsaw pieces, maybe by checking the name.



___
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


ANN: Seamless Tiles Generator 2 updated

2008-10-11 Thread Wilhelm Sanke, FB01
 Just uploaded a slightly updated version of the Seamless Tiles Generator 2 to

http://www.sanke.org/Software/SeamlessTiles2.zip

See the descriptions on page Sample Stacks on my website
http://www.sanke.org/MetaMedia.

Among other things this stack features an improved resizable and draggable
selection graphic that lets you choose a segment of any size from the imported
source image  to create a seamless tile.

The ink of the selection graphic needed to be adapted both to the differences
between Windows and MacOS and the stackfileversions 2.4 and 2.7.

With engine versions  2.7 we need admin for MacOS and srcAnd for Windows.
For engine versions  2.7 and higher srccopy is necessary for both platforms to
show a transparent graphic.

Moreover, I have changed the stack extension from *.mc to *.rev, to enable
users of Rev 3.0 gm 3 to see and load the stack.

See the quote of my earlier post (to the Metacard- and Improve-lists) concerning
 this special problem:

 Strange change of file associations with Rev 3-gm-3 engine

 Wilhelm Sanke
 Sat, 20 Sep 2008 11:59:50 -0700
 Rev engine 3-gm-2 displays both *.rev and *.mc-files in the open stack
dialog as Revolution stacks. Engine 3-gm-3 restricts the displayed stacks to
files with the *.rev extension; even when you choose All files the display
of mc-files is suppressed, but other files like dlls and txt files are shown.
It is even impossible to enforce the display of mc-files by typing *.mc into
the file name box of the open stack dialog. Putting the Revolution.exe engine
3-gm-3 into the Metacard IDE shows the same restrictions: No mc-files are
displayed. However, when you rename Revolution.exe to MC.exe, both
Revolution stack-files rev and mc are displayed in the open stack
dialog - like before in gm-2 with Revolution.exe. This holds for both IDEs,
the Revolution and the Metacard IDE. The consequence for users that primarily
work with the Rev IDE - but wish to access Metacard files once in a while -
would be to rename their Rev engine to MC.exe. This works fine within the Rev
IDE. 


-- 
Wilhelm Sanke
www.sanke.org/MetaMedia


This mail sent through http://www.uni-kassel.de/www-mail

___
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: Sticking an image to the cursor

2008-10-11 Thread Scott Rossi
Recently, Sue Smith wrote:

 Is is possible for an image to smoothly stick onto the cursor? I am working
 on a jigsaw puzzle for children.

There are a few limitations doing this, but it should be possible.  Execute
the following in your Rev message box to see a demo that uses a stack with a
custom windowshape:

go url http://www.tactilemedia.com/site_files/downloads/custom_cursor.rev;

Regards,

Scott Rossi
Creative Director
Tactile Media, Multimedia  Design


___
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: Sticking an image to the cursor

2008-10-11 Thread Eric Chatonet

Bonsoir Sue,

Le 11 oct. 08 à 17:00, Sue Smith a écrit :

Is is possible for an image to smoothly stick onto the cursor? I  
am working on a jigsaw puzzle for children. I know that I can set  
the image to the mouse location, but it is very choppy and and the  
image will drop if the user accelerates mouse speed and it can't  
leep up.


If you use Rev 2.9 or later, probably you could use drag and drop 2.9  
implementation.
Or if you don't want to 'move' a 'blendleveled' image, you should  
have a look at two things:


1. The 'grab' command.
2. A code snippet that has been posted many times in this list and  
you can call from every piece of your jigsaw puzzle:


local sAllowDrag
-
on mouseDown
  put the mouseH  comma  the mouseV into sAllowDrag
end mouseDown
-
on mouseMove pX,pY
  if sAllowDrag is empty then exit mouseMove
  set topLeft of this stack to globalLoc(pX - item 1 of sAllowDrag   
comma  pY - item 2 of sAllowDrag)

end mouseMove
-
on mouseUp
  put empty into sAllowDrag
end mouseUp
-
on mouseRelease
  mouseUp
end mouseRelease

Best regards from Paris,
Eric Chatonet.

Plugins and tutorials for Revolution: http://www.sosmartsoftware.com/
Email: [EMAIL PROTECTED]/



___
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: Sticking an image to the cursor

2008-10-11 Thread Scott Rossi
Recently, Klaus Major wrote:

 Is is possible for an image to smoothly stick onto the cursor? I
 am working on a jigsaw puzzle for children. I know that I can set
 the image to the mouse location, but it is very choppy and and the
 image will drop if the user accelerates mouse speed and it can't
 leep up.
 
 Thanks in advance!
 
 did you try the grab command?
 That may be the solution for you.
 
 Put this into the script of your jigsaw image(s)
 
 on mousedown
grab me
 end mousedown
 
 That's all to make an image smoothly stick onto the cursor :-)

Ah, I just re-read the request.  If Sue's not looking to replace the cursor
with an object, this makes much more sense to move objects around a card.

Regards,

Scott Rossi
Creative Director
Tactile Media, Multimedia  Design


___
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: Great Article by Judy Perry on Rev in Ed in RevUp Newsletter

2008-10-11 Thread Neal Campbell
Where is the link to the new RevUp? I somehow miss these announcements!

Neal

On Sat, Oct 11, 2008 at 12:25 PM, J. Landman Gay
[EMAIL PROTECTED] wrote:
 Mark Srebnik wrote:

 Congrats to Judy Perry on her inspiring article in the new RevUp
 Newsletter
 on Rev in Education!

 Judy's been one of Runtime's greatest advocates for education for many years
 -- nice going, Judy. I love how you didn't name the other program except
 by inference. ;)

 --
 Jacqueline Landman Gay | [EMAIL PROTECTED]
 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




-- 
Neal Campbell
Abroham Neal Software
Programming Services for Windows, OS X and Linux
(540) 242 0911
-
Try Spot for OS X, the intelligent DXCluster Client at
www.abrohamnealsoftware.com -  $15.99
-
For a great dog book, visit www.abrohamneal.com
-
See the FlexRadio Systems Flex-5000a in
action at www.flex-videos.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: Great Article by Judy Perry on Rev in Ed in RevUp Newsletter

2008-10-11 Thread Judy Perry
Thank you, Mark  Jacque!

Mark Schonewille has alerted me that, on Windows, the stack locks up
the IDE (why I don't know); as this was a quick hack for the kiddies,
and as we don't have any Windows boxes in the house, I never did try
it under Windows.  Also, the fields won't line up properly/display
properly under Windows probably due to my using a Mac OS font.

And, yes, I positively loathe that program which must not be named ;-)

Judy
http://revined.blogspot.com

On Sat, Oct 11, 2008 at 9:25 AM, J. Landman Gay
[EMAIL PROTECTED] wrote:
 Mark Srebnik wrote:

 Congrats to Judy Perry on her inspiring article in the new RevUp
 Newsletter
 on Rev in Education!

 Judy's been one of Runtime's greatest advocates for education for many years
 -- nice going, Judy. I love how you didn't name the other program except
 by inference. ;)

 --
 Jacqueline Landman Gay | [EMAIL PROTECTED]
 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

___
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: iPhone again

2008-10-11 Thread Jim Sims


On Oct 11, 2008, at 5:09 PM, Andre Garzia wrote:


I believe you could and bought the phone thinking, at least, I'll do
software for myself, that is not true. I've submit my application to
the developer program in august and till today, I haven't been
approved.

I am getting tired.


Work around them and make a fantastic web app using Rev CGI
stuff.   ;-)   Rev - JS - whatever.

You are Brazilian! Be creative - Life is Good.


sims
___
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


landscape printing on Windows

2008-10-11 Thread Phil Davis
On XP I'm trying to print a card that contains a background image and 
some fields. So far, no joy. Here is my approach. What am I missing?


   * using Rev 3.0 gm-3
   * running XP Pro SP3
   * I just updated my printer drivers
   * when run on Mac OS X, it works perfectly: landscape card image
 prints with landscape orientation on paper
   * when run on XP, a landscape card image prints with portrait
 orientation, with topLeft of landscape card image = topLeft of paper
   * it works the same with and without the image object present on the
 card
   * it works the same whether I use referenced or embedded image content

The script:

on mouseUp
  -- locate the cert stack
  answer file Pick the Certificate stack:
  if it = empty then exit to top
  put it into tCertStack

  -- go to cert stack
  push this cd
  go inv stack tCertStack -- cert stack is 792w x 612h

  -- prep for printing
  set the loc of img 1 to the loc of this cd
  put the topLeft of this cd into tTopLeft
  put the bottomRight of this cd into tBottomRight
  reset printing -- to prevent crash on XP when using 'open printing' 
approach

  set the printPaperOrientation to landscape
  put 792,612 into tPaperSize -- 11w x 8.5h
  put the printPaperRectangle into tPaperRect

  -- print
  open printing
  print this card from tTopLeft to tBottomRight into tPaperRect
  close printing

  -- restore focus to original stack
  close stack tCertStack
  pop cd
end mouseUp


Thanks -
--
Phil Davis

PDS Labs
Professional Software Development
http://pdslabs.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


ANN: Seamless Tiles Generator 2 updated

2008-10-11 Thread Wilhelm Sanke, FB01

 Just uploaded a slightly updated version of the Seamless Tiles Generator 2 to

http://www.sanke.org/Software/SeamlessTiles2.zip

See the descriptions on page Sample Stacks on my website
http://www.sanke.org/MetaMedia.

Among other things this stack features an improved resizable and draggable
selection graphic that lets you choose a segment of any size from the imported
source image  to create a seamless tile.

The ink of the selection graphic needed to be adapted both to the differences
between Windows and MacOS and the stackfileversions 2.4 and 2.7.

With engine versions  2.7 we need admin for MacOS and srcAnd for Windows.
For engine versions  2.7 and higher srccopy is necessary for both platforms to
show a transparent graphic.

Moreover, I have changed the stack extension from *.mc to *.rev, to enable
users of Rev 3.0 to see and load the stack.

See the quote of my earlier post (to the Metacard- and Improve-lists) concerning
 this special problem:

 Strange change of file associations with Rev 3-gm-3 engine

 Wilhelm Sanke
 Sat, 20 Sep 2008 11:59:50 -0700
 Rev engine 3-gm-2 displays both *.rev and *.mc-files in the open stack 
dialog as Revolution stacks. Engine 3-gm-3 restricts the displayed stacks to 
files with the *.rev extension; even when you choose All files the display 
of mc-files is suppressed, but other files like dlls and txt files are shown. 
It is even impossible to enforce the display of mc-files by typing *.mc into
 the file name box of the open stack dialog. Putting the Revolution.exe engine 
3-gm-3 into the Metacard IDE shows the same restrictions: No mc-files are 
displayed. However, when you rename Revolution.exe to MC.exe, both 
Revolution stack-files rev and mc are displayed in the open stack 
dialog - like before in gm-2 with Revolution.exe. This holds for both IDEs,
 the Revolution and the Metacard IDE. The consequence for users that primarily
 work with the Rev IDE - but wish to access Metacard files once in a while - 
would be to rename their Rev engine to MC.exe. This works fine within the Rev
 IDE. 


Regards,


Wilhelm Sanke
www.sanke.org/MetaMedia



This mail sent through http://www.uni-kassel.de/www-mail

___
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


Twofold posting of mail

2008-10-11 Thread Wilhelm Sanke, FB01
Sorry for the fact that my last post concerning the Seamless Tiles stack was
sent twice.

There were problems with the mail service of our university server.

-- 
Wilhelm Sanke
www.sanke.org/MetaMedia


This mail sent through http://www.uni-kassel.de/www-mail

___
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: iPhone again

2008-10-11 Thread Colin Holgate


On Oct 11, 2008, at 3:34 PM, Jim Sims wrote:


I've submit my application to
the developer program in august and till today, I haven't been
approved.


Just for comparison, I applied within an hour of the announcement  
earlier in the year, and it still took about four months to be accepted.



___
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: Sticking an image to the cursor

2008-10-11 Thread Eric Chatonet

Bonsoir Sue,

Le 11 oct. 08 à 19:37, Sue Smith a écrit :

I did, but it only works with mouseDown. I need it to work on the  
mouseEnter handler. I am developing (freeware) for children with  
disabilities - so many are unable to click the mouse button, let  
alone keep it held down.


Just to get you started without being too complicated:
In any piece of your jigsaw puzzle *

on mouseMove
  if the loc of me is within the rect of btn Right place then
set the loc of me to the loc of btn Right place -- where piece  
must sticked

  else
set the loc of me to the mouseloc -- just move piece
  end if
end mouseMove

*Of course such a handler should not be repeated in all jigsaw pieces  
but handled using specific conditions at a higher level:


on mouseMove -- in every piece
  PlacePiece --
end mouseMove
--
on PlacePiece -- in card's script
  local tRightHiddenPlace
  -
  if jigsaw is not in the short name of the target then exit  
PlacePiece
  -- we just take into account objects the name of which contains  
jigsaw

  -- jigsaw1, jigsaw2, etc.
  put the short name of the target  RightPlace into  
tRightHiddenPlace

  -- refers to jigsaw1RightPlace, jigsaw2RightPlace, etc.
  -- these are hidden objects just set to get the right place for  
any piece
  if the loc of the target is within the rect of btn  
tRightHiddenPlace then
set the loc of the target to the loc of btn tRightHiddenPlace --  
where piece must sticked

  else
set the loc of the target to the mouseloc -- just move piece
  end if
end PlacePiece

Hope this helps :-)

Best regards from Paris,
Eric Chatonet.

Plugins and tutorials for Revolution: http://www.sosmartsoftware.com/
Email: [EMAIL PROTECTED]/



___
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: Twofold posting of mail

2008-10-11 Thread Stephen Barncard

The stack is awesome! I've spent several hours with it...

One note: no way to cancel out of some operations and the IDE was 
complaining about an Answer Dialog already existing...


but it's wonderful. Lots of lessons here.

sqb



Sorry for the fact that my last post concerning the Seamless Tiles stack was
sent twice.

There were problems with the mail service of our university server.

--
Wilhelm Sanke
www.sanke.org/MetaMedia


--


stephen barncard
s a n  f r a n c i s c o
- - -  - - - - - - - - -



___
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: Sticking an image to the cursor

2008-10-11 Thread Chipp Walters
Colin,

It's generally not a good idea to use the on idle message. Like
mouseStillDown, it doesn't do a decent job of sharing processor time
with other running applications-- and tends to max processor usage.
It's there mostly for backwards compatibility with HC. I sort of wish
they would just deprecate both of them, or bring them up to standard.

There are other good ways to do this using drag/drop.

best,
Chipp

On Sat, Oct 11, 2008 at 12:14 PM, Colin Holgate [EMAIL PROTECTED] wrote:

 on idle
   global dragging,dx,dy,dragwhat
   if dragging then
  set the loc of dragwhat to the mouseh - dx,the mousev - dy
   end if
 end idle
___
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: Table inspector from 4W

2008-10-11 Thread Chipp Walters
altFldHeader is still with the other altPlugins at:
http://www.altuit.com/webs/altuit2/altPluginCover/About.htm

I really need to update that website so it's easier to navigate and find stuff.

I also released a new version of altXray-- beta. This one adds the
ability to show 'separator' comments in the handler list to better
organize scripts which have lots of handlers. Clicking the update
button on altXray should get you the latest version. Shift-click the
disk icon on altXray to see the instructions on how to use it.

best,
Chipp
___
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: Sticking an image to the cursor

2008-10-11 Thread Colin Holgate


On Oct 11, 2008, at 5:40 PM, Chipp Walters wrote:


Colin,

It's generally not a good idea to use the on idle message.



That's part of what I had in mind when I said I probably haven't done  
this in the most advanced way,. I wouldn't do it with idle either,  
but send a message now and then. Updating the position a few times a  
second might be good enough.





___
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: Sticking an image to the cursor

2008-10-11 Thread BNig


Sue Smith wrote:
 
 I did, but it only works with mouseDown. I need it to work on the
 mouseEnter handler. I am developing (freeware) for children with
 disabilities - so many are unable to click the mouse button, let alone
 keep it held down.

Hi Sue,

the tricky part is to do it without a mouseDown and stuff. You somehow have
to determine when the image is supposed to stop following the mouse.

you could try this and see if it is what you want, the handler checks the
mouse position and compares it to the previous position, if it finds that
the position did not change for the last 50 times it gives up on following
the mouse, assuming the user has finished placing the image. Adjust timing
where noted.

code, watch for linebreaks when you copy
-
local tCursorLoc, tXOffset, tYOffset, tMouseDidNotMoveCounter, tCardRect
on mouseEnter
put the mouseloc into tCursorLoc
put the loc of me into tImageLoc
put item 1 of tImageLoc - item 1 of tCursorLoc into tXOffset
put item 2 of tImageLoc - item 2 of tCursorLoc into tYOffset
put the rect of this card into tCardRect
set the cursor to hand
lock cursor
put 0 into tMouseDidNotMoveCounter
send isItStillMoving to me in 30 milliseconds -- adjust for smoothness
of movement
end mouseEnter

on isItStillMoving
if tMouseDidNotMoveCounter  50 then -- adjust here how long it takes to
release image
unlock cursor
exit isItStillMoving
end if
put the mouseloc into tMouseIsHere
if tMouseIsHere = tCursorLoc then
add 1 to tMouseDidNotMoveCounter -- no movement so increase counter
send isItStillMoving to me in 30 milliseconds -- adjust for
smoothness of movement  
else
put item 1 of tCursorLoc + tXOffset into item 1 of tNewLocOfImage
put item 2 of tCursorLoc + tYOffset into item 2 of tNewLocOfImage
-- to avoid dragging the image off the card
if tNewLocOfImage is within tCardRect then set the loc of me to
tNewLocOfImage
put tMouseIsHere into tCursorLoc
put 1 into tMouseDidNotMoveCounter -- reset the counter since mouse
moved
send isItStillMoving to me in 30 milliseconds -- adjust for
smoothness of movement
end if
end isItStillMoving
-
end of code

put this into the script of an image. May be someone has a better idea how
to have the image follow the mouse without a mouseDown.

cheers
Bernd
-- 
View this message in context: 
http://www.nabble.com/Sticking-an-image-to-the-cursor-tp19934277p19937290.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: iPhone again

2008-10-11 Thread Chipp Walters
Here's a good example of what I mean.
http://almerica.blogspot.com/2008/09/podcaster-rejeceted-because-it.html

This guy wrote a podcaster app, which can grab podcasts over the
internet directly to the iPhone. This is something many users would
like to be able to do. It's not as bandwidth intensive as watching
YouTube clips, which iPhone already supports.

Only AFTER he spent all the time designing, writing, testing and
debugging his app, he sent it to Apple and was subsequently rejected
because Apple said they already had that feature. But the problem is,
that feature only exists in iTunes, NOT on the iPhone. So, reasonable
people suspect Apple has that same feature in a new version of iTunes
for iPhone not yet announced, and they don't want anyone else to hone
in on their market.

Very, very serious issues. There are a number of professional iPhone
developers who have already quit developing for iPhone and are looking
to Google's Android open source platform, which doesn't have such
problems.
___
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: iPhone again

2008-10-11 Thread Richard Gaskin

Chipp Walters wrote:

Here's a good example of what I mean.
http://almerica.blogspot.com/2008/09/podcaster-rejeceted-because-it.html


Apple presents some strong arguments for the idea that we've outlived 
the usefulness of operating systems as proprietary things. ;)



--
 Richard Gaskin
 Managing Editor, revJournal
 ___
 Rev tips, tutorials and more: http://www.revJournal.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: iPhone again

2008-10-11 Thread Lynn Fredricks
 As I read Gruber's article, his main point is that the policy 
 is wrong, not that the pulled app was in contravention of the 
 current agreement. However I do think a pre-approval 
 mechanism would be beneficial.

As I read his comments and those of Paul Kafasis (who is the CEO of Rogue
Amoeba Software, maker of some very nice audio products for the Mac) I also
see this - that the policy itself is monopolistic - but sadly - arbitrary.
Determining if something competes with something from Apple - it is also a
post approval risk.

At some point after approval, Apple can come along at any time and pull the
app because new functionality has been added that duplicates this ability.
Having Apple copy your work (or coming up with something in parallel,
whatever the case) is nothing new, and to Apple's credit, they've never
really hidden from developers their willingness to do it. It's like that
oversized mole on your loved one - you just accept it as a part of the
beautiful package of the relationship.

But since there is only a market for the app through the Apple Store, you
can never know when the rug may be pulled out from under you.

Years ago, I worked very closely with console game makers, in the time when
you had to source your cartridges from the console maker. This did create a
pre-approval situation that carried a lot of risk (and some companies, like
Nintendo, also applied quality standards too, at first), but after a
while, you would get your catridges so long as you didn't break any of the
well documented rules. You had the same monopolistic situation but, you
didn't have to worry about the rug being pulled out from under you.

It seems to me that to approach iPhone development confidently you need to
either:

1. Develop something that isnt your core revenue generator and accept the
risk, or 

2. Have a relationship with Apple that gives you the confidence you need to
move forward

Best regards,

Lynn Fredricks
President
Paradigma Software
http://www.paradigmasoft.com

Valentina SQL Server: The Ultra-fast, Royalty Free Database Server 

___
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: Sticking an image to the cursor

2008-10-11 Thread Chipp Walters
Hi Bernd,

It generally the accepted convention to do the following:

local lMouseIsDown

on mouseDown
   put true into lMouseIsDown
end mouseDown

on mouseMove x,y
   if lMouseIsDown is true then
  -- DO YOUR STUFF HERE
  set the loc of img myCursore to x,y
   end if
end mouseMove

on mouseUp
   put false into lMouseIsDown
end mouseUp

on mouseRelease
   mouseUp
end mouseRelease

HTH, Chipp
___
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