微信群怎么设置每天定时提醒

微信群怎么设置每天定时提醒,第1张

1、首先在手机上点击打开“微信”应用程序,接着在此页面内点击要进行设置提醒的好友或者群的信息页面。

2、接着在此打开的页面中长按住要进行设置的,然后在d出来的选项框内点击“提醒”。

3、然后在此页面中下方d出来的 *** 作框中点击选择要进行设置提醒的时间,选中之后,点击从 *** 作框内右上角的“设置提醒”按钮,然后就完成了。

1首先在设置提醒之前需要一个入口,比如onclick事件。

2代码如下

//发送闹钟请求

Intent intent = new Intent(mContext, AlarmReceiverclass);

intentsetAction("something");

intentsetType("something");

intentsetData(UriEMPTY);

intentaddCategory(“something”);

intentsetClass(context, AlarmReceiverclass);

PendingIntent pendingIntent = PendingIntentgetBroadcast(context, alarmCount, intent, 0);

//alarmCount是需要记录的闹钟数量,保证所发的alarmCount不能相同,最后一个参数填0。

AlarmManager am = (AlarmManager) mContextgetSystemService(ContextALARM_SERVICE);

amset(AlarmManagerRTC_WAKEUP, time, pendingIntent);

//取消闹钟请求

Intent intent = new Intent(mContext, AlarmReceiverclass);

intentsetAction("something");

intentsetType(something);

intentsetData(UriEMPTY);

intentaddCategory(something);

intentsetClass(context, AlarmReceiverclass);

PendingIntent pendingIntent = PendingIntentgetBroadcast(mContext, alarmCount, intent, 0);

//alarmCount对应到你设定时的alarmCount,

AlarmManager am = (AlarmManager) mContextgetSystemService(ContextALARM_SERVICE);

amcancel(pendingIntent);

//接着,需要一个广播接收的类:

public class AlarmReceiver extends BroadcastReceiver{

private NotificationManager manager;

@Override

public void onReceive(Context context, Intent intent) {

manager = (NotificationManager)contextgetSystemService(androidcontentContextNOTIFICATION_SERVICE);

String id = intentgetStringExtra("id");

//MainActivity是点击通知时想要跳转的Activity

Intent playIntent = new Intent(context, MainActivityclass);

playIntentputExtra("id", id);

PendingIntent pendingIntent = PendingIntentgetActivity(context, 1, playIntent, PendingIntentFLAG_UPDATE_CURRENT);

NotificationCompatBuilder builder = new NotificationCompatBuilder(context);

buildersetContentTitle("title")setContentText("提醒内容")setSmallIcon(Rdrawableapp_icon)setDefaults(NotificationDEFAULT_ALL)setContentIntent(pendingIntent)setAutoCancel(true)setSubText("二级text");

managernotify(1, builderbuild());

}

}

有。有微信公众号文章提醒的小程序。把编辑好的通知直接添加在文章中,打开小程序链接后直接是一个通知文件。如上下班打卡提醒、xyk还款提醒、会议提醒、生日提醒、生活缴费提醒等日常定时提醒任务。

企业微信管理员可以创建定时群发任务。通过选择推送方式和推送类型,并编辑好推送内容和执行人员,系统就会提前5分钟-1个小时内定时提醒员工群发消息。

但需要注意的是:受企业微信限制,企业群发限制频率为4条/月,员工群发限制频率为1条/天。目前没有任何办法可以突破群发次数限制,只能等待企业微信开放更多群发次数。

管理员创建好定时群发任务后,也可在后台实时查看任务进度和员工执行明细。

企业微信定时群发虽然可以在一定程度上解决特殊时间发送消息的问题,但鉴于企业微信接口限制,并不能做到像公众号定时推送那样,而是起到一个定时提醒员工群发的作用。

而语鹦企服私域管家在与客户沟通过程中也发现,很多企业有统一管理群发消息、定时群发的需求,语鹦企服定时群发功能正好满足了这一需求。

因为无论是每天1次的员工群发,还是每月4次的企业群发,都可以做到定时提醒及统一管理。首创提交任务截图功能更是解决了大部分企业个人群发无法监控的问题。

有这种桌面小程序的,你搜下应该好找的。

我先给你发个VBS脚本程序,等有时间了,写个好点的。

'脚本开始

Set objShell = WScriptCreateObject("WScriptShell")

j = 120 '工作时间(分钟)

n = 10 '休息时间(分钟)

alertText = "休息一下,听听音乐" & Chr(10) & "活动一下脖子,腰部。" & Chr(10) & "生命在于运动!!" '提醒内容,Chr(10)为换行符

alertText2 = n&"分钟休息时间到了,继续工作!"

strSoundFile = "D:\Music\MyMusicwpl" '自动播放列表地址

strCommand = "wmplayerexe /prefetch:1 /Task MediaLibrary " & Chr(34) & strSoundFile & Chr(34) '播放音乐

strCommand2 = "taskkill /im wmplayerexe" '关闭音乐程序

For i = 1 To 12 '12为提醒的次数

WScriptSleep(1000 60 j)

MsgBox alertText, 64

objShellRun strCommand, 1, False

WScriptSleep(1000 60 n)

objShellRun strCommand2, 0, True

MsgBox alertText2, 64

Next

使用方法:

1 将代码保存为:Ringvbs (文件名可自定)

2 将Ringvbs移动到程序启动组,这样可以随WINDOWS自动启动了(位置是:开始--程序--启动,XP的启动组位置是:C:\Documents and Settings\你的用户名\「开始」菜单\程序\启动\)

3 我这里使用的是Window自带的Media Player播放音乐,所以先打开您的Media Player,将“正在播放列表”另存到D:\Music\MyMusicwpl(保存路径可以自定,但要在下在的代码中修改strSoundFile的路径),以后你只要打开电脑就可以自动提醒了!

注意:如果你使用的是Winamp播放音乐,则必有把路径改为Winamp的播放列表文件地址,以及strCommand和strCommand2的值如:

strCommand = "C:\Program Files\Winamp\winampexe /prefetch:1 /Task MediaLibrary " & Chr(34) & strSoundFile & Chr(34) '播放音乐

strCommand2 = "taskkill /im winampexe" '关闭音乐程序

'═════代═══码═══开═══始═════

do

wscriptsleep 15601000

i=i+1

if i=4 then

msgbox "出去走一走吧"

i=0

else

msgbox "活动下胫骨!"

end if

loop

'═════代═══码═══结═══束═════

以上就是关于微信群怎么设置每天定时提醒全部的内容,包括:微信群怎么设置每天定时提醒、Android定时提醒的功能、有没有微信公众号文章提醒的小程序等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/10170351.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-06
下一篇 2023-05-06

发表评论

登录后才能评论

评论列表(0条)

保存