Web Images Videos Maps News Shopping Gmail more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Scene activation
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  16 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Sean Kline  
View profile  
 More options Sep 15 2008, 2:29 pm
From: "Sean Kline" <klinena...@gmail.com>
Date: Mon, 15 Sep 2008 14:29:51 -0400
Local: Mon, Sep 15 2008 2:29 pm
Subject: Re: Scene activation

Is there a limit to the amount of scenes you can have without purchasing the
product?


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alex Furman  
View profile  
 More options Sep 15 2008, 2:30 pm
From: Alex Furman <alex_f...@hotmail.com>
Date: Mon, 15 Sep 2008 14:30:31 -0400
Local: Mon, Sep 15 2008 2:30 pm
Subject: RE: Scene activation

There is not limit.

Date: Mon, 15 Sep 2008 14:29:51 -0400From: klinena...@gmail.comTo: swexplorerautomat...@googlegroups.comSubject: Re: Scene activation
Is there a limit to the amount of scenes you can have without purchasing the product?_________________________________________________________________
Stay up to date on your PC, the Web, and your mobile phone with Windows Live.
http://clk.atdmt.com/MRT/go/msnnkwxp1020093185mrt/direct/01/


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sean Kline  
View profile  
 More options Sep 15 2008, 2:35 pm
From: "Sean Kline" <klinena...@gmail.com>
Date: Mon, 15 Sep 2008 14:35:08 -0400
Local: Mon, Sep 15 2008 2:35 pm
Subject: Re: Scene activation

I really see no reason at all why this specific Scene wont activate. Every
other scene is fine but for some reason this won will never activate. Iv
double checked everything


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
klinenator@gmail.com  
View profile  
 More options Sep 15 2008, 2:54 pm
From: "klinena...@gmail.com" <klinena...@gmail.com>
Date: Mon, 15 Sep 2008 11:54:57 -0700 (PDT)
Local: Mon, Sep 15 2008 2:54 pm
Subject: Re: Scene activation
Also im looking for some kind of wait while page is busy. Currently i
have this code that works

Do while xlWorkSheet.cells(x,7).value <> ""
... Enter Data ...
System.Threading.Thread.Sleep(1000)
Do while scene.IsActive = False
   if explorermanager("scene_4").isactive then
   scene=explorermanager("Scene_4")
   scene.HtmlAnchor("HtmlAnchor_0").Click()
 Else
  scene = explorermanager("Scene_5")
  scene.HtmlAnchor("HtmlAnchor_0").Click()
End if
Loop
Loop

That works but if the page takes longer then the sleep time it breaks
the code. I would love to have
sub WaitForpage
do while webpage.isbusy = true
wait 0.2
loop
End sub

If i could call a WaitForPage command like that it would be ideal


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alex  
View profile  
 More options Sep 15 2008, 4:01 pm
From: Alex <alex_f...@hotmail.com>
Date: Mon, 15 Sep 2008 13:01:42 -0700 (PDT)
Local: Mon, Sep 15 2008 4:01 pm
Subject: Re: Scene activation
To wait for multiple scenes you should use

scene[] activeScenes =
explorerManager.WaitForActive("scene_4,scene_5", timeout)

if activeScenes(0).NAme = "Scene_4" then
else
   if activeScenes(0).Name = "Scene_5"
  endif
end if

On Sep 15, 2:54 pm, "klinena...@gmail.com" <klinena...@gmail.com>
wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sean Kline  
View profile  
 More options Sep 15 2008, 4:12 pm
From: "Sean Kline" <klinena...@gmail.com>
Date: Mon, 15 Sep 2008 16:12:48 -0400
Local: Mon, Sep 15 2008 4:12 pm
Subject: Re: Scene activation

Im assuming in vb.net it would look something like

dim activeScenes as explorerManager.WaitForActive("Scene_4","Scene_5",30000)

Except it seems that you cant wait for two scenes


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alex Furman  
View profile  
 More options Sep 15 2008, 4:18 pm
From: Alex Furman <alex_f...@hotmail.com>
Date: Mon, 15 Sep 2008 16:18:12 -0400
Local: Mon, Sep 15 2008 4:18 pm
Subject: RE: Scene activation

Dim scenes(1) As Stringscene(0) = "Scene_4"scene(1) = "Scene_5"dim activeScenes as explorerManager.WaitForActive(scenes,30000)Date: Mon, 15 Sep 2008 16:12:48 -0400From: klinena...@gmail.comTo: swexplorerautomat...@googlegroups.comSubject: Re: Scene activation
Im assuming in vb.net it would look something likedim activeScenes as explorerManager.WaitForActive("Scene_4","Scene_5",30000)Except it seems that you cant wait for two scenes_________________________________________________________________
Stay up to date on your PC, the Web, and your mobile phone with Windows Live.
http://clk.atdmt.com/MRT/go/msnnkwxp1020093185mrt/direct/01/


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sean Kline  
View profile  
 More options Sep 15 2008, 4:32 pm
