home *** CD-ROM | disk | FTP | other *** search
/ Carousel / CAROUSEL.cdr / mactosh / hc / x_tools1.sit / X-Tools1.1 / card_7722.txt < prev    next >
Text File  |  1988-01-27  |  14KB  |  177 lines

  1. -- card: 7722 from stack: in.1
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 3468
  5. -- name: 
  6. ----- HyperTalk script -----
  7. on openCard
  8.   put long name of this stack into pathname
  9.   delete first word of pathname
  10.   set lockscreen to true
  11.   push this card
  12.   go to card "About"
  13.   get script of card button "ResCopy Mover"
  14.   delete word 2 of line 2 of it
  15.   put ""&&pathname after word 1 of line 2 of it
  16.   set the script of card button "ResCopy Mover" to it
  17.   pop card
  18.   set lockscreen to false
  19. end openCard
  20. --This handler is used to put the current pathname of this stack
  21. --into the copier button's script, so that wherever the button is
  22. --pasted, it will always know where to find this stack, and the
  23. --XCMD's that it needs, without the user having to tell it.
  24.  
  25.  
  26. -- part 2 (button)
  27. -- low flags: 00
  28. -- high flags: 8003
  29. -- rect: left=137 top=96 right=129 bottom=252
  30. -- title width / last selected line: 0
  31. -- icon id / first selected line: 0 / 0
  32. -- text alignment: 1
  33. -- font id: 0
  34. -- text size: 12
  35. -- style flags: 0
  36. -- line height: 16
  37. -- part name: ResCopy Mover
  38. ----- HyperTalk script -----
  39. on mouseUp  --DO NOT CHANGE LINE 2! IT IS MODIFIED BY ANOTHER SCRIPT!
  40.   put "Stax1:X-Tools v1.1" into sourceStack
  41.   put the long name of this stack into destStack
  42.   delete first word of destStack
  43.   delete first character of destStack
  44.   delete last character of destStack
  45.   if sourceStack<>destStack then
  46.     set lockscreen to true
  47.     set lockmessages to true
  48.     push this card
  49.     go stack sourceStack
  50.     ResCopy sourceStack,destStack,"XCMD","ResCopy"
  51.     get the result
  52.     -- here is where you would copy more resources.
  53.     pop card
  54.     choose button tool
  55.     click at location of card button "ResCopy Mover"
  56.     put it into errormsg
  57.     answer "Delete this button?" with "Yes" or "No"
  58.     if it is "Yes" then domenu clear button
  59.     choose browse tool
  60.     set lockmessages to false
  61.     set lockscreen to false
  62.     put errormsg into the msg
  63.     show msg at 15,150
  64.   end if
  65. end mouseUp
  66.  
  67.  
  68.  
  69.  
  70.  
  71. -- part 3 (field)
  72. -- low flags: 00
  73. -- high flags: 0000
  74. -- rect: left=251 top=89 right=141 bottom=482
  75. -- title width / last selected line: 0
  76. -- icon id / first selected line: 0 / 0
  77. -- text alignment: 0
  78. -- font id: 3
  79. -- text size: 9
  80. -- style flags: 256
  81. -- line height: 12
  82. -- part name: 
  83.  
  84.  
  85. -- part contents for background part 1
  86. ----- text -----
  87.  
  88. ResCopy <source>,<destination>,<restype>,<resource>
  89.  
  90.      <source> is the HFS pathname for the source file
  91.      <destination> is the HFS pathname for the dest file
  92.      <restype> is the resource type, such as XCMD, and is always 4 chars
  93.      <resource> is the resource name, such as "ResCopy" for this XCMD
  94.  
  95. The ResCopy command returns a string to HyperTalk to let you know what actually happened when the command was called.
  96.      To see what happened, use HyperTalk's Result property. You can say "GET THE RESULT" or "PUT THE RESULT IN IT" to get the result code. The code will be either "OK" or "ERR" followed by a number.
  97.  
  98. ERR1 means the wrong number of parameters were passed.
  99. ERR2 means the source file couldn't be opened.
  100. ERR3 means a new destination file couldn't be created.
  101. ERR4 means the resource to be copied wasn't found in the source.
  102. OK1   means the resource was copied OK to an existing file.
  103. OK2   means a new destination file or resource fork was created.
  104. OK3   means an existing resource was replaced by the copied one.
  105.  
  106. ----------------
  107. James L. Paul Text
  108.  
  109.    The ability to add external commands and functions to HyperTalk is the result of excellent foresight. However, not everyone knows how to create their own XCMDs and XFCNs. As a programmer, I saw the advantages that these external commands and functions could provide. Lately, it's been brought to my attention frequently that many people are having problems understanding how to use XCMDs and XFCNs with HyperCard. Most of this problem seems to be with the concept of resources and with the use of ResEdit. Giving people the ability to use XCMDs and XFCNs without ANY ResEdit knowledge is what is required. I think I have found an ideal method.
  110.      I considered many different methods of copying resources from one stack to another. As a programmer, I've always depended on various utilities, such as ResEdit. Naturally, these utilities are not geared for non-programmers. Yes, I know many people can copy and paste resources with ResEdit, but what about those who can't?
  111.     I decided that what people really need is a way to move resources around with a HyperCard user interface. I thought to myself: "Now, if only I could make it as easy as pasting a button!" So, that's what I did.
  112.      With the use of my ResCopy XCMD and some HyperTalk scripting, I have developed a method that literally makes copying any named resource from one stack to another as easy as pasting a button. That's exactly what the user does, with my method. He copies a button, pastes it into another stack, then clicks on it.
  113.      After clicking on the button, the button automatically is deleted, and the resources have been copied into the stack. This is easy to do, from both a programming view, and a user's view.
  114.      It's my hope that XCMD and XFCN developers will adopt my method, making the use of external commands and functions simple, easy, and desireable. I reserve all commercial rights to my XCMDs, but this one, my ResCopy XCMD, I hope will be used by anyone who wants to add this ability to their stack.
  115.      If you have written any XCMDs or XFCNs, and don't have a method like this to make it easy for the users, I hope you will take the time to consider my method. I feel that users will benefit greatly by the effort.
  116.      In addition to moving XCMD and XFCN resources, my ResCopy command will copy ANY named resource. This means it can be used for sound resources, icons, or anything else that you may wish to have moved to another stack by the user.
  117.      The real power of this method isn't in the ResCopy XCMD itself, but in the HyperTalk scripting. I use two scripts, one of them modifies the other. I use the stack script to modify a card button script. This card button is the button that the user can copy and paste into another stack to move the resources.
  118.      Each time the stack is opened, the stack script makes sure that the button script has the current complete pathname of the stack. This stack, of course, is the one with the resources you want users to be able to copy.
  119.     When the user copies the card button from the "About..." card and pastes it into another stack, the button script still knows exactly where it's original stack is, because it has the complete pathname.
  120.      The button won't do anything unless the user has pasted it into another stack, since we don't want to copy the resources over themselves. After the user has pasted the button into another stack, he can click on it. This starts the magic.
  121.      First, the button gets the name of the stack it's in. Now it knows two pathnames. It has the pathname of it's own stack, the one with the resources to be moved. It also has the pathname of the current stack, the one it needs to paste the resources into. Now that it knows both the source and the destination, it proceeds to copy.
  122. Of course, the button is now running in the user's stack, which doesn't have the ResCopy XCMD, since that is in the original stack.
  123.      This problem is solved by jumping back into the original stack, where we have the resources. First, the screen and message box are locked, so that the user isn't confused by the messy stack-changing that's coming up.
  124.      It's no problem to jump back to the original stack, since the button script knows exactly where it is by it's pathname.
  125.      After the jump is made to the original stack, the ResCopy command can be used, since it's the resource fork of the stack.
  126.      We won't jump back to the user's stack until we're done copying.
  127.      Next, the button script calls my ResCopy XCMD to copy each resource that I want the user to have. Here is where the XCMD takes over...
  128.      ResCopy opens the source file by it's pathname. If there's no problem opening it, it assumes that everything is fine.
  129.      ResCopy then tries to open the destination file by it's pathname. If there's an error, it assumes it's because the file doesn't have a resource fork. Stacks aren't created with resource forks. If this happens, then ResCopy creates a resource fork in the stack. In fact, it's possible to use ResCopy in this way to create a new resource file, by not giving it the name of an existing file.
  130.      Now, at this point, both files are open, and ready for copying.
  131.      Now that both resource forks are open, ResCopy uses the type and name parameters passed to it when it's called from HyperTalk.
  132.      ResCopy attempt to get the resource with the type and name specified. If there is a problem and it can't, ResCopy quits and returns to HyperCard, and reports the error.
  133.      More likely, ResCopy gets the resource successfully, and turns it's attention to the destination file, the stack we want to paste the resource into.
  134.      First, ResCopy looks for a resource in the stack with the same name. If there is one, it removes it, so that there won't be two resources with the same name after the pasting is done.
  135.      Next, ResCopy gets a unique ID number, so that it doesn't disturb any existing resources. Now the resource is added, with a new ID number. This won't affect anything, since HyperTalk uses resource names instead of ID's when dealing with XCMD and XFCN resources. 
  136.      Now that the resource has been successfully added, both files are closed, and ResCopy returns control to the HyperTalk button script.
  137.      The button script calls ResCopy like this for each resource to be pasted into the user's stack. After each resource has been copied, the button script then returns to the destination stack.
  138.      After returning to the user's stack, which now has the resources pasted into it, the button uses the menubar to delete itself, and then unlocks the screen and message box.
  139.      As you can see, the user doesn't have to do anything, except copy the button into a stack and click on it. After a few seconds, the button disappears, and nothing seems changed. But now, the resources are in the resource fork of the stack, and can be used.
  140.      Of course, the user needs to be told what needs to be done and why. I feel, however, that this method is far superior to using ResEdit for the users. Many times I have tried to explain to a user how to use ResEdit in one way or another. Using this method instead eliminates much confusion, and allows users to move XCMDs and XFCNs the HyperCard way: by pasting buttons.
  141.     This method has, I believe, enough attractive features to make it a great way to standardize somewhat the way we move resources from stack to stack.
  142.      With this method, users can rename the stack at any time, or move it from folder to folder, without causing any problems. Since the pathnames are updated each time the stack is opened, a valid pathname will always be used.
  143.      The user doesn't lose any flexibility by using this method. As long as the two key scripts aren't changed, the method should work. One potential problem would be if a user Cut the button, rather than Copying. This would leave him without the button to use later. Users should be warned about this, and be told explicitly to Copy, not Cut.
  144.      As I have mentioned, it is my hope that many XCMD and XFCN developers will adopt a method similar to this. This is how moving commands from stack to stack should be done: easy for the user.
  145.     This method has, I believe, enough attractive features to make it a great way to standardize somewhat the way we move resources from stack to stack.
  146.      With this method, users can rename the stack at any time, or move it from folder to folder, without causing any problems. Since the pathnames are updated each time the stack is opened, a valid pathname will always be used.
  147.      The user doesn't lose any flexibility by using this method. As long as the two key scripts aren't changed, the method should work. One potential problem would be if a user Cut the button, rather than Copying. This would leave him without the button to use later. Users should be warned about this, and be told explicitly to Copy, not Cut.
  148.      This stack contains a button that used the method described to move my ResCopy resource into another stack.
  149.      Please look at the stack script and the button script, and use them as examples for your own stacks.
  150.      There are, of course, NO fees for using any of this stack, my ResCopy XCMD, or any of the ideas here. I want people to use this stack as food for thought, and as an example of how to make things easier for users in the HyperCard world.
  151.      I've intentionally kept this stack simple, and intend it only as an example to other XCMD and XFCN developers. For an example of this method in actual use, see my stack called "Talk To Me", which uses three XCMDs and uses Macintalk to speak. Users can copy the talking commands with this method, and 
  152. use them in their own stacks.
  153.      This stack contains version 1.2 of the ResCopy command. This is the second version of this stack to be released. The XCMD itself has been improved and is more solid. A potentially serious bug has been fixed, also. Thanks to the people who pointed things out to me, and have offered suggestions.
  154.      ResCopy now will not cause HyperCard to lose track of resources in the current stack after it is run.
  155.     
  156.  
  157. -- part contents for background part 4
  158. ----- text -----
  159. ResCopy <source>,<destination>,<restype>,<resource>
  160.  
  161.  
  162.  
  163. -- part contents for background part 2
  164. ----- text -----
  165. ResCopy 
  166.  
  167. -- part contents for background part 8
  168. ----- text -----
  169. James L. Paul
  170.  
  171. -- part contents for card part 3
  172. ----- text -----
  173. Copy this button to a stack where you want someone to add a specific resource. One must add the name of this resource to the button script.
  174.  
  175. -- part contents for background part 9
  176. ----- text -----
  177. XCMD