Moving a symbol with code

I'm simply trying to animate the y axis of a symbol with code. When I rollover one symbol, I'd like it to move the symbol it's inside a certain distance. Never seems to work. I've tried looking up the simple jquery syntax to change an image's y position, but it's hard to find!
This is what I have so far:
sym.$("grouped_image").animate({"top" : "+=50px"}, 500);

Sorry typo: it should be getSymbol not getsymbol.
sym.getSymbol('yourSymbol').$('grouped_image').animate({'top':'+=50px' },500);

Similar Messages

  • Moving a class with code

    I am animating and moving some objects based upon the value of a variable. The variable value is retrieved from the stage, and then when a symbol is clicked ...
    var myName == "blue"
    // animate height of symbol "blue"
    sym.$(myName).animate ({'height':'+=100px'});
    //animate elements with class "blue"
    sym.$('.myName').animate ({'top':'+=100px'});

    You should use only one equal sign:
    var myName = "blue"

  • I just purchased an IMac with lion and I tryed to install an old math program that is for winmac running systems. When I try to boot the cd it comes up with a notepad window with a bunch of weird symbols and codes but the program will not start up.

    I just purchase my first IMac with lion and I was trying to install a math program I bought 6 years ago. When I went to boot it off the disk while following the program instructions a window popped up with a note pad format with symbols and codes but the program would not download or open. How do I get this program to work? It is a mac compatible program by the way.

    Your Mac probably does not know with which application to open the file and is opening a file with a text editor that really needs to be opened by the application itself.  Try starting the application first, then use the File > open command to open the file.
    As varjak paw comments, there isn't a "winmac" so that's not telling us anything.
    Note that it is possible that software purchased 6 years ago may no longer run on your computer.  Once we know what it is we can help more.

  • Moving multiple symbols "breaks" motion tweens

    I'm working on a character rotation in Flash CS 5.5 that leads into a basic walk cycle using all motion tweens. The tutorial I'm following (which only uses classic tweens) says to grab all the upper body symbols with free transform and rotate them forward a little. This works fine with classic tweens, but with motion tweens, the parts pop strangely out of place and the more frames I try to move the upper body symbols on, the worse the symbols start randomly sliding around. You can see a simple before/after example posted below. Moving the profile view upper body symbols displaces the arms on the first frame.
    Is there any way to move multiple symbols without ruining them? Someone else described at length a problem like this on an old thread, but no one answered: http://forums.adobe.com/thread/1084800
    I've tried taking all the upper body layers and sticking them in a symbol, but that won't work because the left hand will pass over the left leg instead of under due to layering.
    EDIT - Whatever change is made to the arms during the walk  changes the key frames at the beginning, but only if selected with other symbols. If I move the upper body parts down instead of rotating them, the first frame arms will be retroactively be moved down.
    Message was edited by: LastNameLeft3000

    If you are interested in getting decent results at some point youwill have to looke into the Bone-Tool or use a extension like DragonBones
    The reason why you are having "Displacement"-problems lies in the "Math" behind how AnimatorFactory (the system behind Motion Tweens) handles transformations different from Tweens (Its outright misleading to call them Tweens, and Adobe did a poor naming job).
    Right click one of the Motion tweens and chosy "copy as Actionscript 3.0" from the context menu then paste the code in any available textEditor and you will see sth like:
    import fl.motion.AnimatorFactory;
    import fl.motion.MotionBase;
    import fl.motion.Motion;
    import flash.filters.*;
    import flash.geom.Point;
    var __motion_Symbol1_9:MotionBase;
    if(__motion_Symbol1_9 == null) {
        __motion_Symbol1_9 = new Motion();
        __motion_Symbol1_9.duration = 24;
        // Call overrideTargetTransform to prevent the scale, skew,
        // or rotation values from being made relative to the target
        // object's original transform.
        // __motion_Symbol1_9.overrideTargetTransform();
        // The following calls to addPropertyArray assign data values
        // for each tweened property. There is one value in the Array
        // for every frame in the tween, or fewer if the last value
        // remains the same for the rest of the frames.
        __motion_Symbol1_9.addPropertyArray("x", [0]);
        __motion_Symbol1_9.addPropertyArray("y", [0]);
        __motion_Symbol1_9.addPropertyArray("scaleX", [1.000000]);
        __motion_Symbol1_9.addPropertyArray("scaleY", [1.000000]);
        __motion_Symbol1_9.addPropertyArray("skewX", [0]);
        __motion_Symbol1_9.addPropertyArray("skewY", [0]);
        __motion_Symbol1_9.addPropertyArray("rotationConcat", [0,3.91304,7.82609,11.7391,15.6522,19.5652,23.4783,27.3913,31.3043,35.2174,39.1304,43.043 5,46.9565,50.8696,54.7826,58.6957,62.6087,66.5217,70.4348,74.3478,78.2609,82.1739,86.087,9 0]);
        __motion_Symbol1_9.addPropertyArray("blendMode", ["normal"]);
        __motion_Symbol1_9.addPropertyArray("cacheAsBitmap", [false]);
        __motion_Symbol1_9.addPropertyArray("opaqueBackground", [null]);
        __motion_Symbol1_9.addPropertyArray("visible", [true]);
        // Create an AnimatorFactory instance, which will manage
        // targets for its corresponding Motion.
        var __animFactory_Symbol1_9:AnimatorFactory = new AnimatorFactory(__motion_Symbol1_9);
        __animFactory_Symbol1_9.transformationPoint = new Point(0.499943, 0.500000);
        // Call the addTarget function on the AnimatorFactory
        // instance to target a DisplayObject with this Motion.
        // The second parameter is the number of times the animation
        // will play - the default value of 0 means it will loop.
        // __animFactory_Symbol1_9.addTarget(<instance name goes here>, 0);
        // Call the addTarget function on the AnimatorFactory
        // instance to target a DisplayObject with this Motion.
        // The second parameter is the number of times the animation
        // will play - the default value of 0 means it will loop.
        // __animFactory_Symbol1_9.addTarget(<instance name goes here>, 0);
    This is only the code for simply rotating a rectangle over the duration of 24 frames.
    You notice 2 two problems right away: while having the registration point in the center, Flash distorts the values:
        __animFactory_Symbol1_9.transformationPoint = new Point(0.499943, 0.500000); //should be (0.5, 0.5)
    you can imagine that this "error" gets worse when inherited from nested symbol to nested symbol, it "exponentially" grows with each nesting, and it will soon reach a point were it gets visible.

  • How do I move a symbol from code?

    I'm actually trying to centre and scale a symbol, while maintaining aspect ratio, such that the width fills the stage, but that only seems to be possible for background images (width:100%, height:auto).
    I created a symbol (with about 6 divs (rectangles and text) in it) on the stage and names it 'content'. The stage is 100% wide and 100% high. On window.resize, I set content scale thus -
    var stageWidth = $(window).width();
    var contentWidth = sym.getSymbol("content").getSymbolElement().width();
    var m = stageWidth / contentWidth;
    sym.getSymbol("content").getSymbolElement().css("-webkit-transform", "scale(" + m + ", " + m + ")");
    It scales fine, but it scales about a weird point making the symbol appear to move as the window resizes. I want it to remain at the left hand side (filling the viewport). I couldn't work out how to make it do that in the interface, so I started to attack it with code
    console.log("before: " + sym.getSymbol("content").getSymbolElement().position().left);
    sym.getSymbol("content").getSymbolElement().css("position", "relative");
    sym.getSymbol("content").getSymbolElement().css("top", "0px");//actually needs to be -(half of (content height - stage height))
    sym.getSymbol("content").getSymbolElement().css("left", "0px");
    console.log("after: " + sym.getSymbol("content").getSymbolElement().position().left);
    But that isn't having any effect at all (other than filling my javascript console). How can I move this thing to the correct position?

    Thanks Tim, but changing the width and the height of my_symbol just doesn't reproduce what I'm trying to acheive, or the problems I'm having as a result of that. I need to scale the symbol, not resize it.
    I just tried you code anyway. my_symbol does stay top left, but actually it stays left if I use your code without the bottom two lines. You need
    sym.getSymbol("content").getSymbolElement().css("-webkit-transform", "scale(" + m + ", " + m + ")");
    to cause the wierd positioning issue.
    Here's a result you might find interesting. I tried this code -
    var stageWidth = $(window).width();
    var contentWidth = sym.getSymbol("content").getSymbolElement().width();
    var m = stageWidth / contentWidth;
    sym.getSymbol("content").getSymbolElement().css("-webkit-transform", "scale(" + m + ", " + m + ")");
    sym.$("content").css('left', 0);
    sym.$("content").css('top', 0);
    console.log("left: " + sym.getSymbol("content").getSymbolElement().position().left);
    Then I resized the browser a bit and got this trace
    left: 45
    left: 45
    left: 37
    left: 37
    left: 27
    left: 27
    left: 20
    left: 20
    left: 8
    left: 8
    left: 4
    left: 4
    left: -2
    left: -2
    left: -8
    left: -8
    left: -9
    left: -9
    So it looks like content's left isn't getting set to 0 at all. Oh dear. -ve numbers are from browser widths greater than 720, which is the width of 'content' before I've filddled with it.
    I can't even work which point it's scaling about! If I could make that the middle left then I wouldn't have a problem.

  • Battery symbol with red line thru it

    how do you fix the blackberry with a battery symbol with a red line thru it?

    Try this first:
    Leave the device to charge 2-3 hours, and then, still connected to the USB cable, remove the the battery from the device a few seconds and reinsert it. If it boots--leave it to charge to 100% (check Options > Status for the percentage).
    If it doesn't boot--try using a wall outlet charger if you are not. If you are connected via USB to the PC, make certain that you have Desktop Manager (or the USB device drivers) installed, which you can download below.
    Make certain your USB cable is connected to one of the PC's main rear USB ports. Not a USB hub, nor a monitor USB port, nor a USB port on the front of the PC.
    Download Desktop Manager from here:
    https://www.blackberry.com/Downloads/entry.do?code=A8BAA56554F96369AB93E4F3BB068C22
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • 8800, battery symbol with red line through it. Won't boot. Please help!!!

    I recently bought a 8800 and when I inserted a battery, all I got was a battery symbol with a red line through it on a dim screen.  I changed batteries, tried to charge it via USB and from a wall outlet to no avail.  I tried cleaning the contacts and tried uploading t a new  OS, but it wont recognize the phone being connected when it actually is.    I am at the end of my rope with this phone and can't figure out what else to do.  Is it just gone? Please help me 
    Solved!
    Go to Solution.

    Leave the device to charge 2-3 hours, and then, still connected to the USB cable, remove the the battery from the device a few seconds and reinsert it. If it boots--leave it to charge to 100% (check Options > Status for the percentage).
    If it doesn't boot--try using a wall outlet charger if you are not. If you are connected via USB to the PC, make certain that you have Desktop Manager (or the USB device drivers) installed, which you can download below.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • HT1386 Switched from ipod to ipod touch. When trying to sync songs get lost. Show in the library and playlist but a message says cannot be found. An exclamation symbol with a circle aroung it shows on the missing songs. How can I sync the new ipod touch?

    Switched from ipod to ipod touch. When trying to sync, songs get lost. Songs show in the library and playlist but get a message that says songs cannot be found. An exclamation symbol with a circle aroung it shows on the missing songs. How can I sync the new ipod touch?

    The ! Next to a song:
    The song can’t be located; it may have been moved or deleted
    To find them try:
    iTunes: Finding lost media and downloads
    You can redownload iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • How to delete a symbol with a click of a inside button

    Hello,
    I have this Symbol with a button inside. I want to click on this button and delete the Symbol.
    I have the code below but it doesn't work.
    sym.getComposition().getStage().getSymbol("vitrine_content").$("cachedarmes_movie").delete Symbol();
    if I try to do animate the symbol. It works :
    sym.getComposition().getStage().getSymbol("vitrine_content").$("cachedarmes_movie").animat e({'left':'200px'});
    And I don't see why..
    thanks
    s.

    Thanks. I ve tried it and it deletes the uppermost Symbol just after the Stage.
    The STAGE -> vitrine_content-> cachedarmes_movie...

  • Credit Card Personal No. moved to another Company Code

    Dear Experts,
    One of the employee has moved to other company code and hence the credit card is also moved to the master data of the new personal number.
    So earlier personal no. 123456 in company code 1000 was having the credit card no. ABC with the end date as 31.03.2010 in PA30. Now the new personal no. 654321 in company code 2000 is having that credit card no. ABC with the start date as 01.04.2010 in PA30.
    While uploading the transaction it is still uploading in the old personal no.
    Please let me know what changes needed to be done.
    Regards,
    Gaurav

    Hello Gaurav,
    Two logical reasons both highlighted by Vaibhav and Dars C.
    1) Personnel Number used needed to be amended at the supplier level so that the provider now knows the new and valid personnel number .
    2)Receipt date or the actual transaction date, if the transactions in the file comes through with correct and new personnel number but the actual trans date reflected in the system as receipt date is prior to 31.03.20xx(per example), then the system assumes the old setup and the bufferzone(PRCCD) will use the old number.
    Also check how the new number is created.  There is a proper way to add a record in PRMD with the new information rather than changing/amending the old record which will also create issues.
    Rgds
    CONMJI

  • Launch a Crystal Report Based on a Bus. Objects Universe with code

    Post Author: BobM
    CA Forum: .NET
    Launch a Crystal Report Based on a Bus. Objects Universe with code
    We have purchased Business Objects Enterprise XI R2 and have designed a universe.  We have hundreds of scheduled reports that have been configured through the InfoView.  The problem is that we run these reports on a very odd date schedule and it is extremely cumbersome to go into these report definitions and change the dates in InfoView.
    We would like to be able to store all the report parameters in a table (outside of the BO universe) along with the date and time we would like it to run.  All of this would need to be tagged with the report name so we know what report we are referring to.  Then we would like to sweep this table periodically (or use some other triggering mechanism) and launch the reports as specified (hopefully) using an API/SDK (like the one that used to be available with Crystal) to launch the .RPT file and pass all of the appropriate parameters, and possibly the credentials if need be.
    In short we want to roll our own report scheduler due to some limitations we have found in the InfoView scheduler.
    My main question is, does an API/SDK exist that can launch a crystal report that is based on a Business Objects Universe?  As I had stated, it needs to be able to pass parameters in the report call.  Based on my previous projects using Crystal connected directly to a SQL Server DB, I beleive this is possible, but I would like to hear from others that may be doing something similar with a Business Objects Universe back end.
    We are using Crystal Reports XI R2.  Just to be clear, all of the functionality I specified up to the point where the report needs to be called is not an issue, we know how to do all of that.
    Thanks in advance,Bob
    Code; API; Business Objects; Universe; Crystal; BO Enterprise X11; Crystal Reports XI

    With the code, you've presumably logged on to the database. To insert objects on to a new report you'd want to use code along the following lines:
    private void AddTableFromDataSet(ref CrystalDecisions.CrystalReports.Engine.ReportDocument rpt, System.Data.DataSet ds)
    ISCDReportClientDocument rasReport = rpt.ReportClientDocument;
    // Convert the DataSet to an ISCRDataset object (something the ISCDReportClientDocument can understand)
    CrystalDecisions.ReportAppServer.DataDefModel.ISCRDataSet rasDS;
    rasDS = CrystalDecisions.ReportAppServer.DataSetConversion.DataSetConverter.Convert(ds);
    // Add the dataset as a data source to the report
    rasReport.DatabaseController.AddDataSource((object)rasDS);
    // Add a field to the report canvas
    // Note: This is quick and dirty. No positioning, resizing, formatting, etc.
    CrystalDecisions.ReportAppServer.Controllers.ISCRResultFieldController rfc;
    CrystalDecisions.ReportAppServer.DataDefModel.ISCRTable crTable;
    CrystalDecisions.ReportAppServer.DataDefModel.ISCRField crField;
    rfc = rasReport.DataDefController.ResultFieldController;
    crTable = rasReport.Database.Tables[0];
    crField = crTable.DataFields[2]; // Hardcoded field "Customer Name" in the Customer table from Xtreme Sample Database
    rfc.Add(-1, crField);
    // Save the report template to disk (without data)
    //object path = @"c:\documents and settings\administrator\desktop\";
    //rasReport.SaveAs("test.rpt", ref path, 0);
    //MessageBox.Show("Done!");
    For more info, see sample apps on the following link:
    http://wiki.sdn.sap.com/wiki/x/IgBmBQ
    Also, consult your 'Report Application Server .NET SDK Developer Guide" and  "Report Application Server .NET API Guide". I'd provide the appropriate links, but you do not mention the version of CR you are using...
    Thread moved to the '.NET - SAP Crystal Reports" forum.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Unresolved symbol : OCIEnvCreate (code)  from libocci.sl.10.1

    I'm getting a core dump, with the error message "Unresolved symbol : OCIEnvCreate (code) from libocci.sl.10.1", when I try to execute a simple OCCI code that connects to the database and performs some SQL queries. It is occuring at the following line :
    Environment *env = Environment::createEnvironment(Environment::DEFAULT);
    I'm using oracle 9i (Ver 9.2.0.6.0) on HP-UX (Ver 11),
    I'm using Oracle Instant Client for HP-UX PA-RISC (32-bit) (Version 10.2.0.2) libraries for OCCI.
    Can anyone help me out?

    I'm using aCC compiler, and doing dynamic linking..I've specified the directory path of the .sl files of the instant client in SHLIB_PATH, do I need to specify the path in ORACLE_HOME, or some other env variable??
    Can you tell me steps that I should follow while compiling, linking & execute the code?

  • PurchaseOperation: Purchase failed with code 5002

    When I try to download a book that I purchased to one of my workstations, I get the following output within `/var/log/bookstore.log`:
    Jun  2 15:55:50 hostname iBooks[17397] <Critical>: MZBookKeeperStoreURLOperation: Starting URL operation with url=https://bookkeeper.itunes.apple.com/WebObjects/MZBookkeeper.woa/wa/getAll / bagKey=(null)
    Jun  2 15:55:50 hostname iBooks[17397] <Critical>: -[ISStoreURLOperation _runURLOperation]: _addStandardQueryParametersForURL: https://bookkeeper.itunes.apple.com/WebObjects/MZBookkeeper.woa/wa/getAll
    Jun  2 15:55:50 hostname bookstoreagent[1491] <Critical>: ISStoreURLOperation: Starting URL operation with url=(null) / bagKey=buyProduct
    Jun  2 15:55:50 hostname bookstoreagent[1491] <Critical>: -[ISStoreURLOperation _runURLOperation]: _addStandardQueryParametersForURL: https://p7-buy.itunes.apple.com/WebObjects/MZBuy.woa/wa/buyProduct
    Jun  2 15:55:50 hostname bookstoreagent[1491] <Critical>: ADI: Account is not provisioned, omitting OTP and MD
    Jun  2 15:55:50 hostname bookstoreagent[1491] <Critical>: PurchaseOperation: Purchase failed with code 5002 and params productType=PUB&price=0&salableAdamId=5212156335&pricingParameters=HQRDL&ownerDsid=52156526
    What should I do to resolve this?

    Unfortunately that did not resolve the issue.  Same thing happening, but I did noticed something I had not seen previously in system.log:
    Sandbox: bookstoreagent(1423) deny file-read-data /Volumes/tank/Users/Shared/SC Info/SC Info.sidd
    Sandbox: bookstoreagent(1423) deny file-read-data /Volumes/tank/Users/Shared/SC Info/SC Info.sidb
    Sandbox: bookstoreagent(1423) deny file-read-data /Volumes/tank/Users/Shared/adi/adi.pb
    So I proceeded to also reset permissions and ACLs on the Shared folder.
    Unfortuantely this still availed no positive results and proceeded with another error.  I now saw the `adi` folder in the mix.  I then also moved it over, but noted that it was still complaining about the `SC Info` folder, even though it does not exist.  Obviously the folder is not being recreated and leads me to believe that there is yet some kind of permission issue, even though things should be sane in that regard.
    I then `mkdir'd` the `SC Info` folder and then got:
    sandboxd[258] ([1423]): bookstoreagent(1423) deny file-write-create /Volumes/tank/Users/Shared/SC Info/.sid.lockFile
    sandboxd[258] ([1423]): bookstoreagent(1423) deny file-write-create /Volumes/tank/Users/Shared/SC Info/SC Info.sidb
    So obviously the sandobx is having some kind of permission issues here.  I could go setting it to 777, but obviously that's not ideal and I'd like to understand what is actually happening here under the sheets that is so elusive...
    Oh, also, I did add Deauth and Auth for this computer in between the steps before mv'ing folders (I don't like to rm things initially until I'm sure I've not blown something up... )

  • Overwriting a symbol with transforms

    Hi all,
    My team is working with symbols in a somewhat unique(?) way. We usually can't edit a symbol the normal way because going to isolation mode will 'shift' the symbol out of alignment with the rest of the artwork (especially if the symbol has many transforms on it -scaling, rotation). so this becomes useless for us. basically the symbol goes into it's original orientation while in 'edit' mode.
    what we need to do is break the symbol, edit it, and then recreate it (or overwrite it). the steps involved are:
    1) break symbol, leaving it's artwork on stage in current transformation.
    2) edit artwork
    3) transform artwork into symbol's original untransformed state. (if you don't do this, when you overwrite the symbol it will have your stage transformations applied. which isn't what we want.)
    4) overwrite symbol with new 'edited' version of artwork.
    i've covered 1,2 and 3, no problem, and 4 is programmatically not difficult, and works much of the time. The difficulty comes when the artwork in the symbol contains a Live Paint group, or Compound path(maybe other art types). when the symbol instance containing a LP group, or compound path, is used in the process above - the last step tends to 'shift' the new instance from it's original position, especially when the starting symbol has been scaled large. If the symbol just contains paths - never a problem.
    so i'm trying to account for something that i'm missing.. i can add code if anyone thinks they can help. it's fairly simple in concept though:
    this covers the removing the stage artworks transform, before saving
    sAISymbol->GetSymbolPatternByName(name1, &symbol); // original symbol name
    // soft is original symbol's soft transformation on stage
    sAIRealMath->AIRealMatrixInvert(&soft);
    sAIRealMath->AIRealMatrixGetScale(&soft,&sX, &sY);
    sAIRealMath->AIRealMatrixGetRotate(&soft, &R);
    sAIRealMath->AIRealMatrixSetTranslate( &artMatrix, -soft.tx, -soft.ty );
    sAIRealMath->AIRealMatrixConcatRotate( &artMatrix, R ); sAIRealMath->AIRealMatrixConcatScale( &artMatrix, sX, sY );
    // move the object back to original position
    sAIRealMath->AIRealMatrixConcatTranslate( &artMatrix, soft.tx, soft.ty );
    long transformFlags = kTransformObjects | kScaleLines | kTransformChildren | kTransformNotifyPluginGroups;
    result = sAITransformArt->TransformArt( art, &artMatrix, 1, transformFlags );
    sAISymbol->SetSymbolPatternArt(symbol, art);
    // this step will update the symbol to the new version, but if that symbol has LP groups/compoundpaths, and originally had a scale transform, it will shift slightly. a symbol containing just paths, will not shift ever!
    anyways, if anyone has any thoughts on what i might be missing.. i hope my description was clear enough! happy to elaborate if anyone has brain cycles to contribute.
    thanks!
    steve

    Actually, this sounds similar to a problem we recently discovered: if one of our users put certain symbols into isolation mode, then left isolation mode, the symbol would suddenly shift. Sounds like it might be related, or even the same problem!
    We never could figure out how to detect & correct the problem though. It feels like there should be a way to divide out the extra transforms sitting on a symbol from the base 'locate me here' transforms, but there isn't that I could find.

  • Red battery symbol with lightning bolt when plugged in

    First time it has shown this, normally a green battery symbol with lightning bolt..what is it???
    Gene
    Solved!
    Go to Solution.

    powerbar?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • How to develope application with multiple schema

    Hi, In my application, there is 3 schema, forms are from different schema, but the database is one. How should I manage it, When i open the form with different schema I am not getting the expected result, I am using Oracle 10g Forms & Database Thanks

  • BAP for Creation of new BP Relationship

    I am attempting to create a new relationship as a part of a data conversion task.  I have used function modules: BAPI_BUPR_RELATIONSHIP_CREATE and BUPR_RELATIONSHIP_CREATE In both instances I specify the following: Partner 1 = existing Sold-to BP Par

  • What's the best photograph for a no background image?

    I am about to photograph some products and would like to make a set up where I can photograph each of the products in the same setting/lighting. Then, when I go to open/edit them in PhotoshopCS4, I can take out the background and have just the image.

  • Installing boot camp on a second drive

    Hi All, First let me apologize for this long-winded post and also for my lack of basic knowledge when it comes to mac computer skills. I would like to install windows 7 on a brand new 500gb drive in a brand new mac pro. I was reading through the inst

  • Why not to create a pause in the video camera?

    Mr/Mrs    During recording a video, When we want to stop recording for a while and then continue, we have to record a new video again but we cannot do pause because there is no a pause function. So my suggestions is "Why not to create a pause in the