SelectionEvent problem

Hi I added the following to get the selection

textFlow.addEventListener (SelectionEvent.SELECTION_CHANGE, selectionHandler);

function selectionHandler(ev:SelectionEvent):void {}

trace (ev.type);

/ * var Beach: ElementRange = ev.selectionState?

ElementRange.createElementRange (ev.selectionState.textFlow,

ev.selectionState.absoluteStart, ev.selectionState.absoluteEnd): null;

trace ("start of the selection range index:" + range.absoluteStart);

trace ("end of the selection range index:" + range.absoluteEnd); * /.

}

When I Uncomment from Above code it gives this error
1119: access of property may be undefined selectionState through a reference with static type flashx.textLayout.events:SelectionEvent.
can you please my what I need to fix
Thank you

First of all, I would say that you try upgrading to a newer version of TLF, if you use one that we have posted on the site of laboratories in last November that works with the Flash CS4 component.

If you change this line:

EditManager (textFlow.interactionManager) .modifyInlineGraphic (null, e.target.value, e.target .value);

and add an additional argument that specifies the location of the inline graphic to modify as a SelectionState, it should work:

EditManager (textFlow.interactionManager) .modifyInlineGraphic (null, e.target.value, e.target .value, new SelectionState (textFlow, 15, 15));

for example, if your fixed graphic is in absolute position 15 in the text stream.

-robin

Tags: Adobe Open Source

