Can't get in to create classes

I signed up, was accepted, and was told that I would get a login to start creating courses, but that did not happen. Now I don't even rememeber where to log in.
-p

yes many have this problem, try this link and see if it helps
http://www.petethomas.co.uk/logic-getting-started.html

Similar Messages

  • Can't get Contribute to Create New Page

    Can't get Contribute to Create New Page
    --Have 'tried' all options for 'new page' - button, File>,
    and Ctl + N
    --Have tried via each of my different websites
    --CAN Edit existing pages!
    --Established myself as Administrator, and Publisher
    --Downloaded "Update" & ran "Repair" option
    STILL Can't open a "New Page"!!!???!!!
    Can anyone help?

    I don't suppose you ever found an answer to this problem?
    I've got exactly the same on a laptop: Desktop is absolutely
    fine.
    As in your case the software works 100%, but you simply can't
    create a new page (across all sites). Crazy - no error message, no
    nothing.
    I did make the fatal error of installing a demo version of
    the software before buying the real software, so I did have to go
    through 6 pages of A4 instructions to try to get the read software
    to install... perhaps this is a vestige of that???

  • How can I get a module created in Captivate 4 to start on slide 2 when launched?

    How can I get a module created in Captivate 4 to start on slide 2 when launched?

    Hello
    Wanted to ask why do you have that first slide then? Just tried this:
    create and Advanced action with one statement: Jump to slide 2
    attach this action to the even Enter slide for the first slide
    You may see very quickly that first slide when playing. To avoid that (but it depends on the content of that first slide) you could  cover up the beginning of that slide for a very short time with a white rectangle.
    Lilybiri

  • AppleScript error with iTunes: Can't get window 'iTunes' of class pcap ...

    Hi there. I'm working on a script that posts iTunes track names to Campfire based on the AirPlay device in use. I've been getting a "Can't get window 'iTunes' of <<class pcap>> 'iTunes' of application 'System Events'" and was hoping someone might see an obvious answer. The error pops up randomly. Some machines receive the error much more often than others. Here's the code:
    global current_track
    global last_track
    global campfire_token
    global airplay_device
    global campfire_room
    global current_device
    (* Begin user defined settings ************)
    set campfire_token to "123456" (* Your Campfire API authentication token *)
    set airplay_device to "Apple TV" (* The name of your AirPlay device *)
    set campfire_room to "https://yourorg.campfirenow.com/room/123456/speak.xml" (* The Campfire room you'd like to post to *)
    (* End user defined settings *************)
    set current_track to ""
    set current_device to ""
    set last_track to ""
    on idle
              if application "iTunes" is running then
                        tell application "iTunes"
                                  if player state is playing then
                                            tell application "System Events"
                                                      tell application "iTunes"
                                                                set minimized of front browser window to false (*This AppleScript can only function when iTunes is not minimized.  *)
                                                                delay 2
                                                                set visible of front browser window to true
                                                                delay 2
                                                                set current_track to current track
                                                      end tell
                                                      delay 2
                                                      set current_device to the description of button 8 of window "iTunes" of application process "iTunes" of application "System Events"
                                            end tell
                                            delay 2
                                            if current_track is not equal to last_track then
                                                      if current_device as string is equal to airplay_device & " AirPlay" then
                                                                tell application "iTunes"
                                                                          set current_track to current track
                                                                          tell current_track
                                                                                    set trackName to (name)
                                                                                    set artistName to (" :: " & artist)
                                                                                    set albumName to (" :: " & album)
                                                                          end tell
                                                                          set track_info to (trackName & artistName & albumName) as string
      (* Replace apostrophes *)
                                                                          set search_string to "'"
                                                                          set replacement_string to "&#39;"
                                                                          set AppleScript's text item delimiters to the search_string
                                                                          set the item_list to every text item of track_info
                                                                          set AppleScript's text item delimiters to the replacement_string
                                                                          set track_info to the item_list as string
                                                                          set AppleScript's text item delimiters to ""
      (* Replace quotation marks *)
                                                                          set search_string to "\""
                                                                          set replacement_string to "&#34;"
                                                                          set AppleScript's text item delimiters to the search_string
                                                                          set the item_list to every text item of track_info
                                                                          set AppleScript's text item delimiters to the replacement_string
                                                                          set track_info to the item_list as string
                                                                          set AppleScript's text item delimiters to ""
                                                                          set shellCommand to ("curl -u " & campfire_token & ":X -H 'Content-Type: application/xml' -d '<message><type>TextMessage</type><body>" & track_info & "</body></message>' " & campfire_room)
                                                                          set shellCommand to shellCommand as string
      do shell script shellCommand
      (*display dialog shellCommand*)
      (*log "Posting to Campfire:" & shellCommand*)
                                                                end tell
                                                                delay 2
                                                      end if
                                            end if
                                            set last_track to current_track
                                  end if
                                  return 1
                        end tell
              end if
    end idle
    Thanks for your help. Any suggestions are appreciated!

    well, for information's sake, the cleaned-up script looks like this:
    (* Begin user defined settings ************)
    property campfire_token : "123456" (* Your Campfire API authentication token *)
    property airplay_device : "Apple TV" (* The name of your AirPlay device *)
    property campfire_room : "https://yourorg.campfirenow.com/room/123456/speak.xml" (* The Campfire room you'd like to post to *)
    (* End user defined settings *************)
    global current_track, last_track, current_device
    on run
      (* init at runtime*)
              set current_track to ""
              set current_device to ""
              set last_track to ""
    end run
    on idle
              if application "iTunes" is not running then return 60
              tell application "iTunes"
                        if (player state is not playing) or (current track is equal to last_track) then return
                        set last_track to current track
                        set minimized of front browser window to false
                        set visible of front browser window to true
                        set current_device to my getDevice()
                        if current_device as string is not equal to airplay_device & " AirPlay" then return
                        set track_info to my mungeText({name, artist, album} of last_track, "", "::")
                        set track_info to my mungeText(track_info, "'", "&#39;") -- Replace apostrophes
                        set track_info to my mungeText(track_info, "\"", "&#34;") -- Replace quotation marks
                        set shellCommand to ("curl -u " & campfire_token & ":X -H 'Content-Type: application/xml' -d '<message><type>TextMessage</type><body>" & track_info & "</body></message>' " & campfire_room)
      do shell script (shellCommand as string)
      (*display dialog shellCommand*)
      (*log "Posting to Campfire:" & shellCommand*)
                        return
              end tell
    end idle
    on getDevice()
              tell application "System Events"
                        tell process "iTunes"
                                  return description of button 8 of window "iTunes"
                        end tell
              end tell
    end getDevice
    on mungeText(itxt, stxt, rtxt)
              set tid to AppleScript's text item delimiters
              if class of itxt is text then
                        set AppleScript's text item delimiters to stxt
                        set itxt to text items of itxt
              end if
              set AppleScript's text item delimiters to rtxt
              set otxt to itxt as text
              set AppleScript's text item delimiters to tid
              return otxt
    end mungeText
    I'm positive there's a better way to check if AirTunes is the active device (maybe by seeing if the current playlist is a device playlist, and checking the source name?), but I don't have any way to test that.

  • How can Client get a ejb remoteinterface class through ejbhomeinterface?

    HI,I've got ejbhomeinterface class(ejbhomeinterface class is on my local machine),How can i get ejb remoteinterface class(it is on remote app server) ? I've tried
    getEJBMetaData() method, but throw class not found exception,pls help me,thank you very much!!
    Object ejbObj = null;
    Class remoteClass = null;
    EJBHome aHome = null;
    try{
    aHome = (EJBHome) javax.rmi.PortableRemoteObject.narrow(aHome, EJBHome.class);
    EJBMetaData metaData = aHome.getEJBMetaData();
    // Class homeClass = metaData.getHomeInterfaceClass();
    aHome = metaData.getEJBHome();
    remoteClass = metaData.getRemoteInterfaceClass();
    //following code i want use remoteClass invoke remote ejb mothod
    }catch(Exception e)

    may be you need create InitialContext first, than from InitialContext lookup Home interface. And than using home.create() get RemoteInterface and use it.

  • How can I get a playlist created on my iPad to iTunes?

    I create a playlist on the iPad... I love it... I want it on the iPhones in my household.
    How can I get that playlist into iTunes, so I can push it out to the other iOS devices?
    When I sync the iPad with iTunes, the playlist created on the iPad is wiped out.
    All devices (iPhone 4S, iPhone 4, iPad 2) are on iOS 5.0.1.
    Mac OS X Lion 10.7.2
    iTunes 10.5.1.
    Thanks

    You can't move an iMovie project file and expect it to play.
    You need to export from the machine that holds the source files to the format supported by the device.

  • How can I get Automator to create a workflow for combining .jpgs into pdf?

    I have a large folder with many subfolders, and each subfolder has many subfolders. Those last mentioned subfolders have many .jpgs inside which I want to make them into a pdf. The question is, how can I get automator to do this for me? I tried using the help but it only made things even more confusing, it didn't help at all. I also have an app for creating pdfs out of combining pngs, jpgs, gifs, etc. (Combine PDF).
    The task of making hundreds of pdfs out of so many jpgs that I have, is there somehow a way I can get automator to do this for me? So far I haven't even found an example with understandable screenshots so that I can get into the correct way of making a workflow do what it is supposed to do correctly.
    Please help...

    Thank you for your reply, the workflow is opened fine, however I'm not sure how to then get this scripted workflow to do what I want to do? I'm a complete n00b when it comes to Automator, is there perhaps a tutorial for idiots that is known where I could read about starting out with Automator to understand it better?
    Thank you

  • Can't get printer to create e-mail address

    I have a new 6500a printer at home.  It is hooked up to ethernet and the internet.  I can print to it from the PC's on my network and it is on the internet because I can access my google documents through the apps screen.  It fails to create an e-mail printer e-mail address.  It says the prnter was unable to connect to the server.  How specifically do I get the e-mail address to setup so that I can print from my ipad using eprint?

    You may need to set a static IP for your printer. Shane_R posted a link on this post to a document that will walk you through it. Click on the link below
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02817031&cc=us&dlc=en&lc=en&product=4023246&tmp...
    Also as he states in his post make sure when it askes for DNS information, enter in Google's DNS. Preferred DNS = 8.8.8.8 Alt DNS = 8.8.4.4
    If I helped you at all it would be great if you clicked the blue kudos star!
    If I solved your post please mark it as solved to help others.
    I'm a printer tech with HP.

  • How can I get permission to create a symbolic link?

    I am trying to create a symbolic link from a program, but I keep getting:
    A required privilege is not held by the client.
    I am running the program from my account which is in the Administrators group, and otherwise has admin rights. However, if I login to the Administrator account the program runs fine, so I know the program code is correct.
    I have checked the local security settings, and even added my account explicitly to the local security settings to create symbolic links, but that does not help. I have also turned of UAC, but that does not help.
    What do I need to do on Windows 8.1 to be able to create a symbolic link from an account other than Administrator?
    Cheers, Eric
    Eric Kolotyluk - software developer, music DJ, swing dancer

    Basically I have a Scala program that is doing:
      try {
        Files.createSymbolicLink(link21, folder1)
      catch {
        case fileSystemException: FileSystemException =>
          System.err.println("\n\t**** Error configuring test fixture ***\n\n")
          println(fileSystemException)
          if (fileSystemException.getMessage().contains("A required privilege is not held by the client"))
            println("You need to set permissions by...\n")
    Where Files is the java.nio API. In fact it's a unit test fixture that tests to make sure my code handles symbolic links properly. The test fixture creates a temporary directory, for example
    C:\Users\Eric\AppData\Local\Temp\testFolder-432432684744817467
    and more files and folders below that. In one folder, it tries to make a symbolic link to another folder.
    I tried what you said with Run As Administrator, in this case, I ran my Eclipse IDE as Administrator and the code works -- thanks for the tip :-)
    However, in practice, I need this to work as part of automated unit test running as part of a Maven build, so is there some way to set things up that do not require "Run As Administrator"?
    Now that I have one solution, I can probably figure out some hack, but I was hoping there would be some more simple straightforward way to do what I want.
    Eric Kolotyluk - software developer, music DJ, swing dancer

  • Can't get past the "Create Your Blackberry ID" screen when trying to set up email

    I had a 9810 and pretty much wore it out.   My wife also had a 9810 that was in good shape and recently got a new phone.    I backed up my phone and wipe hers, swith the SIM cards and restored my data to her phone.   Everything works perfectly except the email.   I can see all the email that was transferred, but I can't send or receive any new email.
    I figured I needed to go through the email set up.  In that process it wants me to create a blackberry ID.   I have filled otu the fiels numerous times and every it looks like it is going to go through and then it goes back to a screen where everything I just filled out is still there except it wants be to select a password and then confrim it a second time.   I do that again and it does the same thing again.   When I put a password in it telss me I have picked a "strong" one, but it just won't seem to stick and let me past this screen
    All I really want to do is get my phone to send and received email, like I said I can see all the old emails that came over from my old phone in the data restore.
    Any suggestions would be appreciated.

    Hello,
    I recommend you contact AT&T's dedicated BB Support staff (call their front line, request escalation to BB Support) and have them check to be sure that your account with them is correctly configured for this device. Sometimes when switching devices things don't fully automatically move behind the scenes, and only they (ATT) can validate that.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Despite incorporating many suggestions, can't get iMovie to create new project or open old projects.

    I cannot get iMovie '11 (version 9.0.9) to create a new project or open existing projects. I'm using OS X 10.8.5.  According to Finder I have 405.39 GB available. I have tried reinstalling iMovie, but that did not work. I checked my Sharing & Permissions info and I have Read & Write privileges. I verified and repaired permissions on my hard drive. What else can I do?

    Some basics:
    Install all Windows Updates.
    Install latest version of Apple QuickTime (v7.6.7 at time of writing). Even if you don't use QuickTime, PRE relies heavily on it.
    Install most recent graphics and sound drivers from the manufacturers web sites.
    Run Disk Cleanup.
    Run Defragmenter.
    Temporarily disable any anti-virus real time scanning.
    Use the GSpot Codec Information Utility to analyse the file and post screen image.
    Post back here with the necessary information described here: Got a Problem? How to Get   Started
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children

  • How can i get size of a class?

    is there any way to find a size of class? like
    sizeof(struct stu) in c language

    Yes you can with 1.5 using http://java.sun.com/j2se/1.5.0/docs/api/java/lang/instrument/Instrumentation.html
    It is not straight forward process. You have to create your own agent:
    package foocompany.agent;
    public class SimpleAgent {
       private static Instrumentation instrumentation;
       /** Creates a new instance of SimpleAgent */
       public SimpleAgent() {
       public static void premain(String agentArgs, Instrumentation inst) {
          instrumentation = inst;
       public static long sizeOf(Object object) {
          return instrumentation.getObjectSize(object);
    }Create a manifest file:
    Manifest-Version: 1.0
    Premain-Class: foocompany.agent.SimpleAgentCombine them into a jar file.
    And then specify the jar file on the command line:
    java -javaagent:"<path to jar>\simpleagent.jar" <rest of arguments...>
    Then you can call SimpleAgent.sizeOf() on any object from your program.

  • How can i get a java executable (*.class) run on a web browser?

    I have created a simple appilcation in java and i would like to view it through a web browser.
    In order to do so, do i need to use an application server or just a web server?
    Can you come up with another solution to solve my problem(view the java application through the web)?
    Thank you in advance.

    If it HAS to be an application (perhaps something you have already written and now need to distribute), then Java Web Start may be an option.
    What is your user base? How many people will be using it? In what environment? How frequently will they use your app? I think you mentioned that it needs to read files. Is that on the user's machine?
    You may be able to create an applet version of your application using the same logic but subclassing some of the components to allow for remote login etc.

  • Can I get jar version from class run from within jar ?

    I am launching a number of applets from a single jar file. I want to display jar file version on initial applet. I would ideally like the applet to be able to determine from the jar file which it was part of what version it is . Is this possible ?
    Applets are swing based & I'm using java plugin

    if your jar file has a manifest that specifies the version number, you can use java.util.jar.JarFile to get the information. Other wise, you would just have to induce it based upon the file attributes of the jar file, using java.io. Remember that applets can not, by default, read the local file system, so you might have to use signed applets.

  • How can I get Flex to create a new email using the client's default that pre-fills a field?

    Assume that I have a String with some emails in it. When a user clicks on "Send Email to these People" I want their default email client (like Outlook or Thunderbird) to open up a window with new email ready to be composed. All I want is for the String's data to appear in the BCC (or Send To:) field of the email. Is there a mailing function (like the equivalent of PHP's mail()) that I can use for this? Thanks for any insight and help!

    Yeah, sorry about that. I remembered after I had already submitted this thread. I've just been so stressed out, little things like this didn't cross my mind. You can delete the other one if you are the admin here.

Maybe you are looking for