I am using a book on lingo puzzles and Director 12 doesn't like using [cc] in the code

The game is a word search game in an advanced lingo book and the lingo code is using [cc] which is coming up as a code fault.  What is wrong or is this use of [cc] obsolete?  And if so, how can it be corrected?  Thank you.
on getPropertyDescriptionList me
  list = [:]
  -- the text member with the words in it
  addProp list, #pWordSource,[cc]
    [#comment: "Word Source",[cc]
     #format: #text,[cc]
     #default: VOID]
  addProp list, #pEndGameFrame,[cc]
    [#comment: "End Game Frame",[cc]
     #format: #marker,[cc]
     #default: #next]
  return list
end

I have made the following changes:
Replace...
           #default: VOID]
       with
           #default: ""]
Replace...
          #default: #next])
       with
           #default: #next]
on getPropertyDescriptionList me
  list = [:]
  -- the text member with the words in it
  addProp list, #pWordSource,\
  [#comment: "Word Source",\
#format: #text,\
#default: ""]
  addProp list, #pEndGameFrame,\
[#comment:"End Game Frame",\
#format: #marker,\
#default: #next]
  return list
end

Similar Messages

  • IIwas viewing a photo book in slideshow mode and it froze so all I can see is the cover page of the book.  I let the battery die down but when I powred up...there it is again the first page. F3 allows me to see pictures of a few other screens

    i photo, I was viewing a book in slideshow mode and it froze on the cover page. I let the computer battery die out but when I powered up again the screen is frozen on the 1st page of the book.  if I F3 it allows me to see a few other screens but if I click on them I am back to the frozen cover page again.

    You should really read the manual.
    "How do you restore from backup? "
    Restore.  When given the choice, choose to use backup.
    "And how can I check to see if the pics and videos are on my computer somewhere first??"
    They would only be where you put them.  What program did you use to import them?  Pics/vids taken with ipod are not part of the sync process at all.  You should be importing them just as you would with any digital camera.
    If you did not import them, then they are not on your computer.

  • I am updating content in an old site and am using an old extension to close a child page.  It has worked fine up until I started using CS6.  The code for this is in a template I am using and the code has not changed.

    So the site is www.fulcrumcwi.com and the page URL is: FulcrumCWI Rebecca Morgan Operations Strategy Consulting Newsletters.
    if you choose the first HTML link to the current newsletter when you try to use the close buttons neither of them work.  Yet if you go down to the issue from January, and go to the HTML version, it works just fine.  This is the code that the extension puts in:
    <form>
              <input name="Close" onclick="self.close();return false" type="button" value="Close" />
            </form>
    I haven't changed it in any way.  The only change is that I'm using Dreamweaver CS6 to make these changes.  Anyone have a fix for me?
    As always, thanks in advance.  (and yes, I know this site needs major updating)
    GraphicEdge

    Boy, that didn't really come out very well.
    On the archive_newsletters.html page, the "HTML" links are supposed to have target="_blank" in them...
    <a href="newsletters_html/2014_03.html" target="_blank">HTML</a>
    so a new tab is opened with the info. That new tab is then closed by the this.close() javascript.
    On the newsletters that don't close correctly, there is no target="_blank" to open them in a new window initially, so they can't close with that method.

  • When importing a spreadsheet with redeem codes into apple configurator, it says it's not the right codes for the app.  But it is the right codes. I used one of the codes to purchase the app in itunes.

    I have a cart of 25 ipads with a macbook air.  I have logged into my VPP account and purchased the needed number of copies.  I downloaded the spreadsheet.  I took the first code from the spreadsheet, and logged into itunes using a regular account (not my VPP account), and used the code to download the app.  I put the app into configurator and then tried to add the spreadsheet with the codes in it.  It comes up and tells me that it is not the correct spreadsheet for that app. But it is the correct spreadsheet!!  I tried re-downloading the spreadsheet again and even tried re-downloading the app.  So I've now used two of my redeem codes and still can't get it to accept it into apple configurator.  I removed the app from apple configurator and re-added it.  The error message says it's not the right codes for the app "Grammar Games by Tap To Learn" and to please get the codes for "Grammar Games by Tap To Learn."  It's the same one!

    It won't let me edit my post, so I'm typing this reply to add...
    I tried taking the version number out of the title. It looked like there were two spaces in the title "Grammar Games  by Tap to Learn". So I even made sure that matched. I still can't import my codes. Any other things to try would be really appreciated.

  • The audio book on my nano only emits a quick, tin-like sound beginning with the 77th chapter. Any ideas?

    I have been listening to a four volume audio book on my nano. At the 76/77th chapter, the narration stops and all I hear is a faint, rapid beat-like sound. This happens on all subsequent chapters. (The first 76 chapters continue to work just fine.) This had never happened before, and I've listened to a ton of books.
    I restored the nano to the original factory settings and synced the book to my nano again. Same problem.
    The book plays just fine on my computer, so I don't think it's corrupted.
    One other bit of information. About 3 months ago, I dropped the nano and cracked the glass a bit. I covered the cracks with some clear packing tape, and it has continued to work just fine--until now.
    My software is up to date--version 1.2. Mine is an 8 GB nano, the little square version. It's about a year old and is formatted to my Mac.
    Any ideas?

    The info on my MacBook is incorrect. I'm running OS 10.9.5,

  • TS1292 i am unable to use my card the code is being blocked and not sure why

    i have tried to use my card and am not able to please help?

    Have you tried a soft-reset ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider if it appears), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Would like help with treeset ,the codes that using for sorting, please ?

    hi every body. i faced a problem while writing this program, everything worked properly except this one. The program is related to Jframe and it asks the user to add three labels , three text field , one text area and three Jbuttons which are add sort and exit. i could deal with add and exit but sort, i couldn't do it properly because i don't know the codes that should be added in actionperfomed?
    These codes are :
    package gui;
    import javax.swing.SwingUtilities;
    import java.awt.BorderLayout;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import java.awt.Rectangle;
    import java.util.ArrayList;
    import javax.swing.JButton;
    import javax.swing.JTextField;
    import javax.swing.JTextArea;
    import sun.misc.Sort;
    import domain.Student;
    public class StudentFrame extends JFrame {
          * This method initializes btnAdd     
          * @return javax.swing.JButton     
         private JButton getBtnAdd() {
              if (btnAdd == null) {
                   btnAdd = new JButton();
                   btnAdd.setBounds(new Rectangle(13, 135, 59, 27));
                   btnAdd.setText("Add");
                   btnAdd.addActionListener(new java.awt.event.ActionListener() {
                        public void actionPerformed(java.awt.event.ActionEvent e) {
                        btnAddClicked(); // TODO Auto-generated Event stub actionPerformed()
              return btnAdd;
         protected void btnAddClicked() {
              // TODO Auto-generated method stub
         String name = txtName.getText();
         String id = txtID.getText();
         String age = txtAge.getText();
         Student s = new Student(name , id , age);
         txtArea.setText(String.valueOf(s ));
          * This method initializes btnSort     
          * @return javax.swing.JButton     
         private JButton getBtnSort() {
              if (btnSort == null) {
                   btnSort = new JButton();
                   btnSort.setBounds(new Rectangle(95, 136, 62, 25));
                   btnSort.setText("Sort");
                   btnSort.addActionListener(new java.awt.event.ActionListener() {
                        public void actionPerformed(java.awt.event.ActionEvent e) {
                             btnSortClicked(); // TODO Auto-generated Event stub actionPerformed()
              return btnSort;
         protected void btnSortClicked() {
              // TODO Auto-generated method stub
          * This method initializes btnExit     
          * @return javax.swing.JButton     
         private JButton getBtnExit() {
              if (btnExit == null) {
                   btnExit = new JButton();
                   btnExit.setBounds(new Rectangle(173, 134, 61, 23));
                   btnExit.setText("Exit");
                   btnExit.addActionListener(new java.awt.event.ActionListener() {
                        public void actionPerformed(java.awt.event.ActionEvent e) {
                             System.exit(0); // TODO Auto-generated Event stub actionPerformed()
              return btnExit;
          * This method initializes txtName     
          * @return javax.swing.JTextField     
         private JTextField getTxtName() {
              if (txtName == null) {
                   txtName = new JTextField();
                   txtName.setBounds(new Rectangle(79, 11, 60, 23));
              return txtName;
          * This method initializes txtID     
          * @return javax.swing.JTextField     
         private JTextField getTxtID() {
              if (txtID == null) {
                   txtID = new JTextField();
                   txtID.setBounds(new Rectangle(73, 55, 65, 26));
              return txtID;
          * This method initializes txtAge     
          * @return javax.swing.JTextField     
         private JTextField getTxtAge() {
              if (txtAge == null) {
                   txtAge = new JTextField();
                   txtAge.setBounds(new Rectangle(74, 96, 61, 24));
              return txtAge;
          * This method initializes txtArea     
          * @return javax.swing.JTextArea     
         private JTextArea getTxtArea() {
              if (txtArea == null) {
                   txtArea = new JTextArea();
                   txtArea.setBounds(new Rectangle(138, 5, 154, 128));
              return txtArea;
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        StudentFrame thisClass = new StudentFrame();
                        thisClass.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                        thisClass.setVisible(true);
          * This is the default constructor
         public StudentFrame() {
              super();
              initialize();
          * This method initializes this
          * @return void
         private void initialize() {
              this.setSize(300, 200);
              this.setContentPane(getJContentPane());
              this.setTitle("JFrame");
              return jContentPane;
    }Edited by: hypocrisy on Apr 26, 2009 6:51 PM

    There are three actionPerformed in that program.One for add Jbutton , Sort , and Exit
    the codes that i have added for add button after action performed are
    String name = txtName.getText();
    String id = txtID.getText();
    String age = txtAge.getText();
    Student s = new Student ( name , id , age);
    System.out.println(s);
    the codes for Exit button to make it works properly was :
    System.out.println(0);
    But when i came to Sort Button and i tried to enter many codes but it didn't sort properly so would you like to help me with the right codes :)

  • HT5731 What if I purchase an App from the App Store...start using it, exploring it, etc. and discover I don't like it - inspite of the 4.5 star rating...can I return it?

    I purchased an app (for $9.99) and after looking at it, don't like it.  Is there any recourse to 'return' it?

    If you go to https://reportaproblem.apple.com/ and sign in with your Apple ID, you can report an issue with a purchase and request a refund. In this particular scenario, the best choices to select would probably be "Item opens but doesn't function as expected" or "Problem is not listed here."

  • Separate address book for my wife and I

    I reently switched to Mac and this is driving me crazy. I would like to keep our computer under one user so we don't have to switch user profiles to access her address book or if I update and address in my book, it doesn't get updated in hers. But, when I go to address e-mails I don't want her huge list of names being auto-suggested and me having to sift through all of her addresses in order to find the people I want to address the email to. The question: Is there a way to keep all of our addresses in one address book (one user profile), but when I am logged into my mail, Mail knows to only look in MY address group for the email addresses I specify, instead of pulling up my wife's rediculous sized (and often unorganized) bunch of addresses. I don't want to accidentally slip up with the arrow keys and add one of her recipients to an outgoing email. Sometimes my wife's friends wouldn't appreciate emails that guys send to each other if you know what I mean...
    Thanks for any help...and please tell me there is a way to separate my wifes email address book from mine...please tell me Mac thought of this.
    PS I've tried the whole 2 user profiles thing and the idea of seperate address books for updating sake and other reasons, I'd like to try the single profile thing.

    I thought Mac would be better with their mail client than this.
    But Mail has nothing to do with this at all. Address Book is a completely separate application, and it's that way for good reason; it's not merely a whim.
    I can't imagine what Mac is thinking that if a family of 5 uses the family computer, that all 5 people's email addresses clog up the search for the person writing the email at the time.
    Each user has a separate Address Book (and other applications like Mail and Safari) to keep that exact scenario from happening, as well as to keep people out of each other's accounts so things don't go missing, private emails aren't being read by overly curious people, and so your account doesn't get screwed up by someone else playing with things they shouldn't be touching.
    Are there any third party apps or plugins I can download in order to tell Mail that when I am in my account to only search for the contacts in a certain group that I create?
    Sorry, but there's no such things available. It would be impossible for your Mac to become sentient and know what you created versus someone else creating.

  • Using Java Embedding Unzip Code and a Trigger File in a BPEL Process

    Hello,
    Thanks in advance to anyone that contributes with any insight.  It is much appreciated.  Having said that I will get to the crux of my problem.
    I am currently using Oracle 11g.  I have created a SOA composite application that incorporates BPEL and Java.  I have the code needed to unzip and extract compressed folders.  However, when this was first built out using BPEL it automatically created a web service in the "exposed service" lane and not a file adapter which I believe is needed in order to trigger the process via a start.txt file for example.  Based on what I know ... this web service automatically connecting to the BPEL process was simply due to the order of operations, etc.  So by creating a 'read' file adapter first and then creating the BPEL process and selecting the template "Define Service Later", it does not automatcially connect the web service to the BPEL process and it will allow me to connect a file adapter to this BPEL process instead ... great.  When opening up the BPEL file I then connect a recieve component to this file adapter and configure appropriately.
    Essentially, my objective in setting up a trigger to start this unzip process is due to the BPEL process before that outputs or writes the .zip folder to the same directory that I want to poll and/or trigger via a start.txt file.  I can get this process to work with a webservice connecting to the BPEL process and by using a Java Embedded in BPEL file, which in turns calls the package/ class that has the java code needed to unzip.
    For some reason whenever I try to use a file adapter instead of the native web service that gets created (as mentioned above) it doesn't work.  It seems to build or compile just fine however, I am getting errors when I try to deploy.
    Note:  The Java code contains all the paths where the zip file is to be taken from and extracted to.  So because this is in the code I don't need the file adapter to handle this.  I just want to use the file adapter so that I can trigger the process via start.txt or something of that nature.
    Thanks to anyone that has any suggestions.
    Kind Regards,
    Kevin
    Errors when attempting to deploy are as follows:
    [04:12:54 PM] Error deploying archive sca_Job2_UnZip_rev1.0.jar to partition "default" on server soa_server1 [http://WN017A.homedepot.com:8001]
    [04:12:54 PM] HTTP error code returned [500]
    [04:12:54 PM] Error message from server:
    There was an error deploying the composite on soa_server1: Deployment Failed: Error occurred during deployment of component: BPELProcess1 to service engine: implementation.bpel, for composite: Job2_UnZip: ORABPEL-05250
    Error deploying BPEL suitcase.
    error while attempting to deploy the BPEL component file "H:\Oracle\Middleware\user_projects\domains\Dev_Acorde\servers\soa_server1\dc\soa_d78eb301-314c-422a-a748-bcfe7d0906e8"; the exception reported is: java.lang.RuntimeException: failed to compile execlets of BPELProcess1
    This error contained an exception thrown by the underlying deployment module.
    Verify the exception trace in the log (with logging level set to debug mode).
    [04:12:54 PM] Check server log for more details.
    [04:12:54 PM] Error deploying archive sca_Job2_UnZip_rev1.0.jar to partition "default" on server soa_server1 [http://WN017A.homedepot.com:8001]
    [04:12:54 PM] ####  Deployment incomplete.  ####
    [04:12:54 PM] Error deploying archive file:/C:/JDeveloper/mywork/Job2_UnZip/Job2_UnZip/deploy/sca_Job2_UnZip_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)

    Just wanted to provide a screenshot of the BPEL file as supporting documentation to better illustrate my issue.
    Thanks so much,
    Kevin

  • Using @Prompt in the SELECT clause (?)

    Post Author: faltinowski
    CA Forum: Semantic Layer and Data Connectivity
    Product:  Business Objects
    Version:  6.5 SP3 
    Patches Applied:  MHF11 and CHF48
    Operating System(s):  Windows
    Database(s):  Oracle
    Error Messages:  "Parse failed: Exception: DBD, ORA-00903 invalid table name  State N/A"
    Hi!  I'm bewildered -- we have an object that parses but when I try to reproduce this object, it does not.
    We have a universe that's been in production for several years using an object developed by another designer who's no longer with the company.  This object is a dimension, datatype is character, and there's no LOV associated.  The SELECT statement in this object is
    decode(@Prompt('Select Snapshot Month','A','Object Definitions\CY Month Snapshot',MONO,CONSTRAINED),'00-Previous Month',to_number(to_char(add_months(sysdate,-1),'MM')),'01-Current Month',to_number(to_char(add_months(sysdate,0),'MM')),'01-January','1','02-February','2','03-March','3','04-April','4','05-May','5','06-June','6','07-July','7','08-August','8','09-September','9','10-October','10','11-November','11','12-December','12')
    This object parses. The client uses the object in the select clause to capture the "month of interest" for the report.  So the report may be for the entire year's data which is graphed to show trends, but there's a table below the graph which is filtered to show just the month of interest.  Typically they use the value "00-Previous Month" so they can schedule the report and it will always show the last month's data.
    Problem
    The original object parses.
    If I copy the object within the same universe, it parses.
    If I copy the code into a new object in the same universe, it doesn't parse
    If I copy the code into a new object in a different universe, it doesn't parse
    If I copy the object to a different universe, then edit the LOV reference, it doesn't parse
    If I create any new object having @Prompt in the SELECT statement, it doesn't parse.
    If another designer tries - they get the same thing.
    What am I missing?  Obviously someone was able to create this successfully.
    On the brighter side
    The object I created in a new universe (which doesn't parse in the universe) seems to work fine in the report.

    Seems that, the prompt syntax is correct.
    But the condition is not correct.
    You are taking the prompt value and not doing anything. That could be one issue for this error.
    I believe that, you just want to capture the prompt value use it in report level and do not want to apply as a filter.
    So, use the condition as follows.
    @Prompt('Select Grouping','A',{'A','B','C'},mono,constrained) = @Prompt('Select Grouping','A',{'A','B','C'},mono,constrained)
    Hope this helps!

  • Correct way of using Packages in the application

    Hi,
    I would like to know if there is any performance loop hole if i use old developed packages in my current project?
    Will there be any problems with the oracle memory structures like lib cache,dict cache and buffer cache?
    Example:
    I have Packages A,B,C,D
    Now i will develop package E, in package E, i want to utilize the old developed business librarys i.e A,B,C,D in E
    i.e PACKAGE E AS
    BEGIN
    A.method();
    B.method();
    C.Method();
    D.Method();
    END;
    If there will be the performance problems can i develop the same functionality which is there in the previous one in the existing package?
    Thanks!!
    VJ

    Hello VJ,
    that's what packages are made for: to be reused. On the other hand, if you use only a small part of the code in the "old" packages it might be useful to extract this code, but only for maintainance reasons. Any developer will be glad if he doesn't have to search 5000 lines of code only to maintain the 100 lines that are used.
    So in my opinion the question is: will the procedures/functions of the old packages have to be kept in sync for more then one application, than just reuse them. Do you use most of the code in the packages then just reuse them. If you use only a small part of the code then consider extracting it, but only for maintainance reasons.
    Or does old mean that the packages are inefficient? Otherwise they are not old but as young as ever.
    Regards
    Marcus

  • My Mac Book Pro is slow and at times I have to reboot to connect to the net

    My Mac Book Pro is slow and at times I have to reboot to connect the net.  Also wondering how do I check if my software is up to date?  Thank you.

    To check to see if your software is up to date, go to >Software Update and you can check for updates.
    No idea why your Mac is slow--there could be a variety of things that could cause slowness. A good start would be to see if all your RAM is recognized. >About this Mac will show you how much RAM you have. You can also open Activity Monitor and check your RAM usage.
    Also, how full is your hard drive? You should have a minimum of 10% free space for the OS to operate properly, and 15% to 20% is better.
    No idea why you have to reboot to connect to the internet, but it could be related to the slowness. Rebooting will free up RAM among other things.
    Which MBP do you have and which version of the OS are you running?

  • I'm trying to use a iTunes card but when I put the code it says "error -1202". What is? How can I manage?

    I purchased an iTunes Card, and I have already an account: I've already used successful an iTunes card some days ago.
    But now, when I try to use the code of this new card it says "error -1202" and "try later".
    I've tried many times, but unseccessful.
    How can I manage?
    Thank you.

    It may be due to server stress, after all, it is the holidays and lots of people will be getting Macs, iPads, iPods, and iPhones as well as iTunes gift cards so it may just take a little waiting. Keep trying every day for 5 days, and if it doesn't work after that, contact the retailer you got it from or contact Apple. None of us here have any direct contact with Apple, so we won't be able to tell you an exact solution.

  • New user. cannot input start up code because keyboard will only let me use numbers only.  Since the code requires both numbers and letters, I'm not able to complete the code and install the program

    I need to do the finial step to activate elements 12. For some reason my keyboard will not allow me to print letters, only numbers. Since the code that is required for the final step requires both numbers and letters I'm not able to complete .

    If the code has letters it's not a serial number, but  a redemption code that you use to get a serial number:
    Redemption Code Help

Maybe you are looking for

  • Satellite L755 PSK2YE - Dvd writer blinks when I am watching movies

    Hi I have a Toshiba Satellite L755 PSK2YE with windows 7 64 bit The Dvd writer blinks when I am watching movies Do i need to update the BIOS or what >> BIOS 2.70 to 2.78

  • Regarding ALE and IDOC's

    anybody send me quick explanation of ALE configuration and IDOC'S with detailed explanation of each and every step...... i tried a lot but i didn't get that material........... good material will be rewarded with maximum points.......... plz don't gi

  • Changing the filenames using unix script

    Hi, I have a scenario where I have to change the file names on the Receiver CC using a unix script and add date and timestamp to the file name this is what I'll be writing to filename_01.xml I need to change that to newfilename_01_MMDDYYYY_HHMISS.xml

  • Need help getting PSE5 working on Vista 64-bit

    I've read in the Forums that it will work if I download the 5.0.2 update, but when I try to do the download, I get an error message saying it will not work with my version.  Can anyone help with this?  Thanks.

  • Wanna buy a Mac

    hey, i'd like to buy a Mac since i'm gonna start studying graphic design, i'd like find some help, on what should i be buying... ty =)