Zoom in with scale problam

Hi
when i am zooming in with the scale tool , the movement is not linear , at th start it is fast and to the end it shows down . the scale tool parameters are linear
please help me
Thanks

Hi JK,
With FlashJester Jugglor, you can pick and select the menu
items you
require, So you can leave the Zoom in and Out and remove the
rest.
Download a FREE evaluation copy from
http://www.jugglor.com
then go to
Jugglor -> Setup Settings -> Default Flash Right Click
Menu -> Press the
button
Good Luck
Regards
FlashJester Support Team
e. - [email protected]
w. -
http://www.flashjester.com
There is a very fine line between "hobby" and
"mental illness."

Similar Messages

  • Zoom Issues with JScrollPane

    Hello all,
    I have ran into an issue with zoom functionality on a JScrollPane.
    Here is the situation (code to follow):
    I have a JFrame with a JDesktopPane as the contentpane. Then I have a JScrollPane with a JPanel inside. On this JPanel are three rectangles. When they are clicked on, they will open up a JInternalFrame with their name (rect1, rect2, or rect3) as the title bar. Rect3 is positioned (2000,2000).
    I have attached a mousewheel listener to the JPanel so I can zoom in and out.
    I have also attached a mouse listener so I can detect the mouse clicks for the rectangles. I also do a transformation on the point so I can be use it during clicks while the panel is zoomed.
    All of this works fantastic. The only issue I am having is that when the JScrollPane scroll bars change, I cannot select any of the rectangles.
    I will give a step by step reproduction to be used with the code:
    1.) Upon loading you will see two rectangles. Click the far right one. You'll see a window appear. Good. Move it to the far right side.
    2.) Zoom in with your mouse wheel (push it towards you) until you cannot zoom anymore (May have to get focus back on the panel). You should see three rectangles. Click on the newly shown rectangle. Another window, titled rect3 should appear. Close both windows.
    3.) This is where things get alittle tricky. Sometimes it works as intended, other times it doesn't. But do something to this affect: Scroll to the right so that only the third rectangle is showing. Try to click on it. If a window does not appear - that is the problem. But if a window does appear, close it out and try to click on the 3rd rect again. Most times, it will not display another window for me. I have to zoom out one step and back in. Then the window will appear.
    After playing around with it for awhile, I first thought it may be a focus issue...I've put some code in the internal window listeners so the JPanel/JScrollPane can grab the focus upon window closing, but it still does not work. So, either the AffineTransform and/or point conversion could be the problem with the scroll bars? It only happens when the scroll bar has been moved. What affect would this have on the AffineTransform and/or point conversion?
    Any help would be great.
    Here is the code, it consists of two files:
    import java.awt.Color;
    import java.awt.Dimension;
    import javax.swing.BorderFactory;
    import javax.swing.JDesktopPane;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    public class InternalFrameAffineTransformIssue
         public static void main ( String[] args )
              JFrame frame = new JFrame("AffineTransform Scroll Issue");
              frame.setLayout(null);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JDesktopPane desktop = new JDesktopPane();
              frame.setContentPane(desktop);
              MyJPanel panel = new MyJPanel(frame);
              JScrollPane myScrollPane = new JScrollPane(panel);
              panel.setScrollPane(myScrollPane);
              myScrollPane.setLocation(0, 0);
              myScrollPane.setSize(new Dimension(800, 800));
              myScrollPane.getVerticalScrollBar().setUnitIncrement(50);
              myScrollPane.getHorizontalScrollBar().setUnitIncrement(50);
              myScrollPane.setViewportBorder(BorderFactory.createLineBorder(Color.black));
              frame.getContentPane().add(myScrollPane);
              frame.setBounds(0, 100, 900, 900);
              frame.setVisible(true);
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Rectangle;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseWheelEvent;
    import java.awt.event.MouseWheelListener;
    import java.awt.geom.AffineTransform;
    import java.awt.geom.NoninvertibleTransformException;
    import java.awt.geom.Point2D;
    import javax.swing.JFrame;
    import javax.swing.JInternalFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.event.InternalFrameAdapter;
    import javax.swing.event.InternalFrameEvent;
    import javax.swing.event.InternalFrameListener;
    public class MyJPanel extends JPanel implements MouseWheelListener
              double zoom = 1;
              Rectangle rect1 = new Rectangle(50, 50, 20, 20);
              Rectangle rect2 = new Rectangle(100, 50, 20, 20);
              Rectangle rect3 = new Rectangle(2000, 2000, 20, 20);
              AffineTransform zoomedAffineTransform;
              JFrame frame;
              JPanel myPanel = this;
              JScrollPane myScrollPane;
              public MyJPanel(JFrame inputFrame)
                   setAutoscrolls(true);
                   addMouseListener(new MouseAdapter(){
                        public void mousePressed ( MouseEvent e )
                             System.out.println("Clicked: " + e.getPoint());
                             AffineTransform affineTransform = zoomedAffineTransform;
                             Point2D transformedPoint = e.getPoint();
                             //Do the transform if it is not null
                             if(affineTransform != null)
                                  try
                                       transformedPoint = affineTransform.inverseTransform(transformedPoint, null);
                                  catch (NoninvertibleTransformException ex)
                                       ex.printStackTrace();
                             System.out.println("Tranformed Point: " + transformedPoint);
                             if(rect1.contains(transformedPoint))
                                  System.out.println("You clicked on rect1.");
                                  createInternalFrame("Rect1");
                             if(rect2.contains(transformedPoint))
                                  System.out.println("You clicked on rect2.");
                                  createInternalFrame("Rect2");
                             if(rect3.contains(transformedPoint))
                                  System.out.println("You clicked on rect3.");
                                  createInternalFrame("Rect3");
                   addMouseWheelListener(this);
                   frame = inputFrame;
                   setPreferredSize(new Dimension(4000, 4000));
                   setLocation(0, 0);
              public void paintComponent ( Graphics g )
                   super.paintComponent(g);
                   Graphics2D g2d = (Graphics2D) g;
                   g2d.scale(zoom, zoom);
                   zoomedAffineTransform = g2d.getTransform();
                   g2d.draw(rect1);
                   g2d.draw(rect2);
                   g2d.draw(rect3);
              public void mouseWheelMoved ( MouseWheelEvent e )
                   System.out.println("Mouse wheel is moving.");
                   if(e.getWheelRotation() == 1)
                        zoom -= 0.05;
                        if(zoom <= 0.20)
                             zoom = 0.20;
                   else if(e.getWheelRotation() == -1)
                        zoom += 0.05;
                        if(zoom >= 1)
                             zoom = 1;
                   repaint();
              public void createInternalFrame ( String name )
                   JInternalFrame internalFrame = new JInternalFrame(name, true, true, true, true);
                   internalFrame.setBounds(10, 10, 300, 300);
                   internalFrame.setVisible(true);
                   internalFrame.addInternalFrameListener(new InternalFrameAdapter(){
                        public void internalFrameClosed ( InternalFrameEvent arg0 )
                             //myPanel.grabFocus();
                             myScrollPane.grabFocus();
                        public void internalFrameClosing ( InternalFrameEvent arg0 )
                             //myPanel.grabFocus();
                             myScrollPane.grabFocus();
                   frame.getContentPane().add(internalFrame, 0);
              public void setScrollPane ( JScrollPane myScrollPane )
                   this.myScrollPane = myScrollPane;
         }

    What I'm noticing is your zoomedAffineTransform is changing when you click to close the internal frame. This ends up being passed down the line, thus mucking up your clicks until you do something to reset it (like zoom in and out).
    Clicking on the JInternalFrame appears to add a translate to the g2d transform. This translation is what's throwing everything off. So in the paintComponent where you set the zoomedAffineTransform, you can verify if the transform has a translation before storing the reference:
             if (g2d.getTransform().getTranslateX() == 0.0) {
                zoomedAffineTransform = g2d.getTransform();
             }Edited by: jboeing on Oct 2, 2009 8:23 AM

  • How to zoom in with Adobe Flash Player 12.0.0.77

    I like to play a game on Neopets called Destruct-O-Match.  Until two days ago, I could zoom in on the game (make it bigger) by right clicking with my mouse.  Now that option no longer exists, so the game is too small to see comfortably.  How do I zoom in and make the game big enough to enjoy using Adobe Flash Player 12.0.0.77?

    Thanks Mike, but I already did that.  Until two days ago, I would maximize
    the screen using Control +, but the game would still be small, so then I
    would zoom in with a right click of the mouse.  However, apparently there is
    a new version of Flash Player, 12.0.0.77, and there¹s no option of zooming
    in by right clicking.
    I figured out how to make the game bigger by reducing the resolution of my
    computer, but I can¹t play long because it makes me dizzy.

  • What is the point of column with scale 0 ?

    DB Version: 11.2
    This is what my understanding about Precision and Scale in Number datatype is
    NUMBER ( p, s )
    Example: in NUMBER(5,3)
    5 ==> stands for the total number of digits including the numbers after the decimal point
    3 ==>. stands for the digits to right of the decimal point.But , for number type defined with scale 0 how am I able to INSERT numbers with decimals as shown below ? I even managed INSERT numbers whose total length is crossing the precision 5 below ( 93939.223 )
    SQL> drop table t1;
    Table dropped.
    SQL> create table t1 (empid number (5,0));
    Table created.
    SQL> insert into t1 values (883.2);
    1 row created.
    SQL> insert into t1 values (883.22);
    1 row created.
    SQL> insert into t1 values (883.332);
    1 row created.
    SQL> insert into t1 values (93939.223);
    1 row created.
    SQL> commit;
    Commit complete.

    >
    So, oracle is letting us INSERT numbers with decimals but it is eliminating those numbers internally.
    >
    Yes - if by 'eliminating' you mean 'rounding'.
    See the 'Datatypes' section of the SQL Language doc
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/sql_elements001.htm#i54330
    >
    Specifying scale and precision does not force all values to a fixed length. If a value exceeds the precision, then Oracle returns an error. If a value exceeds the scale, then Oracle rounds it.
    >
    The Table 2-2 shows how different numbers are stored
    >
    Table 2-2 Storage of Scale and Precision
    Actual Data Specified As Stored As
    123.89     NUMBER     123.89     
    123.89     NUMBER(3)     124
    123.89     NUMBER(3,2)     exceeds precision
    123.89     NUMBER(4,2)     exceeds precision
    123.89     NUMBER(5,2)     123.89
    123.89     NUMBER(6,1)     123.9
    123.89     NUMBER(6,-2)     100
    .01234     NUMBER(4,5)     .01234
    .00012     NUMBER(4,5)     .00012
    .000127     NUMBER(4,5)     .00013
    .0000012     NUMBER(2,7)     .0000012
    .00000123     NUMBER(2,7)     .0000012
    1.2e-4     NUMBER(2,5)     0.00012
    1.2e-5     NUMBER(2,5)     0.00001          

  • Replace quotient and Remainder with Scale by power 2

    I want to replace quotient and Remainder function with Scale by power 2 to reduce resource usage on FPGA.
    Here is my problem, I want to achive the same result, but no sure if the code will allow me to input the value I need, i also am not sure what that value should be?
    Attachments:
    quotientProblem.png ‏37 KB

    Florian.Ludwig wrote:
    The problem is I don't know what's expensive in RT.
    The OP is asking about FPGA, not RT.
    RT is fine with the Quotient & Remainder.  It'll take a few clock cycles of your processor, but that is nothing in the rates for an RT system.
    An FPGA is a different beast since you need to look at how much of your FPGA hardware you are using up.  Bit shifting (which is what the power of 2 actually does) is dirt cheap in an FPGA.  But divisions are really expensive to do.  But since you are dealing with powers of 10, you are kind of stuck.  Hardware (FPGA in this case) works best when dealing with binary (ie powers of 2).
    So what device is this one?  How fast do you need these outputs?  It might make sense to pass some of the data up to the RT system and then the RT can pass the results back down to the FPGA for actual output.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to make the zoom in/out scale appear in the media browser ?

    How to make the zoom in/out scale appear in the media browser ? My videos only appear as a file list (only the names) and the zoom in/out device is currently not in the media browser...

    I meant that there is no "Icon mode" button or "List mode" button in my media browser. How to make them appear ?

  • In Safari, my iMac sometimes zooms way too much and will not zoom back.  I have a wireless mouse set to zoom in and out on double tap, but the excessive zooms happen with no taps.

    In Safari, my iMac sometimes zooms way too much and will not zoom back.  I have a wireless mouse set to zoom in and out on double tap, but the excessive zooms happen with no taps.  A page zooms in so less than 1/4 of the page is visible and nothing I do will zoom back out, command minus doesn't do it, double tap on mouse does not zoom out, and the window will not scroll to show any of the rest of the page.  reloading the page does not help.  Loading a different page gives me a normal view again.

    If it were a tweaked setting, it should happen less randomly.  And there should be no settings that could override the zoom setting in unversal Access and the Mouse zoom preferences. 
    In addition, this only happens in Safari 6, and seems to happen more fredquently on some websites and not on others.  That suggests some sort of conflict in the site code with Safari and Apple wireless mouse code.  It does not happen in Mail, Word, Excel, Photoshop, Illustrator, or other software as far as I can tell.

  • Zoom problems with G30

    When I zoom out with the rocker switch on my G30, the zoom will return to a wide angle, especially if I lightly touch the telephoto end of the rocker. It will continue to return to wide angle by itself, even if I move the rocker switch to telephoto. This seems to occur when the weather is hot (we shoot outside much of the time) and the camera has been operating for an extended period. This zoom problem does not seem to happen if the touch screen and remote zoom are used and the camera is cool. I bought this camera 9/2013. Has anyone else experienced this issue? Could this be a defective zoom switch? Would updated firmware make any difference? Any help would be appreciated.

    Hi mimages!
    Thank you for posting.
    Based on your description, the camcorder will need to be examined by a technician at our Factory Service Center.  To start this process, you'll need to complete a Repair Request on our website.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Print dialog box code with scale to paper size option

    Can anyone tell about the java code that can be used to generate a print dialog box with "Scale to paper size" option.

    manual wrote:
    The path given does not match my installation (i.e. no "Xtras" folder).
    The 'Xtras' folder has nothing to do with Adobe Reader (nor Acrobat); that is part of Shockwave Player.

  • Problems zooming out with a Flash Banner

    I have created a Flash banner for the home page of my website.  Here is the link to the page I am working on:  http://adirondackvic.org/CSSTest9July2012-2.html
    When I zoom in to increase the size of the web page, the Flash banner rescales automatically.  However, when I zoom out, to decrease the size of the web page, the Flash banner does not automatically rescale.  It remains the same size and you have to hit the refresh button to get it to rescale to fit the newly resized page. 
    Is there a fix for this?  I searched the forum and the web and have not found an answer.  I put a question on this in another forum, but received no responses. I found some discussions of the issue on the web and on this forum, but I was not able to figure out how to incorporate the suggestions into my page.  I tried changing the scale from exactfit to showall, as recommended, but that created a problem with the appearance of the page. (The banner no longer fit properly into the header window.) I also tried (as recommended by one of the entries in this forum) to change width="100%" height="100%" or width="100%" height="auto".  This fixed the problem for Internet Explorer, but then the entire banner disappeared in Firefox. 
    Please help!  I am at my wit's end....  Thank you.  ellen
    Here is the relevant  code:
    <div class="header"><!-- end .header -->
        <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="960" height="100" align="absmiddle" id="FlashID" title="FlashBanner">
          <param name="movie" value="BannerTest16.swf">
          <param name="quality" value="high">
          <param name="wmode" value="opaque">
          <param name="swfversion" value="6.0.65.0">
          <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
          <param name="expressinstall" value="../Scripts/expressInstall.swf">
          <param name="LOOP" value="false">
          <param name="SCALE" value="exactfit">
          <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
          <!--[if !IE]>-->
          <object data="BannerTest16.swf" type="application/x-shockwave-flash" width="960" height="100" align="absmiddle">
            <!--<![endif]-->
            <param name="quality" value="high">
            <param name="wmode" value="opaque">
            <param name="swfversion" value="6.0.65.0">
            <param name="expressinstall" value="../Scripts/expressInstall.swf">
            <param name="LOOP" value="false">
            <param name="SCALE" value="exactfit">
                  <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
                  <div>
          <img src="Images/Banner102 -- Saint Regis Mountain from the Barnum Brook Trail --  June 2012-1.jpg" width="960" height="102" alt="Paul Smith's College VIC" align="absmiddle">         
                  </div>
            <!--[if !IE]>-->
          </object>
          <!--<![endif]-->
        </object>
      </div>

    Kevinsoffice wrote:
    iDevices are pretty much dead hardware since they dont support popular flash. How many mac forums are filled with people complaining about Apples choice not to support it. And with much better hardware coming out like the Samsung line there are better choices then iStuff.
    The evidence does not support that position.
    As expected,  Adobe has stopped developing Flash on mobile devices (iOS and Android)
    http://www.businessinsider.com/adobe-to-kill-mobile-flash-starting-august-15-2012-6
    http://www.digitaltrends.com/mobile/adobe-flash-for-android-gone-with-barely-a-whimper/
    Flash is dying, iStuff is alive and well.

  • Zoom button to scale display object

    I am attempting to scale a current instance on the stage
    named siteMap_mc.
    The class below is attached to a "zoom icon" thru the library
    palette
    package {
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    import flash.display.Sprite;
    public class ZoomIn extends MovieClip {
    public function ZoomIn() {
    this.buttonMode = true;
    this.addEventListener(MouseEvent.CLICK, onClick);
    private function onClick(event:MouseEvent):void {
    siteMap_mc.scaleX *= 1.5;
    siteMap_mc.scaleY *= 1.5;
    Error: 1120: Access of undefined property siteMap_mc.
    I get the error above. My guess is that I do not have a
    correct "import" statement above.
    Another question is how do you now what "import" statements
    are needed?
    My current resources for learning Actionscript are
    Essential Actionscript 3.0
    Actionscript 3.0 Cookbook"
    Lynda.com
    Please offer any guidance for more reference material for
    learning Actionscript.
    Thanks in Advance,
    Robert Good.

    kglad / ken,
    Thank you both for your responses.
    kglad:
    There is no actual relationship between the zoomin instance
    and the siteMap_mc (just in the supplied code). By using the CLICK
    event, I want the siteMap_mc instance to scale up. In my
    IN_experienced eyes, I thought I could just call the name of an
    instance on the display list (stage) from any function and
    manipulate it. As you say I may need to get the root path of the
    instance to do this. This path call will come in handy to access
    nested movieclips?
    The instance of site_Map is on the stage (not nested in
    another instance). How do I get this path? I will read up on the
    display list more to see what I am missing.
    Ned:
    Thanks the information. I am using this self inflicted
    project to cut my teeth on actionscript. I used macromedia director
    quite a few years back and LOVED lingo. I have not yet had that
    ahhh, I get it revelation with Actionscript 3.0. (hope it comes
    soon). Anyway, I will be building a site map of a community on the
    first frame of this project. I am creating this zoomin class as a
    precurser to zoomin out, pan etc.
    I would really like to have the stage setup visually on the
    first frame and not do it thru code (initially) I will do said
    calls with more user interaction possibilities. The concept I am
    not grasping is not being able to manipulate an existing instance
    on the stage (wether its nested or not nested, on the stage) with
    code attached to a manipulating instance (ie. a zoomin instance)
    Please understand, I am not looking for anyone to do the
    project for me, that would not help me learn what I need to learn.
    Thanks for your code sample. I will play around with it if I
    cannot do what I hope I can do (affecting existing stage instances)
    Thank you both!!!!!
    Rob.

  • How to zoom without increasing scale window?

    I have about 10 images on the screen, all set in place where I want them to be. Obviously, if i use the scale or position functions under the motion effects tab, i am able to move the images around which effectively can increase the sizes and move the images from side to side etc. So where I am stuck is, that I am now am trying to somehow lock these images that I have on screen, but still being able to zoom or position the images within their current placings without the image windows or borders moving at all. So is this possible to lock or freeze the images, but still be able to play with the scale inside the image windows?  

    Nested sequences.
    I assume that you want a picture-in-picture where the image continues to take up, let's say, one quarter or less of the screen, but you want to zoom back up to 100% and yet have the image still take up one quarter or less of the screen. Is that right?
    If you put the image into a sequence that is the size of one quarter of the frame (half of each dimension), you can start with the picture scaled down to fit into the smaller frame, and then zoom back up to 100%,using the position parameter to make sure to have the part of the picture you want to show as the center of the smaller frame. Then just drop that sequence on to the original sequence. You can still resize the nested sequence even smaller if you wish just by using the Scale parameter of the nested sequence
    Like this? I just put the image in a small sequence (960X540) and used the titler to but a frame around it. When I got it into the main sequence I realized I wanted it smaller still, so I just positioned it and scaled it to where I wanted it.

  • Photos with scale fx too blurry

    I 'm still having the same problem with my photos, I've tried many ways, from changing the settings of my sequence, to reinstaling FCP....
    I'm trying to show 8 seconds photos with a very slow and sutile zoom in. and it just plays back blurry and flickered.
    If the photo stands still looks fine, but as soon as I apply the scale fx, disaster happens.

    #2 Playback is blurry
    Shane's Stock Answer #2:
    ONLY JUDGE THE QUALITY OF YOUR MATERIAL ON AN EXTERNAL NTSC MONITOR, OR AT LEAST A TV.
    1. Disable overlays on the canvas
    2. Make sure you've rendered everything (no green bars at the top of the timeline
    http://docs.info.apple.com/article.html?artnum=24787
    DV footage requires large amounts of data and many computations. In order to maintain frame rate and be viewable at a normal size, only about one-fourth of the DV data is used in displaying the movie to the screen. However, the DV footage is still at full quality, and is best viewed thru a TV or NTSC monitor routed thru your camera or deck.
    Shane

  • Zoom Feature with JTextPane - URGENT

    Hi..friends...
    pl. suggest me way for adding Zoom In and Zoom Out Facility in My JAVA Application with JTextPane which displays Document .
    previously i 've done similler with java.awt.Canvas using java.awt.Graphics2D.scale method....but noe i am confused about how use that method with JTextPane.
    Thanks,
    TP.

    If you need to zoom only text (not the whole html page with images, etc ...) you may look at StyleSheet.getFont() method. All the HTML views fetch their font through this method and if you override it in your own StyleSheet implementation you may substitute your font with increased size.
    Hope this helps.
    Regards,
    Anton.

  • Animating a Zoom Effect with Layers in PS CS4?

    How'dee all...
    I'm hoping that this is possible and that someone might be able to enlighten me as to how I would go about doing it...
    I have a Panoramic that I put together of a Manhattan City Scape that consist of 2 rows of 32 images set at a Portriat format.
    What I want is to take the Panoramic that I have and fit the image centered on a canvas equalling that of my flat screen tv, that being 1920x1080 with black filler at the top and bottom of the image area.
    I then want to, or atleast was hoping to save "Layers" with each layer zooming in by a percentage of say 103% (for example)... Until eventually that final layer would consist of a fully zoomed in view of the center portion of the panoramic at full resolution.  Ultimately I want to burn the final images to a DVD for playback on my Flatscreen showing the entire Pano Zooming in to its center...I was thinking that I could maybe assemble all the layers into an .AVI or something.
    "I hope that you all can understand what it is I'm attempting to get across to you. And I look forward to your help with this..."
    Jim...The Toxic'One...

    If you get things into layers you can select "make frames from layers" and then choose animation.  This should get you started anyways.

Maybe you are looking for

  • Using Procedure in SQL statement

    Dear Sir, As you know, I can use any function in SQL statement. For example: SELECT systimestamp, Function_Name(variable1, variable2,...) FROM anytable; So the previous function could only retrieve one value -as functions concepts-. Anyhow, Can I, in

  • Error message when opening a new window.

    Whenever I open a new window beside the initial one (by link or otherwise), I get this message: Exception in LoadPrefs: TypeError: gBrowser.browsers[i] is undefined The page appear, but it seems to have the default display (without my preferences or

  • My mac says , that the ichat av 2,1 can't be used on 10.4.4

    having troubles to get the av connection started , i decided to go to a apple site and have a look at ichat development . i found that there is ichat av 2,1 immediately downloaded it , but then i discovered that it's working just with OS 10.3 and not

  • Confused, Since last CC app Update Core Sync continually stops working.

    This is occurring with a window popping up stating 'Core Sync has stopped working' more than once an hour, on both my laptop and desktop, both running Windows 7 64bit. I just spent over 40 minutes on the phone with adobe tech support, to finally be t

  • Abap execution

    hi, new in ABAP--- how do i see the output? report ztxt.(SE38). write 'hello sap world'. where do i execute the report?and see the output? Thanks in advance. Haarika.