Drawing disappears after 4000px of height

Hi to all readers,
I'm currently working on a web-project, that requires a
flash-overlay on webpages. With the help of Actionscript 3.0 the
lines and misc. marks are being drawn. So far so good, but only
until the flash-movie isn't longer than approx. 4000px. After that
point, any marks, that should have been drawn, just don't show up
anymore, while the Flashmovie viewport is still there, meaning it's
not being cut by browser.
My guess is that Flash has a limitation of view-port height
at
4000px. Could anyone confirm this?
Any workaround would be great and much appreciated. This is
very important for my project, as it depends on that movie-height
and it should be at least 9000px (in one movie, because the marks
are being drawn dynamically with dynamic intervals).
Sorry for my English, I hope you got the point. Thanks in
advance for any help!

Sorry for posting so late.... I`ve been out of town...
I saw the link you gave me.
well, what I sugested was not to actualy scroll the browser
page, but to "scroll" the MovieClip. Here`s my code:
var mcClip:MovieClip = new MovieClip();
mcClip.graphics.lineStyle(4, 0, 1);
mcClip.graphics.lineTo(100, 16000);
mcClip.graphics.lineTo(150, 16000);//so you can clearly see
the end
mcClip.x = 100;
addChild(mcClip);
addEventListener(Event.ENTER_FRAME, onEnterFrame);
function onEnterFrame(event:Event):void {
mcClip.y -= 150;
So, make your Stage something about 1024*768 and insert a
MovieClip that you will scroll up and down using a couple of
buttons.
Sorry again for my late post. Best of luck!

Similar Messages

  • My appleoworks drawing disappeared after saved as a microsoft document.

    I saved my appleworks document as a microsoft one, closed it and when I returned to it all my drawings were gone. Is there anyway to prevent this from happening or is this just an incompatibility between microsoft and appleworks? It was so annoying the first time so I just went and used someone's windows pc to redo my work and send it out but I don't have access to a pc anymore. So how can I prevent appleworks from deleting my drawings after save it as a microsoft document?

    AppleWorks does not make MS Word documents (just as MS Word does not create AppleWorks documents); it never has (nor has it ever been claimed). While you can save your text in a format that can be opened in Word, drawings and images will, more often than not, fail to be reproduced, and the document formatting may or may not be as originally intended. If a Microsoft Word document is what you need, then it will have to be created in MS Word.

  • How to align the item text in the combobox vertically centred after increasing the height of the combobox in mfc?

    I want to make the item text of the combobox to  be aligned vertically(Centred) . Actually I increased the height 
    of the combobox and after the increasing the combobox height, the text is not centred vertically.The code
    snippet for increasing the height is as follows,
    m_SpecifyCombo.SetItemHeight(-1,20);//CCombobox m_SpecifyCombo
    After increasing the height the text in the combobox is not in the centre as shown in the below image,
    But I want the text to be centred as shown in the below image.
    Code snippet for owner drawn combobox:
    #if !defined(AFX_CUSTCOMBOBOX_H__F8528B4F_396E_11D1_9384_00A0248F6145__INCLUDED_)
    #define AFX_CUSTCOMBOBOX_H__F8528B4F_396E_11D1_9384_00A0248F6145__INCLUDED_
    #if _MSC_VER >= 1000
    #pragma once
    #endif // _MSC_VER >= 1000
    typedef enum {FONTS} STYLE; //Why have I enumerated, Cos, Maybe I might want something other than Fonts here
    class COwnerDrawCombo : public CComboBox
    // Construction
    public:
    COwnerDrawCombo();
    COwnerDrawCombo (STYLE);
    // Attributes
    public:
    void SetHilightColors (COLORREF hilight,COLORREF hilightText)
    m_clrHilight = hilight;
    m_clrHilightText = hilightText;
    void SetNormalColors (COLORREF clrBkgnd,COLORREF clrText)
    m_clrNormalText = clrText;
    m_clrBkgnd = clrBkgnd;
    static BOOL CALLBACK EnumFontProc (LPLOGFONT lplf, LPTEXTMETRIC lptm, DWORD dwType, LPARAM lpData);
    void FillFonts ();
    int GetSelFont (LOGFONT&);
    // Operations
    public:
    // Overrides
    // ClassWizard generated virtual function overrides
    //{{AFX_VIRTUAL(CCustComboBox)
    public:
    virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
    virtual void MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct);
    protected:
    virtual void PreSubclassWindow();
    //}}AFX_VIRTUAL
    // Implementation
    public:
    virtual ~COwnerDrawCombo();
    // Generated message map functions
    protected:
    STYLE m_enStyle;
    COLORREF m_clrHilight;
    COLORREF m_clrNormalText;
    COLORREF m_clrHilightText;
    COLORREF m_clrBkgnd;
    BOOL m_bInitOver;
    void DrawDefault (LPDRAWITEMSTRUCT);
    void DrawFont(LPDRAWITEMSTRUCT);
    void InitFonts ();
    //{{AFX_MSG(CCustComboBox)
    afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
    afx_msg void OnDestroy();
    //}}AFX_MSG
    afx_msg long OnInitFonts (WPARAM, LPARAM);
    DECLARE_MESSAGE_MAP()
    //{{AFX_INSERT_LOCATION}}
    // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
    #endif //!defined(AFX_CUSTCOMBOBOX_H__F8528B4F_396E_11D1_9384_00A0248F6145__INCLUDED_)
    // OwnerDrawCombo.cpp : implementation file
    #include "stdafx.h"
    #include "combobox.h"
    #include "OwnerDrawCombo.h"
    #ifdef _DEBUG
    #define new DEBUG_NEW
    #undef THIS_FILE
    static char THIS_FILE[] = __FILE__;
    #endif
    #define WM_INITFONTS (WM_USER + 123)
    //I chose 123 cos nobody might use the same exact number.. I can improve this by use RegisterWindowMessage..
    // COwnerDrawCombo
    //Initial values of the text and highlight stuff
    COwnerDrawCombo::COwnerDrawCombo()
    m_enStyle = FONTS;
    m_clrHilight = GetSysColor (COLOR_HIGHLIGHT);
    m_clrNormalText = GetSysColor (COLOR_WINDOWTEXT);
    m_clrHilightText = GetSysColor (COLOR_HIGHLIGHTTEXT);
    m_clrBkgnd = GetSysColor (COLOR_WINDOW);
    m_bInitOver = FALSE;
    COwnerDrawCombo::COwnerDrawCombo (STYLE enStyle)
    m_enStyle = enStyle;
    m_clrHilight = GetSysColor (COLOR_HIGHLIGHT);
    m_clrNormalText = GetSysColor (COLOR_WINDOWTEXT);
    m_clrHilightText = GetSysColor (COLOR_HIGHLIGHTTEXT);
    m_clrBkgnd = GetSysColor (COLOR_WINDOW);
    m_bInitOver =FALSE;
    COwnerDrawCombo::~COwnerDrawCombo()
    BEGIN_MESSAGE_MAP(COwnerDrawCombo, CComboBox)
    //{{AFX_MSG_MAP(COwnerDrawCombo)
    ON_WM_CREATE()
    ON_WM_DESTROY()
    //}}AFX_MSG_MAP
    ON_MESSAGE (WM_INITFONTS,OnInitFonts)
    END_MESSAGE_MAP()
    // COwnerDrawCombo message handlers
    void COwnerDrawCombo::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
    //I might want to add something else someday
    switch (m_enStyle)
    case FONTS:
    DrawFont(lpDrawItemStruct);
    break;
    //I dont need the MeasureItem to do anything. Whatever the system says, it stays
    void COwnerDrawCombo::MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct)
    void COwnerDrawCombo::DrawFont(LPDRAWITEMSTRUCT lpDIS)
    CDC* pDC = CDC::FromHandle(lpDIS->hDC);
    CRect rect;
    TRACE0 ("In Draw Font\n");
    // draw the colored rectangle portion
    rect.CopyRect(&lpDIS->rcItem);
    pDC->SetBkMode( TRANSPARENT );
    if (lpDIS->itemState & ODS_SELECTED)
    pDC->FillSolidRect (rect,m_clrHilight);
    pDC->SetTextColor (m_clrHilightText);
    else
    pDC->FillSolidRect (rect,m_clrBkgnd);
    pDC->SetTextColor (m_clrNormalText);
    if ((int)(lpDIS->itemID) < 0) // Well its negetive so no need to draw text
    else
    CString strText;
    GetLBText (lpDIS->itemID,strText);
    CFont newFont;
    CFont *pOldFont;
    ((LOGFONT*)lpDIS->itemData)->lfHeight = 90; //9 point size
    ((LOGFONT*)lpDIS->itemData)->lfWidth = 0;
    newFont.CreatePointFontIndirect ((LOGFONT*)lpDIS->itemData);
    pOldFont = pDC->SelectObject (&newFont);
    pDC->DrawText(strText, rect, DT_LEFT | DT_VCENTER | DT_SINGLELINE);
    pDC->SelectObject (pOldFont);
    newFont.DeleteObject ();
    void COwnerDrawCombo::InitFonts ()
    CDC *pDC = GetDC ();
    ResetContent (); //Delete whatever is there
    EnumFonts (pDC->GetSafeHdc(),NULL,(FONTENUMPROC) EnumFontProc,(LPARAM)this);//Enumerate
    m_bInitOver = TRUE;
    BOOL CALLBACK COwnerDrawCombo::EnumFontProc (LPLOGFONT lplf, LPTEXTMETRIC lptm, DWORD dwType, LPARAM lpData)
    if (dwType == TRUETYPE_FONTTYPE) //Add only TTF fellows, If you want you can change it to check for others
    int index = ((COwnerDrawCombo *) lpData)->AddString(lplf->lfFaceName);
    LPLOGFONT lpLF;
    lpLF = new LOGFONT;
    CopyMemory ((PVOID) lpLF,(CONST VOID *) lplf,sizeof (LOGFONT));
    ((COwnerDrawCombo *) lpData)->SetItemData (index,(DWORD) lpLF);
    return TRUE;
    int COwnerDrawCombo::OnCreate(LPCREATESTRUCT lpCreateStruct)
    if (CComboBox::OnCreate(lpCreateStruct) == -1)
    return -1;
    // TODO: Add your specialized creation code here
    if (m_enStyle == FONTS)
    //SetItemHeight(-1,30);
    PostMessage (WM_INITFONTS,0,0);
    return 0;
    long COwnerDrawCombo::OnInitFonts (WPARAM, LPARAM)
    InitFonts ();
    return 0L;
    void COwnerDrawCombo::OnDestroy()
    if (m_enStyle == FONTS)
    int nCount;
    nCount = GetCount ();
    for (int i = 0; i < nCount; i++)
    delete ((LOGFONT*)GetItemData (i)); //delete the LOGFONTS actually created..
    // TODO: Add your message handler code here
    CComboBox::OnDestroy();
    void COwnerDrawCombo::FillFonts ()
    m_enStyle = FONTS;
    PostMessage (WM_INITFONTS,0,0); //Process in one place
    int COwnerDrawCombo::GetSelFont (LOGFONT& lf)
    int index = GetCurSel ();
    if (index == LB_ERR)
    return LB_ERR;
    LPLOGFONT lpLF = (LPLOGFONT) GetItemData (index);
    CopyMemory ((PVOID)&lf, (CONST VOID *) lpLF, sizeof (LOGFONT));
    return index; //return the index here.. Maybe the user needs it:-)
    void COwnerDrawCombo::PreSubclassWindow()
    // TODO: Add your specialized code here and/or call the base class
    //Tried to do what Roger Onslow did for the button.. Did not work..?? Any R&D guys around :-)
    Can anyone please let me know how can I achieve this.
    Any help can be appreciated.
    Thanks in advance
    SivaV

    Hi sivavuyyuru,
    I cannot find a easy way to make this.
    I think you may need to draw your own Combo Box control. And you could change the edit control more like static text. Check the article:
    http://www.codeguru.com/cpp/controls/combobox/fontselectioncombos/article.php/c1795/Owner-Drawn-Font-Selection-Combobox.htm
    In the resource editor, Owner draw -> variable , Has string->true, type->drop list.
    The result:
    Best regards,
    Shu Hu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I make my external loaded .SWF file smoothly disappear after 15 seconds?

    Hi,
    How can I make my external loaded .SWF file smoothly disappear after 15 seconds? The following is the code to load an external .SWF file:
    var K:Loader=new Loader();
    addChild(K);
    K.load(new URLRequest("clock.swf"));
    K.x = 165;
    K.y = 247;
    K.contentLoaderInfo.addEventListener(Event.INIT, growLoader);
    function growLoader(evt:Event):void {
         K.width = 130;
         K.height = 130;
    I want to make clock.swf file disappear from the page after 15 seconds using some smooth disappear effect.
    Please help.
    Thanks.

    Something even better:
    http://www.greensock.com/
    Check out TimelineMax I LOVE it...
    The guy that made this (and gives it away for free!) is a saint.

  • My iPhone 4 with iOS 6 is making me start to hate Apple. Any App and at any time I open and I can not view it or move for more than 2 minutes, they close themselves. During connections, it also gives this problem and the signal disappears after a few seco

    My iPhone 4 with iOS 6 is making me start to hate Apple. Any App and at any time I open and I can not view it or move for more than 2 minutes, they close themselves. During connections, it also gives this problem and the signal disappears after a few seconds back but often the person on the other end has hung up ... I can not stand it anymore, someone suggests something?
    Besides these problems, there is the battery, which was bad got worse, she is not lasting more than 10 hours, even without using the phone.
    Sometimes it even seems that the problem was solved, but my joy did not last long after I celebrate all the problems return, is incredible ...
    thanks.
    Sorry my bad Inglês.

    Try a reset hold home/sleep buttons until Apple logo appears
    If that does not improve try a restore
    http://support.apple.com/kb/HT4137
    For your information
    We are NOT Apple here we are all users helping other users
    so emotion is ignored

  • DNS Host(A) records disappear after a while

    Hi all,
    a few weeks ago we started to change the TCP/IP configuration of our printers from "static" to DHCP with reservations. The DHCP server is configured to register forward Host(A) and reverse PTR record on DNS on behalf of (all) clients, both are W2K3 with SP2.
    This works well for all our Toshiba printers/copiers and most of our HP printers. However, on a handful of HP printers the Host(A) record in the DNS zone get lost / disappeard after some time, leading into a non working name resolution. But only the Host(A) record, the reverse PTR record is still there. Currently we have this issue with  Business InkJet 2800 attached via a JetDirect J3258G to our network.
    In the past we noticed, that on another printer the Host(A) record re-appears after some hours, only to disappear after a while again. These intervals last some hours up to one day, but seem to follow no period or schedule, like DHCP lease time, DNS scavening etc.
    I have intentionally not "listed" all the technical details in this first post. However, if you need specific details I will be happy to share them.
    Any hint or comment is appreciated
    regards

    This is by design.
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/afd3c338-1706-4898-b269-550c018073c0/dns-entry-for-dc-not-dynamically-updating-server-2008-r2?forum=winserverDS
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/ed97a286-d884-43d6-87e2-5cd5e59cfe9a/windows-2008-r2-domain-controllers-and-static-dns-entries?forum=winserverNIS
    Please take a moment to Vote as Helpful and/or Mark as Answer where applicable. Thanks.

  • External hard-drive disappeared after dragging into Spotlight

    Dear users,
    My external hard-drive under devices  disappeared after I dragged it into Spotlight to reindex it to make it searchable.
    There was a cloud puff animation when i dragged it from the devices icon on the left of folders to the spotlight privacy box window.
    Please help. Thank you!

    Hi there,
    did you find out what the problem was or how to re-map the ext. HDD?
    I have the same problem.
    thank you.

  • Release Tab in purchase order disappear after release using ME29n

    Hi there,
    We are busy testing support stacks (upgrading from ECC6 SAP_APPL SAPKH60305 to SAPKH60307)and we've come accross a strange problem.  When we create a normal purchase order (ME21n) the purchase order does pick up a release strategy.  Using the older ME28 transaction to release this purchase order, everything is fine.  We can use ME28 to release the purchase order, as well as unreleasing the purchase order, as often as we want (the same purchase order).  When we use transaction ME29n the release tab in the purchase order just simply disappears after saving.  In the purchase order header changes, the release change is visible, but the release tab is missing.  This purchase order is now not subject for release, and a goods receipt is possible without release.  I checked in table EKKO as well and the release fields in this table for this purchase order is empty.
    Has anybody had a similar experience?  Any advise would be greatly appreciated.
    Regards
    Christo Vermeulen

    Hi Christo Vermeulen,
    I have detected the same problem as reported by you. Did you solve it? Do you know how can I procedure to solve it?
    Thanks in advanced,
    Eder Nicoleti

  • Why ilife disappear after reinstalling mountain lion?

    why ilife disappear after reinstalling mountain lion?

    The 10.8.3 update should have left your iLife apps intact - did you do a clean install, erasing your drive? If so, then you should be able to go to the Mac App Store and download the iLife apps using the Apple ID with which you registered your computer.
    Clinton

  • My ipod shuffle disappears after I click on the icon in Itunes. I reinstalled Itunes and my computer has been updated. What else can I do?

    My ipod shuffle disappears after I click on the icon in Itunes. I reinstalled Itunes and my computer has been updated. What else can I do?

    The shuffle icon in iTunes disappears, after you click on the icon in iTunes?  If so, if you do not click on the shuffle icon in iTunes, does it remain there indefinitely?  Are you looking at the shuffle icon in the iTunes sidebar?

  • I upgraded to 10.5.1 and all my music disappeared after syncing. How do I get it back?

    i upgraded iTunes to 10.5.1 and all my music disappeared after syncing.  How do I get it back?

    I lost all my music, too - except for 3 pieces!? And I just upgraded, didn't choose sync'ing :-(((
    Sure would like to get back my music, videos and playlists!
    Most of it was my personal compositions/recordings, not bought at the iTunes store.
    (This Mac has OSX 10.5.8)

  • Make an image appear and disappear after x time

    If I have a button on my screen that I want to make a box appear when clicked, how would I go about doing that? It also needs to disappear after 10 seconds. I am not sure if this is an issue, but it needs to appear on the screen while everything else is happening underneath it. So the rest of the animation must continue on as this appears above it.
    Thanks in advance.

    yourbutton.addEventListener(MouseEvent.CLICK,btnF);
    function btnF(e:MouseEvent){
    vizF(yourbox,true);
    setTimeout(vizF,10000,yourbox,false);
    function vizF(dobj:DisplayObject,b:Boolean){
    dobj.visible=b;

  • Blurb Book in Lightroom 5 on my Mac disappeared after 3 days of work. Where can I find a backed up copy via Time Machine or anywhere else?

    Blurb Book in Lightroom 5 on my Mac disappeared after 3 days of work. Where can I find a backed up copy via Time Machine or anywhere else?

     
    Welcome to the WD Community.
    1) I assume I can  just hook the unit up via USB to my Mac and use iPartiion to reformat the drives, assuming each of the 4T drives will be seen by iPartition as a separate drive. That much seems straighforward.
    Yes, and in case you ipartition dont see the unit properly, you can use the disk utilities on your Mac and you will be able to reformat the unit to make it compatible with your system.
    2) Is my next step to reinstall the WD software and how do I do that? I've downloaded the Drive Utilities and Securities install apps - I assume I just run these with the drive still connected and that's all I need to do?
    Yes, just run the applications.
    3) What about the firmware update for Mac - when should I run that??
    Normally, firmware updates are released to fix any issues that you might encounter on the drive. the latest one was released on 9/24/2014 and it fixed an issue with the drive dropping off of the list after system wakes up from standby mode. 
    5) And what about the "My Book Live Duo Setup" app for Mac - is that for a completely different model? What's the difference between "My Book Live Duo" and "My Book Duo"? It's these little things that I find so confusing. 
    Those are different units. The MBL Duo is a NAS (Network attached system) and the My Book Duo is a DAS (Direct attached system)
    6) Lastly, when I have all the software installed, is that when I follow the procedure described in the Knowledge Base article ID 5724, "How to install a My Book Live or My Book Live Duo on Windows (8, 7, Vista, or XP) or Mac OSX for the first time"? Or is that procedure only for "My Book Live Duo" but not for "My Book Duo"?? 
    That procedure is for the network units, not for your drive.
     

  • Release strategy of contract disappeared after using of  MEMASSCONTRACT

    Hi  All,
    May be some one can help me?
    I have next problem it tr. MEMASSCONTRACT(ECC6)
    Release strategy of contract disappeared after using of tr. MEMASSCONTRACT. I know why it happened, but I don't know how to correct it. Some time ago IN ECC5 we added a field to a table EKKO and used this field as one of characteristics in the release strategy of contracts. In order to transfer value of this field to field CEKKO-USRC1 we used User Exit EXIT_SAPLEBND_002. This User Exit is suitable only for online transactions (ME31K, ME32K). How can I feel field CEKKO-USRC1 in transaction MEMASSCONTRACT?
    Regards, Liza

    Thank you. Probably I didn't explain my problem clearly. It's section of code from User Exit EXIT_SAPLEBND_002:
    ATA: reference(20) TYPE c VALUE '(SAPMM06E)EKKO'.
    DATA: it_ekko TYPE ekko.
    FIELD-SYMBOLS: <ymm_icl> TYPE ANY.
    e_cekko = i_cekko.
    *THE "ICL Contract" FIELD IS ONLY RELEVENT IN THESE TRANSACTIONS
    IF sy-tcode EQ 'ME31K' OR sy-tcode EQ 'ME32K'
    OR sy-tcode EQ 'ME33K' .
      ASSIGN (reference) TO <ymm_icl>.
      it_ekko = <ymm_icl>.
      e_cekko-usrc1 = it_ekko-ymm_icl.
    ENDIF.
    Program SAPMM06E can only be reffered while using online transactions. Mass transactions does not use these program and it is completely class based. So,  may be someone know how can i do the same , but for tr. MASS in ECC6.

  • Object disappears after pressing enter key

    I need to attach the transaction J1B3N to keep the connection objects.
    Perform the steps as the help of SAP:
    Object links to other SAP objects
    You can make an object link to SAP objects that are not shown in the possible entries list. To do this, proceed as follows:
    In the standard system, there are already two special screens for the module pools SAPLCV130 and SAPLCV140 for the linked SAP object.
    You must create two new screens with the same number for the module pools SAPLCV130 and SAPLCV140 .
    The processing logic must follow that of screen 1204 in program SAPLVC130.
    Create function module OBJECT_CHECK_XXXX (XXXX = object name)
    If the object can be classified, this function module already exists .
    Otherwise copy the function module for linking equipment DOCUMENT_CHECK_EQUI and change it as required for the new object.
    After performing these steps can see the screen with the number of document tab Link Object, but I am having the following problem: I inform the document number field and press Enter this number some of the screen.
    Already remade several times but can not find the point I'm failing.
    Thank you,

    Hi Michely,
    could you please check if the necessary object is correctly mainatined in structure MCDOKOB too. Here the following coding part could be useful to analyse why the value disappears after hitting enter:
    Main Program     SAPLCVOB
    Source code of   LCVOBU02
    FUNCTION         KEY_ZU_OBJEKT
    SELECT SINGLE * FROM TCLO
           WHERE OBTAB EQ OBJEKT.
    IF SY-SUBRC NE 0.
      RAISE NO_OBJEKT.
    ENDIF.
    NAME = 'MCDOKOB'.
    IF NAME CP '*# '. ENDIF.
    WRITE '-' TO NAME+SY-FDPOS.
    IF NAME CP '*# '. ENDIF.
    IF NOT TCLO-KEYF0 IS INITIAL.
      WRITE TCLO-KEYF0 TO NAME+SY-FDPOS.
      ASSIGN TABLE FIELD (NAME) TO <KEYF1>.
      DESCRIBE FIELD <KEYF1> LENGTH LEN1  IN CHARACTER MODE.
      KEY1 = NAME.
    ENDIF.
    IF TCLO-KEYF0 EQ SPACE.
      KEY1 = ' '.
      LEN1 = 0.
    ENDIF.
    Here the keyfield is read from table TCLO and then the length is read from structure MCDOKOB for example. So it is necessary that the same data is maintained in table TCLO and structure MCDOKOB to grant the correct working for new individual objects.
    Best regards,
    Christoph

Maybe you are looking for

  • Xine broken (solved)

    After a reboot all of the applications that use xine now donot work anymore. For example, the login & logout sound is gone, and when I start Amarok from terminal, I get these: $ amarok KGlobal::locale::Warning your global KLocale is being recreated w

  • I cant sync my ipod touch to itunes

    I bought a new laptop and now i cant sync my ipod touch 4 to itunes please help me solve my problem

  • Stored Procedure vs SQL Injection

    Hello I am workin in a migration project. In this project we are remaking a web application based in ASP classic to ASP.NET but there is a serious problem: the principal query is suprisingly slow in the ASP.NET application and I don't know why. I'm u

  • How document numbers can be updated in New GL table

    Hi, We have SAP version ECC 5 and application patch level is 8. While we check balances of GR/IR Clearing A/c through FS10N in period 5 under credit posting which is being differed with FBL3N balances as Rs. 24,284.62.  We have identified 5 document

  • Editing albums in Itunes

    Hi With Windows Media you can currently edit double CD's ( like live albums ) so that you can have both CD's listed as 1 by changing the track numbers to be consecretive and then album title to just 1 name (does not include disc 1 and disc 2 in the t