From: "Sean Kline" <klinena...@gmail.com>
Date: Mon, 15 Sep 2008 16:32:33 -0400
Local: Mon, Sep 15 2008 4:32 pm
Subject: Re: Scene activation

It says array bounds cannot appear in type specifiers.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alex Furman  
View profile  
 More options Sep 15 2008, 4:39 pm
From: Alex Furman <alex_f...@hotmail.com>
Date: Mon, 15 Sep 2008 16:39:37 -0400
Local: Mon, Sep 15 2008 4:39 pm
Subject: RE: Scene activation

Dim scenes() As String = {"Scene_4", "Scene_5"}
Dim scenesArr() as Scene = explorerManager.WaitForActive(scenes, 30000)

Date: Mon, 15 Sep 2008 16:32:33 -0400From: klinena...@gmail.comTo: swexplorerautomat...@googlegroups.comSubject: Re: Scene activation
It says array bounds cannot appear in type specifiers.________________________________________________________________ _
See how Windows Mobile brings your life together—at home, work, or on the go.
http://clk.atdmt.com/MRT/go/msnnkwxp1020093182mrt/direct/01/


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sean Kline  
View profile  
 More options Sep 15 2008, 4:44 pm
From: "Sean Kline" <klinena...@gmail.com>
Date: Mon, 15 Sep 2008 16:44:05 -0400
Local: Mon, Sep 15 2008 4:44 pm
Subject: Re: Scene activation

That works perfectly, thank you. Im sure other will find that useful too


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sean Kline  
View profile  
 More options Oct 8 2008, 9:59 am
From: "Sean Kline" <klinena...@gmail.com>
Date: Wed, 8 Oct 2008 09:59:55 -0400
Local: Wed, Oct 8 2008 9:59 am
Subject: Re: Scene activation

I keep getting a NullReferenceException was unhandled. When i use

If activescenes(0).name = "Scene_3"


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alex Furman  
View profile  
 More options Oct 8 2008, 11:06 am
From: Alex Furman <alex_f...@hotmail.com>
Date: Wed, 8 Oct 2008 11:06:49 -0400
Local: Wed, Oct 8 2008 11:06 am
Subject: RE: Scene activation

It means that none of the scenes was activated.

Date: Wed, 8 Oct 2008 09:59:55 -0400From: klinena...@gmail.comTo: swexplorerautomat...@googlegroups.comSubject: Re: Scene activation
I keep getting a NullReferenceException was unhandled. When i useIf activescenes(0).name = "Scene_3"_________________________________________________________________
See how Windows Mobile brings your life together—at home, work, or on the go.
http://clk.atdmt.com/MRT/go/msnnkwxp1020093182mrt/direct/01/


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sean Kline  
View profile  
 More options Oct 8 2008, 11:16 am
From: "Sean Kline" <klinena...@gmail.com>
Date: Wed, 8 Oct 2008 11:16:04 -0400
Local: Wed, Oct 8 2008 11:16 am
Subject: Re: Scene activation

So if i put every scene in the project in the array it will find something?


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alex Furman  
View profile  
 More options Oct 8 2008, 11:18 am
From: Alex Furman <alex_f...@hotmail.com>
Date: Wed, 8 Oct 2008 11:18:40 -0400
Local: Wed, Oct 8 2008 11:18 am
Subject: RE: Scene activation

Do you use ExplorerManager.WaitForActive function? SWEA only activates scenes which match the page.

Date: Wed, 8 Oct 2008 11:16:04 -0400From: klinena...@gmail.comTo: swexplorerautomat...@googlegroups.comSubject: Re: Scene activation
So if i put every scene in the project in the array it will find something?_________________________________________________________________
See how Windows Mobile brings your life together—at home, work, or on the go.
http://clk.atdmt.com/MRT/go/msnnkwxp1020093182mrt/direct/01/


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sean Kline  
View profile  
 More options Oct 8 2008, 11:44 am
From: "Sean Kline" <klinena...@gmail.com>
Date: Wed, 8 Oct 2008 11:44:05 -0400
Local: Wed, Oct 8 2008 11:44 am
Subject: Re: Scene activation

It only works if you tell it what scene is coming by using scene =
explorermanager("Scene_3")


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alex Furman  
View profile  
 More options Oct 8 2008, 11:47 am
From: Alex Furman <alex_f...@hotmail.com>
Date: Wed, 8 Oct 2008 11:47:04 -0400
Local: Wed, Oct 8 2008 11:47 am
Subject: RE: Scene activation

 Have you tried to use explorerManager.WaitForScenes?

Date: Wed, 8 Oct 2008 11:44:05 -0400From: klinena...@gmail.comTo: swexplorerautomat...@googlegroups.comSubject: Re: Scene activation
It only works if you tell it what scene is coming by using scene = explorermanager("Scene_3")_________________________________________________ ________________
Want to do more with Windows Live? Learn “10 hidden secrets” from Jamie.
http://windowslive.com/connect/post/jamiethomson.spaces.live.com-Blog...


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google