How can i organaize my photo into albums on n82?

ok, i have an82 and i want to sort my pictures by album , i know how to do this for every photo , by sending it to the album.is there any softwhere (free) that can do this , just select 100 photos and add them all to the album. i have 2000 photos in my phone so exporting a hole folder to an album would be the only solution. Please help

You can do it with the N82.
Just press the # key to mark each picture you want.
If you want to select many pictures keep the # key pressed and then scroll and the pictures will be marked (checked).
Then add to album.
If you want to UNmark a marked picture just navigate to it and press the # again.
640K Should be enough for everybody
El_Loco Nokia Video Blog

Similar Messages

  • How can change the hair to an image every time and how can save the edit image into albums give me code

    HI, I am small iphone developer,i have one problem in my app,please give the guidence to me.
    THIS IS MY PROBLEM:
              I HAVE SELECTED ONE PICTURE FROM ALBUMS OR TAKE PICTURE FROM CAM SO I WANT TO CHANGE THE HAIR STYLES PART WITH ANOTHER HAIR STYELS AND SAVE THE PICTURE INTO ALBUMS HOW CAN GENRATE THE CODE OR LOGIC TO ME......I AM TRYING IT FROM 3WEEKS SO COULD YOU PLEASE GIVE ME GUIDENCE TO ME.................

    HI, I am small iphone developer,i have one problem in my app,please give the guidence to me.
    THIS IS MY PROBLEM:
              I HAVE SELECTED ONE PICTURE FROM ALBUMS OR TAKE PICTURE FROM CAM SO I WANT TO CHANGE THE HAIR STYLES PART WITH ANOTHER HAIR STYELS AND SAVE THE PICTURE INTO ALBUMS HOW CAN GENRATE THE CODE OR LOGIC TO ME......I AM TRYING IT FROM 3WEEKS SO COULD YOU PLEASE GIVE ME GUIDENCE TO ME.................
    Sir I am did it by using Objcetive-C code in iphone as fallows
    demoprojectViewController.h
    #import <UIKit/UIKit.h>
    @interface demoprojectViewController : UIViewController<UIImagePickerControllerDelegate,UINavigationControllerDelegate >
        UIImageView *imageView,*editingimage,*maskimage;
         UIButton *takePictureButton;
        UIButton *selectFromCameraRollButton;
        UIView *myview;
    @property(nonatomic,retain)IBOutlet UIImageView *imageView;
    @property(nonatomic,retain)IBOutlet UIImageView *maskimage;
    @property(nonatomic,retain)IBOutlet UIImageView *editingimage;
    @property(nonatomic,retain)IBOutlet UIButton *takePictureButton;
    @property(nonatomic,retain)IBOutlet UIButton *selectFromCameraRollButton;
    @property(nonatomic,retain )IBOutlet UIView *myview;
    - (IBAction)getCameraPicture:(id)sender;
    - (IBAction)selectExistingPicture;
    -(IBAction)pickHair:(id)sender;
    -(IBAction)done;
    -(IBAction)back;
    @end
    demoprojectViewController.m
    #import "demoprojectViewController.h"
    @implementation demoprojectViewController
    @synthesize imageView,editingimage,maskimage;
    @synthesize takePictureButton;
    @synthesize selectFromCameraRollButton;
    @synthesize myview;
    CGFloat lastScaleFactor = 1;
    CGFloat netRotation;
    CGPoint netTranslation;
    NSArray *images;
    int imageIndex = 0;
    - (void)didReceiveMemoryWarning
        // Releases the view if it doesn't have a superview.
        [super didReceiveMemoryWarning];
        // Release any cached data, images, etc that aren't in use.
    #pragma mark - View lifecycle
    // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
    - (void)viewDidLoad
       // maskimage=[[UIImageView alloc]initWithFrame:CGRectMake(50, 50, 150, 150)];
        //maskimage.image=[UIImage imageNamed:@"1.png"];
        if ([UIImagePickerController isSourceTypeAvailable:
              UIImagePickerControllerSourceTypeCamera]) {
            takePictureButton.hidden = NO;
            selectFromCameraRollButton.hidden = NO;
           UITapGestureRecognizer *tapGesture =
            [[UITapGestureRecognizer alloc]
             initWithTarget:self
             action:@selector(handleTapGesture:)];
            tapGesture.numberOfTapsRequired = 1;
            [maskimage addGestureRecognizer:tapGesture];
            [tapGesture release];
            UIPinchGestureRecognizer *pinchGesture =
            [[UIPinchGestureRecognizer alloc]
             initWithTarget:self
             action:@selector(handlePinchGesture:)];
            [maskimage addGestureRecognizer:pinchGesture];
            [pinchGesture release];
            ///---rotate gesture---
            UIRotationGestureRecognizer *rotateGesture =
            [[UIRotationGestureRecognizer alloc]
             initWithTarget:self
             action:@selector(handleRotateGesture:)];
            [maskimage addGestureRecognizer:rotateGesture];
            [rotateGesture release];
            //---pan gesture---
            UIPanGestureRecognizer *panGesture =
            [[UIPanGestureRecognizer alloc]
             initWithTarget:self
             action:@selector(handlePanGesture:)];
            [maskimage addGestureRecognizer:panGesture];
            [panGesture release];
            //---swipe gesture---
            images = [[NSArray alloc] initWithObjects:
                      @"1.png",
                      @"2.png",
                      @"3.png", nil];
            //---right swipe (default)---
            UISwipeGestureRecognizer *swipeGesture =
            [[UISwipeGestureRecognizer alloc]
             initWithTarget:self
             action:@selector(handleSwipeGesture:)];
            [maskimage addGestureRecognizer:swipeGesture];
            [swipeGesture release];
            //---left swipe---
            UISwipeGestureRecognizer *swipeLeftGesture =
            [[UISwipeGestureRecognizer alloc]
             initWithTarget:self
             action:@selector(handleSwipeGesture:)];
            swipeLeftGesture.direction = UISwipeGestureRecognizerDirectionLeft;
            [maskimage addGestureRecognizer:swipeLeftGesture];
            [swipeLeftGesture release];
        [super viewDidLoad];
    -(IBAction) handleTapGesture:(UIGestureRecognizer *) sender {
        if (sender.view.contentMode == UIViewContentModeScaleAspectFit)
            sender.view.contentMode = UIViewContentModeCenter;
        else
            sender.view.contentMode = UIViewContentModeScaleAspectFit;
    -(IBAction) handlePinchGesture:(UIGestureRecognizer *) sender {
        CGFloat factor = [(UIPinchGestureRecognizer *) sender scale];
        if (factor > 1) {
            //---zooming in---
            sender.view.transform = CGAffineTransformMakeScale(
                                                               lastScaleFactor + (factor-1),
                                                               lastScaleFactor + (factor-1));
        } else {
            //---zooming out---
            sender.view.transform = CGAffineTransformMakeScale(
                                                               lastScaleFactor * factor,
                                                               lastScaleFactor * factor);
        if (sender.state == UIGestureRecognizerStateEnded){
            if (factor > 1) {
                lastScaleFactor += (factor-1);
            } else {
                lastScaleFactor *= factor;
    //---handle rotate gesture---
    -(IBAction) handleRotateGesture:(UIGestureRecognizer *) sender {
        CGFloat rotation = [(UIRotationGestureRecognizer *) sender rotation];
        CGAffineTransform transform = CGAffineTransformMakeRotation(
                                                                    rotation + netRotation);
        sender.view.transform = transform;
        if (sender.state == UIGestureRecognizerStateEnded){
            netRotation += rotation;
    //---handle pan gesture---
    -(IBAction) handlePanGesture:(UIGestureRecognizer *) sender {
        CGPoint translation =
        [(UIPanGestureRecognizer *) sender translationInView:maskimage];
        sender.view.transform = CGAffineTransformMakeTranslation(
                                                                 netTranslation.x + translation.x,
                                                                 netTranslation.y + translation.y);
        if (sender.state == UIGestureRecognizerStateEnded){
            netTranslation.x += translation.x;
            netTranslation.y += translation.y;
    -(IBAction) handleSwipeGesture:(UIGestureRecognizer *) sender {
        UISwipeGestureRecognizerDirection direction =
        [(UISwipeGestureRecognizer *) sender direction];
        switch (direction) {
            case UISwipeGestureRecognizerDirectionUp:
                NSLog(@"up");
                break;
            case UISwipeGestureRecognizerDirectionDown:
                NSLog(@"down");
                break;
            case UISwipeGestureRecognizerDirectionLeft:
                imageIndex++;
                break;
            case UISwipeGestureRecognizerDirectionRight:
                imageIndex -- ;
                break;
            default:
                break;
        imageIndex = (imageIndex < 0) ? ([images count] - 1):
        imageIndex % [images count];
        imageView.image = [UIImage imageNamed:
                           [images objectAtIndex:imageIndex]];
    #pragma mark -
    - (IBAction)getCameraPicture:(id)sender {
        UIImagePickerController *picker =
        [[UIImagePickerController alloc] init];
        picker.delegate = self;
        //picker.allowsImageEditing = YES;
        picker.sourceType = (sender == takePictureButton) ?
        UIImagePickerControllerSourceTypeCamera :
        UIImagePickerControllerSourceTypeSavedPhotosAlbum;
        [self presentModalViewController:picker animated:YES];
        [maskimage removeFromSuperview];
        [picker release];
    - (IBAction)selectExistingPicture {
        if ([UIImagePickerController isSourceTypeAvailable:
             UIImagePickerControllerSourceTypePhotoLibrary]) {
            UIImagePickerController *picker =
            [[UIImagePickerController alloc] init];
            picker.delegate = self;
            picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
            [self presentModalViewController:picker animated:YES];
            [maskimage removeFromSuperview];
            [picker release];
        else {
            UIAlertView *alert = [[UIAlertView alloc]
                                  initWithTitle:@"Error accessing photo library"
                                  message:@"Device does not support a photo library"
                                  delegate:nil
                                  cancelButtonTitle:@"Drat!"
                                  otherButtonTitles:nil];
            [alert show];
            [alert release];
    #pragma mark -
    - (void)imagePickerController:(UIImagePickerController *)picker
            didFinishPickingImage:(UIImage *)image
                      editingInfo:(NSDictionary *)editingInfo {
        imageView.image = image;
        [picker dismissModalViewControllerAnimated:YES];
    - (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker {
        [picker dismissModalViewControllerAnimated:YES];
    - (IBAction)btnSave_Clicked:(id)sender;
        UIImageWriteToSavedPhotosAlbum(editingimage.image, nil, nil, nil);
        //UIImageWriteToSavedPhotosAlbum(imageView.image, nil, nil, nil);
        UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Success" message:@"Image saved successfully to iPhone photo albums..." delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
        [alert show];
        [alert release];
    -(IBAction)pickHair:(id)sender;
           //[maskimage setMultipleTouchEnabled:YES];
       // [maskimage setUserInteractionEnabled:YES];
        //[maskimage setContentMode:UIViewContentModeScaleAspectFit];
        maskimage.image=[UIImage imageNamed:@"1.png"];
        [imageView addSubview:maskimage];
    -(IBAction)done
        NSLog(@"hiafjdkfj");
        UIGraphicsBeginImageContext(imageView.image.size); 
        CGRect rect1 = CGRectMake(netTranslation.x,netTranslation.y,maskimage.image.size.width , maskimage.image.size.height);
        CGRect rect = CGRectMake(0, 0, imageView.image.size.width, imageView.image.size.height);
        [imageView.image drawInRect:rect]; 
        [maskimage.image drawInRect:rect1]; 
        UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext(); 
        UIGraphicsEndImageContext(); 
        [editingimage setImage:resultingImage];
        [myview addSubview:editingimage];
        [self.view addSubview:myview];
    -(IBAction)back
        [myview removeFromSuperview];
        //[editingimage removeFromSuperview];
    -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
        UITouch *touch = [[event allTouches] anyObject];
        CGPoint location = [touch locationInView:touch.view];
        maskimage.center = location;
    -(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
        [self touchesBegan:touches withEvent:event];
    - (void)viewDidUnload
        self.imageView = nil;
        self.maskimage=nil;
        self.takePictureButton = nil;
        self.selectFromCameraRollButton = nil;
        [super viewDidUnload];
        // Release any retained subviews of the main view.
        // e.g. self.myOutlet = nil;
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceO rientation
        // Return YES for supported orientations
        return (interfaceOrientation == UIInterfaceOrientationPortrait);
    - (void)dealloc {
        [imageView release];
        [images release];
        [takePictureButton release];
        [selectFromCameraRollButton release];
        [super dealloc];
    @end
    but i can not put the hair to the proper place means on edit image when am saving the image please help meee

  • How can I sort my photos within albums on the iPad? Apple software *****!

    The primary reason I got an iPad was to use it as a portfolio of my photography. How is it possible that with Apple software you can't easily sort photos in a custom order within albums?!? I've heard there is a way to use Dropbox to work around (ignore) Apple software. Any help? If Apple engineers are reading this, can you please address this? And can we not use something called iTunes to work with pictures? No sense here.

    It's a lot easier with Photo Manager Pro.
    https://itunes.apple.com/sg/app/photo-manager-pro/id393858562?mt=8

  • HT201302 how can i delete the photo library album from my iphone

    I have an Iphone 5 and since yesterday appeared the photo library album yes i have tryed settings, itunes and iphotos it just won't go 
    WHAT SHOULD I DO?
    btw I have a mac book pro so if you could explain the process un mac version I'll be thankfull

    Hmmm, although I have done all above mentioned steps,
    Not able to delete them somehow....
    Can anyone assist as it take around 7,7 GB space usage currently....
    thx in advance

  • How can I import newer photos into 7.1.5?

    My daughter burned a cd of photos from her version of iPhoto "09", 8.1.2 for me.
    I am using 7.1.5 and iPhoto will not allow me to import the photos into my library. When I try this there is an alert saying I can't import this version - then my only option is to quit iPhoto!
    HELP, is there a work around???

    Welcome to the Apple Discussions. Try the following:
    1 -open the CD by clicking on it.
    2 - open the folder titled "Library" by double clicking on it.
    3 - drag the "Originals" folder to the Desktop.
    4 - launch iPhoto and drag the Originals folder from the Desktop into iPhoto's open window.
    This will import just the original photo files in the same Rolls as they were in your daughter's library. You WILL NOT get any of the keywords, titles or modified versions of those photos.
    OT
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    NOTE: this is not the same as routinely backing up your entire iPhoto library folder to protect your photos. It only protects the loss of your organizational efforts that the database file contains.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

  • How can I drag multiple photos into a new iPhoto library from search box?

    I lost but found my list of photos that were in my iPhoto library. I am unable to drag more than one photo at a time from the search box into the new iPhoto library box. Am I doing something wrong or do I have to drag one at a time? (That would take hours.) Please help if you can!
    Thanks,
    Laure

    Roam,
    Thanks again. I know how to highlight and drag multiple photos or a list of files, but the only place I found my list was by going to Finder>File>Find then a dialogue box comes up. In the dialogue box I put in iPhoto and checked that then put in "kind" "is" "image" and "size" "is greater than" "30" KB. When I click search, the entire list from my library comes up but that is when I am unable to drag more than one file at a time. The box that comes up when I search isn't (at least I don't think it is) a "folder" as such. Any suggesttions?
    Laure

  • How can I drag a photo into a contact in Mountain Lion Contacts?

    I used to be able to go to a person's web site and drag his/her picture into a contact in AddressBook. In Mountain Lion it AddressBook is now called Contacts. When creating a new contact, the picture field still shows up, and dragging a photo (in this case a jpg from a web page) into the field still shows the green plus sign. But then nothing happens. Clicking on the picture field just reveals the same dialogue as the one when creating ones own picture/icon.
    Looks like a bug.

    Thanks, that helped. It turns out dragging a web picture to Mail and then to Contacts also woks. I guess my question becomes then, why is it not possible to directly drag a picture into Contacts -- like it used to be?
    Also, all contact pictures are now also getting entered into the list of "Recents" across all contacts, including my own, and including "Recents" when selecting an account picture.
    That's clearly broken compared to how it used to be in Lion where there was a distinction of (recent) pictures for oneself and pictures for other contacts.

  • How can I embed a photo into macmail?

    I don't want to send it as an attachment but would like for it to show up in the body of the e-mail. What should the format be? I've tried cutting and pasting but that ends up as an attachment. Thanks!

    If you are using macmail - and your photo is in iPhoto - as others suggested you can just drag and drop it... after selecting new message. However, as far as the recipient, that mail program may or may not display it that way and you would have to check the settings as other suggested.
    I would tend to think that most mail programs would not show embedded pictures as a security precaution. There may be settings within the recipients email program to allow for thus -- you would have to check & would depend on the mail program itself
    Message was edited by: rdvholtwood

  • Can I organise photos into albums within iCloud Photo Library?

    i Understand that edits / deletes etc in iCloud Photo Libary will be reflected on all my iOS devices but can I organise my photos into albums using iCloud photo library?
    basically I want to take photos on my iPhone, review them on my iPad, delete the ones I don't want and keep the good ones in a relevant album (e.g. "Summer holiday 2014"). Then I want to be able to see identical albums on both my iPad and iPhone. From what I've seen so far, when I create an album and save a photo to it then that album is only local to that device?
    please help.

    Are you saying it showed 800 photos before turning off iCloud photo library or that the 800 photos disappeared after you enabled iCloud photo library for the first time, the distinction is quite important.

  • I am adding new photos to my PC windows 7 desktop but they are not syncing to my ipad.  how can i get these photos to sync

    I am adding new photos to  my PC windows 7 desktop but they are not syncing to my ipad when I sync the Ipad.  How can I get these photos into my Ipad?

    Skydiver.
    you and I know that your answer works because that is how I sync my ipad.  I don't have a mac, just a PC with itunes. Now this guy might not even have itunes and is using Windows Media Player or something like that.
    Or maybe he just do not want his problem fixed.  I read these forums and too many of the questions are just way beyond basic computer knowledge, but it seems to happen that they can never resolve a very simple problem.  It makes me wonder if people just post bogus stuff.
    I would like to see registration to the forums attached to the product serial number of the forum you are posting to.  I bet you that the posts would drop dramatically.

  • I have photos I want to group together in one album, but can't do this because some may have the same number. How can I combine them all into one album?

    I have photos I want to group together in one album, but can't do this because some may have the same number. How can I combine them all into one album? I was trying to move several albums onto a USB drive and it stated all other files exist at this location.  They are pictures taken at different times and have the same number I guess.

    In iPhoto albums may contain photos with the same file name - iPhoto handles that just fine
    If you are exporting them to move somewhere else use the sequential file name feature of export to give each file a unique name
    LN

  • How can I take a photo on my iPhone then save it into a second Album, not Camera Roll?

    How can I take a photo on my iPhone then save it into a second Album, not Camera Roll?

    All photos captured or saved with the iPhone are stored in the Camera Roll which cannot be changed.
    You can create an album to place photos in that are in the Camera Roll which does not duplicate the photo. It creates a pointer to the original photo stored in the Camera Roll. If the original is deleted from the Camera Roll, it will be removed from the album as well.
    Import the photos from the Camera Roll with your computer as with any other digital camera followed by deleting the photos from the Camera Roll after the import process is complete. Create an album or albums for the imported photos on your computer followed by transferring the albums from your computer via the iTunes sync process which is selected under the Photos tab for your iPhone sync preferences with iTunes.

  • HT201317 I have a MobileMe account and have shared many MobileMe Galleries.  MobileMe Galleries are going away in June.  How can I share a photo album with others using iCloud?

    I have a MobileMe account and have shared many MobileMe Galleries.  MobileMe Galleries are going away in June.  How can I share a photo album with others using iCloud?

    The new ios version of iPhoto allows sharing.  Here's a blurb from Apple's web site:
    There’s the old way of creating photo galleries, then there’s the iPhoto way. Select a group of photos and iPhoto automatically flows them into a beautiful journal that’s fun to personalize and share online. Touch a photo to make it bigger or smaller. Or drag it to a different spot on the screen. iPhoto adjusts the page around whatever you’re doing, so your journal always looks great. You can even add captions, maps, dates, and weather — giving family and friends the big picture at a glance.
    More things you can do:
    With iPhoto, there’s more than one way to share a photo. Post pictures directly to Facebook, Flickr, or Twitter. Play an impromptu slideshow on your iPad or iPhone. Or stream photos to your HDTV to give your big moments room to shine.
    I have not used ios version of iPhoto to share "journals" and I'm not sure this is part of iCloud or not.  You'll have to do a google search on "ios iphoto" and read up of this journal thing.  As far as I know, this is the only way of sharing photos.  I'm not sure whether other friends use a browser to view these journals or whether they need something special.  Any way - search around to find answers.

  • How do I move a photo into an album in the new Photos application?

    How do I move a photo into an album in the new Photos application?

    The simplest way is to show the Sidebar at all times - you can reveal it with options-command-S  ⌥⌘S.
    With the sidebar visible, you can simply drag the photos from the Moments or other albums to the album in the sidebar. You can select and drag multiple photos at a time by selecting the first photo, holding down the shift key and selecting more photos.  If the album does not yet exist, select the photos and press ⌘N for "File > New album" to create a new album with the selected photos.

  • How can I upload my photo album to my gallery and share to friends from iPad?

    How can I upload my photo album to my gallery and share to friends from iPad?

    You can use a USB flash drive & the camera connection kit.
    Plug the USB flash drive into your computer & create a new folder titled DCIM. Then put your album file into the folder. The file must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the files should appear & you can import.
     Cheers, Tom

Maybe you are looking for

  • I have 0,3€ credits. How can remove them so that I can change to the app store of another country?

    I have 0,3€ credits. How can remove them so that I can change to the app store of another country? I need to change to the Chinese app store as the apps I am looking for can be only found there. Thanks for all answer in advance!

  • How do I do validation using SDK.

    How do I do validation using SDK. We have created different warehouses for the client business operations. For eg: 1. Inspection Stores 2. Rejection Stores 3. Main Stores In Goods Return & A/P Credit Memo, other than RejectionStores is selected, we w

  • Enterprise portal - Invalid areas:Repository Managers

    Hi All, I'm facing the warning as "Invalid areas:Repository Managers" under Knowledge Management, we have done EHP upgrade recenlty. Could you guide how to resolve the issue & here I'm attaching the warning screen-shots please have a look. Regards, V

  • Using DDE package

    Dear all, i'm using oracle 9i version 9.2.0.1.0, i want to get data from an excel fie excel version 2003. i'm using the same code in the help DECLARE      CONVID PLS_INTEGER; BEGIN CONVID := DDE.INITIATE('EXCEL','C:\abs.xls'); DDE.REQUEST(CONVID,'D4'

  • ISE redirect to install NAC Agent for Anyconnect users with Split Tunnel?

    Due to management directive I am not able to disable SPLIT TUNNEL for our VPN users. For this reason, I can not figure out how to enforce the REDIRECT to ISE for forcing the VPN users to install the NAC AGENT. Is this possible? If so can we get some