Similar Questions

  • Problem with the Paging in VO tuning range

    Hi all

    I am having some problems with the Range Paging in VO tuning. My VO questions about 5000 + lines. So I'm going to the range of paging that is the recommended method for managing large data. Here I must also get the current row of the table (which shows the desired result). But when I use the getCurrentRow() method, it results in a value zero. Why this happens?

    code
    FacesContext fc = FacesContext.getCurrentInstance ();
    Object returnObject1 = null, fc.getELContext () .getELResolver () .getValue (fc.getELContext (), "links");
    DCBindingContainer bindingsIte = returnObject1 (DCBindingContainer);
    DCIteratorBinding dciter = bindingsIte.findIteratorBinding("ClientsVO1Iterator");
    Line rowClient = dciter.getCurrentRow ();
    String sDisposaltype = rowClient.getAttribute("DividendDispType").toString ();

    This method works very well with the scrollable access mode.
    Is there a special way to get the current line with the range Paging?

    Thank you
    Danesh

    Danesh,

    I have not checked this version or the most recent 11.1.2.1, but in 11.1.1.4, we had this problem and we use workaround:
    1. remove the current selectionlistener in the table (#{... makecurrent}).
    2. set a new headset selection (using the small arrow to the right) in a bean of your choice. The scope of the bean must be seen or pageflow depending on where you need access to the selected line.
    3. in the new selectionListener you get the selected line of the event, get the key in the line and store in an attribute of bean
    4. to the point you need the selected line, you use the stored line button and work with that. If you need attributes from the line you must ask for the line, once again, that you only the key. In our case only pass us the key to a service in the module of the application method, so this works very well for us.

    Here is an example of such a selection listener

        public void singleSelectionListener(SelectionEvent selectionEvent)
        {
            RowKeySet rksAdd = selectionEvent.getAddedSet();
            if (rksAdd.isEmpty())
                return;  // no selection
    
            Object[] it = rksAdd.toArray();
            // as this is for single selection there should only be one, but...
            for (Object obj: (List) it[0])
            {
                mLogger.fine("Selected :" + obj);  // log selected row
                Key k = (Key) obj;   // the object is the row key
                Object[] kv = k.getKeyValues();  // get the key value for later
                // strore the key value in a bean attribute
                mLastSelectedOID = (Integer) kv[0]; // store the key value (if the key has multiple parts you need to store them all)
            }
        }
    

    Timo

  • What is the difference between ActionEvent and SelectionEvent?

    Technical environment:
    Oracle jDeveloper 11.1.1.4.0
    Windows XP
    ----------------------------------------

    I think there is something behind ActionEvent and SelectionEvent which makes my code does not work.

    Here's my problem:

    I have three tables. One is a masterpiece, contains the summary of something. If I select a line on this chart, the second table shows some data, based on the line selected on the first table. Well Yes, it is a ViewLink, and it works perfectly. Now, I want the same thing to work between the second and the third table. If I select a row in the second table, the third table should show some data, based on the line selected on the second table. The third table is a ViewObject with some binding settings. I need to assign values to these parameters, that I get the value of the line selected on the second table. How can I do this?

    I tried to use ExecuteWithParams. Select the line in the second table, get the values, pass it in the form ExecuteWithParams, run and... it works... I get the result on the third table. Here is the code how to:

    ***
    {} public void updateTableEvent (ActionEvent actionEvent)
    DCIteratorBinding iter = gen.getIteratorBinding("SearchView3Iterator");
    Line rw = iter.getCurrentRow ();

    oracle.jbo.domain.Date strDate = rw.getAttribute ("Tgl") (oracle.jbo.domain.Date);
    String strRkno = (String) rw.getAttribute ("Rkno");
    oracle.jbo.domain.Number strRkId = rw.getAttribute ("Rkid") (oracle.jbo.domain.Number);

    DCIteratorBinding iterParam = gen.getIteratorBinding ("variables");
    iterParam.getBindingContainer () .getVariableManager () .setVariableValue ("ExecuteWithParams_pRkId", strRkId);
    iterParam.getBindingContainer () .getVariableManager () .setVariableValue ("ExecuteWithParams_pTgl", strDate);
    iterParam.getBindingContainer () .getVariableManager () .setVariableValue ("ExecuteWithParams_pRkNo", strRkno);
    OperationBinding operationBinding = gen.getOperationBinding("ExecuteWithParams");
    Object result = operationBinding.execute ();
    }
    ***

    But when I tried the same thing on SelectionEvent, I did nothing... no error and also no results. What I want is just to select the line on the second table and get the result on the third Board, not any pressure from button. Here is the code:

    ***
    {} public void onRowSelect (SelectionEvent selectionEvent)
    DCIteratorBinding iter = gen.getIteratorBinding("SearchView3Iterator");
    Line rw = iter.getCurrentRow ();

    oracle.jbo.domain.Date strDate = rw.getAttribute ("Tgl") (oracle.jbo.domain.Date);
    String strRkno = (String) rw.getAttribute ("Rkno");
    oracle.jbo.domain.Number strRkId = rw.getAttribute ("Rkid") (oracle.jbo.domain.Number);

    DCIteratorBinding iterParam = gen.getIteratorBinding ("variables");
    iterParam.getBindingContainer () .getVariableManager () .setVariableValue ("ExecuteWithParams_pRkId", strRkId);
    iterParam.getBindingContainer () .getVariableManager () .setVariableValue ("ExecuteWithParams_pTgl", strDate);
    iterParam.getBindingContainer () .getVariableManager () .setVariableValue ("ExecuteWithParams_pRkNo", strRkno);
    OperationBinding operationBinding = gen.getOperationBinding("ExecuteWithParams");
    Object result = operationBinding.execute ();
    }
    ***

    Then. What is really going on here? What is the differece between ActionEvent and SelectionEvent? Why did give me answer of difference?
    Thanks for your comments.


    Kind regards
    Novan Ananda

    Hello

    did you tried third table PPR.

    Simply give the id from table2, table3 partialtrigger.

  • Undo Text Layout Framework columncount problem

    Text Layout Framework columncount Undo problem:
    The number of times columncount is changed, it is applied to textflow

    and the number of operations is stored in undoStack (UndoManger). But when I

    cancel it, it returns to the initial state, without undoin step by step.
    I gave my source code...
    Is Yes or any other alternative to achieve this...
    Thanks in advance...

    <? XML version = "1.0" encoding = "utf-8"? >
    " < = xmlns:fx s:WindowedApplication ' http://ns.Adobe.com/MXML/2009 "

    xmlns:s = "library://ns.adobe.com/flex/spark".

    xmlns:MX = "library://ns.adobe.com/flex/mx" creationComplete = "init ()" >
    < fx:Script >
    <! [CDATA]
    Import flashx.textLayout.container.ContainerController;
    Import flashx.textLayout.conversion.ITextImporter;
    Import flashx.textLayout.conversion.TextConverter;
    Import flashx.textLayout.edit.EditManager;
    Import flashx.textLayout.edit.IEditManager;
    Import flashx.textLayout.edit.ISelectionManager;
    Import flashx.textLayout.edit.SelectionState;
    Import flashx.textLayout.elements.InlineGraphicElement;
    Import flashx.textLayout.elements.ParagraphElement;
    Import flashx.textLayout.elements.TextFlow;
    Import flashx.textLayout.events.SelectionEvent;
    Import flashx.textLayout.events.StatusChangeEvent;
    Import flashx.textLayout.formats.Direction;
    Import flashx.textLayout.formats.TextLayoutFormat;
    Import flashx.undo.UndoManager;

    Import mx.collections.ArrayCollection;
    Import mx.controls.Alert;
    Import mx.controls.CheckBox;
    Import mx.events.FlexEvent;
    Import mx.events.SliderEvent;

    Import spark.components.Group.
    Import spark.components.TextArea;
    Import spark.core.SpriteVisualElement;

    public var directions: ArrayCollection = new collection

    (Collection ArrayCollection
    [
    {label: "Left-right",}

    data: Direction. LTR},
    {label: "Right-to-Left",}

    data: Direction. RTL}
    ]
    );

    private var _textContainer:SpriteVisualElement = null;

    textInput:XML = private static const < TextFlow

    " xmlns =" http://ns.Adobe.com/TextLayout/2008 ">
    < div >
    < p > < span > The Text Layout Framework is

    an extensible library, built on the new text in Adobe Flash Player 10 engine,

    who offers advanced, easy-to-integrate typographic layout and text features

    for rich, sophisticated and innovative typography on the web.
    Some benefits offered by this framework

    includes: 1) rich typographical controls, including kerning, ligatures,

    typographic case, the case numbers, width of the figures and the optional hyphens
    (2) cut, copy, paste, undo and standard keyboard

    and movements of the mouse for edition 3) selection, editing and flowing text across

    multiple columns and linked containers
    (4) bidirectional text, vertical text and more

    30 writing scripts including Arabic, Hebrew, Chinese, Japanese, Korean, thai,.

    Laotian, Vietnamese, etc.
    (5) vertical text, Tate-Chu-Yoko (horizontal

    in a vertical text) and justifier of Asian typography. Try to change this

    text and playing with the options below! View an online image is also

    included. </span > < / p >
    < / div >
    < / TextFlow >;

    private var _textFlow:TextFlow;

    private function init (): void {}

    _textContainer = new SpriteVisualElement();

    canvas.addElement (_textContainer);
    importing var: = ITextImporter

    TextConverter.getImporter (TextConverter.TEXT_LAYOUT_FORMAT);

    _textFlow = importer.importToFlow (textInput);
    _textFlow.flowComposer.addController (new

    ContainerController(_textContainer, canvas.width-40, canvas.height));
    _textFlow.interactionManager = new

    EditManager (new UndoManager());

    _textFlow.flowComposer.updateAllControllers ();
    }

    private void changeNoColumns(event:Event):void {}
    var tlf:TextLayoutFormat = new

    TextLayoutFormat();
    tlf.columnCount = cols.value;
    tlf.columnGap = 15;
    Tlf.direction = direction.selectedItem.data;
    var em: EditManager =

    _textFlow.interactionManager as EditManager;
    em.selectAll ();

    (_textFlow.interactionManager as

    EditManager) .applyFormat (tlf, tlf, tlf);
    _textFlow.flowComposer.updateAllControllers ();
    }

    protected function

    undo_clickHandler(event:MouseEvent):void
    {
    var em: EditManager =

    _textFlow.interactionManager as EditManager;
    trace ("Can cancel" + em.undoManager.canUndo () +)

    ('can do' + em.undoManager.canRedo ());
    EM. Undo();
    }
    protected function

    redo_clickHandler(event:MouseEvent):void
    {
    var em: EditManager =

    _textFlow.interactionManager as EditManager;
    trace ("Can cancel" + em.undoManager.canUndo () +)

    ('can do' + em.undoManager.canRedo ());
    EM. Redo();
    }

    []] >
    < / fx:Script >
    < s:Panel title = "Text Layout Framework Sample' width = '100% '.

    Height = "100%" >
    < s:layout >
    < s:VerticalLayout paddingTop = paddingLeft '8' = '8' / >
    < / s:layout >

    < s:VGroup >
    < s:Group id = "canvas" width = "600" height = "200" / >
    < s:HGroup width = "100%" verticalAlign = "middle" >
    < s:Label text = "# columns:" / >
    < s:NumericStepper id = "collar" minimum = "1".

    maximum = "20" snapInterval = "1" change = "changeNoColumns (event)" / > "
    < s:Label text = "text direction:" / >
    < s:DropDownList id = "direction".

    changing dataProvider = "changeTextDirection (Event)" = "{statements}" "

    selectedItem = "{instructions [0]}" / >
    < s:Button label = "Cancel".

    Click = "undo_clickHandler (Event)" / >
    < s:Button label = "Redo".

    Click = "redo_clickHandler (Event)" / >
    < / s:HGroup >
    < / s:VGroup >
    < / s:Panel >

    < / s:WindowedApplication >

    It cannot be reproduced with TLF 3.0 + SDK 4.5.

  • No more ElementRange in SelectionEvent?

    To keep on top of the night builds to make sure I don't slip too far behind, and I made the relevant changes when it comes to EditManager

    noFocusSelectionFormat-> unfocusedSelectionFormat

    focusSelectionFormat-> focusedSelectionFormat

    selectAll()-> setSelection (0, editManager.absoluteEnd?) (not sure about this one)

    But that stopped me was SelectionEvent content is no longer a reference to an ElementRange I used strongly through the TLF "DOM", the first paragraph to lastParagraph.

    I came back to a previous Gumbo nightly, so no problem at all, but I was wondering if there was info on the upcoming changes regarding this last point (get an ElementRange from a selection)?

    Use the selectionState SelectionEvent property and call ElementRange.createElementRange.

    Hope that helps

    Richard

  • Unable to Scan to the computer after downloading macOS Sierra. Is this a software problem?

    How can I scan from HP Envy 4500 to computer after downloading macOS Sierra?

    Hello wdemetris,

    Thanks for asking for scanning helps here in the Apple Support communities. I understand how it is important to have access to your scanner and am happy to offer help for this.

    As a precaution, we always recommend that you have backups to make sure that all your data is safe. You can perform a backup using Time Machine and an external hard drive. Use this article to help make a backup of your Mac: use Time Machine to back up or restore your Mac.

    Then, in accordance with article help: printer and scanner for Sierra, El Capitan, Yosemite, and the Mavericks macOS software, the HP Envy 4500 e-all-in-one is supported for printing and scanning. The drivers must be installed, but if not, if it please go to the App Store and check the updates tab to see if there are updates for HP. If there is, please install.

    If you have only general questions about how to get your updated scanner in place or how to scan pictures, please check out these two articles: macOS Sierra: implement a scanner & macOS Sierra: scan images or documents. If everything is configured correctly and you still have problems scanning, please visit this help article: macOS Sierra: scanning troubleshooting.

    Thanks again and have a great rest of your day.

  • My iPhone 6 installed 10.0.2 stops when it gets to 40% of autonomy.  In addition, it seems to pass power WAY to fast with the new software.  Does anyone else have this problem?

    My iPhone 6 installed 10.0.2 stops when it gets to 40% of autonomy.  In addition, it seems to pass power WAY to fast with the new software.  Does anyone else have this problem?

    Hello brooksm549,
    Thank you for using communities of Apple Support.

    I got your message which, since updating your iPhone 6 to iOS 10.0.2 your iPhone stops when it is 40% and the power to empty very quickly. I understand your concern with the iPhone turn off and drains the battery. I recommend you to review the use of the battery to see what app contributes more to the battery drain. The following article will provide you with steps on how to check the use of the battery:

    On the use of the battery on your iPhone, iPad and iPod touch

    When you know about the soft uses more battery, you can change your settings in order to optimize the battery life:

    Maximize the life of the battery and battery life

    Best regards.

  • MacBook Pro display problem

    Hello members of the community.

    As of recently, I have noticed some glitches when feeding on my MacBook or awakened from his sleep.

    The colors are distorted, usually with pink, green, or yellow blobs. Blobs cannot entirely replace the colors, they appear to be contained in a element would normally be. For example. the menu bar will be partially pink and white, but pink does not leave the menu bar in this area, and the Office has green lines on it.

    I tried to take a screenshot, but the problem resolves in about 20 seconds, but it's a recurring problem.

    It happens when I wake up, connection or not. I had also certain powers serious and problems of performance, such that my MagSafe LED would not illuminate when plugged on rare occasions, fan could turn unnecessarily, graphics performance were SUPER slow, and the health of my battery was running out quickly. I actually ran a report on the system at 2 different times and my quality of full load is depleting of 1.2% per charge cycle, which is very worrying. I went from 6281 mAh mAh 6138 maximum capacity after two cycles of load. I'm tracking closely it because at this rate, my battery will survive only at load cycles about 150 instead of the 1000 expected, gives me the idea that this could very well be a bad battery. The computer is also warm to the touch while you sleep, not connected to the power supply. I NAP active but even taking into account should not be hotter my iPhone did the same thing.

    I have reset the SMC, and it solved a couple of problems. The charger works fine now and my performance improved considerably (which made me feel better, either it is a high-performance laptop, a 11-inch MacBook Air should not he surpass), and battery life has improved. I feel even if it uses a lot of power in his sleep. Maybe I need to turn off the NAP and see if that makes a difference. The graphic bug still persists however, and I don't have enough time to see if the max battery is depleting again.

    In regards to the bug, is there something that can be done? Basically, I want to assure you that I took all appropriate measures or if someone else has this problem to see if it can be software related instead of my computer.

    I have the entry level MacBook Pro with the retina, last generation.

    Any constructive contribution welcome!

    See you soon.

    -adreaux

    Hello bernardn753,

    After reviewing your post, it seems that you are having problems with the screen showing strange things on it. Looks like you already have a troubleshooting. I recommend you read this article, as reset NVRAM would be to reset your screen resolution settings that should help.

    How to reset the NVRAM on your Mac.

    Thank you for using communities of Apple Support. Good day.

  • with IOS 10.0.2 - 5s iphone Bluetooth problems

    Since upgrading ISO 10.0.2 my M50 from PLT Plantronics (helmet unique headset) do not reliably connects with my iPhone 5 more. I have to go to the settings, activate bluetooth turned off/turned on, touch the device on the bluetooth page, etc. Once it connects successfully, it will reconnect (if I turn off the headset and turn it back on) for a short period. The next day he does not connect itself but I play with bluetooth on the iPhone again.

    It has always worked perfectly before the 10th of IOS.

    And, as I noticed others mentioning, the volume is much lower with IOS 10. The maximum volume is much lower. I can barely hear it now, more normal background noise, while driving.

    I did:

    Forget this device for the PLT M50 and paired again (several times)

    I did a Reset Network Settings

    I don't know what else to do - but it's a 10.0.2 IOS issue.

    Hello AppleUser2k,

    Please ask questions about your problems of connection between your iPhone and your Plantronics headset since you upgraded to iOS 10. I understand how important it is to have your Bluetooth devices connect with your iPhone with reliability. Here's what I recommend.

    The first thing we want to make sure is that all your data is safe. You can perform a backup in iCloud or iTunes using this article: backing up your iPhone, iPad, and iPod touch.

    Once your data is safe, try the troubleshooting steps in this article to help: get help to connect a Bluetooth accessory with your iPhone, iPad or iPod touch device should also check with the manufacturer that the device has all the drivers and firmware to work with the new version of iOS.

    If you have checked everything and that you have installed the latest firmware or driver and always are problems, please be aware of your surroundings when you encounter these problems. If you can isolate the time or location, you see the problems, you can isolate the cause. You can even see this help article to ensure that you are not affected by outside interference: the potential sources of Wi-Fi and Bluetooth.

    Thanks again and have a great rest of your day.

  • Problem after update 10.0.2 iOS iPhone touchscreen

    After I have updated to iOS 10.0.2, I noticed a problem with the touch screen. Using the position of the image on the right side, near the corner, the toushscreen does not work.
    For example: when you use the keyboard, I can't type the letter 'P', have trouble typing BACKSPACE. Using the Contacts app, I can't scroll through using the alphabet bar.

    Do what idea of the problem?

    Kind regards!

    Hi fabriciorela,

    Thanks for the upgrade to iOS 10! I understand that the right of your screen is unresponsive to the touch. You can try the steps in this link to fix the problem. If the screen of your iPhone, iPad or iPod touch does not respond to touch

    If it does not help the problem, try to restore the device to factory settings. I would like to backup your important data first.

    The backup of your iPhone, iPad and iPod touch

    Use iTunes on your Mac or PC to restore your iPhone, iPad or iPod to factory settings

    Please use the Apple Support communities to post your question. Let us know how it turns out. Have a great day.

  • Bluetooth connection problem iPhone - audio system Nissan after upgrade iOS10

    After iOS10.0.2 iOS9 on iPhone upgrade, I got a cordially problem receive calls raise Nissan car audio.

    I can make a call without any problem. Bluetooth connection is stable. I can download address book e.t.c. But I can't receive a call. I see the incoming call on the radio shows. After pressing the button "answer" on the car Audio System, audio between iPhone and Audio streams car breaks down.

    But the cellular connection remains active. I need to rotate the audio output on the screen of the iPhone car for iPhone and back to the car. After that, I can continue my call via the car radio.

    Thanks in advance

    Hello StasV,

    Thank you for using communities Support from Apple. I know having a problem with calls on your iPhone in your car, it's not what you expect. The good news is that these steps will be useful for your problem of phone calls while using the bluetooth in your car. Go to settings > general > accessibility > routing of Audio calls and the value headset/Bluetooth Headset and retest your question.

    Audio routing call - the iPhone user Guide
    Help to connect your iPhone, iPad or iPod touch with your car radio

    See you soon!

  • 2 iphones on one iTunes, problem of photo icloud account

    OK, my brother-in-law just updated its OS on his Iphone. He shared an Apple ID with his wife, who has his own iPhone. They all have two backup only in iCloud. His problem is that his wife photos are now on his phone. How can he fix it?

    Get its own identifier Apple- create and start using a Apple - Apple Support ID

  • Problem activation ISO 10 September 2016

    After my Ipad iOS 10.0.2 update I could not activate because it says I am not access with the original Apple journal. Makes no sense. I bought the new Ipad in seven of 2013 Dabs.com. She has been linked to my Apple account 10 days ago (I deleted my profile by own Apple support Web site suggestion as a way to fix my problem, the other restoration/upgrade to the Ipad with ITunes update). I contacted the support of Apple (I have two numbers in case Apple). Asked Apple support to provide a proof of purchase I made. Told me now the reception that I provided does not correspond to my Ipad, but Apple isn't going to help with all the details to help to regularize the situation. The Ipad is mine and well was linked to my account from the date of purchase in September of 2013 until I removed it at the suggestion of site specific help from Apple. I now do not have access to my ipad £460 for more than 10 days and have lost money and time talking to 4 different cooperatives of Apple, after 6 calls and none seem able to deal with a ridiculous situation. Alexandre Vitorino (Apple) seems to have the best handle on weird how this situation is. Please can someone fix this? A software update on an Ipad that I own shouldn't stop me using it and then force me to prove that I admit actually before I use it again! I'm a professional businessman who uses it for meetings of the Council. I have a receipt for my camera and get treated like a kind of criminal.

    My sincere sympathy for those who can't find their original receipt or forget their original log-in Ipad because Apple does not help, you and your Ipad will be also useless mine is currently!

    If you are in the same situation please confirm to this post. I can't be alone, if she feels like it!

    Post edited by: cibble10

    Lock activation occurs when the ID of original Apple blocking it does not match with your current Apple ID.

    Until you can bring a receipt valid from an Apple reseller or authorized, it's nothing you can do.

    BTW, the polling stations in this Apple-owned forums is prohibited. You can review the terms of use.

  • Anyone know how to solve my problem? I can't import my photos from Iphone to computer. Sign says: Photos in the camera cannot be imported because the IPhone is locked with a password or read. My phone is unlocked. I've tried everything

    Anyone know how to solve my problem? I can't import my photos from Iphone to computer. Sign says: Photos in the camera cannot be imported because the IPhone is locked with a password or read. My phone is unlocked. I tried everything, every single idea. Without success! Any other idea?

    For example, you specify that the device does not display the lock screen, correct? Do you use Touch IDS? If so, try to put your finger on the device to see if it's what he wants.

    See you soon,.

    GB

  • icloud in the iPhone activation problem 6 more

    IM someone buy iphone 6plus they don't sign Apple ID and icloud, I reset my phone and now I'm still icloud activation problem.how can I do?

    You can not. The only way is if the previous owner release form their iCloud account. If they will not do for you, it means nothing to you.

Maybe you are looking for

  • How cooking up Bookmaks

    There are many files in my 'Favorites', with a lot of web addresses.How can I save this as a return to the top?

  • The upgrade of OS for Win 7 on Satellite Pro A210-1AZ

    We have two machines that also work well on Vista 32 and we have increased the RAM on both.They are very slow and all two defective CD/DVD players.I want to solve the problem of the speed and would like to know if the upgrade to Windows 7 64 would ma

  • Selection of encoder to use with NI PCI-6221 for a project of inverted pendulum

    Hi, I'm a mechanical engineering student is his last years, for my final project I do an inverse pendulum system, the University already offered me this data acquisition card which is a NI PCI-6221, and I have to get the other components (motor conti

  • New boy in the city

    I recently bought a new camera, good Friday, April 18, EOS600D. I'm confused by the term "Rebel T3i", the box of my camera came to has no mention of the "Rebel T3i" or not the guide. The camera was introduced as a body 'bundle' EOS600D, Canon zoom le

  • CISCO ASA 5515 WITH THE VERSION OF FIREPOWER

    ASA 5515 service with the power of fire. Can be managed with ASDM firepower. ? Anyone suggests Versions for firepower, ASDM, ASA? Kindly help