E17 edge resistance question (solved, easy one!)

hey guys,
I have wanted to like enlightenment for a long time, and both it and I have progressed enough that it is my primary desktop, with only a few annoying issues.  The biggest one is concerning desktop switching. I do not want to be able to flip to a new desktop by moving the cursor to the edge of the screen.  With other pagers I have been able to turn that behavior off.  With the e17 module, I can't figure out how, or whether it is even possible. I've adjusted edge resistance and some other things but no luck.
Help? Thanks.
Last edited by scrawler (2011-04-01 10:05:13)

I will try that. And I'm embarrassed, a little.  I searched, honest!  I've been using duckduckgo as a search engine lately, so the search results were not as good as yours.  Yeah, that's the excuse I'm going with.
Thanks a lot.  Easy answer or complex, I've found that sometimes it just takes asking.
edit: worked like a charm.  I'm all giddy now, thanks again.
Last edited by scrawler (2011-04-01 10:04:18)

Similar Messages

  • Unhappy with final product - bringing my questions/issues to one thread

    I have been trying to get what I consider an acceptable DVD from my new Mac. I have started a couple of threads and posted in a couple of others, but I figured it was better to bring all my questions/problems to one thread. I'm going to try to give all the information that I can think of, in hopes that yall can help me.
    I have iMovie11, iDVD7.1, Toast 8 Titanium, and Final Cut Express4.0.1.
    At this time, the video I'm working with came from a Flip Ultra HD (the 30fps version, not the newer one that does HD at 60fps).
    I have edited an 18 minute project, and created numerous versions of it, which I then burned to DVD with Toast. The final product on each disk all look pretty much the same to me, with the one problem that is making me go nuts --- the video playback does not appear "smooth". It looks like it is playing back at less than 30 frames per second.
    I don't expect perfect video quality from the Flip camera - actually the video is acceptably clean and sharp (for me) - it's the frame rate thing that is killing me. In the past I have burned numerous DVDs from MiniDV through Sony Vegas that play back perfectly.
    As of tonight, I have discovered that I apparently chose the wrong "easy setup" for FCE, it was on DV-NTSC, and I think I have found that it should have been on HDV-Apple Intermediate Codec 720p30 - although I might be wrong about that as well.
    I did not do any kind of conversion to the Flip videos before working with them in FCE - don't know if this would be part of my problem.
    In my trying various setting for the export, I have found "Key Frames Every xxx" with a default at 24 - don't know what this is or if it is related to my problem.
    I don't mind re-editing the entire project if there is something I can do that will make this better, or if this is as good as it is going to get with this source video.
    Also - I've noticed that anytime I add or make any changes to a transition, I have to re-render that section. Is this normal, or is it because I'm using video straight from the Flip (without MPEG Streamclip'ing) it first, or some other reason - maybe related to my wrong easy setup choice?
    Please let me know if there is other information I can provide that might help you help me. I can see that I will love working with Final Cut Express and playing with all that it can do once I figure out how to set the export settings like they should be.

    All the source video is converted, new project started with correct easy setup, corrected clips imported - the video looks awesome in FCE preview.
    I notice that it still requires a re-render where titles are added from Live Type - is that normal or did I have something wrong with the items coming from Live Type?
    I also exported a short video 2 different ways:
    export - quick time movie - self contained.... This one has a very subtle jump just before and after each transition that I don't see in FCE while editing, it's only in the completed version
    and....
    export - using qt conversion
    format - quicktime movie
    options - compression h.264
    quality - high
    key frame rate - 24
    frame reordering - yes
    encoding mode - multi-pass
    dimensions - compressor native 1280x720
    This one does not have the jump before and after transitions, but from what I read earlier in this thread, I should be able to just use the "export - qt movie - self contained" - correct?
    Message was edited by: bhamjeff

  • Import statements-- Please clarify Easy one...For You

    Hi,
    Please clarify and i hope it would be easier one.
    I have imported two packages of same type like:
    import java.util.*;
    import java.util.*;
    in my programme and what will be the cause, i know that i dont get error, i wan to know that wat compiler will do>>>
    1. Whether it will tak more compilation time?
    2. It will take more memory?
    Please clarify???
    Thanks in Advance.

    1. Whether it will tak more compilation time?Probably not
    2. It will take more memory?No

  • Solve thhis one

    select name sof employee along with their current salary and incremented salary. the employees getting curr. sal. less than & equal to 1500 to get increment of rs.100. for sal>1500 and sal<2500 to get increment of 200 and sal>2500 and <3000 to get increment of 300 and above 3000 no increment.
    only use decode and sign funtion to solve this one. no case or no other way will be used.

    Unfortunately Charles response uses UNION, and I'm guessing the exercise is about not using ANY other methods, including union, to solve the problem. The answer without using anything but decode and sign is going to be complex to the point of silliness. Here are the base ideas you will need:
    1) to use sign on a range, you must multiply your value - the bottom value * your value - the top value. For example, if I wanted to locate values of X between 6 and 9 (inclusive), I would use sign((x-5)*(x-10)). This would produce a negative result for 6,7,8 and 9, and either 0 or 1 for any other numbers.
    2)So your 'first' decode for this example would then be:
    decode(sign((X-2500)*(X-3000)),-1,X+300,X)
    Now the range you would use here MUST be the HIGHEST range in which you are going to make a change to the value. That's because you then have to embed Decode/Sign statements within each other. Each 'STEP' in the process adjusts the original salary upwards if it falls in the range, so since each subsequent step works on a 'lower' range, the already adjusted salaries would be left alone. In this example I'm using 'X' to represent the salary from your table.
    3) For each subsequently lower range, you create a new version of the statement above, this time I'll use 'Y' as salary. That would give me:
    decode(sign((Y-1500)*(Y-2500)),-1,Y+200,Y)
    BUT, I then have to substutute my original decode/sign statement for EVERY INSTANCE of 'Y'. So the next step would actually turn out to be:
    decode(sign((decode(sign((X-2500)*(X-3000)),-1,X+300,X)-1500)*(decode(sign((X-2500)*(X-3000)),-1,X+300,X)-2500)),-1,X+200,decode(sign((X-2500)*(X-3000)),-1,X+300,decode(sign((X-2500)*(X-3000)),-1,X+300,X)))
    And that's just the second step.
    So, I would have to keep doing the new variable and substituting the entire previous step for the new variable each time. Perhaps there is a shorthand way of coding this that I can't come up with. This way will work, but the code will be ridiculous. I am hoping that the real 'lesson' in this exercise is DON'T USE SILLY METHODS LIKE DECODE/SIGN WHEN CASE IS MORE APPROPRIATE!!!!! I know in the application I work on daily there are about 100 examples of where someone used DECODE/SIGN when GREATEST or LEAST would have taken up 90% less code.....
    Edited by: user483498 on Aug 26, 2009 6:20 PM
    Edited by: user483498 on Aug 26, 2009 6:22 PM

  • Getting redirect to work  -- easy one?

    Hopefully this is an easy one for someone to answer -- I'm simply trying to set up an action-mapping that performs a redirect instead of a forward. If I use the following xml in struts-config.xml (I'm using struts-faces), then everything "works":
    <action
    path="/search"
    type="com.wheels.struts.SearchAction"
    name="searchForm"
    scope="request"
    input="search">
    <forward
    name="results"
    path="faces/results.jsp"
    />
    </action>
    I get an error if I change the forward to be a redirect, however, as in:
    <action
    path="/search"
    type="com.wheels.struts.SearchAction"
    name="searchForm"
    scope="request"
    input="search">
    <forward
    name="results"
    path="faces/results.jsp"
    redirect="true"
    />
    </action>
    The error I get is:
    java.lang.IllegalStateException: Cannot forward after response has been committed
    Any thoughts on this one? Is there something I need to change in my Action class to properly redirect instead of forward? Something in struts-config.xml??
    Thanks very much.
    -Adam

    I would agree this is probably an easy one, but only on the STRUTS-USER mailing list :-). To subscribe, send an empty message to [email protected] Alternatively, you can find links to various archive sites for previous postings on this list at:
    http://nagoya.apache.org/eyebrowse/SummarizeList?listId=42
    Craig

  • HT1918 What about the verification questions? the ones like "way was your first job?" or "your favorite teacher?" I just got a new iPod and forgot the answers to those questions, and need to change them..

    What about the verification questions? the ones like "way was your first job?" or "your favorite teacher?" I just got a new iPod and forgot the answers to those questions, and need to change them.. not sure how, but I need to do that in order to download new stuff on my new ipod

    Funds cannot be transferred from one Apple ID account to another.
    Try here > Rescue email address and how to reset Apple ID security questions
    If that doesn't help, contact Apple for assistance with your security questions > Contacting Apple for support and service

  • Hopefully this is an easy one

    Hopefully this is an easy one. how do you disable timed slide advance in Captivet 3? I have not been able to find it anywhere. Thanks

    Welcome to the all volunteer Captivate forum.  Several options.
    - Add <Back and Next> buttons on each slide manually
    - Place click boxes on the screen.  This is a neat way to do it because the click box can be the entire screen with a 100% transparency.  However, users must know to click the screen to advance and then there is no <Back or rewind type option
    - Correct interactions can be added with click boxes.  Use Captions to ask the user to do something and when they click the right place, the series advances.
    Hope this helps a bit.
    Joe C.

  • A REAL easy one-display 10

    Greetings;
    This should be an easy one, just one that is driving me crazy.
    I have 10 instances from 2 tables displayed on a form. The first field is to enter a stock number, the second field looks up the description in a reference table. This works fine in the first row, but, when a stock number is entered in the second row, instead of entering a description in the second row, the description in the first row is "updated". Please, what am I missing??

    I'm not sure I got it right.
    Does that mean you have 2 data blocks? If so, it's quite clear that, when being in the first block and refferencing the items in the second, that would have effect on the record that is current in the second block, that, in your case happens to be the first record.
    If it is like I imagine, then you should put both fields (including the refferenced one(s)) in the same data block with a data source set as the table you update, but have the refferenced field(s) set as non-database item. The refferenced field(s) are to be populated through a select in the post-query trigger on the given block, or, eventually in when-validate-item.
    Sorry, but if this can't help you, you should study more and especially be more specific in what you ask.

  • Easy one for someone, I hope

    This is probably an easy one for someone:
    I have a simple password function in a child movie and am
    using the standard code to activate the enter key
    on (release, keyPress "<Enter>") {
    It works fine on it's own, but doesn't work when it's loaded
    into the parent movie. What's the solution?
    Simonster

    create a submit button that works the same as the keypress
    Dan Mode
    *THE online Radio*
    http://www.tornadostream.com
    *Must Read*
    http://www.smithmediafusion.com/blog
    *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    "Simonster" <[email protected]> wrote in
    message
    news:e940j1$a8o$[email protected]..
    > This is probably an easy one for someone:
    > I have a simple password function in a child movie and
    am using the
    > standard
    > code to activate the enter key
    >
    > on (release, keyPress "<Enter>") {
    >
    > It works fine on it's own, but doesn't work when it's
    loaded into the
    > parent
    > movie. What's the solution?
    >
    > Simonster
    >

  • How do I unmark a question "Solved?"

    I inadvertently marked my question "Solved," choosing my own follow up post. Can this be reversed? This question has NOT been solved.
    https://discussions.apple.com/message/25726191#25726191

    Weird because I marked that my user name had solved the issue. But no points... Probably to prevent users from generating their own points. Oh well.
    Thanks for helping me with the original posts babowa. Frustrating to get it fixed only to screw it up again. What happened was I was looking at your post, I clicked on the link to check and see that my original post had indeed been relocated, and then I was distracted by something. When I got back to what I was doing, I wanted give you the solve credit, but didn't bother to look closely at which post was displaying. Since they had a similar structure, I didn't notice I wasn't looking at our thread... Oh well. Crapzilla.

  • Solving easy as abc puzzle with python - License question

    Hi everyone, I have just posted something about solving puzzles by programming and thought you could find it interesting. It is on http://arkocal.blogspot.com/2012/11/puz … s-abc.html
    My question is, which licence fits such educational code? Thanks for any help and opinions.

    I agree with Nisstyre56 that you'll want to pick a license that has been thoroughly vetted by lawyers (who hopefully specialize in intellectual property). I've come across some interesting custom software licenses (CRAPL is particularly amusing), but they'll do little more than communicate your wishes.
    Creative Commons (CC) licenses are great for protecting self published creative works (e.g. artwork, music, personal websites, instruction material, etc). However, they should not be used for software (see Creative Commons FAQ). There are a lot of technicalities associated with licensing software; many of which derive from the numerous forms in which "software" can exist on a machine and be distributed. For example, if you distribute your source code under a CC license, and then the end user compiles it on their machine using their compiler, do the terms of the original license still apply to the machine code (or byte code)? If so, in what sense? What about linking to other libraries under a different license? Specialized software licenses (e.g. MIT, BSD, GPL, Artistic Licences, etc) address these issues. See OSI for a description of many open source software licenses.
    When selecting a license, you should be mindful of the difference between a copyright and a copyleft license. Roughly speaking, a copyright license (e.g. MIT) allows for derivative work to be put under a different license, whereas a copyleft license (e.g. GPL) requires all derivative work to be put under the same license. Both can have important long term implications. For example, if you release your project under a copyright license, then you may find yourself competing against a proprietary fork of your own project. If you choose a copyleft license, you may have difficulty reusing your work in projects that require a different license.
    Based on what I saw on your blog, I didn't see any links to any source code. All I see is a tutorial with code snipets. As far as the tutorial is concerned, I would expect the CC license to be sufficient. If you're planning to release small, example ("toy") programs, then I would expect that any license that provides denial of warranty and liability to be sufficient. However, if you want attribution for your work (e.g. if someone uses your source code in their own blog), then I would expect that you may want to seek something more specialized.
    I am not a lawyer. My reply does not constitute legal advice.
    Last edited by bsilbaugh (2012-11-13 04:07:43)

  • Regular expression question (should be an easy one...)

    i'm using java to build a parser. im getting an expression, which i split on a white-space.
    how can i build a regular-expression that will enable me to split only on unquoted space? example:
    for the expression:
    (X=33 AND Y=44) OR (Z="hello world" AND T=2)
    I will get the following values split:
    (X=33
    AND
    Y=34)
    OR
    (Z="hello world"
    AND
    T=2)
    and not:
    (Z="
    hello
    world"
    thank you very much!

    Instead of splitting on whitespace to get a list of tokens, use Matcher.find() to match the tokens themselves: import java.util.*;
    import java.util.regex.*;
    public class Test
      public static void main(String[] args) throws Exception
        String str = "(X=33 AND Y=44) OR (Z=\"hello world\" AND T=2)";
        List<String> tokens = new ArrayList<String>();
        Matcher m = Pattern.compile("[^\\s\"]+(?:\".*?\")?").matcher(str);
        while (m.find())
          tokens.add(m.group());
        System.out.println(tokens);
    }{code} The regex I used is based on the assumptions that there will be at most one run of quoted text per token, that it will always appear in the right hand side of an expression, and that the closing quote will always mark the end of the token.  If the rules are more complicated (as sabre150 suggested), a more complicated regex will be needed.  You might be better off doing the parsing the old-fashioned way, with out regexes.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Trivia Question that no one yet had solved

    Windows XP is on a network with Apple G5
    Copying for example 50mg file from IBM to Apple takes about 5 min??? Copying from Apple G5 to IBM takes 5 sec!
    Going to Apple G5 and pulling out of C drive on IBM into the Apple desktop the transfer time is also 5 sec.
    The whole problem is with using IBM to transfer the files to Apple G5.
    The strange thing that there is no problem with Apple G4 that is on this network!
    Where is the problem? Apple tech support, Windows Tech support plus 2 local technicians could not find the problem.
    Did anyone had the same thing, was it solved?
    Thanks.
    G5   Mac OS X (10.4.4)  

    As I posted in the thread mentioned above:
    I have the same problem with a 2.3GHZ dual G5, new from this fall, 2.5GB ram, Gbit network with very good switch here.
    On old G4 mirror doors (dual boot) 1.25GHz, 1.25GB RAM, I can transfer about 2.5GB of data from the (Panther) server to the G4 in less than 2 minutes, and that's in OS 9 !!!! I get about 1 1/2 minutes for the same files to be transfered on other G4's configured EXACTLY the same, but running various OS's: 10.2.6, 10.2.8, 10.3.3, 10.3.7, 10.3.9....
    On my G5, I can't even come remotely close to that, It takes about double the time, say, just below 3 minutes. I have had the same speeds in the original Tiger that came with the machine, in 10.4.3 and in 10.4.4. I also tried switching between Ethernet port 1 and 2, no difference. I tried all kind of configurations, even displaced the comp to the location of another comp to use it's connection to the server, still no improvement. What I find amazing, is that writing TO the server is even slower tna redaing from it!!! NOTE: all the tests I tried were using the SAME 2.5 GB or so of data for each comp, being made up of a healthy mix of small and large files, ranging from about 4MB to 450MB each (no bizillions of tiny files there!), ensuring that the data copying was the only task being done on both the server and the workstation.
    I have come to suspect that the problem is within TIGER, since I am the only on running TIGER here or maybe a mix of the newer G5 and Tiger, as I have not seen this on older G5's running Panther 10.3.9 here. I can't compare moving the exact same data with the other G5's because they are on a separate network (built with exactly the same components) but they seemed to be transfering data at a proper rate.
    I will need to install TIGER on an older Mac for at least testing purposes, just to see if there is a noticeable slowdown on the network.
    Are the G4's mentioned running Tiger as well? just a thought...
    Sorry I can't test with PeeCee's here, I don't have access to any.

  • Easy one, List question

    I have a list object with three strings, I want one string to be default selected when the applet starts. In the code below I would like "One" preselected when applet starts.
    List alist = new List(3, false);
    alist.add("One");
    alist.add("Two");
    alist.add('Three");
    add(alist);

    just make a call
    alist.select(1);Regards
    Omer

  • [SOLVED]Easy question

    Hello,
    Could anyone tell me what pacman command writes out the names of  the available upgrades. I would like to know what packages I am upgrading. The pacman -Su doesn't list the names of the packages it is just updating them all.
    Thank a lot,
    jmak
    Last edited by jmak (2009-08-22 19:59:32)

    Thanks the link.
    The manpage says: -u, --upgrades Lists all packages that are out of date on the local system.
    But when query I get this error message:
    bash-4.0# pacman --upgrades
    error: no operation specified (use -h for help)
    What additional operation should I specify here?
    jmak
    Last edited by jmak (2009-08-22 19:41:22)

Maybe you are looking for

  • How do I change the printer settings on macBook pro OSX v10.8.1?

    I am trying to print a webpage but i want it in duplex format (two pages front and back on one sheet). The default is set to "one sided". I can't seem to change the presets (under presets > show presets > copies and pages > settings and value). Usual

  • How do I get my iMac running Lion 10.7.4 to work with the PreSonus firestudio firecontrol Lion driver?!

    Firestudio unit worked fine with other computer and older OS X driver. Unless the PreSonus firecontrol driver is JUST BAD, the problem must be that my operating system isn't allowing the firecontrol driver to run properly. How do I fix this? This is

  • Training Course and material - CR800

    Hello, I am an admin in SAP CRM 2007, and need help.  I want to take the best course possible to help me in my work, and I have been told that CR800 would be my best option.  However, I cannot find a course scheduled.  Can anyone offer a better alter

  • Can I have 2 different EP instances in same server.

    Hi Friends.. I have Enterise portal installed on server. It uses UME engine of  SCM4.0 server. Client weants to install  EP for different SCM5.1 system along with the old one. I am new to EP and moreoevr have no idea if tha is feasible. They say they

  • Not allowing me to move my files to trash?

    Title pretty much sums it up, whenever I hit the delete the key on a file (even files and folders in my own home directory) It says "Cannot move file to trash.." ANY File.  I go to trash, its empty. Is there some obscure Trash group that I completly